:root{
  --green:#2d7968;
  --green-dark:#246456;
  --green-soft:#e7f3ef;
  --navy:#162336;
  --navy-2:#0d1827;
  --navy-3:#223956;
  --mint:#d8ede8;
  --paper:#f6f8fa;
  --white:#ffffff;
  --text:#203143;
  --text-soft:#5b6979;
  --line:#d7e1e8;
  --max:1180px;
  --radius:28px;
  --shadow:0 24px 60px rgba(22,35,54,.12);
  --header-height:82px;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--text);
  background:var(--paper);
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
}

a{color:inherit}

img{
  max-width:100%;
  display:block;
}

.container{
  width:min(calc(100% - 36px),var(--max));
  margin-inline:auto;
}

.skip-link{
  position:absolute;
  left:-999px;
}

.skip-link:focus{
  left:18px;
  top:18px;
  z-index:9999;
  background:#fff;
  padding:10px 14px;
  border-radius:10px;
}


/* HEADER */

.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(246,248,250,.92);
  backdrop-filter:blur(16px);
  box-shadow:0 8px 24px rgba(22,35,54,.05);
}

.header-inner{
  height:var(--header-height);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}

.brand{
  width:172px;
  height:52px;
  overflow:hidden;
  display:flex;
  align-items:center;
}

.brand img,
.footer-brand img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
}

.nav{
  display:flex;
  align-items:center;
  gap:26px;
  font-weight:700;
  font-size:.95rem;
}

.nav>a{
  text-decoration:none;
}

.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  border:0;
  border-radius:999px;
  background:var(--green);
  color:#fff;
  font-weight:800;
  padding:15px 24px;
  cursor:pointer;
  transition:.2s transform,.2s background,.2s box-shadow;
  box-shadow:0 10px 25px rgba(45,121,104,.18);
}

.button:hover{
  transform:translateY(-2px);
  background:var(--green-dark);
}

.button-small{
  padding:11px 18px;
}

.button-outline{
  background:transparent;
  color:var(--navy);
  border:1.5px solid rgba(22,35,54,.22);
  box-shadow:none;
}

.button-outline:hover{
  background:#fff;
  color:var(--navy);
  border-color:rgba(22,35,54,.34);
}

.menu-toggle{
  display:none;
  border:0;
  background:transparent;
  padding:8px;
}

.menu-toggle span{
  display:block;
  width:25px;
  height:3px;
  background:var(--navy);
  border-radius:5px;
  margin:4px 0;
}


/* HERO */

.hero{
  position:relative;
  overflow:hidden;
  min-height:calc(100svh - var(--header-height));
  display:flex;
  align-items:center;
  padding:34px 0 38px;

  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(45,121,104,.12),
      transparent 32%
    ),
    radial-gradient(
      circle at 92% 8%,
      rgba(22,35,54,.1),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      #f8fbfc 0%,
      #f4f7f9 100%
    );
}

.hero:after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:72px;
  background:
    linear-gradient(
      180deg,
      rgba(246,248,250,0),
      rgba(246,248,250,1)
    );
  pointer-events:none;
}

.hero-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:
    minmax(0,1.04fr)
    minmax(390px,.96fr);
  gap:48px;
  align-items:center;
}

.hero-copy{
  min-width:0;
}

.hero h1{
  font-size:clamp(3.25rem,4.45vw,4.85rem);
  line-height:.94;
  letter-spacing:-.06em;
  margin:0 0 18px;
  font-weight:900;
  max-width:740px;
  color:var(--navy);
}

.hero-lead{
  font-size:1.08rem;
  max-width:640px;
  color:var(--text-soft);
  margin:0;
  line-height:1.5;
}

.hero-actions{
  display:flex;
  align-items:center;
  gap:14px;
  margin:26px 0 13px;
  flex-wrap:wrap;
}

.hero-actions .button{
  padding:14px 23px;
  font-size:.98rem;
}

.hero-note{
  font-size:.92rem;
  font-weight:800;
  color:var(--green);
  margin:0;
}

.hero-visual{
  position:relative;
  min-height:0;
  height:min(64vh,540px);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px 16px 18px 30px;
}

.hero-accent{
  position:absolute;
  border-radius:38px;
  pointer-events:none;
}

.hero-accent-green{
  width:72%;
  height:72%;
  left:0;
  top:2px;
  background:var(--green);
  transform:rotate(-4deg);
}

