:root {
    --bs-body-bg: #ffffff;
    --bs-body-color: #22251E;
    --bs-primary: #68B22F;
    --bs-secondary: #ecf0c6 ;
    --bs-dark: #22251E;
    --bs-light: #eaebe2;
    --bs-font-sans-serif: 'Helvetica Neue', sans-serif;
    --bs-heading-color:#22251E;
  }
  
  .bg-primary {
  background-color: var(--bs-primary) !important;
}
.bg-dark{
    background-color: var(--bs-dark) !important;
}
  
  body {
    font-family: 'Inter', sans-serif;
  }
  .bg-white{
    background-color:#fff; 
}


  @font-face {
    font-family: 'Infigreen';
    src: url('fonts/Infigreen-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
  }



   /* Navbar custom */

 
   .logo-container {
    display: flex;
    align-items: center;
    position: relative; /* necessário para que a logo-text absoluta fique posicionada corretamente */
  }
  
  .logo-svg {
    height: 48px;
    width: auto;
    display: block;
    
  }
  
  .logo-text {
    
    /* left: 80px!important;
    top: 50%; */
    /* transform: translateY(-50%); */
    font-family: 'Infigreen', sans-serif;
    font-size: 46px;
    color: #22251E;
    white-space: nowrap;
    letter-spacing: 0.12em;
    margin-left: -5px !important;
  }
  
  

  .navbar {
    background-color: transparent !important;
    border-bottom: 1px solid #ddd;
    padding-top: 5px;
    padding-bottom: 5px;
  }
 

  .navbar {
    transition: transform 0.3s ease-in-out;
  }

  .navbar-brand {
    color: #22251E !important;
    align-items: center;
    align-self: center
  }


  .nav-link {
    color: #22251E !important;
    position: relative;
    text-decoration: none;
    display: inline-block;
    padding: 8px 0; 
    font-weight: 600;
  }
 
  /* .nav-link:hover {
    text-decoration: underline;
  } */

  .nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 5px;
    bottom: 3px;
    left: 0;
    background-image: linear-gradient(to right, #EBC10E, #68B22F);
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    transform: skewX(-20deg); /* Ajuste este valor conforme necessário */
  }
  
  .nav-link:hover::after {
    visibility: visible;
    width: 100%;
  }


  @media (max-width: 1250px) {
    .nav-link-1250 {
        display: none;
    }

  }

  @media (max-width: 950px) {
    .nav-link-950 {
        display: none;
    }

  }


  .custom-toggler .navbar-toggler-icon {
    background-image: none !important; /* remove a linha padrão */
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 30px;
    height: 10px;
    flex-direction: row;
  }
  
  .custom-toggler .navbar-toggler-icon span {
    display: block;
    width: 6px;
    height: 6px;
    background-color: #22251E;
    border-radius: 50%;
  }

  .navbar-toggler {
    border: none;
  }
  .navbar-toggler:focus {
    box-shadow: none !important;
    outline: none !important;
  }


  .navbar-scrolled .navbar-toggler-icon span {
    background-color: #fff !important;
  }


  .offcanvas-title{
    color: var(--bs-body-bg);
  }

  .offcanvas{
    background-image: 
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 1) 85%), /* Cor branca */
    radial-gradient(ellipse at top right, rgba(255, 193, 7, 0.1), transparent 50%), /* Cor amarela (accent) */
    radial-gradient(ellipse at center right, rgba(153, 102, 255, 0.05), transparent 50%), /* Cor violeta */
    radial-gradient(ellipse at center left, rgba(230, 255, 250, 0.5), transparent 50%); 
  }

  .transition-navbar {
    transition: all 0.3s ease-in-out;
  }
  .navbar-scrolled {
    background-color: #22251E !important;
  }
  .navbar-scrolled .nav-link,
  .navbar-scrolled .logo-text {
    color: white !important;
  }





  
  /* Botões com degradê */
  .btn-infi {
    border-top-left-radius: 0.5rem !important;
    border-top-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0.5rem !important;
 
    padding: 0.5rem 1.25rem;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
   
  }
 

  .btn-infi-outline {
    font-weight: 500;
    padding: 0.5rem 1.25rem;
    color: #22251E;
    background-color: transparent;
 
    border: 2px solid #68B22F;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0.5rem;
 
    transition: all 0.3s ease;
  }

  .navbar-scrolled .btn-infi-outline {
    color: #fff;  
    border: 2px solid #68B22F;
  }
 
  .btn-infi-outline:hover {
    background-image: linear-gradient(to right, #EBC10E, #68B22F);
    color: #22251E;
    border-color: white;
   
  }

  .navbar-scrolled .btn-infi-outline:hover {
    border-color: #22251E !important;
  }


  /* botão cheio com degradê */
  .btn-gradient {
    background-image: linear-gradient(to right, #EBC10E, #68B22F);
    color: #22251E;
    border: none;
  }
 
  .btn-gradient:hover {
    opacity: 0.68;
    color: #000;
  }
 


  .btn-outline-primary {
    border-color: #68B22F;
    color: #68B22F;
  }
 
  .btn-outline-primary:hover {
    background-color: #68B22F;
    color: #fff;
  }



  /* Hero Section */
  .hero-banner {

    background-image: 
    linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), /* camada branca translúcida */
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 1) 85%), /* Cor branca */
    radial-gradient(ellipse at top left, rgba(131, 212, 142, 0.452), transparent 50%), 
    radial-gradient(ellipse at top right, rgba(255, 193, 7, 0.1), transparent 50%), /* Cor amarela (accent) */
    radial-gradient(ellipse at center right, rgba(153, 102, 255, 0.05), transparent 50%), /* Cor violeta */
    radial-gradient(ellipse at center left, rgba(230, 255, 250, 0.5), transparent 50%);
    color: #fff;
    background-size: cover;
    background-position: center;
  }
  
  .hero-banner .btn {
    font-size: 19.2px;
    padding: 12px 32px;
  }

  .hero-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
  }
  
  .hero-title {
    font-family: 'Infigreen', sans-serif;
    font-size: 152px;
    font-weight: normal;
    line-height: 1.3;
    color: #22251E;
    text-align: center;
    letter-spacing: 3px;
  }
  
  .hero-asset {
    max-height: 500px;
    width: auto;
  }

  .hero-left {
    margin-right: -80px;
  }
  .hero-right {
    margin-left: -80px;
  }
  
  @media (max-width: 1250px) {
    .hero-title {
      font-size: 106.5px; 
    }
    .hero-asset {
        max-height: 320px;
      }
      .hero-left {
        margin-right: -64px;
      }
      .hero-right {
        margin-left: -64px;
      }
  }
  
  @media (max-width: 767.98px) {
    .hero-title {
      font-size: 48px; 
    }
    .hero-left {
        display: none;
      }
      .hero-right {
        margin-left: -80px;
      }
  }

    @media (max-width: 450px) {
    .hero-title {
      font-size: 39px; 
    }
    .hero-left {
        display: none;
      }
      .hero-right {
        margin-left: -80px;
      }
  }

  @media (max-width: 419px) {

      .hero-right {
        margin-left: 0px;
      }
      .hero-flex{
        gap: 0px;
      }
          .hero-title {
      font-size: 48px; 
    }
    .hero-banner .btn {
    font-size: 16px;
    
}

.hero-flex{
    display: block;
}
  }
  
  .break-line {
    display: block;
    margin-top: 4.8px;
  }
  
  .highlight-container {
    position: relative;
    display: inline-block;
  }
  
  .break-line,
  .highlight-container {
    margin: 0;
    padding: 0;
  }
  
  .break-line {
    margin-top: -40px; /* ajuste fino para aproximar verticalmente */
  }

