:root {
  --ink: #102033;
  --ink-soft: #3a4a5c;
  --navy: #022151;
  --navy-2: #011536;
  --accent: #d56a24;
  --accent-2: #b45312;
  --sand: #f3ebe1;
  --paper: #faf7f3;
  --white: #ffffff;
  --line: #ddd4c8;
  --ok: #1f6b4a;
  --danger: #9b1c1c;
  --shadow: 0 12px 40px rgba(16, 32, 51, 0.08);
  --radius: 16px;
  --max: 1180px;
  --header: 84px;
}

*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Source Sans 3", "Noto Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: var(--accent-2); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(250,247,243,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: var(--header);
}
.brand { display: flex; align-items: center; gap: 12px; color: inherit; text-decoration: none; flex-shrink: 0; }
.brand:hover { text-decoration: none; }
.brand-logo {
  display: block;
  height: 52px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
}
.foot-logo {
  display: block;
  height: 44px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  background: #fff;
  padding: 6px 10px;
  border-radius: 8px;
}

nav.main { display: flex; align-items: center; gap: 2px; flex-wrap: nowrap; }
nav.main a {
  color: var(--ink); font-weight: 600; font-size: .86rem;
  padding: 7px 8px; border-radius: 8px; text-decoration: none; white-space: nowrap;
}
nav.main a:hover, nav.main a[aria-current="page"] { background: var(--sand); }
.nav-cta {
  display: flex; gap: 8px; align-items: center; flex-shrink: 0;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; cursor: pointer; font-weight: 700; font-family: inherit;
  border-radius: 10px; padding: 11px 16px; text-decoration: none;
  font-size: .95rem; line-height: 1;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-2); color: #fff; }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-2); color: #fff; }
.btn-ghost {
  background: transparent; color: var(--ink); border: 1px solid var(--line);
  white-space: nowrap; padding: 10px 12px; font-size: .88rem;
}
.btn-whatsapp { background: #128c7e; color: #fff; }
.menu-toggle {
  display: none; border: 1px solid var(--line); background: #fff;
  width: 44px; height: 44px; border-radius: 10px;
}

/* Hero */
.hero {
  background:
    radial-gradient(900px 280px at 10% -10%, rgba(213,106,36,.18), transparent 50%),
    linear-gradient(180deg, #fff 0%, var(--paper) 100%);
  padding: 56px 0 36px;
  border-bottom: 1px solid var(--line);
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; }
.kicker {
  display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--accent-2); margin-bottom: 10px;
}
h1, h2, h3 { font-family: "Source Serif 4", "Noto Serif", Georgia, serif; letter-spacing: -0.02em; line-height: 1.18; }
h1 { font-size: clamp(2rem, 4.2vw, 3.15rem); margin: 0 0 16px; }
h2 { font-size: clamp(1.55rem, 2.6vw, 2.1rem); margin: 0 0 12px; }
h3 { font-size: 1.2rem; margin: 0 0 8px; }
.lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 54ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 18px; }
.facts { display: flex; flex-wrap: wrap; gap: 18px; padding: 0; margin: 0; list-style: none; }
.facts li { font-size: .92rem; color: var(--ink-soft); }
.facts strong { display: block; color: var(--ink); font-size: 1rem; }