.hero-accent-navy{
  width:48%;
  height:48%;
  right:0;
  bottom:4px;
  background:var(--navy);
  transform:rotate(5deg);
}

.hero-photo-card{
  position:relative;
  z-index:2;
  height:100%;
  width:auto;
  max-width:450px;
  max-height:540px;
  border-radius:38px;
  overflow:hidden;
  box-shadow:var(--shadow);
  background:linear-gradient(145deg,var(--green),var(--navy));
  border:9px solid #fff;
}

.hero-photo-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  aspect-ratio:4/5;
}


/* SEÇÕES */

.section{
  padding:42px 0;
}

.section-white{
  background:#fff;
}

.section-soft{
  background:
    linear-gradient(
      180deg,
      #f7fbfa 0%,
      #eef6f4 100%
    );
}

.section-brand{
  background:
    linear-gradient(
      135deg,
      var(--navy-2) 0%,
      var(--navy) 62%,
      var(--navy-3) 100%
    );
  color:#fff;
}

.section-faq{
  background:#eef3f6;
}

.section-contact{
  background:
    linear-gradient(
      135deg,
      var(--navy) 0%,
      #1d3654 100%
    );
  color:#fff;
}

.section-heading{
  max-width:800px;
  margin-bottom:32px;
}

.section-heading h2,
.service-copy h2,
.contact-copy h2{
  font-size:clamp(2.45rem,3.55vw,3.9rem);
  line-height:.98;
  letter-spacing:-.05em;
  margin:0 0 14px;
}

.section-heading p,
.service-copy p,
.contact-copy>p{
  font-size:1.02rem;
  line-height:1.5;
  color:var(--text-soft);
  margin:0;
}

.section-heading-light p{
  color:#cad8e6;
}


/* TOPICS */

.topic-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.topic-card{
  border-radius:24px;
  padding:24px 25px;
  background:
    linear-gradient(
      180deg,
      #fff 0%,
      #f6fbf9 100%
    );
  min-height:180px;
  border:1px solid var(--line);
  box-shadow:
    0 14px 35px rgba(22,35,54,.05);
}

.topic-card:nth-child(2){
  background:
    linear-gradient(
      180deg,
      #fff 0%,
      #f7f9fc 100%
    );
}

.topic-card:nth-child(3){
  background:
    linear-gradient(
      180deg,
      #fff 0%,
      #eef7f4 100%
    );
}

.topic-card span{
  font-weight:900;
  color:var(--green);
  font-size:.9rem;
}

.topic-card h3{
  font-size:1.23rem;
  line-height:1.08;
  margin:27px 0 9px;
  color:var(--navy);
}

.topic-card p{
  margin:0;
  color:var(--text-soft);
  font-size:.94rem;
  line-height:1.43;
}

.statement{
  margin-top:18px;
  border-radius:24px;
  background:
    linear-gradient(
      135deg,
      var(--green) 0%,
      #3b9480 100%
    );
  color:#fff;
  padding:23px 30px;
  box-shadow:
    0 18px 40px rgba(45,121,104,.18);
}

.statement p{
  margin:0;
  font-size:clamp(1.5rem,2.25vw,2.3rem);
  font-weight:900;
  line-height:1.05;
  letter-spacing:-.045em;
}


/* COMO FUNCIONA */

.brand-layout{
  display:grid;
  grid-template-columns:1.14fr .86fr;
  gap:30px;
  align-items:center;
}

.steps-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:15px;
}

.step-card{
  background:#fff;
  color:var(--navy);
  border-radius:24px;
  padding:25px;
  min-height:215px;
  box-shadow:
    0 18px 40px rgba(0,0,0,.08);
}

.step-card>strong{
  font-size:2.65rem;
  line-height:1;
  color:var(--green);
}

.step-card h3{
  font-size:1.2rem;
  line-height:1.08;
  margin:26px 0 8px;
}

.step-card p{
  margin:0;
  color:var(--text-soft);
  font-size:.92rem;
  line-height:1.43;
}

.position-card{
  position:relative;
}

.position-card-inner{
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.1),
      rgba(255,255,255,.06)
    );
  border:
    1px solid rgba(255,255,255,.18);
  border-radius:28px;
  padding:30px;
  min-height:100%;
  box-shadow:
    0 16px 40px rgba(0,0,0,.12);
}

.position-symbol{
  width:56px;
  height:56px;
  object-fit:contain;
  margin-bottom:28px;
}