.highlight-word {
  position: relative;
  z-index: 2;
  display: inline-block;  /* IMPORTANTE para permitir transformações */
  transition: transform 0.3s ease; /* opcional, mas melhora a experiência */
}

  .highlight-word:hover {
    transform: scale(1.05);

  }
  
.highlight-img {
  position: absolute;
  top: 2%;
  left: -5%;
  width: 110%;
  height: 110%;
  z-index: 1;
  pointer-events: none;
}

  @media (max-width: 1250px) {

    .break-line {
        margin-top: -24px; /* ajuste fino para aproximar verticalmente */
      }
  }
  
  @media (max-width: 767.98px) {

    .break-line {
        margin-top: -16px; /* ajuste fino para aproximar verticalmente */
      }
  }


.sub-hero {
  font-weight: 800 !important;
  color: #45493d;
  font-size: 1.5rem; /* exemplo para desktop */
}

@media (max-width: 767px) {
  .sub-hero {
    font-size: calc(1.5rem * 0.7); /* reduz em 70% */
  }
}


  .benefits {
  display: flex;
  gap: 0 0.9rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 10px 20px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 3px;
  font-family: sans-serif;
  font-size: 0.8rem;
  color: #333;
}

.benefit-item img {
  width: 16px;
  height: 16px;
}
  
  
  /* Cards */
  .card {
    border: none;
    border-radius: 8px;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.20);

    
    transition: transform 0.2s ease;
  }


