@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Source+Serif+4:opsz,wght@8..60,500;8..60,600&display=swap');

:root {
  --font-body: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Source Serif 4", Georgia, "Times New Roman", serif;
  --ink: #12324a;
  --ink-2: #1e4c68;
  --sky: #3a9ec8;
  --sky-soft: #eaf6fb;
  --accent: #f28a24;
  --accent-soft: #fff2e2;
  --paper: #fffdf8;
  --white: #ffffff;
  --muted: #667783;
  --line: #dce7ec;
  --success: #19754e;
  --shadow: 0 18px 60px rgba(18, 50, 74, .10);
  --radius: 24px;
  --radius-sm: 14px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { text-wrap: balance; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.skip-link { position: absolute; left: -9999px; top: 0; }
.skip-link:focus { left: 16px; top: 16px; z-index: 9999; background: var(--white); padding: 12px 16px; border-radius: 10px; }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.eyebrow { font-size: .78rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--sky); }
.kicker { color: var(--accent); font-weight: 800; }
.muted { color: var(--muted); }
.center { text-align: center; }

.topbar { background: var(--ink); color: white; font-size: .88rem; }
.topbar-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.topbar a { opacity: .92; }
.topbar a:hover { opacity: 1; }
.topbar-links { display: flex; gap: 18px; flex-wrap: wrap; }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,253,248,.94); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(220,231,236,.8); }
.nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 240px; }
.brand img { width: 52px; height: 52px; object-fit: cover; border-radius: 14px; }
.brand strong { display: block; font-size: .98rem; line-height: 1.2; }
.brand span { display: block; margin-top: 3px; color: var(--muted); font-size: .72rem; letter-spacing: .03em; }
.nav-links { display: flex; align-items: center; gap: 22px; font-weight: 700; font-size: .9rem; }
.nav-links a { position: relative; }
.nav-links a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--accent); transition: .2s ease; }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { right: 0; }
.menu-btn { display: none; border: 1px solid var(--line); background: var(--white); border-radius: 12px; width: 44px; height: 44px; color: var(--ink); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 46px; padding: 0 20px; border-radius: 999px; border: 1px solid transparent; font-weight: 800; transition: .2s ease; }
.btn-primary { background: var(--ink); color: white; box-shadow: 0 10px 28px rgba(18,50,74,.18); }
.btn-primary:hover { transform: translateY(-2px); background: #0b293f; }
.btn-accent { background: var(--accent); color: white; }
.btn-accent:hover { background: #df7514; transform: translateY(-2px); }
.btn-outline { border-color: var(--line); background: var(--white); }
.btn-outline:hover { border-color: var(--sky); background: var(--sky-soft); }

.hero { position: relative; overflow: hidden; padding: 84px 0 76px; background: radial-gradient(circle at 82% 20%, rgba(58,158,200,.14), transparent 32%), linear-gradient(180deg, #fffdf8 0%, #f8fcfd 100%); }
.hero::after { content: ""; position: absolute; width: 520px; height: 520px; border: 1px solid rgba(58,158,200,.16); border-radius: 50%; right: -180px; top: -130px; box-shadow: 0 0 0 80px rgba(58,158,200,.035), 0 0 0 160px rgba(242,138,36,.025); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 60px; }
.hero h1 { margin: 14px 0 22px; max-width: 780px; font-family: var(--font-display); font-size: clamp(3rem, 6.1vw, 6.1rem); line-height: .98; letter-spacing: -.035em; font-weight: 500; }
.hero h1 em { font-style: normal; color: var(--sky); }
.hero-lead { max-width: 650px; color: var(--muted); font-size: 1.12rem; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.hero-card { position: relative; background: rgba(255,255,255,.9); border: 1px solid var(--line); border-radius: 34px; padding: 34px; box-shadow: var(--shadow); }
.hero-card img { width: min(100%, 420px); margin-inline: auto; }
.hero-badge { position: absolute; left: -22px; bottom: 40px; background: var(--ink); color: white; padding: 14px 16px; border-radius: 16px; box-shadow: var(--shadow); font-weight: 800; font-size: .9rem; }
.hero-badge small { display: block; opacity: .72; font-weight: 600; }

.stats { margin-top: -28px; position: relative; z-index: 4; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.stat { padding: 26px 24px; text-align: center; }
.stat + .stat { border-left: 1px solid var(--line); }
.stat strong { display: block; font-size: 1.55rem; color: var(--ink); }
.stat span { color: var(--muted); font-size: .88rem; }

.section { padding: 92px 0; }
.section-sm { padding: 60px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 36px; }
.section-head h2, .page-hero h1 { font-family: var(--font-display); font-weight: 500; letter-spacing: -.025em; }
.section-head h2 { font-size: clamp(2.2rem, 4vw, 3.8rem); line-height: 1.04; margin: 8px 0 0; }
.section-head p { max-width: 560px; margin: 0; color: var(--muted); }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: 0 12px 36px rgba(18,50,74,.05); }
.card h3 { margin: 14px 0 8px; font-size: 1.18rem; }
.card p { margin: 0; color: var(--muted); }
.icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; background: var(--sky-soft); color: var(--ink); font-size: 1.4rem; }
.icon.orange { background: var(--accent-soft); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.quote-panel { background: var(--ink); color: white; border-radius: 32px; padding: 42px; min-height: 410px; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; }
.quote-panel::after { content: ""; position: absolute; width: 300px; height: 300px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; right: -110px; bottom: -120px; }
.quote-panel blockquote { position: relative; z-index: 2; margin: 0; font-family: var(--font-display); font-size: clamp(2rem, 3.7vw, 3.2rem); line-height: 1.08; }
.quote-panel small { position: relative; z-index: 2; opacity: .7; }
.check-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; }
.check-list li { position: relative; padding-left: 30px; color: var(--muted); }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 900; }

.band { background: var(--ink); color: white; }
.band .section-head p { color: rgba(255,255,255,.72); }
.band .card { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); box-shadow: none; }
.band .card p { color: rgba(255,255,255,.7); }
.band .icon { background: rgba(255,255,255,.1); color: white; }

.cta { padding: 42px; border-radius: 32px; background: linear-gradient(135deg, var(--sky-soft), #fff7ed); border: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.cta h2 { margin: 0 0 8px; font-family: var(--font-display); font-weight: 500; font-size: 2.2rem; }
.cta p { margin: 0; color: var(--muted); max-width: 680px; }

.page-hero { padding: 72px 0 50px; background: linear-gradient(180deg, #fffdf8, #f7fbfc); border-bottom: 1px solid var(--line); }
.page-hero h1 { margin: 10px 0 12px; font-size: clamp(3rem, 6vw, 5.5rem); line-height: .98; }
.page-hero p { max-width: 720px; font-size: 1.08rem; color: var(--muted); }
.breadcrumb { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: .88rem; }
.breadcrumb span { opacity: .6; }

.timeline { display: grid; gap: 0; border-left: 2px solid var(--line); margin-left: 10px; padding-left: 30px; }
.timeline-item { padding: 0 0 34px; position: relative; }
.timeline-item::before { content: ""; width: 14px; height: 14px; border-radius: 50%; background: var(--accent); border: 4px solid var(--paper); position: absolute; left: -38px; top: 6px; box-shadow: 0 0 0 1px var(--line); }
.timeline-item h3 { margin: 0 0 6px; }
.timeline-item p { margin: 0; color: var(--muted); }

.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { display: inline-flex; padding: 9px 14px; border-radius: 999px; background: var(--sky-soft); color: var(--ink); font-size: .87rem; font-weight: 800; }
.pill.orange { background: var(--accent-soft); }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 20px; background: var(--white); }
table { width: 100%; border-collapse: collapse; min-width: 640px; }
th, td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--line); }
th { background: #f6fafb; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; }
tr:last-child td { border-bottom: 0; }

.form-card { background: white; border: 1px solid var(--line); border-radius: 28px; padding: 32px; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .84rem; font-weight: 800; }
.field input, .field textarea, .field select { width: 100%; border: 1px solid #cfdce2; background: #fff; border-radius: 13px; padding: 13px 14px; color: var(--ink); outline: none; transition: .2s ease; }
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--sky); box-shadow: 0 0 0 4px rgba(58,158,200,.12); }
.form-status { min-height: 24px; margin-top: 14px; font-size: .9rem; color: var(--success); }
.contact-stack { display: grid; gap: 14px; }
.contact-item { padding: 18px 20px; border: 1px solid var(--line); border-radius: 16px; background: white; }
.contact-item strong { display: block; margin-bottom: 2px; }
.contact-item span, .contact-item a { color: var(--muted); }
.map { width: 100%; min-height: 360px; border: 0; border-radius: 24px; filter: saturate(.85); }

.gallery-grid { display: grid; grid-template-columns: repeat(12,1fr); gap: 16px; }
.gallery-tile { min-height: 220px; border-radius: 22px; padding: 24px; color: white; display: flex; flex-direction: column; justify-content: end; overflow: hidden; position: relative; background: linear-gradient(135deg, var(--ink), var(--sky)); }
.gallery-tile::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.24), transparent 34%); }
.gallery-tile > * { position: relative; z-index: 2; }
.gallery-tile h3 { margin: 0 0 4px; font-size: 1.35rem; }
.gallery-tile p { margin: 0; opacity: .78; }
.gallery-tile:nth-child(2n) { background: linear-gradient(135deg, #e06f14, #f6a349); }
.gallery-tile.wide { grid-column: span 7; }
.gallery-tile.narrow { grid-column: span 5; }
.gallery-tile.third { grid-column: span 4; }

.notice { padding: 18px 20px; border-radius: 16px; border: 1px solid #f0d6b5; background: #fff7ec; color: #7a4d1d; }

.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 60; display: inline-flex; align-items: center; gap: 9px; min-height: 48px; padding: 0 17px; border-radius: 999px; background: #25d366; color: #073b1d; box-shadow: 0 12px 30px rgba(7,59,29,.22); font-size: .88rem; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease; }
.whatsapp-float svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex: 0 0 auto; }
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(7,59,29,.28); }

.site-footer { background: #0d293d; color: white; padding: 64px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr 1fr; gap: 36px; }
.footer-brand { max-width: 370px; }
.footer-brand .brand img { background: white; }
.footer-brand p { color: rgba(255,255,255,.62); font-size: .92rem; }
.footer-col h4 { margin: 0 0 14px; }
.footer-col a { display: block; color: rgba(255,255,255,.68); margin: 8px 0; font-size: .92rem; }
.footer-col a:hover { color: white; }
.footer-bottom { margin-top: 44px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 18px; color: rgba(255,255,255,.5); font-size: .82rem; }

@media (max-width: 960px) {
  .topbar-inner { justify-content: center; }
  .topbar-links { display: none; }
  .menu-btn { display: grid; place-items: center; }
  .nav-links { display: none; position: absolute; left: 20px; right: 20px; top: 82px; background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 18px; box-shadow: var(--shadow); flex-direction: column; align-items: stretch; }
  .nav-links.open { display: flex; }
  .nav-links .btn { width: 100%; }
  .hero-grid, .split { grid-template-columns: 1fr; }
  .hero { padding-top: 58px; }
  .hero-card { max-width: 560px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .stat:nth-child(4) { border-top: 1px solid var(--line); }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .brand { min-width: auto; }
  .brand span { display: none; }
  .topbar { display: none; }
  .hero { padding: 42px 0 62px; }
  .hero h1 { font-size: clamp(2.8rem, 15vw, 4.2rem); }
  .hero-badge { position: static; margin-top: 12px; display: inline-block; }
  .stats { margin-top: -18px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat { padding: 20px 10px; }
  .section { padding: 68px 0; }
  .section-head { align-items: start; flex-direction: column; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .cta { padding: 28px; align-items: flex-start; flex-direction: column; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .gallery-tile.wide, .gallery-tile.narrow, .gallery-tile.third { grid-column: span 12; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .page-hero { padding-top: 48px; }
  .whatsapp-float { right: 14px; bottom: 14px; min-height: 44px; padding: 0 14px; }
}

.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.prose { max-width: 800px; }
.prose h2 { margin: 42px 0 10px; font-family: var(--font-display); font-size: 2rem; font-weight: 500; letter-spacing: -.02em; }
.prose h2:first-child { margin-top: 0; }

.faq-list { display: grid; gap: 12px; max-width: 900px; }
.faq-list details { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 0 20px; }
.faq-list summary { cursor: pointer; list-style: none; padding: 18px 28px 18px 0; font-weight: 700; position: relative; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; position: absolute; right: 0; top: 15px; color: var(--accent); font-size: 1.4rem; font-weight: 400; }
.faq-list details[open] summary::after { content: '−'; }
.faq-list details p { margin: -4px 0 18px; color: var(--muted); }
.prose p { color: var(--muted); }
.text-link { color: var(--ink); font-weight: 800; text-decoration: underline; text-decoration-color: rgba(58,158,200,.4); text-underline-offset: 3px; }
