@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Sixtyfour+Convergence&display=swap');

.botao-pulse {
  position: fixed;
  bottom: 60px;
  right: 60px;
  z-index: 1000;
}
.animation {
  animation: alerta 1.5s infinite;
}
.botao {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: transparent;
  color: white;
  border-radius: 110px;
  box-shadow: 0 0 0 0 rgba(42, 141, 255, 0.8);
  font-size: 10px;
  width: 40px;
  height: 40px;
  line-height: 5px;
  text-decoration: none;
  transition: background, padding 500ms ease-in-out;  
}
.botao:hover {
  transform: scale(1.2);
  background-color: #ffffff;
  color: #ffffff;
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
  cursor: url('../images/cursorpointer.png'), pointer;
}

@keyframes alerta {
  0% {
    transform: scale();
  }
  70% {
    transform: scale();
    box-shadow: 0 0 0 50px rgba(69, 152, 27, 0);
  }
    100% {
    transform: scale();
    box-shadow: 0 0 0 0 rgba(69, 152, 27, 0);
  }
}

.banner6-wrapper {
  position: relative;
}

.banner6 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: visible;
  top: 0;
  left: 0;
  gap: 50px;
  padding: 15px;
}

.card-top {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cards-bottom {
  display: flex;
  margin-bottom: 250px;
  justify-content: space-around;
  gap: 50px;
}

.card {
    --border-radius: 1rem;
    --bg-color: #111;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 300px;
    height: 400px;
    background: var(--bg-color);
    border-radius: var(--border-radius);
    font-family: 'ICA Rubrik';   
    color: #fff;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    isolation: isolate;
    overflow: hidden;
    cursor: url('../images/cursorpointer.png'), pointer;
    transition: transform 0.3s ease-out;
}
.card:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease-in;
}

.card::before,
.card::after {
    content: '';
    position: absolute;
}

.card::before {
    width: 200%;
    height: 200%;
    background-image: conic-gradient(var(--color) 0deg,
            transparent 60deg, transparent 180deg, var(--color) 180deg,
            transparent 240deg);
    inset: -50%;
    z-index: -2;
    animation: borderanimation 4s linear infinite;
}

.card:hover::before {
    animation-play-state: paused;
}

@keyframes borderanimation {
    to {
        transform: rotate(-360deg);
    }
}


.card1::after {
  --inset: 4px;
  background-image: url('../images/rates22.png');
  background-size: cover;
  background-position: center;
  background-color: rgba(0, 0, 0, 0.6);
  background-blend-mode: multiply; /* adiciona essa linha */
  inset: var(--inset);
  border-radius: calc(var(--border-radius) - var(--inset));
  z-index: -1;
  transition: all 0.3s linear;
}
.card2::after {
  --inset: 4px;
  background-image: url('../images/rates23.png');
  background-size: cover;
  background-position: center;
  background-color: rgba(0, 0, 0, 0.6);
  background-blend-mode: multiply; /* adiciona essa linha */
  inset: var(--inset);
  border-radius: calc(var(--border-radius) - var(--inset));
  z-index: -1;
  transition: all 0.3s linear;
}
.card3::after {
  --inset: 4px;
  background-image: url('../images/rates24.png');
  background-size: cover;
  background-position: center;
  background-color: rgba(0, 0, 0, 0.6);
  background-blend-mode: multiply; /* adiciona essa linha */
  inset: var(--inset);
  border-radius: calc(var(--border-radius) - var(--inset));
  z-index: -1;
  transition: all 0.3s linear;
}

.card:hover::after {
    background: var(--bg-color);
}

.card i {
    font-size: 2.5rem;
    color: transparent;
    -webkit-text-stroke: thin var(--color);
}

.card:hover i {
    color: var(--color);
    -webkit-text-stroke-width: 0;
}

.card .title {
    text-align: center;
    font-size: 1.5rem;
    line-height: 2rem;
    margin-block: 2.5rem 1.5rem;
    color: var(--color);
}

.card .description {
    font-family: Poppins;
    font-size: 0.9rem;
    line-height: 1.5rem;
    text-align: center;
    opacity: 0.75;
}


@media (max-width: 768px) {
    .banner6 {
      height: 100%;
      gap: 50px;
      padding: 10px;
    }
    .card-top {
      display: flex;
      width: 100%;
      align-items: center;
      justify-content: center;
    }
    .cards-bottom {
      flex-direction: column;
      gap: 20px;
    }
  }
  
  @media (max-width: 480px) {
    .banner6 {
        height: 100%;
      gap: 5px;
      padding: 5px;
    }
    .card-top {
      display: flex;
      width: 100%;
      padding: 10px;
      align-items: center;
      justify-content: center;
    }
    .cards-bottom {
      flex-direction: column;
      gap: 20px;
    }
  }
  @media (max-width: 1200px) {
    .banner6 {
      height: 100%;
      gap: 5px;
      padding: 5px;
    }
    .card-top {
      display: flex;
      width: 100%;
      padding: 10px;
      align-items: center;
      justify-content: center;
    }
    .cards-bottom {
      flex-direction: column;
      gap: 20px;
    }
  }



  .titulo1 {
    display: flex;
    justify-content: center;
    width: 70%;
    height: auto;
    margin: 2rem auto;
    padding: 1.5rem;
    text-align: center;
  }
  
  .titulocard1 {
    font-family: Poppins;
    font-size: 38px;
    font-weight: bold;
    color: #fff;
    margin-top: 40px;
  }
  .titulocard2 {
    font-family: Poppins;
    font-size: 20px;
    color: #bdbdbd;
    margin-bottom: 0;
    text-align: center;
    width: 800px;
  }
  @media (max-width: 1280px) {
    .titulo1 {
        display: flex;
        width: 100%;
        margin-bottom: 20px;
      }
    .titulocard1 {
        font-family: Poppins;
        font-size: 30px;
        font-weight: bold;
        padding: 10px;
        color: #fff;
        margin-bottom: -50px;
      }
      .titulocard2 {
        font-family: Poppins;
        font-size: 16px;
        color: #bdbdbd;
        margin-bottom: 0;
        text-align: center;
        width: 600px;
      }
  }
  @media (max-width: 1200px) {
    .titulo1 {
        display: flex;
        width: 100%;
        padding: 1rem;
      }
    .titulocard1 {
        font-family: Poppins;
        font-size: 24px;
        font-weight: bold;
        color: #fff;
        margin-bottom: 0;
      }
      .titulocard2 {
        font-family: Poppins;
        font-size: 14px;
        color: #bdbdbd;
        margin-bottom: 20px;
        text-align: center;
        width: 400px;
      }
  }

  .hero {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    margin-top: -500px;
  }
  
  .hero img {
    width: 600px;
    height: auto;
  }

  .btn-download2 {
    display: flex;
    position: absolute;
    bottom: 150px;
    justify-content: center;
    text-align: center;
    z-index: 1;
  }