.step-card-1 {
  border-radius: 50% 50% 40% 60% / 50% 40% 60% 50% !important;
  transition: border-radius 0.4s ease, transform 0.2s ease !important;
  padding: 2rem !important;
  min-width: 240px;
}



.step-card-1:hover {
  border-radius: 60% 40% 35% 65% / 60% 30% 70% 40% !important;
  transform: translate(2px, 2px) !important;
}

.step-card-2 {
  border-radius: 55% 45% 60% 40% / 50% 65% 35% 45% !important;
  transition: border-radius 0.4s ease, transform 0.2s ease !important;
  padding: 2rem !important;
  min-width: 240px;
}


.step-card-2:hover {
  border-radius: 50% 60% 45% 55% / 60% 50% 50% 50% !important;
  transform: translate(3px, 2px) !important;
}

.step-card-3 {
  border-radius: 65% 35% 40% 60% / 55% 60% 40% 45% !important;
  transition: border-radius 0.4s ease, transform 0.2s ease !important;
  padding: 2rem !important;
  min-width: 240px;
}

.step-card-3:hover {
  border-radius: 60% 40% 45% 55% / 50% 55% 45% 50% !important;
  transform: translate(2px, 2px) !important;
}

  @media (max-width: 992px) {
.step-card-1, .step-card-2, .step-card-3 {

  padding: 1.6rem !important;
  width: 240px !important;
}
  }


.curved-arrow {
  display: inline-block;
  transform: rotate(3deg) skewY(5deg);
}

.curved-arrow-2 {
  display: inline-block;
  transform: rotate(1deg) skewY(5deg);
}




  .card:hover {
  transform: scale(1.02); 
}
  
  .card-title {
    color: #22251E;
  }
  
  .card-text {
    color: #555;
  }
  
  /* FAQ */
  .accordion-button {
    background-color: #eef3eb;
    color: #22251E;
    
    border: 1.5px solid #000 !important;
  }
  
  .accordion-button:not(.collapsed) {
    background-color: #dcdfd9;
    color: #22251E;
  }

  .accordion-button:focus{

    box-shadow: 0 0 0 0;
  }

.accordion-body {
  border-left: 1.5px solid #000 !important;
  border-right: 1.5px solid #000 !important;
  border-bottom: 1.5px solid #000 !important;
  border-top: none !important;
  
}

button.accordion-button{
  font-weight: bolder;
}

.accordion{
  max-width: 520px;
}

