.cta-icons{
  display:flex;
  justify-content:center;
  gap:22px;
  margin-top:14px;
  flex-wrap:wrap;
}

.cta-icons1{
  display:flex;
  justify-content:center;
  gap:22px;
  margin-top:14px;
  flex-wrap:wrap;
}
/* Overlay */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(6px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
}

/* Caixa */
.popup-box {
  background: #ffffff;
  width: 100%;
  max-width: 350px;
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  position: relative;
  animation: popupFade 0.25s ease-out;
}

/* Animação */
@keyframes popupFade {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Texto */
.popup-box p {
  font-size: 15px;
  color: #475569;
  margin-bottom: 25px;
  text-align: center;
  line-height: 1.5;
}

/* Labels */
.popup-box label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 6px;
  margin-top: 14px;
}

/* Inputs */
.popup-box input {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  font-size: 14px;
  transition: all 0.2s ease;
  background: #f8fafc;
}

.popup-box input:focus {
  outline: none;
  border-color: #0f766e;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.15);
}

/* Botão */
.popup-box button {
  width: 100%;
  margin-top: 22px;
  padding: 14px;
  background: #0f766e;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.popup-box button:hover {
  background: #0d5c55;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(15, 118, 110, 0.25);
}

/* Botão fechar */
.close-popup {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 20px;
  color: #94a3b8;
  cursor: pointer;
  transition: color 0.2s ease;
}

.close-popup:hover {
  color: #000000;
}


/* Ajuste dos ícones Pix e Cartão apenas no desktop */
@media (min-width: 901px) {
  .cta-icons {
    justify-content: flex-start;
  }
}


.icon-feature {
  color: #000;
  margin-right: 8px;
  font-size: 18px;
  vertical-align: middle;
  
}

html, body {
  overflow-x: hidden;
  width: 100%;
}


.cta-icons .icon{
  display:flex;
  align-items:center;
  gap:6px;
  font-size:0.85rem;
  color:#e5e7eb;
  opacity:0.95;
}

.cta-icons img{
  width:22px;
  height:auto;
}

.cta-icons1 .icon{
  display:flex;
  align-items:center;
  gap:6px;
  font-size:0.85rem;
  color:#e5e7eb;
  opacity:0.95;
}

.cta-icons1 img{
  width:22px;
  height:auto;
}

.depoimentos {
      background: #ffffff;
    padding: 30px 0px;
    color: #000000;
    overflow: hidden;
    padding-bottom: 70px;
}

.depoimentos h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 22px;
}

.depoimentos-wrapper {
  overflow: hidden;
  width: 100%;
}

.depoimentos-track {
  display: flex;
  width: max-content;
  animation: scroll 20s linear infinite; /* 👈 pode usar 1s sem bug */
}

.depoimentos-group {
  display: flex;
  gap: 30px;
}

.card-depoimento {
      margin-left: 20px;
    min-width: 350px;
    background: #f5f5f5da;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
}

.card-depoimento img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 15px;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}


    *{
      box-sizing:border-box;
      margin:0;
      padding:0;
      font-family:'Inter', sans-serif;
    }

    body{
      background: #ffffff;
      color:#111;
    }

    /* HEADER */
    header{
      background:#0f766e;
      padding:20px 20px;
      text-align:center;
    }

    .header-content{
      display:flex;
      flex-direction:column;
      align-items:center;
    }

    .contador {
    display: flex;
    text-align: center;
    justify-content: center;
    font-size: 48px;
    font-weight: bold;
    color: #0f766e;
    border-radius: 15px;
    align-items: center;
    padding-bottom: 50px;
    transition: transform 0.3s ease;
  }

  .contador.ativo {
    transform: scale(1.05);
  }

    .logo{
      max-width:180px;
    }

    .slogan{
      color:#e6fffa;
      font-size:1rem;
      opacity:0.95;
    }

    .estrelas {
  color: #0f766e;
  display: flex;
  justify-content: right;
  font-size: 18px;
  margin-top: 5px;
}

    /* CONTAINER */
    .container{
      max-width:1100px;
      margin:auto;
      padding:70px 20px;
    }

    .flexx{
      display: flex;
      margin-left: auto;
      margin-right: auto;
      justify-content: space-around;
      align-items: center;
      max-width: 1000px;
    }

    .flexzin{
      position: relative;
      top: 8px;
      cursor: pointer;
    }

    /* HERO */
    .hero{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:60px;
      align-items:center;
    }

    .hero h2{
      font-size:2.4rem;
      margin-bottom:18px;
    }
    
    /* ===== SISTEMA DE RANKING RESPONSIVO ===== */
