body {
  background-color: #1f1e1e !important;

}


/* ===================== ANIMAÇÕES DE ENTRADA ===================== */
.slide-in-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.8s cubic-bezier(.77,0,.18,1), transform 0.8s cubic-bezier(.77,0,.18,1);
}
.slide-in-left.active {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 0.8s cubic-bezier(.77,0,.18,1), transform 0.8s cubic-bezier(.77,0,.18,1);
}
.slide-in-right.active {
  opacity: 1;
  transform: translateX(0);
}


@media (min-width: 1300px) {
.main-title {
  text-align: right !important;
}
}


/* infi */

  /* Cards */
  .card {
    border: none;
    

    
    transition: transform 0.2s ease;
  }

  

  .card:hover {
  transform: scale(1.02); 
}
  
  .card-title {
    color: #ffffff;
  }
  
  .card-text {
    color: #cecece;
  }
  




  /* PLANOS */

  .planos-scroll::-webkit-scrollbar {
  height: 8px;
  
}
.planos-scroll::-webkit-scrollbar-thumb {
  background-color: rgba(49, 48, 42, 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;
  
}

.scroll-border::after {
  left: auto;
  right: 0;
 
}



.scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: rgba(216, 215, 195, 0.726);
  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;
}

  }



  /* 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, #FFDE00, #F8B472);
      border: none;
      color:#0F0E11;
  }

  .btn-cta{
    width: 100% !important;
    align-self: center;
   
    
  }
  

  
  
  
  
  @media (max-width: 767.98px) {
  .planos-scroll { scroll-snap-type: none !important; }
  .plan-card { scroll-snap-align: none !important; }
}

.planos-scroll { overflow-anchor: none; }

.planos-scroll{
  box-shadow: none !important;
}
.scroll-border {
  box-shadow: none !important;
}
/* fim infi */


.btn-dark {
    color: #fff;
    background-color: #161513 !important;
    border-color: #161513 !important;
}

.card{
  background-color: #252525;
  
}

.card-pricing{
  background-image: url("https://www.transparenttextures.com/patterns/dark-matter.png");
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.05), 0 2px 8px rgba(255, 255, 255, 0.02)
}

.badge{
  color:#0F0E11 !important;
}

.card-garantia{
  background-color: #161513;
}

.btn-ccia{
  background: linear-gradient(-200deg, #FFDE00 0%, #FFDE00 75%, #F8B472 100%) !important;
  padding: 0.5rem 0.9rem !important;
  margin: 0.7rem;
}

.btn-ccia:hover{
  background: linear-gradient(-200deg, #fced8d 0%, #F8B472 75%, #F8B472 100%) !important;
}

.btn-cadastrar{
  background: transparent !important;
  border: 2px solid #FFDE00 !important;
  color: #FFDE00 !important;
  padding: 0.5rem 0.9rem !important;
  margin: 0.7rem;
}

.btn-cadastrar:hover{
  background: #FFDE00 !important;
  border: 2px solid #FFDE00 !important;
  color: #0F0E11 !important;
}

.img-shadow-light {
  filter: drop-shadow(0 0 10px #2c2c2c);
}

.img-shadow-light-2 {
  filter: drop-shadow(0 0 10px #333333);
}

/* .slow-circular-animation {
  animation: circular-motion 5s linear infinite;
}

@keyframes circular-motion {
  0% {
    transform: translate(0, 0);
  }
  15% {
    transform: translate(4px, 0);
  }
  50% {
    transform: translate(4px, 4px);
  }
  85% {
    transform: translate(0, 4px);
  }
  100% {
    transform: translate(0, 0);
  }
} */





.section-hidden,
.section-visible{
  will-change: transform, opacity;
  transform: translate3d(0,0,0); /* ativa aceleração */
  contain: paint;                /* isola pintura da section */
}

.section-hidden{
  opacity: 0;
  transform: translate3d(0,50px,0);
  transition: transform .45s cubic-bezier(.22,.61,.36,1),
              opacity   .45s cubic-bezier(.22,.61,.36,1);
}

.section-visible{
  opacity: 1;
  transform: translate3d(0,0,0);
}

/* (opcional) delays fixos por ID para ainda menos concorrência */
#abouttwo.section-hidden   { transition-delay: .06s; }
#aboutthree.section-hidden { transition-delay: .12s; }
#pricing.section-hidden    { transition-delay: .18s; }
#guarantee.section-hidden  { transition-delay: .24s; }
#cta.section-hidden        { transition-delay: .30s; }