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

:root{
  --ink:#10212f;
  --muted:#566978;
  --line:rgba(16,33,47,.12);
  --paper:#f4f7f3;
  --surface:#ffffff;
  --navy:#123451;
  --teal:#0d766f;
  --green:#1f9d67;
  --gold:#e4b363;
  --shadow:0 24px 70px rgba(12,32,46,.14);
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  background:var(--paper);
  color:var(--ink);
  line-height:1.5;
  overflow-x:hidden;
}

img{
  display:block;
  max-width:100%;
}

h1,
h2,
h3,
p,
li,
dd,
span,
strong{
  overflow-wrap:break-word;
}

.hero{
  min-height:min(920px,calc(100svh - 34px));
  padding:28px clamp(20px,6vw,92px) 58px;
  color:white;
  position:relative;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  isolation:isolate;
  overflow:hidden;
  background:
    linear-gradient(90deg,rgba(7,25,37,.95) 0%,rgba(7,25,37,.82) 40%,rgba(7,25,37,.33) 74%,rgba(7,25,37,.52) 100%),
    linear-gradient(180deg,rgba(8,29,42,.18),rgba(8,29,42,.72)),
    url("hero-consultoria.png") center 42% / cover;
}

.site-nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:26px;
  width:min(1240px,100%);
  margin:0 auto;
  padding:14px;
  border:1px solid rgba(255,255,255,.2);
  border-radius:8px;
  background:rgba(7,25,37,.42);
  box-shadow:0 18px 60px rgba(0,0,0,.18);
  backdrop-filter:blur(14px);
}

.brand{
  display:grid;
  min-width:0;
  color:white;
  text-decoration:none;
}

.brand span{
  font-size:1.08rem;
  font-weight:700;
}

.brand small{
  color:rgba(255,255,255,.72);
  font-size:.73rem;
  text-transform:uppercase;
  letter-spacing:0;
}

.nav-links{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:28px;
  margin-left:auto;
}

.nav-links a{
  color:rgba(255,255,255,.86);
  text-decoration:none;
  font-size:.95rem;
  font-weight:500;
}

.nav-links a:hover{
  color:white;
}

.hero-content{
  display:grid;
  align-items:end;
  width:min(1240px,100%);
  min-height:min(620px,calc(100svh - 160px));
  margin:0 auto;
}

.hero-text{
  min-width:0;
  max-width:760px;
}

.hero-text h1{
  margin-bottom:20px;
  font-size:5.3rem;
  line-height:1.02;
  max-width:900px;
}

.eyebrow{
  margin-bottom:16px;
  color:var(--teal);
  font-size:.84rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0;
}

.hero .eyebrow,
footer .eyebrow{
  color:#8ce4c5;
}

.hero-copy{
  max-width:660px;
  margin-bottom:32px;
  color:rgba(255,255,255,.87);
  font-size:1.12rem;
}

.hero-actions{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:46px;
}

.btn{
  display:inline-block;
  max-width:100%;
  padding:15px 24px;
  border:1px solid transparent;
  border-radius:8px;
  background:var(--green);
  color:white;
  text-decoration:none;
  font-weight:600;
  text-align:center;
  box-shadow:0 18px 36px rgba(15,93,61,.24);
  transition:background .25s ease, transform .25s ease, border-color .25s ease;
}

.btn:hover{
  background:#147a51;
  transform:translateY(-3px);
}

.btn-secondary{
  background:rgba(255,255,255,.12);
  border-color:rgba(255,255,255,.32);
  box-shadow:none;
}

.btn-secondary:hover{
  background:rgba(255,255,255,.22);
}

.btn-compact{
  padding:12px 18px;
  white-space:nowrap;
}

.hero-highlights{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(min(100%,190px),1fr));
  gap:14px;
}

.hero-highlights div{
  min-height:112px;
  padding:18px;
  border:1px solid rgba(255,255,255,.2);
  border-radius:8px;
  background:rgba(7,25,37,.48);
  backdrop-filter:blur(12px);
}

.hero-highlights dt{
  margin-bottom:8px;
  color:#f5d293;
  font-size:.82rem;
  font-weight:700;
  text-transform:uppercase;
}

.hero-highlights dd{
  color:rgba(255,255,255,.9);
  font-size:.96rem;
}

main{
  overflow:hidden;
}

section{
  padding:96px clamp(20px,6vw,92px);
}