.ranking-system {
  padding: 80px 20px;
  text-align: center;
}

.ranking-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ranking-system h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.ranking-subtitle {
  font-size: 1rem;
  color: #475569;
  max-width: 600px;
  margin-bottom: 40px;
}

/* Imagem responsiva */
.ranking-container img {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
}

/* MOBILE */
@media (max-width: 768px) {
  .ranking-system {
    padding: 60px 16px;
  }

  .ranking-system h2 {
    font-size: 1.7rem;
  }

  .ranking-subtitle {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .ranking-container img {
    max-width: 100%;
  }
}


    .hero p{
    
      font-size:1.1rem;
      line-height:1.7;
      margin-bottom:28px;
      color:#333;
    }

    /* BOTÃO */
    .btn{
      display:inline-block;
      background:#0f766e;
      color:#fff;
      padding:16px 32px;
      border-radius:12px;
      text-decoration:none;
      font-weight:600;
      transition:0.3s;
      box-shadow:0 10px 25px rgba(15,118,110,0.35);
    }

    .btn:hover{
      transform:translateY(-2px);
      background:#115e59;
    }

    /* IMAGEM COM BRILHO */
    .hero-image{
      width:100%;
      display:flex;
      justify-content:center;
    }

    .hero-image img{
      width:100%;
      max-width:420px;
      height:auto;
      filter: drop-shadow(0 0 35px rgba(0, 200, 255, 0.45));
    }

section.features2 {
  background: #fff;
  padding: 0px 20px;
  text-align: center;
}

.features2-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

/* Imagem */
.features2-content img {
  max-width: 420px;
  width: 100%;
  height: auto;
}

/* Bloco do CTA */
.features2-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

/* Centraliza tudo no mobile */
@media (max-width: 900px) {
  .features2-content {
    flex-direction: column;
    text-align: center;
  }

  .features2-cta {
    align-items: center;
  }
}


    /* FEATURES */
    section.features{
      background:#fff;
      padding:80px 20px;
    }

    .features-grid{
      max-width:1100px;
      margin:auto;
      display:grid;
      grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
      gap:30px;
    }

    .feature{
      background:#f9fafb;
      padding:32px;
      border-radius:16px;
      box-shadow:0 10px 0px #0f766e;
      transition:0.3s;
    }

    .feature:hover{
      transform:translateY(-5px);
    }

    .feature h3{
      margin-bottom:12px;
      font-size:1.1rem;
    }

    .feature p{
      font-size:0.95rem;
      line-height:1.6;
      color:#444;
    }

    /* CTA FINAL */
    section.cta{
      background:linear-gradient(135deg, #0f766e, #115e59);
      color:#fff;
      text-align:center;
      padding:80px 20px;
    }


.spannn{
  display: flex;
  margin-top: 20px;
  justify-content: right;
}

    .cta h2{
      font-size:2.2rem;
      margin-bottom:15px;
    }

    .cta p{
      font-size:1.05rem;
      margin-bottom:30px;
      opacity:0.95;
    }

    footer{
      background:#111;
      color:#aaa;
      text-align:center;
      padding:25px 15px;
      font-size:0.85rem;
    }

    /* RESPONSIVO */
    @media(max-width:900px){
      .hero{
        grid-template-columns:1fr;
        gap:40px;
        text-align:center;
      }

      .hero h2{
        font-size:1.8rem;
      }

      .hero p{
                  padding-left: 20px;
        padding-right: 20px;
        font-size:1rem;
      }

      .hero-image img{
        max-width:400px;
      }

      .btn{
        width:100%;
        max-width:320px;
        margin:0 auto;
        display:block;
      }

      .container{
        padding:50px 18px;
      }

      section.features,
      section.cta{
        padding:60px 18px;
      }
    }

    .sla{
      color: black;
    }

.faxiney-flow {
  padding: 60px 20px;
  background: #ffffff;
  color: #0f172a;
  text-align: center;
}

.faxiney-flow h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #0f766e;
}

.faxiney-flow .subtitle {
  max-width: 600px;
  margin: 0 auto 60px;
  color: #475569;
  font-size: 16px;
}

.flow-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.step {
  background: #ffffff;
  border: 1px solid #d1fae5;
  border-radius: 12px;
  padding: 24px;
  width: 230px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeUp 0.6s ease forwards;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(15, 118, 110, 0.15);
}

.step .icon {
  font-size: 34px;
  margin-bottom: 12px;
}

.step h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #0f766e;
}

