
:root{
  --navy:#0a4277;
  --blue:#1477c9;
  --sky:#eaf6ff;
  --text:#123e66;
  --muted:#61788b;
  --line:#dbeaf4;
  --white:#ffffff;
  --shadow:0 20px 55px rgba(17,66,109,.13);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:Arial,Helvetica,sans-serif;color:var(--text);background:#fff;line-height:1.5}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
.wrap{width:min(1180px,92%);margin:auto}
header{height:82px;display:flex;align-items:center;background:rgba(255,255,255,.97);border-bottom:1px solid #edf4f8}
.nav{display:flex;align-items:center;justify-content:space-between;gap:22px;width:100%}
.brand{font-size:30px;font-weight:900;letter-spacing:.09em;line-height:.75;color:var(--navy)}
.brand small{display:block;font-size:9px;letter-spacing:.5em;margin-top:10px}
nav{display:flex;gap:25px;align-items:center;font-size:14px;font-weight:700}
nav a:hover{color:var(--blue)}
.btn{display:inline-flex;align-items:center;justify-content:center;padding:14px 22px;border-radius:9px;font-weight:800;border:0;cursor:pointer}
.btn.primary{background:linear-gradient(135deg,var(--navy),var(--blue));color:white}
.btn.secondary{background:white;border:1px solid var(--line);color:var(--navy)}
.btn.whatsapp{background:#14b858;color:#fff}
.hero-shell{
 min-height:calc(100vh - 82px);
 display:flex;align-items:center;
 background:
 radial-gradient(circle at 76% 15%,rgba(187,226,255,.85),transparent 28%),
 linear-gradient(135deg,#f9fdff 0%,#eef8ff 58%,#f8fcff 100%);
 position:relative;overflow:hidden;
}
.hero-shell:before{
 content:"";position:absolute;inset:auto -10% -26% 35%;height:70%;
 background:linear-gradient(180deg,rgba(44,143,212,.07),rgba(44,143,212,.01));
 transform:skewY(-7deg);border-radius:60px;
}
.hero-content{position:relative;z-index:2;padding:36px 0 42px}
.eyebrow{text-transform:uppercase;letter-spacing:.2em;font-size:12px;font-weight:900;color:var(--blue)}
h1{font-size:clamp(44px,6vw,76px);line-height:.98;letter-spacing:-.04em;margin:14px 0 18px}
.lead{font-size:19px;color:#355f80;max-width:740px;margin-bottom:26px}
.choice-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin-top:28px}
.choice{background:white;border:1px solid #eef4f8;border-radius:22px;overflow:hidden;box-shadow:var(--shadow);display:flex;flex-direction:column}
.choice img{width:100%;height:230px;object-fit:cover}
.choice .body{padding:24px;display:flex;flex-direction:column;gap:12px;flex:1}
.choice h2{font-size:28px;line-height:1.08;margin:0}
.choice p{margin:0;color:var(--muted)}
.choice .actions{margin-top:auto;display:flex;gap:10px;flex-wrap:wrap}
.micro{margin-top:24px;display:flex;gap:28px;flex-wrap:wrap;font-size:13px;font-weight:700;color:#3e6280}
.micro span:before{content:"✓";color:var(--blue);margin-right:7px}
.page-hero{padding:62px 0;background:linear-gradient(135deg,#f8fcff,#edf8ff)}
.page-hero .grid{display:grid;grid-template-columns:1.05fr .95fr;gap:40px;align-items:center}
.page-hero img{border-radius:22px;box-shadow:var(--shadow);width:100%;height:420px;object-fit:cover}
.page-hero h1{font-size:clamp(42px,5vw,66px)}
.section{padding:72px 0}
.center{text-align:center;max-width:760px;margin:0 auto 38px}
.center h2{font-size:38px;line-height:1.1;margin:10px 0}
.center p{color:var(--muted)}
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.card{padding:25px;border:1px solid var(--line);border-radius:16px;background:#fff;box-shadow:0 10px 30px rgba(17,66,109,.07)}
.card h3{margin-top:0;font-size:21px}
.card p{color:var(--muted);margin-bottom:0}
.soft{background:#f7fbfe}
.list{padding:0;list-style:none}
.list li{margin:10px 0}
.list li:before{content:"✓";color:var(--blue);font-weight:900;margin-right:9px}
.notice{background:#e7f6ff;border:1px solid #cfeafd;border-radius:14px;padding:18px 20px;font-weight:800}
.cta-band{padding:52px 0;background:linear-gradient(135deg,var(--navy),#0c6fb6);color:white}
.cta-band .row{display:flex;align-items:center;justify-content:space-between;gap:24px}
.cta-band p{color:#d8ecfb}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}
input,select,textarea{width:100%;padding:15px;border:1px solid #d8e5ee;border-radius:9px;font:inherit}
textarea{min-height:130px;resize:vertical}
.full{grid-column:1/-1}
.contact-layout{display:grid;grid-template-columns:.85fr 1.15fr;gap:40px;align-items:start}
.contact-box{padding:28px;border-radius:18px;background:#f7fbfe;border:1px solid var(--line)}
footer{padding:35px 0;background:#063a66;color:white}
.footer{display:flex;justify-content:space-between;gap:24px;align-items:center;font-size:13px}
.footer-links{display:flex;gap:18px;flex-wrap:wrap}
@media(max-width:900px){
 nav a:not(.btn){display:none}
 .choice-grid,.cards,.page-hero .grid,.contact-layout{grid-template-columns:1fr}
 .hero-shell{min-height:auto}
 .choice img{height:220px}
 .page-hero img{height:320px}
 .cta-band .row,.footer{flex-direction:column;align-items:flex-start}
}
@media(max-width:560px){
 header{height:70px}
 .hero-shell{min-height:calc(100vh - 70px)}
 .hero-content{padding:28px 0 34px}
 .choice-grid{gap:16px}
 .choice .body{padding:20px}
 .choice h2{font-size:24px}
 .form-grid{grid-template-columns:1fr}
 .form-grid>*{grid-column:1!important}
}
