:root{
  --verde:#80C241;
  --verde2:#5ca928;
  --verde3:#ecf8e6;
  --roxo:#6244d9;
  --lilas:#eee7ff;
  --texto:#24121b;
  --cinza:#666;
  --borda:#e8e8e8;
  --branco:#fff;
  --sombra:0 18px 45px rgba(0,0,0,.10);
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
  scroll-padding-top:92px;
}

body{
  font-family:'Inter',Arial,sans-serif;
  color:var(--texto);
  background:linear-gradient(180deg, #f9fef9 0%, #ffffff 100%);
  min-height:100vh;
}

.container{
  width:min(1180px,92%);
  margin:auto;
}

.center{
  text-align:center;
}

.topo{
  background:var(--verde);
  color:#fff;
  position:sticky;
  top:0;
  z-index:50;
  box-shadow:0 2px 15px rgba(0,0,0,.08);
}

.nav{
  height:110px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:25px;
}

.logo{
  text-decoration:none;
  color:#fff;
}

.logo-img{
  display:block;
  width:auto;
  max-height:65px;
  object-fit:contain;
}

.menu{
  display:flex;
  align-items:center;
  gap:28px;
}

.menu a{
  color:#fff;
  font-weight:750;
  text-decoration:underline;
  text-underline-offset:4px;
}

.btn-nav{
  border:1px solid rgba(255,255,255,.7);
  border-radius:999px;
  padding:14px 24px;
  text-decoration:none!important;
}

.menu-mobile{
  display:none;
  border:0;
  background:#fff;
  color:var(--verde);
  width:44px;
  height:44px;
  border-radius:12px;
  font-size:24px;
  font-weight:900;
}

.hero{
  padding:82px 0 70px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

.pre-titulo{
  color:var(--verde);
  font-weight:900;
  font-size:52px;
  line-height:.95;
  letter-spacing:-2px;
}

h1{
  font-size:58px;
  line-height:1.04;
  letter-spacing:-2.5px;
  margin:8px 0 25px;
}

.descricao{
  color:#5f5f5f;
  font-size:19px;
  line-height:1.5;
  max-width:580px;
  margin-bottom:34px;
}

.consulta-card{
  background:#fff;
  border:1px solid var(--borda);
  border-radius:24px;
  padding:26px;
  max-width:500px;
  box-shadow:0 10px 35px rgba(0,0,0,.045);
}

.consulta-card input{
  width:100%;
  height:58px;
  border:1px solid #cfd5dc;
  border-radius:8px;
  padding:0 16px;
  font-size:16px;
  margin-bottom:12px;
  outline:none;
}

.consulta-card input:focus,
.consulta-card button:focus,
.menu-mobile:focus,
.btn-principal:focus,
.cta-box a:focus,
.faq summary:focus{
  outline:3px solid rgba(128,194,65,.7);
  outline-offset:3px;
}

.consulta-card input:focus{
  border-color:var(--verde);
  box-shadow:0 0 0 4px rgba(128,194,65,.15);
}

.consulta-card button{
  width:100%;
  height:60px;
  border:0;
  border-radius:999px;
  background:var(--verde);
  color:#fff;
  font-weight:900;
  font-size:17px;
  cursor:pointer;
  transition:.2s;
}

.consulta-card button:hover{
  background:var(--verde2);
  transform:translateY(-1px);
}

.consulta-card small{
  display:block;
  margin-top:14px;
  color:#777;
  text-align:center;
}

.hero-banner{
  display:flex;
  justify-content:center;
  align-items:center;
  min-height:345px;
  background:transparent;
  border-radius:30px;
  padding:22px;
  overflow:hidden;
  box-shadow:none;
}

.hero-banner-img{
  width:100%;
  max-width:560px;
  border-radius:30px;
  box-shadow:none;
}

.hero-banner h2{
  font-size:50px;
  line-height:.98;
  letter-spacing:-2px;
  max-width:390px;
  margin-bottom:15px;
}

.hero-banner p{
  font-size:24px;
  font-weight:850;
  max-width:330px;
}

.cupom{
  margin-top:28px;
  background:#fff;
  color:var(--texto);
  border-radius:18px;
  padding:17px 22px;
  display:inline-block;
  font-weight:900;
  box-shadow:0 12px 25px rgba(0,0,0,.12);
}

.phone{
  width:245px;
  height:470px;
  background:#fff;
  border:12px solid #1e1e1e;
  border-radius:42px;
  padding:26px 16px;
  box-shadow:var(--sombra);
  color:#333;
  overflow:hidden;
}

.phone-hero{
  position:absolute;
  right:32px;
  bottom:-92px;
  transform:rotate(7deg);
  z-index:3;
  width:215px;
  height:400px;
}

.phone-logo{
  color:var(--verde);
  font-size:25px;
  font-weight:900;
  text-align:center;
  margin-bottom:18px;
}

.phone-title{
  font-size:15px;
  font-weight:850;
  margin-bottom:14px;
}

.linha{
  height:13px;
  background:#eee;
  border-radius:999px;
  margin:11px 0;
}

.linha.verde{
  background:#dff4d0;
}

.linha.pequena{
  width:70%;
}

.mini-card{
  border:1px solid #eee;
  border-radius:12px;
  padding:12px;
  margin:10px 0;
  display:flex;
  justify-content:space-between;
  gap:12px;
  font-size:12px;
}

.mini-card span{
  color:var(--verde);
  font-weight:900;
}

.phone-btn{
  height:40px;
  background:var(--verde);
  color:#fff;
  border-radius:999px;
  display:grid;
  place-items:center;
  font-size:12px;
  font-weight:900;
  margin-top:16px;
}

section{
  padding:85px 0;
}

.servicos h2,
.como h2,
.duvidas h2{
  font-size:48px;
  line-height:1.08;
  letter-spacing:-2px;
  max-width:850px;
  margin:0 auto 18px;
}

.sub{
  color:var(--cinza);
  font-size:20px;
  margin-bottom:55px;
}

.grid-servicos{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
  max-width:860px;
  margin:0 auto 48px;
}

.servico-card{
  text-align:center;
  font-weight:900;
}

.icone{
  width:auto;
  height:auto;
  margin:0 auto 18px;
  display:grid;
  place-items:center;
}

.icone img{
  width:96px;
  height:auto;
  display:block;
}

.servico-card h3{
  font-size:18px;
  text-decoration:underline;
}

.btn-principal{
  display:inline-block;
  background:var(--verde);
  color:#fff;
  border-radius:999px;
  padding:17px 40px;
  font-weight:900;
  text-decoration:none;
  transition:.2s;
}

.btn-principal:hover{
  background:var(--verde2);
  transform:translateY(-1px);
}

.passos{
  display:grid;
  gap:72px;
}

.passo{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

.passo.invertido .passo-texto{
  order:2;
}

.passo-texto span{
  color:var(--roxo);
  font-size:18px;
  font-weight:700;
}

.passo-texto h3{
  font-size:43px;
  line-height:1.08;
  letter-spacing:-1.4px;
  margin:24px 0 24px;
}

.passo-texto p{
  color:#666;
  font-size:20px;
  line-height:1.45;
  max-width:535px;
}

.mock{
  min-height:380px;
  display:grid;
  place-items:center;
  position:relative;
}

.passo-img{
  width:100%;
  max-width:320px;
  border-radius:30px;
  box-shadow:var(--sombra);
  object-fit:cover;
}

.circulo{
  position:absolute;
  width:395px;
  height:395px;
  background:var(--lilas);
  border-radius:50%;
}

.campo-fake{
  height:55px;
  border:1px solid #eee;
  border-radius:10px;
  display:grid;
  place-items:center;
  color:#b9b9b9;
  font-weight:900;
  font-size:20px;
  margin:18px 0;
}

.opcao{
  border:1px solid #e5e5e5;
  padding:12px;
  border-radius:10px;
  margin:9px 0;
  font-size:14px;
  font-weight:850;
}

.bandeiras{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:25px;
}

.bandeiras b{
  border:1px solid #e1e6ee;
  border-radius:9px;
  padding:13px 16px;
  background:#fff;
}

.duvidas{
  background:#fbfbfb;
}

.duvidas-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:65px;
  align-items:start;
}

.duvidas h2{
  margin:0 0 16px;
}

.duvidas p{
  color:#666;
  font-size:18px;
  line-height:1.5;
}

.faq details{
  background:#fff;
  border:1px solid var(--borda);
  border-radius:16px;
  padding:22px;
  margin-bottom:14px;
}

.faq summary{
  cursor:pointer;
  font-weight:900;
  font-size:18px;
}

.faq p{
  margin-top:13px;
  font-size:16px;
}

.cta-final{
  padding:75px 0;
}

.cta-box{
  background:linear-gradient(135deg,var(--verde),var(--verde2));
  color:#fff;
  border-radius:30px;
  padding:55px;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:30px;
  align-items:center;
}

.cta-box h2{
  font-size:43px;
  line-height:1.08;
  letter-spacing:-1.5px;
  margin-bottom:12px;
}

.cta-box p{
  font-size:18px;
  opacity:.95;
}

.cta-box a{
  background:#fff;
  color:var(--verde2);
  border-radius:999px;
  padding:18px 34px;
  text-align:center;
  text-decoration:none;
  font-weight:900;
}

footer{
  padding:35px 0;
  color:#777;
  text-align:center;
  font-size:14px;
}

.whatsapp{
  position:fixed;
  right:25px;
  bottom:25px;
  width:70px;
  height:70px;
  background:#25d366;
  border-radius:50%;
  display:grid;
  place-items:center;
  text-decoration:none;
  box-shadow:0 12px 30px rgba(0,0,0,.22);
  z-index:90;
  transition:.2s;
}

.whatsapp:hover{
  transform:translateY(-2px);
}

.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.whatsapp img{
  width:100%;
  height:auto;
  display:block;
  background:transparent !important;
  padding:0;
}

.whatsapp img{
  width:100%;
  height:auto;
  display:block;
}

@media(max-width:930px){
  .menu-mobile{
    display:block;
  }

  .hero-banner{
    padding:18px;
  }

  .hero-banner-img{
    max-width:400px;
  }

  .menu{
    position:absolute;
    top:82px;
    left:0;
    width:100%;
    background:var(--verde);
    padding:22px;
    display:none;
    flex-direction:column;
    align-items:flex-start;
  }

  .menu.ativo{
    display:flex;
  }

  .hero-grid,
  .passo,
  .duvidas-grid,
  .cta-box{
    grid-template-columns:1fr;
  }

  .passo.invertido .passo-texto{
    order:0;
  }

  .pre-titulo,
  h1{
    font-size:43px;
  }

  .servicos h2,
  .como h2,
  .duvidas h2{
    font-size:38px;
  }

  .grid-servicos{
    grid-template-columns:repeat(2,1fr);
  }

  .hero-banner{
    min-height:460px;
  }
}

@media(max-width:540px){
  .logo-img{
    font-size:30px;
  }

  .hero{
    padding-top:45px;
  }

  .pre-titulo,
  h1{
    font-size:37px;
    letter-spacing:-1.4px;
  }

  .descricao,
  .sub,
  .passo-texto p{
    font-size:17px;
  }

  .hero-banner{
    padding:30px;
  }

  .hero-banner h2{
    font-size:38px;
  }

  .phone-hero{
    right:12px;
    width:190px;
    height:360px;
  }

  .grid-servicos{
    grid-template-columns:1fr;
  }

  .passo-texto h3{
    font-size:34px;
  }

  .circulo{
    width:310px;
    height:310px;
  }

  .phone{
    width:220px;
    height:430px;
  }

  .cta-box{
    padding:34px;
  }

  .cta-box h2{
    font-size:33px;
  }
}