.position-quote{
  margin:0 0 20px;
  font-size:clamp(1.9rem,2.7vw,2.9rem);
  line-height:.98;
  letter-spacing:-.055em;
  font-weight:850;
}

.position-quote em{
  font-family:"Noto Serif",Georgia,serif;
  font-style:italic;
  font-weight:500;
  color:#8de1cc;
}

.position-signature{
  margin:0;
  color:#d8e4ef;
  font-weight:800;
  font-size:.95rem;
}


/* SERVIÇO */

.service-grid{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:36px;
  align-items:center;
}

.service-copy p{
  margin:0 0 14px;
  color:#416053;
  font-size:1rem;
}

.service-panel{
  display:grid;
  gap:14px;
  align-content:start;
}

.mini-card{
  background:#fff;
  border-radius:22px;
  padding:23px 24px;
  box-shadow:
    0 18px 40px rgba(22,35,54,.08);
  border:
    1px solid rgba(45,121,104,.1);
}

.mini-card strong{
  display:block;
  font-size:1.2rem;
  color:var(--navy);
  margin-bottom:7px;
}

.mini-card span{
  display:block;
  color:var(--text-soft);
  font-size:.94rem;
  line-height:1.45;
}

.mini-card-dark{
  background:var(--navy);
  border-color:transparent;
}

.mini-card-dark strong,
.mini-card-dark span{
  color:#fff;
}

.service-panel .button{
  margin-top:0;
  justify-self:start;
  padding:14px 23px;
}


/* PARA QUEM */

/* PARA QUEM */

.audience-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
}

.audience-card{
  border-radius:24px;
  padding:27px;
  min-height:170px;

  display:flex;
  flex-direction:column;
  justify-content:flex-end;

  border:0;

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

/* 1 — azul secundário */

.audience-card:nth-child(1){
  background:#8bb9f7;
}

/* 2 — mint secundário */

.audience-card:nth-child(2){
  background:#cdeee7;
}

/* 3 — taupe */

.audience-card:nth-child(3){
  background:#9a8f77;
}

/* 4 — marrom */

.audience-card:nth-child(4){
  background:#80502f;
}


/* TEXTOS */

.audience-card h3{
  font-size:1.38rem;
  line-height:1.05;
  margin:0 0 9px;
  color:var(--navy);
}

.audience-card p{
  margin:0;
  color:var(--navy);
  font-size:.94rem;
  line-height:1.43;
}


/* Card escuro */

.audience-card:nth-child(4) h3,
.audience-card:nth-child(4) p{
  color:#fff;
}


/* Taupe: mantém navy, mas aumenta levemente o peso visual */

.audience-card:nth-child(3) p{
  color:#162336;
}


/* INTERAÇÃO */

.audience-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 38px rgba(22,35,54,.12);
}

/* FAQ */

.faq-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:48px;
  align-items:center;
}

.faq-list details{
  background:#fff;
  border-radius:18px;
  padding:18px 21px;
  margin-bottom:11px;
  box-shadow:
    0 12px 28px rgba(22,35,54,.05);
}

.faq-list summary{
  position:relative;
  padding-right:44px;
  min-height:28px;
  display:flex;
  align-items:center;
  font-weight:850;
  font-size:1.03rem;
  line-height:1.3;
  cursor:pointer;
  list-style:none;
  color:var(--navy);
}

.faq-list summary::-webkit-details-marker{
  display:none;
}

.faq-list summary::marker{
  display:none;
  content:"";
}

.faq-list summary:after{
  content:"+";
  position:absolute;
  right:0;
  top:50%;
  transform:translateY(-50%);
  width:26px;
  height:26px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.35rem;
  line-height:1;
  font-weight:900;
  color:var(--green);
}

.faq-list details[open] summary:after{
  content:"−";
}

.faq-list p{
  margin:11px 0 0;
  color:var(--text-soft);
  padding-right:0;
  font-size:.92rem;
  line-height:1.45;
}


/* CONTATO */

.contact-grid{
  display:grid;
  grid-template-columns:.84fr 1.16fr;
  gap:48px;
  align-items:center;
}

.contact-copy>p{
  color:#dbe6f0;
}

.contact-points{
  display:flex;
  flex-direction:column;
  gap:9px;
  margin-top:24px;
}

.contact-points span{
  display:block;
  background:
    rgba(255,255,255,.09);
  border:
    1px solid rgba(255,255,255,.08);
  border-radius:12px;
  padding:11px 14px;
  font-weight:700;
  font-size:.92rem;
}