.panel {
  background: var(--navy); color: #fff; border-radius: 22px; padding: 28px;
  box-shadow: var(--shadow);
}
.panel h2, .panel h3 { color: #fff; }
.panel p, .panel li { color: #d7e0e8; }
.panel label { display: block; font-size: .85rem; font-weight: 700; margin: 12px 0 6px; color: #fff; }
.panel input, .panel select, .panel textarea {
  width: 100%; border: 0; border-radius: 10px; padding: 11px 12px;
  font: inherit; color: var(--ink);
}
.panel .btn { width: 100%; margin-top: 14px; }
.hint { font-size: .8rem; color: #b7c4cf; margin-top: 10px; }

/* Sections */
section { padding: 64px 0; }
.section-head { max-width: 62ch; margin-bottom: 28px; }
.muted { color: var(--ink-soft); }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; display: flex; flex-direction: column; gap: 10px;
  box-shadow: 0 1px 0 rgba(16,32,51,.04);
}
.card .icon {
  width: 44px; height: 44px; border-radius: 12px; background: var(--sand);
  display: grid; place-items: center; font-size: 1.25rem;
}
.card p { margin: 0; color: var(--ink-soft); flex: 1; }
.card a.more { font-weight: 700; color: var(--navy); }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.step { background: #fff; border-radius: var(--radius); padding: 22px; border: 1px solid var(--line); }
.num {
  width: 34px; height: 34px; border-radius: 50%; background: var(--navy); color: #fff;
  display: grid; place-items: center; font-weight: 800; margin-bottom: 12px;
}

.two { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
ul.check { margin: 0; padding: 0; list-style: none; }
ul.check li { position: relative; padding: 8px 0 8px 28px; border-bottom: 1px solid var(--sand); }
ul.check li::before { content: "✓"; position: absolute; left: 0; color: var(--ok); font-weight: 800; }

table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 12px; overflow: hidden; }
th, td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { background: var(--navy); color: #fff; font-weight: 650; }
.note { font-size: .9rem; color: var(--ink-soft); margin-top: 10px; }

.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 14px 16px; margin-bottom: 10px;
}
.faq summary { cursor: pointer; font-weight: 700; }
.faq p { margin: 8px 0 0; color: var(--ink-soft); }

.cta-band {
  background: var(--navy); color: #fff; border-radius: 22px; padding: 36px;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.cta-band p { color: #d7e0e8; margin: 8px 0 0; }

footer.site {
  background: var(--navy-2); color: #c9d4de; padding: 40px 0 28px;
  border-top: 4px solid var(--accent);
}
footer.site a { color: #fff; }
.foot-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 24px; }
.legal-line { margin-top: 28px; font-size: .82rem; border-top: 1px solid #27445c; padding-top: 16px; }
.placeholder { background: #fff3cd; color: #6b4e00; padding: 1px 5px; border-radius: 4px; font-weight: 700; }

.mobile-bar { display: none; }
.mobile-bar a {
  text-align: center; padding: 12px 6px 14px; color: var(--ink);
  font-size: .78rem; font-weight: 700; text-decoration: none;
}
.mobile-bar a span { display: block; font-size: 1rem; }

.page-hero { padding: 36px 0 10px; }
.crumbs { font-size: .88rem; color: var(--ink-soft); margin-bottom: 10px; }
.crumbs a { color: var(--ink-soft); }

form.contact label { display: block; font-weight: 700; margin: 12px 0 6px; }
form.contact input, form.contact select, form.contact textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 10px;
  padding: 11px 12px; font: inherit; background: #fff;
}
.consent { display: flex; gap: 10px; align-items: flex-start; margin: 14px 0; font-size: .9rem; }
.form-msg { display: none; padding: 12px 14px; border-radius: 10px; margin-top: 12px; font-weight: 650; }
.form-msg.ok { display: block; background: #e8f6ee; color: var(--ok); }
.form-msg.err { display: block; background: #fde8e8; color: var(--danger); }

.map { width: 100%; height: 320px; border: 0; border-radius: var(--radius); }

@media (max-width: 1100px) {
  .hero-grid, .cards, .steps, .two, .foot-grid, .cta-band { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr 1fr; }
  nav.main { display: none; }
  nav.main.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; left: 0; right: 0; top: var(--header);
    background: #fff; padding: 12px 20px 18px; border-bottom: 1px solid var(--line);
  }
  .menu-toggle { display: inline-grid; place-items: center; }
  .nav-cta { display: none; }
  .header-inner { position: relative; }
}
@media (max-width: 640px) {
  .cards { grid-template-columns: 1fr; }
  .wrap { width: min(var(--max), calc(100% - 28px)); }
  section { padding: 44px 0; }
  .brand-logo { height: 40px; max-width: 210px; }
}
@media (max-width: 920px) {
  body { padding-bottom: 76px; }
  .mobile-bar {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
    background: #fff; border-top: 1px solid var(--line);
  }
}