@media (max-width: 850px) {
  .accordion, button.accordion-button {
    font-size: 0.8rem;
  }
}


   
  /* Strong com destaque em degradê */
  strong {
    background: linear-gradient(to right, #EBC10E, #68B22F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  



  /* BARRA */
.container-centralizado {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bar-infi {
  width: 20vw;
  height: 1.4vh;
  background-color: #22251E;
  border-top-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.bar-infi-white {
  width: 10vw;
  height: 0.7vh;
  background-color: white;
  
  border-bottom-right-radius: 15px;
}

.y-desloc{
  margin-top: -95px;
}


  @media (max-width: 1250px) {
    .y-desloc {
      margin-top: -75px;
    }
        .bar-infi {
      height: 0.8vh;
    }

  }
  
  @media (max-width: 767.98px) {
    .y-desloc {
      display: none;
      }

  }


  /* sections */


  .section-bg{
    /* background-color: #d5e2ca; */
background-image: 
  radial-gradient(ellipse at bottom left, rgba(193, 214, 73, 0.152), transparent 50%),
  radial-gradient(ellipse at bottom right, rgba(255, 193, 7, 0.1), transparent 50%),
  radial-gradient(ellipse at center left, rgba(251, 255, 230, 0.5), transparent 50%),
  radial-gradient(ellipse at center right, rgba(153, 102, 255, 0.05), transparent 50%),
  radial-gradient(ellipse at top left, rgba(255, 193, 7, 0.1), transparent 50%),
  radial-gradient(ellipse at top right, rgba(255, 193, 7, 0.15), transparent 50%),
  linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 1) 85%),
  linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8));
  }

.section-title {
    font-family: 'Infigreen', sans-serif;
    font-size: 100px;
    font-weight: normal;
    line-height: 1.3;
    color: #22251E;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
  }

    @media (max-width: 1250px) {
    .section-title {
      font-size: 75px; 
    }

  }
  
  @media (max-width: 767.98px) {
    .section-title {
      font-size: 56px; 
    }

  }





/* whatsapp button */

@keyframes jump {
  0% {
    transform: translateY(0) scale(0.75);

  }
  30% {
    transform: translateY(-15px) scale(0.75);

  }
  60% {
    transform: translateY(0) scale(0.75);

  }
  100% {
    transform: translateY(0) scale(0.75);

  }
}


.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-image: linear-gradient(to right, #EBC10E, #68B22F);
  width: 80px;
  height: 80px;
  padding: 20px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: jump 5s ease-in-out infinite;
  animation-delay: 3s;
  transform: scale(0.75);
}

.whatsapp-button:hover {
  animation: none;
  transform: scale(0.78);
}

.whatsapp-icon {
  width: 35px;
  height: 35px;
  z-index: 2;
  position: relative;
}

/* SVG circular com texto fixo */
.circular-text-svg {
  position: absolute;
  width: 120px;
  height: 120px;
  pointer-events: none;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.circular-text-svg text {
  font-size: 10px;
  fill: #4b5c49;
  font-weight: bold;
  letter-spacing: 2px;
}


/* 3 STEPS */

.step-btn {
  font-size: small;
  background-color: #000;
  color: #fff;
  border: none;
  transition: background-color 0.3s ease, opacity 0.3s ease;
  min-width: 75px;
}

.step-btn:hover {
  opacity: 0.8;
  cursor: pointer;
}


/* CTA */
.cta-title{
    font-family: 'Infigreen', sans-serif;
    font-size: 50px;
    
    white-space: nowrap;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    justify-items: left;
}


.cta {
background-color: #2b2e27;
background-image: url("https://www.transparenttextures.com/patterns/stardust.png");
/* This is mostly intended for prototyping; please download the pattern and re-host for production environments. Thank you! */
/* This is mostly intended for prototyping; please download the pattern and re-host for production environments. Thank you! */
/* This is mostly intended for prototyping; please download the pattern and re-host for production environments. Thank you! */
/* This is mostly intended for prototyping; please download the pattern and re-host for production environments. Thank you! */
/* This is mostly intended for prototyping; please download the pattern and re-host for production environments. Thank you! */
}






.cta-container-title {
  display: flex;
  align-items: center; /* Alinha verticalmente */
  gap: 0.5rem; /* Espaço entre o texto e o ícone */
  justify-items: left;
}

.cta-img {
  max-height: 162px;
  transform: translateY(3px);
}
.cta-container {
  transform: translateX(-100%);
  opacity: 0;
  will-change: transform, opacity;
}

.cta-container.animate-in {
  animation: slideInBounce 2.5s cubic-bezier(0.10, -0.55, 0.265, 1.55) forwards;
}

@keyframes slideInBounce {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
 
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}


      @media (max-width: 550px) {
    .container-scale{
  transform: scale(0.85);

}
  .cta{
    padding: 1px !important;
  }

}
      @media (max-width: 400px) {
    .container-scale{
  transform: scale(0.70);
}}


  /* Rodapé */
  footer {
    background-color: #22251E !important;
    color: #D9D8C4;
  }

  /* PLANOS */

  .planos-scroll::-webkit-scrollbar {
  height: 8px;
  
}
.planos-scroll::-webkit-scrollbar-thumb {
  background-color: rgba(164, 179, 162, 0.616);
  border-radius: 4px;
 
  
  
}



.scroll-border {
  position: relative;
  z-index: 1;
}

.scroll-border::before,
.scroll-border::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 8px;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(to right, rgba(255,255,255,0.03), transparent);
}