.separador{
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.step p {
  font-size: 14px;
  color: #475569;
}

.step.highlight {
  background: #f0fdfa;
  border-color: #0f766e;
  margin-bottom: 20px;
}

.cta-icons1 img,
.cta-icons img {
  max-width: 22px;
  width: 22px;
  height: auto;
}

.arrow {
  font-size: 28px;
  color: #0f766e;
  animation: arrowMove 1.5s infinite ease-in-out;
}

/* Animações */
@keyframes arrowMove {
  0% { transform: translateX(0); opacity: 0.4; }
  50% { transform: translateX(6px); opacity: 1; }
  100% { transform: translateX(0); opacity: 0.4; }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.margin{
  padding-left: 20px;
  padding-right: 20px;
}

/* MOBILE */
@media (max-width: 900px) {
  .flow-steps {
    flex-direction: column;
  }

  .arrow {
    transform: rotate(90deg);
    animation: arrowDown 1.5s infinite ease-in-out;
  }

  @keyframes arrowDown {
    0% { transform: rotate(90deg) translateX(0); opacity: 0.4; }
    50% { transform: rotate(90deg) translateX(6px); opacity: 1; }
    100% { transform: rotate(90deg) translateX(0); opacity: 0.4; }
  }
}


.site-footer {
  background: #0b0b0b;
  color: #d1d5db;
  padding: 60px 20px 25px;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
}

.footer-brand img {
  max-width: 160px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #9ca3af;
}

.footer-nav h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: #ffffff;
}



.footer-nav ul {
  list-style: none;
}

.footer-nav ul li {
  margin-bottom: 10px;
}

/* ===== ANIMAÇÃO CELULAR ===== */
.phone-animate {
  opacity: 0;
  transform: translateY(80px);
  transition: all 1s ease;
}

.phone-animate.show {
  opacity: 1;
  transform: translateY(0);
}


.footer-nav ul li a {
  text-decoration: none;
  font-size: 0.9rem;
  color: #9ca3af;
  transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
  color: #0f766e;
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid #1f2933;
  text-align: center;
  font-size: 0.8rem;
  color: #6b7280;
}

.mark{
  font-weight: bold;
  color: #0f766e;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand img {
    margin: 0 auto 16px;
  }
}

/* ===== ANIMAÇÃO FEATURES ===== */
.feature {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s ease;
}

/* Direções diferentes */
.feature.from-left {
  transform: translateX(-60px);
}

#cta1 {
  text-align: center;
  font-weight: 700;
  font-size: 1.5rem;
}

