.banner-inicial__wrapper {
  padding: 1rem 0;
  background-color: var(--abs-bg);
}

.banner-inicial,
.banner-inicial:link,
.banner-inicial:visited {
  display: flex;
  background-color: var(--abs-red);
  color: #fff;
  border-radius: 0.3rem;
  line-height: 1.3em;
  overflow: hidden;
}

.banner-inicial {
  .se1 {
    padding: 1rem;
    align-items: center;
    font-size: 1.6em;
    flex-basis: 40%;
    background: linear-gradient(90deg, var(--abs-red) 0%, #6f444c 100%);
    @media (min-width: 996px) {
      padding-left: 2rem;
      padding-right: 2rem;
    }
  }

  .se2 {
  }

  .se3 {
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    background-image: url(./img/fundofotos.jpg);
    background-size: cover;
    background-position: center;
    flex: 1;
    min-height: 70px;
    @media (min-width: 765px) {
      flex-basis: 40%;
    }
    @media (min-width: 996px) {
      padding-left: 2rem;
      padding-right: 2rem;
      font-size: 1.2em;
    }
  }

  .se4 {
    flex: 1;
  }

  .se5 {
    .svg {
    }

    .svg path {
      stroke: #fff;
    }
  }
}

.ativ-cards {
  background: linear-gradient(180deg, var(--abs-bg) 0%, #ffffff 250px);
}
.ativ-cards__header {
  padding: 1rem 0;
  .title {
    color: var(--abs-red);
    font-weight: 700;
    font-size: 1.8em;
  }
}
.ativ-cards__body {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;

  @media (min-width: 765px){
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    .ativ-card__item {
      flex: 0 0 calc(50% - .5rem);
      min-height: 340px;
    }
  }
  @media (min-width: 996px){
    gap: 1.5rem;
    font-size: 1.1em;
    .ativ-card__item {
      flex: 0 0 calc(25% - 1.15rem);
    }
  }
}

.ativ-card__item:link,
.ativ-card__item:visited {
  /* display: flex; */
  /* border: 1px solid ; */
  padding: 2rem 1.2rem;
  border-radius: 0.4rem;
  color: #fff;
  background-size: cover;
  background-position: center;
  position: relative;

  &.ativ-1 {
    color: #000;
  }

    @media (min-width: 765px){
      padding: 2rem 1.5rem;
    }
    @media (min-width: 996px){ }
}
.ativ-card__item:hover {
  text-decoration: none;
  .title {
    text-decoration: underline;
    margin-top: 3px;
  }
}

.ativ-card__item {
  .title {
    color: #fff;
    font-size: 1.7em;
    font-weight: 700;
    transition: margin .3s ease;
  }
  .desc {
    display: block;
    margin-right: 3rem;
    line-height: 1.3em;
    /* border: solid 1px; */
    @media (min-width: 765px){
      margin-right: 0rem;
    }
  }

  .svg {
    /* border: solid 1px red; */
    position: absolute;
    right: 1rem;
    bottom: 1.5rem;
  }

  &.ativ-1 {
    .title,
    .desc {
      color: #000;
    }
    background-color: var(--abs-bege);
    background-image: url(./img/ativ-1.jpg);
  }
  &.ativ-2 {
    background-color: var(--abs-green);
    background-image: url(./img/ativ-2.jpg);
  }
  &.ativ-3 {
    background-color: var(--abs-red);
    background-image: url(./img/ativ-3.jpg);
  }
  &.ativ-4 {
    background-color: var(--abs-gray-dark);
    background-image: url(./img/ativ-4.jpg);
  }


}

.ativ-cards__footer {
  /* border: solid 1px; */
  padding: 2rem;
  text-align: center;

  @media (min-width: 765px){
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-around;
    max-width: 590px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 1rem;
  }
}

.ativ-cards__footer {
  
  .login-msg {

     @media (min-width: 765px){
       text-align: right;
       max-width: 260px;
     }
  }
  .or {
    display: flex;
    align-items: center;
    line-height: 1em;
    gap: .5rem;
    margin: 1.2rem auto;
    width: 150px;

    @media (min-width: 765px){
      flex-direction: column;
      width: 70px;
      
      &::before,
      &::after {
        width: 1px;
        flex: 0 0 30px !important;
      }
    }
    
  }
  .or::before,
  .or::after {
    content: "";
    display: block;
    background-color: var(--abs-gray-light);
    height: 1px;
    flex: 1;

    @media (min-width: 765px){
      
    
    }
  }
  .or > div {
    opacity: .7;
    color: var(--abs-gray-dark);
  }
  .btn {
    white-space: nowrap;
  }
  
}