.section-title{
  text-align:center;
  max-width:760px;
  margin:0 auto 50px;
}

.section-title h2{
  margin-bottom:14px;
  color:var(--ink);
  font-size:3.15rem;
  line-height:1.12;
}

.section-title p{
  color:var(--muted);
}

.section-title .eyebrow{
  margin-bottom:14px;
}

.section-title-left{
  max-width:none;
  text-align:left;
}

.trust-strip{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:0;
  width:min(1120px,calc(100% - clamp(32px,6vw,72px)));
  margin:clamp(22px,3vw,38px) auto 0;
  padding:0;
  border:1px solid var(--line);
  border-radius:8px;
  background:var(--surface);
  box-shadow:var(--shadow);
}

.trust-strip div{
  display:grid;
  gap:7px;
  min-height:132px;
  padding:30px;
  border-right:1px solid var(--line);
}

.trust-strip div:last-child{
  border-right:0;
}

.trust-strip strong{
  color:var(--navy);
  font-size:1.08rem;
}

.trust-strip span,
.plan-card p,
.benefit-card p,
.journey-copy p,
.steps span{
  color:var(--muted);
}

.plan-types{
  display:grid;
  grid-template-columns:minmax(260px,.82fr) minmax(0,1.18fr);
  align-items:start;
  gap:clamp(30px,5vw,74px);
}

.plan-grid{
  display:grid;
  gap:18px;
  min-width:0;
}

.plan-card{
  position:relative;
  padding:32px;
  border:1px solid var(--line);
  border-radius:8px;
  background:var(--surface);
  box-shadow:0 16px 45px rgba(15,36,47,.08);
}

.featured-plan{
  color:white;
  border-color:transparent;
  background:var(--navy);
}

.featured-plan p,
.featured-plan li{
  color:rgba(255,255,255,.78);
}

.card-index{
  display:block;
  margin-bottom:14px;
  color:var(--green);
  font-size:.86rem;
  font-weight:700;
}

.featured-plan .card-index{
  color:#8ce4c5;
}

.plan-card h3,
.benefit-card h3{
  margin-bottom:12px;
  font-size:1.32rem;
}

.plan-card p{
  margin-bottom:20px;
}

.plan-card ul{
  display:grid;
  gap:10px;
  list-style:none;
}

.plan-card li{
  position:relative;
  padding-left:22px;
  color:#314958;
  font-size:.95rem;
}

.plan-card li::before{
  position:absolute;
  top:.52rem;
  left:0;
  width:9px;
  height:9px;
  border-radius:50%;
  background:var(--gold);
  content:"";
}

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(min(100%,300px),1fr));
  gap:18px;
}

.card{
  display:grid;
  align-content:space-between;
  min-width:0;
  min-height:304px;
  padding:30px;
  border:1px solid var(--line);
  border-radius:8px;
  background:var(--surface);
  box-shadow:0 14px 42px rgba(15,36,47,.08);
  transition:transform .25s ease, border-color .25s ease;
}

.card:hover{
  border-color:rgba(13,118,111,.34);
  transform:translateY(-6px);
}

.card h3{
  margin-bottom:13px;
  color:var(--navy);
  font-size:1.42rem;
}

.card p{
  margin-bottom:18px;
  color:var(--muted);
}

.card-meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:22px;
  list-style:none;
}

.card-meta li{
  padding:7px 10px;
  border:1px solid rgba(13,118,111,.16);
  border-radius:6px;
  color:var(--teal);
  background:#edf7f3;
  font-size:.78rem;
  font-weight:600;
}

.benefits{
  background:#eaf1ed;
}

.benefits-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(min(100%,220px),1fr));
  gap:18px;
}

.benefit-card{
  min-height:232px;
  padding:30px;
  border-top:4px solid var(--gold);
  border-radius:8px;
  background:var(--surface);
  box-shadow:0 14px 38px rgba(16,33,47,.08);
}

.journey{
  display:grid;
  grid-template-columns:minmax(280px,.78fr) minmax(0,1.22fr);
  align-items:center;
  gap:clamp(28px,5vw,76px);
  background:var(--surface);
}

.journey-copy h2,
footer h2{
  margin-bottom:16px;
  font-size:3rem;
  line-height:1.12;
}

.journey-copy p:not(.eyebrow){
  margin-bottom:28px;
}

.steps{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(min(100%,250px),1fr));
  gap:16px;
  list-style:none;
  counter-reset:step;
}

