:root {
  --blue-950: #082f49;
  --blue-900: #0e4f73;
  --blue-800: #155f88;
  --blue-100: #e8f2f7;
  --orange-600: #f27624;
  --orange-500: #fb8435;
  --orange-100: #fff0e6;
  --ink: #10212b;
  --muted: #5b6d78;
  --line: #dce5ea;
  --surface: #ffffff;
  --surface-soft: #f6f9fb;
  --success: #1d8f58;
  --shadow: 0 20px 55px rgba(8, 47, 73, 0.12);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
[id] { scroll-margin-top: 96px; }

.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 86px 0; }
.section-soft { background: var(--surface-soft); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 12px;
  color: var(--orange-600);
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 3px;
  border-radius: 20px;
  background: currentColor;
}
.section-title {
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -.04em;
}
.section-lead {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}
.text-link {
  color: var(--blue-800);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 1000;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--blue-950);
  color: white;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(220,229,234,.9);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand img { width: 258px; display: block; }
.nav {
  display: flex;
  align-items: center;
  gap: 25px;
}
.nav a {
  color: var(--blue-950);
  text-decoration: none;
  font-size: .95rem;
  font-weight: 700;
}
.nav a:hover { color: var(--orange-600); }
.nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--blue-900);
  color: white !important;
}
.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  color: var(--blue-950);
  font-size: 1.35rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 70px;
  background:
    radial-gradient(circle at 86% 18%, rgba(242,118,36,.17), transparent 25%),
    radial-gradient(circle at 8% 82%, rgba(21,95,136,.13), transparent 31%),
    linear-gradient(135deg, #f7fbfd, #ffffff 52%, #fff8f3);
}
.hero::after {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  right: -150px;
  bottom: -180px;
  border: 48px solid rgba(242,118,36,.07);
  border-radius: 50%;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
  align-items: center;
  gap: 64px;
}
.hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  line-height: .98;
  letter-spacing: -.065em;
}
.hero h1 span { color: var(--orange-600); }
.hero-copy {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 32px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 850;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--orange-600);
  color: white;
  box-shadow: 0 13px 26px rgba(242,118,36,.24);
}
.btn-secondary {
  border-color: var(--line);
  background: white;
  color: var(--blue-950);
}
.btn-blue {
  background: var(--blue-900);
  color: white;
}
.hero-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 22px;
  color: var(--muted);
  font-size: .92rem;
}
.hero-note strong { color: var(--blue-950); }

.hero-card {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(220,229,234,.9);
  border-radius: 30px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(21,95,136,.18);
  border-radius: 22px;
  pointer-events: none;
}
.hero-card-content { position: relative; z-index: 1; }
.hero-card .mini-logo {
  width: 280px;
  max-width: 90%;
  margin-bottom: 24px;
}
.hero-card h2 {
  margin: 0;
  color: var(--blue-950);
  font-size: 1.7rem;
  line-height: 1.15;
}
.check-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  color: var(--muted);
}
.check-list li::before {
  content: "✓";
  flex: 0 0 24px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-800);
  font-weight: 900;
}

.trust-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  padding: 24px 20px;
  text-align: center;
}
.trust-item + .trust-item { border-left: 1px solid var(--line); }
.trust-item strong {
  display: block;
  color: var(--blue-950);
  font-size: 1.05rem;
}
.trust-item span {
  color: var(--muted);
  font-size: .91rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 38px;
}
.card {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 8px 30px rgba(8,47,73,.05);
}
.card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  width: 64px;
  height: 4px;
  border-radius: 0 0 10px 10px;
  background: var(--orange-600);
}
.card-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border-radius: 16px;
  background: var(--blue-100);
  color: var(--blue-900);
  font-size: 1.45rem;
}
.card h3 {
  margin: 0;
  color: var(--blue-950);
  font-size: 1.3rem;
}
.card p {
  margin: 12px 0 0;
  color: var(--muted);
}
.card small {
  display: block;
  margin-top: 16px;
  color: var(--blue-800);
  font-weight: 750;
}

.split {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 70px;
  align-items: center;
}
.info-panel {
  padding: 38px;
  border-radius: 30px;
  background: var(--blue-950);
  color: white;
  box-shadow: var(--shadow);
}
.info-panel h3 { margin: 0; font-size: 1.8rem; line-height: 1.18; }
.info-panel p { color: rgba(255,255,255,.74); }
.steps {
  display: grid;
  gap: 15px;
  margin-top: 26px;
}
.step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
}
.step-number {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--orange-600);
  font-weight: 900;
}
.step h4 { margin: 1px 0 4px; font-size: 1.05rem; }
.step p { margin: 0; font-size: .92rem; }