.scroll-border::after {
  left: auto;
  right: 0;
  background: linear-gradient(to left, rgba(255,255,255,0.03), transparent);
}



.scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: rgba(38, 49, 35, 0.5);
  animation: arrowMove 1s ease-in-out infinite alternate;
  cursor: pointer;
  z-index: 10;
}

.scroll-left {
  left: 10px;
  display: none; /* começa escondido */
}

.scroll-right {
  right: 10px;
}



@keyframes arrowMove {
  from {
    transform: translateY(-50%) translateX(0);
  }
  to {
    transform: translateY(-50%) translateX(8px);
  }
}

.scroll-arrow.left {
  left: 10px;
}

.scroll-arrow.right {
  right: 10px;
}

.planos-scroll {
  scroll-behavior: smooth;
}




  @media (max-width: 767.98px) {
.pricing-container{
max-width: none;
}

  }
  


  /* phone */

  @keyframes phoneTremor {
  0%   { transform: rotate(0deg); }
  25%  { transform: rotate(1.5deg); }
  50%  { transform: rotate(-1.5deg); }
  75%  { transform: rotate(1deg); }
  100% { transform: rotate(0deg); }
}

.phone-shake {
  animation: phoneTremor 2s ease-in-out infinite;
  transform-origin: center center;
}





  .text-primary{
    color: #68B22F !important;
  }




.smartphone-container {
  position: relative;
  padding: 20px 0;
  z-index: 100;
}

.smartphone-screen {
  width: 420px;
  height: 760px;
  background: linear-gradient(145deg, #2c2c2c, #1a1a1a);
  border-radius: 35px;
  padding: 15px;
  box-shadow: 
    0 8px 32px rgba(0,0,0,0.3),
    0 4px 16px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.1);
  position: relative;
  border: 3px solid #333;
}

.smartphone-top-bar {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 25px;
  background: #1a1a1a;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  
}

.camera-notch {
  width: 12px;
  height: 12px;
  background: #0a0a0a;
  border-radius: 50%;
  border: 1px solid #333;
}

.speaker {
  width: 60px;
  height: 4px;
  background: #333;
  border-radius: 2px;
}

.iframe-screen {
  width: 390px;
  height: 700px;
  background-color: #f8f9fa;
  border-radius: 25px;
  margin: 30px auto 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.1);
  z-index: 5;
}

.home-button {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 4px;
  background: #666;
  border-radius: 2px;
}

/* Efeitos hover para dar vida ao smartphone */
.smartphone-screen:hover {
  box-shadow: 
    0 12px 40px rgba(0,0,0,0.4),
    0 6px 20px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.15);
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

/* Imagem asset no simulador */
.simulador-asset-img {
  position: absolute;
  top: -180px;
  right: calc(50% - 210px);
  width: 500px;
  height: auto;
  z-index: 1;
  transform: translateX(50%);
  opacity: 0.2  ;
}

.faq-asset-img {
  position: absolute;
  top: -160px;
  rotate: 15deg;
  right: calc(50% - 255px);
  width: 300px;
  height: auto;
  z-index: 1;
  transform: translateX(50%);
  opacity: 0.2  ;
}

.accordion{
  z-index: 10;
}