.steps li{
  position:relative;
  min-height:196px;
  padding:76px 28px 28px;
  border:1px solid var(--line);
  border-radius:8px;
  background:var(--paper);
}

.steps li::before{
  position:absolute;
  top:24px;
  left:28px;
  display:grid;
  place-items:center;
  width:38px;
  height:38px;
  border-radius:8px;
  color:white;
  background:var(--teal);
  counter-increment:step;
  content:"0" counter(step);
  font-size:.84rem;
  font-weight:700;
}

.steps strong,
.steps span{
  display:block;
}

.steps strong{
  margin-bottom:10px;
  color:var(--navy);
  font-size:1.13rem;
}

footer{
  padding:72px clamp(20px,6vw,92px);
  color:white;
  background:#071925;
}

.footer-content{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:32px;
  width:min(1240px,100%);
  margin:0 auto;
}

footer p:not(.eyebrow){
  max-width:650px;
  color:rgba(255,255,255,.74);
}

@media(max-width:1180px){
  .hero-text h1{
    font-size:4.4rem;
  }

  .section-title h2{
    font-size:2.75rem;
  }

  .journey-copy h2,
  footer h2{
    font-size:2.6rem;
  }
}

@media(max-width:980px){
  .hero{
    min-height:auto;
  }

  .hero-content{
    min-height:auto;
    padding-top:clamp(84px,14vw,150px);
  }

  .plan-types,
  .journey{
    grid-template-columns:1fr;
  }

  .section-title-left{
    max-width:760px;
  }
}

@media(max-width:900px){
  .site-nav{
    gap:16px;
  }

  .hero-text h1{
    font-size:3.35rem;
    line-height:1.06;
  }

  .section-title h2,
  .journey-copy h2,
  footer h2{
    font-size:2.4rem;
  }

  .nav-links{
    order:3;
    justify-content:flex-start;
    width:100%;
    gap:12px 22px;
    margin-left:0;
  }

  .trust-strip{
    grid-template-columns:1fr;
  }

  .trust-strip div{
    min-height:auto;
    border-right:0;
    border-bottom:1px solid var(--line);
  }

  .trust-strip div:last-child{
    border-bottom:0;
  }
}

@media(max-width:768px){
  .hero{
    padding-bottom:36px;
    background:
      linear-gradient(180deg,rgba(7,25,37,.54) 0%,rgba(7,25,37,.94) 56%,rgba(7,25,37,.98) 100%),
      url("hero-consultoria.png") center top / cover;
  }

  .hero-content{
    padding-top:72px;
  }

  .hero-highlights div,
  .trust-strip div,
  .benefit-card{
    min-height:auto;
  }

  section{
    padding-top:74px;
    padding-bottom:74px;
  }

  .card{
    min-height:auto;
  }

  .footer-content{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media(max-width:640px){
  .hero{
    padding:18px 16px 30px;
  }

  .site-nav{
    align-items:stretch;
    padding:12px;
  }

  .brand span{
    font-size:1rem;
  }

  .nav-links{
    display:grid;
    grid-template-columns:1fr;
    gap:8px;
  }

  .nav-links a{
    padding:4px 0;
  }

  .site-nav .btn,
  .hero-actions .btn,
  .journey-copy .btn,
  .card .btn,
  .footer-content .btn{
    width:100%;
  }

  .hero-content{
    padding-top:56px;
  }

  .hero-text h1{
    font-size:2.45rem;
    line-height:1.08;
  }

  .hero-copy{
    font-size:1rem;
  }

  .hero-actions{
    display:grid;
    margin-bottom:30px;
  }

  .hero-highlights div,
  .plan-card,
  .card,
  .benefit-card,
  .steps li{
    padding-left:22px;
    padding-right:22px;
  }

  .trust-strip{
    width:calc(100% - 32px);
  }

  .trust-strip div{
    padding:22px;
  }

  section{
    padding:60px 16px;
  }

  .section-title{
    margin-bottom:34px;
  }

  .section-title h2,
  .journey-copy h2,
  footer h2{
    font-size:2rem;
    line-height:1.16;
  }

  .steps li{
    min-height:auto;
    padding-top:72px;
  }

  footer{
    padding:56px 16px;
  }

  .footer-content{
    gap:24px;
  }
}

@media(max-width:380px){
  .hero-text h1{
    font-size:2.18rem;
  }

  .eyebrow{
    font-size:.76rem;
  }
}