.color-animate {
  background: linear-gradient(
    270deg,
    #0f766e,
    #14b8a6,
    #2dd4bf,
    #0f766e
  );
  background-size: 600% 600%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 4s ease infinite;
}

@keyframes gradientMove {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.feature.from-right {
  transform: translateX(60px);
}

.feature.from-bottom {
  transform: translateX(-60px);
}

/* Quando aparece */
.feature.show {
  opacity: 1;
  transform: translateX(0) translateX(0);
}


/* ===== PRELOADER ===== */
#preloader {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 1s ease, visibility 1s ease;
}

#preloader img {
  width: 180px;
  animation: fadePulse 1.5s ease-in-out infinite;
}

#preloader.hide {
  opacity: 0;
  visibility: hidden;
}

@keyframes fadePulse {
  0% { opacity: 0.4; }
  50% { opacity: 1; }
  100% { opacity: 0.4; }
}

.modal {
  display: none; /* ESSENCIAL */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
}

.shake-icon {
  animation: shake 1s ease-in-out infinite;
}

.megafone {
  transform-origin: center;
  animation: megafoneMove 2.5s cubic-bezier(.36,.07,.19,.97) infinite;
}

.cupom-container {
    display: flex;
    gap: 10px;
    align-items: center;
    max-width: 400px;
    padding-left: auto;
    padding-right: auto;
  }

  .cupom-input {
    flex: 1;
    padding: 10px;
    font-size: 16px;
    border: 2px dashed #000000;
    border-radius: 6px;
    text-align: center;
    font-weight: bold;
    background-color: #f8f9fa;
  }

  .btn-copiar {
    padding: 10px 15px;
    font-size: 14px;
    border: none;
    border-radius: 6px;
    background-color: #ffffff;
    color: black;
    cursor: pointer;
    transition: 0.3s;
  }

  .btn-copiar:hover {
    background-color: #939393;
  }

  .mensagem {
    margin-top: 8px;
    color: #28a745;
    font-size: 14px;
    display: none;
  }

.mensagem.ativa {
  display: block; /* mostra quando a classe é adicionada */
  color: white;
}

@keyframes megafoneMove {
  0%   { transform: rotate(0deg) scaleX(1); }
  25%  { transform: rotate(10deg) scaleX(1); }
  50%  { transform: rotate(0deg) scaleX(-1); }
  75%  { transform: rotate(-10deg) scaleX(-1); }
  100% { transform: rotate(0deg) scaleX(1); }
}

@keyframes shake {
   0%   { transform: rotate(0deg) translateX(0); }
  15%  { transform: rotate(-8deg) translateX(-2px); }
  30%  { transform: rotate(8deg) translateX(2px); }
  45%  { transform: rotate(-6deg) translateX(-2px); }
  60%  { transform: rotate(6deg) translateX(2px); }
  75%  { transform: rotate(-3deg) translateX(-2px); }
  100% { transform: rotate(0deg) translateX(0); }
}

.centralizar{
  display: flex;
  justify-content: center;
  padding-left: auto;
  padding-right: auto;
}

.handshake {
  animation: handshakeUpDown 1.5s ease-in-out infinite;
}

@keyframes handshakeUpDown {
  0%   { transform: translateY(0); }
  15%  { transform: translateY(-4px); }
  30%  { transform: translateY(4px); }
  45%  { transform: translateY(-3px); }
  60%  { transform: translateY(3px); }
  75%  { transform: translateY(-2px); }
  100% { transform: translateY(0); }
}

.modal-content {
  background: #fff;
  display: flex;
  justify-content: center; /* horizontal */
  align-items: center;     /* vertical */
  width: 100%;
  max-width: 350px;
  height: 65vh;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  display: flex;
   box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.15);
}

.btn-pulse {
  background:#0f766e;
  color: white;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s ease;
  animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1);
  }
}

.modal-content iframe {
  width: 100%;
   box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.15);
  height: 80vh;
}



.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 25px;
  cursor: pointer;
}
