:root {
  --color-bg: #f4f7fb;
  --color-surface: #ffffff;
  --color-alt: #eaf1f9;
  --color-text: #17253a;
  --color-muted: #4a5f78;
  --color-primary: #0d6efd;
  --color-primary-dark: #0a58ca;
  --color-accent: #099268;
  --radius: 14px;
  --shadow: 0 10px 28px rgba(23, 37, 58, 0.08);
  --shadow-soft: 0 6px 16px rgba(23, 37, 58, 0.06);
  --max-width: 1140px;
  --font-base: "Inter", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}

a { color: var(--color-primary); }
img { display: block; max-width: 100%; height: auto; }

.container {
  width: min(var(--max-width), calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid #dbe4ef;
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--color-text);
  font-weight: 700;
}

.logo-badge {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.menu {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu a {
  text-decoration: none;
  color: var(--color-text);
  font-size: 0.95rem;
  font-weight: 600;
}

.menu a:hover,
.menu a:focus-visible { color: var(--color-primary); }

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 6px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  margin: 4px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  border: 0;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff !important;
  text-decoration: none;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease;
}

.btn:hover,
.btn:focus-visible { transform: translateY(-1px); }

.btn-sm {
  padding: 9px 14px;
  font-size: .88rem;
}

.btn-outline {
  background: transparent;
  color: var(--color-primary) !important;
  border: 1px solid var(--color-primary);
}

.hero {
  padding: 60px 0;
}

.hero-grid {
  display: grid;
  gap: 28px;
}

.eyebrow {
  margin: 0 0 10px;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e7f0ff;
  color: var(--color-primary-dark);
  font-size: .85rem;
  font-weight: 600;
}

.hero h1 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  line-height: 1.2;
}

.hero p {
  margin: 0 0 16px;
  color: var(--color-muted);
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.hero-points {
  margin: 0;
  padding-left: 20px;
  color: var(--color-muted);
}

.hero-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.section { padding: 56px 0; }
.section.alt { background: var(--color-alt); }

.section-head {
  text-align: center;
  margin-bottom: 24px;
}

.section-head h2 {
  margin: 0 0 8px;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.section-head p {
  margin: 0;
  color: var(--color-muted);
}

.grid {
  display: grid;
  gap: 16px;
}

.grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

.card {
  background: var(--color-surface);
  border: 1px solid #dfe8f2;
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.card h3 { margin: 0 0 8px; }
.card p { margin: 0; color: var(--color-muted); }

.text-link {
  display: inline-block;
  margin-top: 10px;
  font-weight: 700;
  text-decoration: none;
}

.split {
  display: grid;
  gap: 20px;
}

.feature-box {
  background: var(--color-surface);
  border: 1px solid #dfe8f2;
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.feature-box h3 { margin-top: 0; }
.feature-box ol { margin: 0; padding-left: 20px; color: var(--color-muted); }

.map-note {
  min-height: 220px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #dbe7f8, #edf4fd);
  color: var(--color-primary-dark);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq details {
  background: var(--color-surface);
  border: 1px solid #dfe8f2;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 10px;
  box-shadow: var(--shadow-soft);
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.faq p {
  margin: 8px 0 0;
  color: var(--color-muted);
}

.cta-final .cta-box {
  background: linear-gradient(145deg, #0a4eb0, #0d6efd);
  color: #fff;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-final .cta-box p { color: #e9efff; }

.site-footer {
  margin-top: 20px;
  background: #101a28;
  color: #d5deea;
}

.footer-grid {
  padding: 38px 0;
  display: grid;
  gap: 16px;
}

.footer-grid h3,
.footer-grid h4 {
  margin-top: 0;
  color: #fff;
}

.footer-grid p,
.footer-grid a {
  margin: 0 0 8px;
  color: #d5deea;
  text-decoration: none;
}

.footer-grid a:hover,
.footer-grid a:focus-visible { color: #fff; }

.footer-bottom {
  text-align: center;
  border-top: 1px solid #26344b;
  padding: 14px;
  font-size: .92rem;
}

.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: #25d366;
  color: #fff !important;
  text-decoration: none;
  border-radius: 999px;
  padding: 11px 14px;
  font-weight: 700;
  box-shadow: var(--shadow);
  z-index: 998;
}

.to-top {
  position: fixed;
  right: 16px;
  bottom: 72px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--color-primary-dark);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .25s ease;
  z-index: 998;
}

.to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.form-page, .legal-page { padding: 56px 0; }
.form-grid { display: grid; gap: 18px; }
.contact-card, .form-card, .legal-card {
  background: var(--color-surface);
  border: 1px solid #dfe8f2;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.form-group { margin-bottom: 14px; }
label { display: block; font-weight: 600; margin-bottom: 6px; }

input, textarea, select {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #cbd7e6;
  border-radius: 10px;
  font: inherit;
}

input:focus, textarea:focus, select:focus,
button:focus, a:focus-visible {
  outline: 3px solid rgba(13, 110, 253, .24);
  outline-offset: 1px;
}

.error {
  display: none;
  color: #b42318;
  font-size: .88rem;
  margin-top: 5px;
}

.error.show { display: block; }

.form-message {
  display: none;
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cde0ff;
  background: #edf4ff;
  color: #18478a;
}

.form-message.info { display: block; }

.legal-wrap { max-width: 920px; margin: 0 auto; }
.legal-card h1, .legal-card h2, .legal-card h3 { line-height: 1.3; }
.legal-card h2 { margin-top: 24px; }
.legal-card p, .legal-card li { color: var(--color-muted); }
.legal-card ul { padding-left: 20px; }

@media (min-width: 760px) {
  .hero-grid { grid-template-columns: 1.1fr .9fr; align-items: center; }
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr 1.2fr; }
}

@media (max-width: 920px) {
  .menu-toggle { display: inline-block; }
  .menu {
    position: absolute;
    top: 74px;
    left: 16px;
    right: 16px;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #dbe4ef;
    background: #fff;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .menu.open { display: flex; }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}