/* Responsividade */
@media (max-width: 1400px) {
  .smartphone-container {
    transform: scale(0.85);
    transform-origin: center;
    
  }
  .media-responsive-margin{
    margin-bottom: -40px;
  }
  .simulador-asset-img {
    top: -140px;
    right: calc(50% - 189px);
  }

@media (max-width: 768px) {

  .simulador-asset-img {
    scale: 0.8  ;
    right: calc(50% - 200px);
  }



}
/* Responsividade */
@media (max-width: 415px) {
  .smartphone-container {
    transform: scale(0.8);
    transform-origin: center;
  }
    .media-responsive-margin{
    margin-bottom: -90px;
    margin-top: -40px;
  }
  .simulador-asset-img {
    
    right: calc(50% - 168px);
  }

}

/* Responsividade */
@media (max-width: 360px) {
  .smartphone-container {
    transform: scale(0.7);
    transform-origin: center;
  }
    .media-responsive-margin{
    margin-bottom: -120px;
    margin-top: -60px;
  }
  .simulador-asset-img {
    
    
    top:-104px;
  }

}
@media (max-width: 767.98px) {

.faq-asset-img {

  right: calc(50% - 200px);
 

}}

@media (max-width: 550px) {

.faq-asset-img {

  right: calc(50% - 180px);
 

}}

@media (max-width: 470px) {

.faq-asset-img {

  right: calc(50% - 170px);
 

}}

@media (max-width: 440px) {

.faq-asset-img {

  right: calc(50% - 160px);
 

}}

@media (max-width: 410px) {

.faq-asset-img {

  display: none;
 

}}


.simulador-overflow{
  overflow-x: hidden;
  padding: 0 !important;
}

.faq-section-overflow{
  overflow-x: hidden;

}

}




  /* estrutura para alinhar o botão no rodapé do card */
  .plan-card { display: flex; flex-direction: column; }
  .plan-card .btn-cta { margin-top: auto; }

  /* tipografia dos preços */
  .old-price { font-size: .95rem; }
  .current-price { margin-top: .6rem; } /* “pula uma linha” visual */
  .per-month { font-size: .9rem; }

  /* badge de economia */
  .save-badge { align-self: flex-start; }

  /* ajuda no scroll mobile (opcional) */
  .planos-scroll { scroll-snap-type: x proximity; }
  .planos-scroll > .card { scroll-snap-align: start; }
  
  .btn-cta:hover{
      background-image: linear-gradient(to right, #EBC10E, #68B22F);
      border: none;
  }
  
  .btn-cta{
          border-top-left-radius: 0.5rem !important;
    border-top-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0.5rem !important;

  }
  
  
  
  
  @media (max-width: 767.98px) {
  .planos-scroll { scroll-snap-type: none !important; }
  .plan-card { scroll-snap-align: none !important; }
}

.planos-scroll { overflow-anchor: none; }






/* Classe personalizada para Bootstrap 5 */
@media (min-width: 992px) {
  .text-lg-justify {
    text-align: justify !important;
  }
}


.btn-footer-login {
  display: block;       /* faz o botão se comportar como bloco */
  width: 70%;           /* ocupa 100% da largura do pai */
  max-width: 100%;       /* impede de ultrapassar */
  text-align: center;    /* centraliza o texto e ícone dentro do botão */
      border-top-left-radius: 0.5rem !important;
    border-top-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0.5rem !important;
}


.coluna-footer {
  display: flex;
  flex-direction: column;
}

.end-footer {
  margin-top: auto; /* empurra para o fim do container */
}


footer a {
  transition: opacity 0.2s ease-in-out;
}

footer a:hover {
  opacity: 0.7;
}


.icon-highlight {
  position: relative;
  display: inline-block;
}

.icon-highlight img {
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 1;
}

.icon-highlight::before {
  content: '';
  position: absolute;
  top: -7px;      /* deslocamento para cima */
  left: -10px;     /* deslocamento para esquerda */
  width: 32px;    /* ligeiramente maior que o ícone */
  height: 32px;
  background: rgba(104, 178, 47, 0.25); /* verde claro com transparência */
  border-radius: 60% 45% 50% 55%;    /* forma levemente orgânica */
  z-index: 0;
}