.benefits {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}
.benefit {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
}
.benefit strong {
  display: block;
  color: var(--blue-950);
}
.benefit span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: .95rem;
}

.lead-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-950), var(--blue-900));
  color: white;
}
.lead-section .section-title,
.lead-section .section-lead { color: white; }
.lead-section .section-lead { opacity: .76; }
.form-shell {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 46px;
  align-items: start;
}
.contact-list {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
}
.contact-item {
  padding: 17px 18px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 16px;
  background: rgba(255,255,255,.06);
}
.contact-item span {
  display: block;
  color: rgba(255,255,255,.62);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.contact-item a, .contact-item strong {
  color: white;
  text-decoration: none;
}
.lead-form {
  padding: 30px;
  border-radius: 26px;
  background: white;
  color: var(--ink);
  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 {
  color: var(--blue-950);
  font-size: .88rem;
  font-weight: 800;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #cfdbe2;
  border-radius: 13px;
  background: white;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}
.field textarea { min-height: 96px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue-800);
  box-shadow: 0 0 0 4px rgba(21,95,136,.1);
}
.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 18px 0;
  color: var(--muted);
  font-size: .84rem;
}
.consent input { margin-top: 4px; }
.form-help {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: .8rem;
}
.form-error {
  display: none;
  margin: 12px 0 0;
  color: #b42318;
  font-size: .87rem;
  font-weight: 700;
}
.form-error.show { display: block; }

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin-top: 34px;
}
.faq {
  border: 1px solid var(--line);
  border-radius: 17px;
  background: white;
  overflow: hidden;
}
.faq summary {
  padding: 18px 21px;
  color: var(--blue-950);
  font-weight: 850;
  cursor: pointer;
}
.faq p {
  margin: 0;
  padding: 0 21px 20px;
  color: var(--muted);
}

.site-footer {
  padding: 42px 0 28px;
  background: #071f2d;
  color: white;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 38px;
}
.footer-logo {
  width: 270px;
  max-width: 100%;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.08));
}
.footer-grid h3 { margin: 0 0 12px; font-size: 1rem; }
.footer-grid p,
.footer-grid a {
  color: rgba(255,255,255,.68);
  text-decoration: none;
  font-size: .91rem;
}
.footer-grid a:hover { color: white; }
.footer-links { display: grid; gap: 8px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  margin-top: 35px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.52);
  font-size: .82rem;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 17px;
  border-radius: 999px;
  background: #20b858;
  color: white;
  text-decoration: none;
  font-weight: 850;
  box-shadow: 0 16px 34px rgba(32,184,88,.28);
}

.cookie-banner {
  position: fixed;
  inset: auto 18px 18px 18px;
  z-index: 100;
  display: none;
  max-width: 920px;
  margin: auto;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow);
}
.cookie-banner.show {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.cookie-banner p { margin: 0; color: var(--muted); font-size: .9rem; }
.cookie-actions { display: flex; gap: 9px; flex-shrink: 0; }

.legal-page {
  min-height: 70vh;
  padding: 70px 0;
}
.legal-page article {
  max-width: 860px;
  margin: auto;
}
.legal-page h1 {
  color: var(--blue-950);
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: -.04em;
}
.legal-page h2 { margin-top: 34px; color: var(--blue-950); }
.legal-page p, .legal-page li { color: var(--muted); }

.coming-soon {
  min-height: 78vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 50px 20px;
  background: linear-gradient(135deg, #f7fbfd, #fff8f3);
}
.coming-soon-card {
  max-width: 660px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow);
}
.coming-soon-card img { width: 310px; }
.coming-soon-card h1 { color: var(--blue-950); font-size: 2.5rem; line-height: 1.05; }
.coming-soon-card p { color: var(--muted); }

@media (max-width: 960px) {
  .nav {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 88px;
    display: none;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: white;
    box-shadow: var(--shadow);
  }
  .nav.open { display: grid; gap: 16px; }
  .mobile-toggle { display: inline-grid; place-items: center; }
  .hero-grid,
  .split,
  .form-shell { grid-template-columns: 1fr; }
  .hero { padding-top: 60px; }
  .hero-card { max-width: 680px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .trust-item:nth-child(4) { border-top: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 650px) {
  .container { width: min(100% - 28px, var(--max)); }
  .section { padding: 68px 0; }
  .brand img { width: 205px; }
  .header-inner { min-height: 70px; }
  .hero h1 { font-size: clamp(2.55rem, 13vw, 4.2rem); }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .hero-card { padding: 24px; }
  .cards,
  .form-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item + .trust-item { border-left: 0; border-top: 1px solid var(--line); }
  .footer-grid > :first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { width: 54px; height: 54px; padding: 0; justify-content: center; font-size: 1.25rem; }
  .cookie-banner.show { display: grid; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; }
}