.lead-form{
  background:#fff;
  color:var(--navy);
  border-radius:28px;
  padding:26px 28px;
  box-shadow:
    0 22px 50px rgba(0,0,0,.12);
}

.form-row{
  margin-bottom:12px;
}

.form-row-two{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.form-row label{
  display:block;
  font-size:.86rem;
  font-weight:800;
  margin-bottom:6px;
}

.form-row input,
.form-row select{
  width:100%;
  border:
    1px solid transparent;
  background:#f1f4f6;
  border-radius:12px;
  padding:11px 13px;
  font:inherit;
  font-size:.95rem;
  color:var(--navy);
  outline:
    2px solid transparent;
}

.form-row input:focus,
.form-row select:focus{
  outline-color:var(--green);
  background:#fff;
  border-color:#cfe2dc;
}

.privacy-copy{
  font-size:.74rem;
  line-height:1.35;
  color:#6a7583;
  margin:5px 0 12px;
}

.privacy-copy a{
  font-weight:750;
}

.form-submit{
  width:100%;
  padding:14px 20px;
}

.form-status{
  min-height:19px;
  margin-top:8px;
  font-size:.9rem;
  font-weight:700;
}

.form-status.success{
  color:var(--green);
}

.form-status.error{
  color:#ad3b30;
}

.hp-field{
  position:absolute!important;
  left:-9999px!important;
  width:1px!important;
  height:1px!important;
  opacity:0!important;
}


/* FOOTER */

.site-footer{
  background:var(--navy-2);
  color:#fff;
  padding:48px 0;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.1fr .8fr .8fr;
  gap:30px;
  align-items:end;
}

.footer-brand{
  width:220px;
}

.footer-brand img{
  height:68px;
}

.footer-brand p{
  margin:8px 0 0;
  color:#c9d3df;
  font-size:.88rem;
}

.footer-meta p,
.footer-credit p{
  margin:4px 0;
  color:#cbd4df;
  font-size:.86rem;
}

.footer-meta a{
  font-size:.86rem;
  color:#fff;
}

.footer-credit{
  text-align:right;
}


/* ANIMAÇÕES */

.reveal{
  opacity:0;
  transform:translateY(18px);
  transition:.55s ease;
}

.reveal.visible{
  opacity:1;
  transform:none;
}


/* DESKTOP: UMA SEÇÃO POR DOBRA */

@media (min-width:1101px){

  main>.section{
    min-height:
      calc(100svh - var(--header-height));

    height:
      calc(100svh - var(--header-height));

    display:flex;
    align-items:center;
    overflow:hidden;
  }

  main>.section>.container{
    width:
      min(
        calc(100% - 36px),
        var(--max)
      );
  }

}


/* NOTEBOOKS MAIS BAIXOS
   Compactação apenas leve */

@media (min-width:1101px) and (max-height:760px){

  .hero{
    padding:22px 0 26px;
  }

  .hero h1{
    font-size:
      clamp(3rem,4vw,4.25rem);

    max-width:700px;
  }

  .hero-lead{
    font-size:1rem;
  }

  .hero-actions{
    margin:20px 0 10px;
  }

  .hero-visual{
    height:
      min(58vh,470px);
  }

  .hero-photo-card{
    max-width:400px;
    max-height:470px;
  }

  .section{
    padding:30px 0;
  }

  .section-heading{
    margin-bottom:24px;
  }

  .section-heading h2,
  .service-copy h2,
  .contact-copy h2{
    font-size:
      clamp(2.2rem,3vw,3.4rem);
  }

  .section-heading p,
  .service-copy p,
  .contact-copy>p{
    font-size:.96rem;
  }

  .topic-card{
    min-height:155px;
    padding:20px 22px;
  }

  .topic-card h3{
    margin-top:20px;
  }

  .statement{
    margin-top:14px;
    padding:18px 26px;
  }

  .step-card{
    min-height:185px;
    padding:21px;
  }

  .step-card h3{
    margin-top:19px;
  }

  .position-card-inner{
    padding:24px;
  }

  .position-symbol{
    margin-bottom:18px;
  }

  .audience-card{
    min-height:145px;
    padding:22px 24px;
  }

  .faq-list details{
    padding:14px 18px;
    margin-bottom:8px;
  }

  .lead-form{
    padding:20px 23px;
  }

  .form-row{
    margin-bottom:8px;
  }

  .form-row input,
  .form-row select{
    padding:9px 11px;
  }

  .contact-points{
    margin-top:18px;
  }

}


/* TABLET
   Hero continua horizontal */

@media (max-width:1100px) and (min-width:761px){

  .nav{
    gap:16px;
    font-size:.88rem;
  }

  .button-small{
    padding:10px 14px;
  }

  .hero{
    min-height:auto;
    padding:40px 0 48px;
  }

  .hero-grid{
    grid-template-columns:
      minmax(0,1.05fr)
      minmax(300px,.95fr);

    gap:28px;
  }

  .hero h1{
    font-size:
      clamp(2.7rem,5.3vw,3.9rem);
  }

  .hero-lead{
    font-size:.96rem;
  }

  .hero-visual{
    height:450px;
  }

  .hero-photo-card{
    max-width:370px;
  }

  .section{
    padding:62px 0;
  }

  .brand-layout,
  .service-grid,
  .faq-grid,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .topic-grid,
  .steps-grid{
    grid-template-columns:
      repeat(2,1fr);
  }

  .footer-grid{
    grid-template-columns:
      1fr 1fr;
  }

  .footer-credit{
    text-align:left;
  }

  .footer-brand{
    grid-column:1/-1;
  }

}


/* MOBILE */

@media (max-width:760px){

  :root{
    --header-height:72px;
  }

  .header-inner{
    height:var(--header-height);
  }

  .brand{
    width:145px;
    height:46px;
  }

  .nav{
    position:absolute;
    top:var(--header-height);
    left:0;
    right:0;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:18px;
    background:var(--paper);
    padding:20px 18px 28px;
    box-shadow:
      0 20px 30px rgba(22,35,54,.08);
  }

  .nav.open{
    display:flex;
  }

  .menu-toggle{
    display:block;
  }

  .container{
    width:
      min(
        calc(100% - 28px),
        var(--max)
      );
  }

  .hero{
    min-height:auto;
    padding:40px 0 52px;
    display:block;
  }

  .hero-grid,
  .brand-layout,
  .service-grid,
  .faq-grid,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .hero-grid{
    gap:30px;
  }

  .hero h1{
    font-size:
      clamp(2.75rem,12vw,3.35rem);

    line-height:.94;
  }

  .hero-lead{
    font-size:1rem;
  }

  .hero-actions{
    align-items:stretch;
    flex-direction:column;
  }

  .hero-actions .button{
    width:100%;
    text-align:center;
  }

  .hero-visual{
    min-height:0;
    height:auto;
    padding:18px 12px 16px 18px;
  }

  .hero-accent-green{
    width:76%;
    height:74%;
    left:0;
    top:4px;
    border-radius:26px;
  }

  .hero-accent-navy{
    width:52%;
    height:46%;
    right:0;
    bottom:4px;
    border-radius:24px;
  }

  .hero-photo-card{
    width:100%;
    height:auto;
    max-width:430px;
    max-height:none;
    border-radius:30px;
    border-width:7px;
  }

  .hero-photo-card img{
    width:100%;
    height:auto;
    aspect-ratio:4/5;
  }

  .section{
    min-height:auto;
    height:auto;
    padding:72px 0;
    display:block;
    overflow:visible;
  }

  .section-heading{
    margin-bottom:36px;
  }

  .section-heading h2,
  .service-copy h2,
  .contact-copy h2{
    font-size:2.6rem;
  }

  .topic-grid,
  .steps-grid,
  .audience-grid{
    grid-template-columns:1fr;
  }

  .topic-card{
    min-height:180px;
  }

  .statement{
    padding:24px;
  }

  .position-card-inner{
    padding:26px;
  }

  .position-quote{
    font-size:2.1rem;
  }

  .faq-grid,
  .contact-grid{
    gap:25px;
  }

  .faq-list summary{
    padding-right:42px;
    font-size:1rem;
  }

  .lead-form{
    padding:22px;
  }

  .form-row-two{
    grid-template-columns:1fr;
  }

  .footer-grid{
    grid-template-columns:1fr;
  }

  .footer-brand{
    grid-column:auto;
  }

  .footer-credit{
    text-align:left;
  }

}


/* ACESSIBILIDADE */

@media (prefers-reduced-motion:reduce){

  *{
    scroll-behavior:auto!important;
  }

  .reveal{
    opacity:1;
    transform:none;
    transition:none;
  }

}