/* CSS reset (lightweight) */
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth;scroll-padding-top:var(--header-height,72px)}
html,body{overflow-x:hidden}
body{margin:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Helvetica,Arial,sans-serif;line-height:1.6;color:#0f222b;background:#ffffff}
img{max-width:100%;display:block}
a{color:inherit}
:root{
  --brand:#0b5d6b;
  --brand-600:#0e7588;
  --brand-700:#095160;
  --accent:#1fa39a;
  --bg:#ffffff;
  --ink:#0f222b;
  --muted:#5c6b74;
  --border:#e6eef0;
  --ok:#0a7c48;
  --warn:#b25d00;
  --shadow:0 10px 30px rgba(11,93,107,.2);
  --radius:16px;
  --maxw:1120px;
  --hero-img: url('hero.png');
  --hero-blur: 3px;
  --hero-scale: 1.18;
  --header-height: 72px;
}
.sr-only{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}
.container{max-width:var(--maxw);margin-inline:auto;padding:clamp(16px,2vw,24px)}
.stack{display:grid;gap:clamp(16px,2vw,24px)}

header{position:sticky;top:0;background:#ffffffcc;backdrop-filter:saturate(160%) blur(8px);border-bottom:1px solid var(--border);z-index:10}
.nav{display:flex;align-items:center;justify-content:space-between}
.logo{display:flex;gap:10px;align-items:center;text-decoration:none}
.logo-badge{background:transparent;border-radius:0;display:flex;align-items:center;justify-content:center;width:auto;height:auto;overflow:visible}
.logo-badge img{height:36px;width:auto;display:block;aspect-ratio:auto}
.logo-title{font-weight:700;letter-spacing:.2px}
nav ul{display:flex;gap:16px;list-style:none;margin:0;padding:0}
header nav a{padding:10px 12px;border-radius:10px;text-decoration:none;color:#0f222b}
header nav a:hover{background:#f3f8f9}

.btn{display:inline-flex;align-items:center;gap:10px;padding:14px 18px;border-radius:14px;border:1px solid transparent;font-weight:600;text-decoration:none;cursor:pointer}
.btn.primary{background:var(--brand);color:#fff;box-shadow:0 8px 24px rgba(11,93,107,.25)}
.btn.primary:hover{background:var(--brand-600)}

.hero{position:relative;color:#fff;overflow:hidden;min-height:clamp(460px,70vh,680px);isolation:isolate}
.hero::before{content:"";position:absolute;inset:0;background:var(--hero-img) center 35%/cover no-repeat;filter:blur(var(--hero-blur)) saturate(110%);transform:scale(var(--hero-scale));z-index:0}
.hero::after{content:"";position:absolute;inset:0;pointer-events:none;z-index:1;background:
  linear-gradient(to right,
    rgba(6,47,55,0.82) 0%,
    rgba(6,47,55,0.66) 36%,
    rgba(6,47,55,0.34) 62%,
    rgba(6,47,55,0.08) 84%)}
.hero .inner{position:relative;z-index:2;display:grid;grid-template-columns:1.2fr .8fr;align-items:center;gap:28px}
.hero .card{background:rgba(6,47,55,0.56);border:1px solid rgba(255,255,255,0.18);border-radius:var(--radius);backdrop-filter:blur(8px);padding:22px;box-shadow:var(--shadow);color:#ffffff}
.hero .card h2,.hero .card h3{color:#ffffff}
.hero .card .icon{opacity:.95}
.hero h1{font-size:clamp(28px,4vw,44px);line-height:1.15;margin:6px 0 10px}
.hero h1, .hero p.lead{text-shadow:0 4px 18px rgba(0,0,0,.42)}
.hero p.lead{font-size:clamp(16px,2.2vw,20px);opacity:.97}
.hero .inner > div{max-width:680px}
.badges{display:flex;flex-wrap:wrap;gap:8px;margin-top:8px}
.badge{font-size:12px;padding:6px 10px;border-radius:999px;background:#0aaea740;color:#e8fffd;border:1px solid #6be3db40}

/* Messaging icon inside buttons (WhatsApp) */
.btn .icon-whatsapp{width:18px;height:18px;display:inline-block;vertical-align:-2px}
.btn .icon-whatsapp svg{display:block;width:18px;height:18px;fill:#fff}

/* Small helper text */
.hint{color:var(--muted);font-size:13px;margin-top:6px}
.hero .hint{background:rgba(6,47,55,0.75);color:#e8fffd;padding:8px 12px;border-radius:8px;border:1px solid rgba(255,255,255,0.15);backdrop-filter:blur(4px);display:inline-block;margin-top:12px}

/* Ensure in-page anchors account for sticky header */
[id]{scroll-margin-top:var(--header-height,72px)}

section{padding:clamp(36px,6vw,72px) 0;border-top:1px solid var(--border)}
h2{font-size:clamp(22px,3.2vw,32px);margin:0 0 6px}
.sub{color:var(--muted);margin:0 0 18px}

.grid{display:grid;gap:18px}
.grid.cols-3{grid-template-columns:repeat(3,1fr)}
.grid.cols-2{grid-template-columns:repeat(2,1fr)}
.card{border:1px solid var(--border);border-radius:var(--radius);padding:18px;background:#fff;box-shadow:0 1px 0 rgba(0,0,0,.03)}
.icon{width:26px;height:26px}

/* Google Form embed wrapper */
.form-embed{padding:0}
.form-embed .head{padding:18px 18px 0}
.form-embed .iframe-wrap{border-top:1px solid var(--border);padding:0;margin-top:12px;border-radius:0 0 var(--radius) var(--radius);overflow:hidden;min-height:600px}
.form-embed iframe{display:block;width:100%;height:clamp(720px,78vh,1400px);border:0;background:#fff;min-height:600px}
.form-actions{display:flex;gap:12px;align-items:center;padding:12px 18px;color:var(--muted)}
.form-actions a{color:inherit;text-decoration:underline}

/* Steps (default) */
.steps{counter-reset:step}
.steps .step{display:grid;grid-template-columns:auto 1fr;gap:14px;align-items:start}
.steps .step::before{counter-increment:step;content:counter(step);display:grid;place-items:center;width:34px;height:34px;border-radius:10px;background:var(--brand);color:#fff;font-weight:700}
.steps .step .icon{display:none}
.hero .steps .step::before{background:#12bdb4}

/* Steps with large numbers */
.steps-big{display:grid;gap:16px}
.steps-big .step{display:grid;grid-template-columns:48px 1fr;align-items:start}
.steps-big .num{font-weight:800;font-size:clamp(30px,4.5vw,48px);line-height:1;color:#21c4bb;opacity:.9}
.steps-big .step .icon{width:28px;height:28px}
.steps-big .step h3{margin:0 0 4px}

.quote{font-size:16px}
.who{color:var(--muted);font-size:14px}

.faq details{border:1px solid var(--border);border-radius:14px;padding:14px;background:#fff}
.faq details[open]{outline:2px solid #cfe9ee}
.faq summary{cursor:pointer;font-weight:600}
.faq .a{color:#324148;margin-top:8px}
.faq .hint{color:var(--muted);font-size:13px;margin-top:10px}

footer{background:#062f37;color:#d7e7ea}
footer a{color:#d7e7ea;text-decoration:none}
footer a:hover{background:transparent;color:#ffffff;text-decoration:underline}
/* Remove separators between legal links (clean list) */
.legal a + a::before{content:'';margin:0}
.footgrid{display:grid;grid-template-columns:1fr auto;gap:16px;align-items:center}
.legal{display:flex;gap:14px;flex-wrap:wrap}

/* Stats band */
.stats-band{background:linear-gradient(90deg, #073e49, #0b5d6b);color:#e9f6f8}
.stats-band .container{padding-block:36px}
.stats{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.stat{display:grid;gap:4px;place-items:center}
.stat .value{font-weight:800;font-size:clamp(20px,3vw,28px)}
.stat .label{opacity:.85;font-size:14px;text-align:center}

@media (max-width: 920px){
  .hero .inner{grid-template-columns:1fr}
  .grid.cols-3{grid-template-columns:1fr 1fr}
  .stats{grid-template-columns:1fr 1fr}
}
@media (max-width: 640px){
  nav ul{display:none}
  .grid.cols-3,.grid.cols-2{grid-template-columns:1fr}
  .hero .card{padding:16px}
  .stats{grid-template-columns:1fr}
  :root{ --hero-blur: 6px; --hero-scale: 1.14 }
  /* Reduce emoji icons in steps on mobile */
  .steps .step .icon{display:none}
  .steps .step::before{width:28px;height:28px;border-radius:8px}
  /* Compact header CTA on small screens */
  .btn{padding:12px 14px;border-radius:12px}
  .btn .icon-whatsapp{width:16px;height:16px}
  /* Slightly stronger overlay on small screens for legibility */
  .hero::after{background:linear-gradient(to right, rgba(8,71,69,0.55) 0%, rgba(8,71,69,0.34) 35%, rgba(8,71,69,0.14) 60%, rgba(8,71,69,0.00) 78%)}
  /* Mobile form adjustments */
  .form-embed iframe{height:clamp(600px,70vh,800px)}
  .form-actions{flex-direction:column;align-items:stretch;gap:8px}
}

/* Larger logo on wider screens to balance header */
@media (min-width: 920px){
  .logo-badge img{height:60px}
}

/* Desktop: show steps in three columns */
@media (min-width: 1024px){
  .steps-big{grid-template-columns:repeat(3,1fr)}
  .steps-big .step{height:100%}
}
