﻿:root {
  --bg: #f7f2eb;
  --surface: rgba(255, 255, 255, 0.95);
  --surface-soft: rgba(248, 243, 236, 0.92);
  --ink: #1e2b38;
  --muted: #667687;
  --line: rgba(30, 43, 56, 0.09);
  --accent: #7c573e;
  --accent-dark: #233d56;
  --accent-soft: #efe4d8;
  --success: #25d366;
  --shadow: 0 18px 52px rgba(28, 42, 57, 0.12);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: min(1160px, calc(100% - 28px));
  --topbar-offset: 86px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(124, 87, 62, 0.10), transparent 24%),
    radial-gradient(circle at top right, rgba(35, 61, 86, 0.10), transparent 22%),
    linear-gradient(180deg, #fcfaf7 0%, #f6f1ea 45%, #f3ede5 100%);
  padding-top: var(--topbar-offset);
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.container { width: var(--container); margin: 0 auto; }
.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--accent-dark);
  background: rgba(124, 87, 62, 0.09);
  border: 1px solid rgba(124, 87, 62, 0.14);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.btn:hover,
.btn:focus-visible { transform: translateY(-1px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #233d56, #315270);
  box-shadow: 0 16px 32px rgba(35, 61, 86, 0.22);
}
.btn-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(30, 43, 56, 0.1);
}
.btn-whatsapp {
  color: #0e3b1e;
  background: linear-gradient(135deg, #5de06f, #25d366);
  box-shadow: 0 16px 32px rgba(37, 211, 102, 0.18);
}
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 120;
  background: rgba(251, 248, 244, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(30, 43, 56, 0.06);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 0;
}
.brand {
  display: grid;
  gap: 3px;
  min-width: 0;
  flex: 0 1 360px;
}
.brand strong { font-size: 0.95rem; letter-spacing: 0.01em; }
.brand span {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  max-width: 100%;
}
.top-links,
.navbar-menu {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  flex: 0 0 auto;
}
.navbar-menu .nav-pill,
.top-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  color: var(--ink);
  padding: 7px 10px;
  font-size: 0.86rem;
  line-height: 1;
  border-radius: 999px;
  border: 1px solid rgba(30, 43, 56, 0.08);
  background: rgba(255, 255, 255, 0.72);
  white-space: nowrap;
  flex: 0 0 auto;
}
.navbar-menu .nav-pill:visited,
.top-links a:visited {
  color: var(--ink);
}
.navbar-menu .nav-pill:hover,
.top-links a:hover,
.navbar-menu .nav-pill:focus-visible,
.top-links a:focus-visible {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(35, 61, 86, 0.18);
  outline: none;
}
.navbar-menu .nav-pill.is-active {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(35, 61, 86, 0.16);
  box-shadow: 0 8px 22px rgba(35, 61, 86, 0.08);
}
.top-actions,
.navbar-menu {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
}
.top-actions .btn,
.navbar-menu .btn {
  white-space: nowrap;
  min-height: 42px;
  padding: 0 14px;
  font-size: 0.86rem;
  flex: 0 0 auto;
}
main section { padding: 26px 0; }
.hero-split {
  display: grid;
  gap: 18px;
}
.hero-copy,
.hero-form,
.section-card,
.cta-band,
.compare-box,
.contact-box {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,243,236,0.9));
  border: 1px solid rgba(30, 43, 56, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}
.hero-copy {
  padding: 24px 20px;
}
.hero-copy h1 {
  margin: 16px 0 0;
  font-size: clamp(1.7rem, 3.8vw, 2.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-wrap: balance;
}
.hero-copy p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.72;
  font-size: 1rem;
}
.hero-points {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}
.hero-points li,
.benefit-list li,
.audience-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  line-height: 1.58;
}
.hero-points li::before,
.benefit-list li::before,
.audience-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--accent);
}
.hero-form,
.contact-box {
  padding: 20px;
}
.hero-form h2,
.contact-box h2,
.contact-box h3,
.section-card h2,
.section-card h3 {
  margin: 0;
  line-height: 1.12;
}
.hero-form p,
.contact-box p,
.section-card p,
.section-card li,
.compare-box p {
  color: var(--muted);
  line-height: 1.72;
}
.mini-form,
.contact-form {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}
.mini-form input,
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(30, 43, 56, 0.1);
  padding: 14px 15px;
  font: inherit;
  color: var(--ink);
  background: rgba(255,255,255,0.96);
}
.contact-form textarea { min-height: 124px; resize: vertical; }
.form-note,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}
.form-status.is-success { color: #1f6a3d; font-weight: 700; }
.form-status.is-error { color: #9f2f2f; font-weight: 700; }
.section-grid,
.cards-grid,
.contact-grid {
  display: grid;
  gap: 16px;
}
.section-card {
  padding: 22px 18px;
}
.section-card h2 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
}
.section-card h3 {
  font-size: 1.2rem;
}
.benefit-list,
.audience-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.cta-band {
  padding: 24px 20px;
  display: grid;
  gap: 14px;
  text-align: center;
}
.cta-band h3 {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2.3rem);
  line-height: 1.08;
}
.section-card h2,
.section-card h3,
.cta-band h3,
.hero-form h2,
.contact-box h2,
.contact-box h3 {
  text-wrap: balance;
}
html[lang="en"] .hero-copy h1 {
  font-size: clamp(1.55rem, 3.35vw, 2.28rem);
  line-height: 1.06;
}
html[lang="en"] .section-card h2 {
  font-size: clamp(1.55rem, 3.4vw, 2.25rem);
  line-height: 1.08;
}
html[lang="en"] .cta-band h3 {
  font-size: clamp(1.35rem, 3.5vw, 2rem);
}
html[lang="en"] .top-actions [data-lang-toggle] {
  font-size: 0.84rem;
  letter-spacing: 0.02em;
}
.cta-band p { margin: 0; }
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  background: rgba(255,255,255,0.86);
  border-radius: 18px;
  overflow: hidden;
}
.compare-table th,
.compare-table td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(30, 43, 56, 0.08);
  text-align: left;
  vertical-align: top;
}
.compare-table th {
  background: rgba(35, 61, 86, 0.08);
  color: var(--ink);
}
.savings-box {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.18);
  color: #17452a;
  font-weight: 800;
}
.sticky-bar {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 121;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  padding: 7px;
  border-radius: 18px;
  background: rgba(25, 37, 49, 0.92);
  box-shadow: 0 14px 34px rgba(11, 19, 28, 0.20);
  backdrop-filter: blur(14px);
}
.sticky-bar .btn {
  min-height: 38px;
  padding: 0 10px;
  font-size: 0.78rem;
}
footer { padding: 24px 0 96px; }
.footer-box {
  padding: 18px 18px 0;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.76rem;
  line-height: 1.56;
}
.footer-legal {
  margin: 0;
  max-width: 100%;
}

@media (max-width: 859px) {
  :root {
    --topbar-offset: 102px;
  }

  html,
  body {
    overflow-x: hidden;
  }

  .topbar-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
    align-items: start;
    padding: 8px 0 6px;
  }

  .brand {
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: nowrap;
  }

  .brand strong {
    flex: 0 0 auto;
    font-size: 0.8rem;
    line-height: 1;
  }

  .brand span {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 0.42rem;
    line-height: 1.04;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .top-actions,
  .navbar-menu {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 6px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
  }

  .top-actions::-webkit-scrollbar,
  .navbar-menu::-webkit-scrollbar {
    display: none;
  }

  .top-actions > .top-links,
  .navbar-menu {
    display: flex !important;
    flex-wrap: nowrap;
    gap: 6px;
  }

  .navbar-menu .nav-pill,
  .top-links a,
  .top-actions .btn,
  .navbar-menu .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 31px;
    width: auto;
    padding: 0 8px;
    font-size: 0.5rem;
    line-height: 1.04;
    text-align: center;
    flex: 0 0 auto;
  }

  .top-actions [data-lang-toggle],
  .navbar-menu [data-lang-toggle] {
    min-height: 31px !important;
    padding: 0 6px !important;
    font-size: 0.48rem !important;
  }

  .sticky-bar {
    left: 8px;
    right: 8px;
    bottom: 8px;
    padding: 4px;
    gap: 4px;
    border-radius: 14px;
  }

  .sticky-bar .btn {
    min-height: 30px;
    padding: 0 6px;
    font-size: 0.58rem;
  }
  .hero-copy h1 {
    font-size: clamp(1.28rem, 7vw, 1.8rem);
    line-height: 1.06;
  }

  .hero-copy p,
  .section-card p,
  .section-card li,
  .compare-box p,
  .form-note,
  .form-status {
    font-size: 0.82rem;
    line-height: 1.5;
  }

  .section-card h2 {
    font-size: clamp(1.28rem, 7vw, 1.8rem);
    line-height: 1.08;
  }

  .section-card h3,
  .cta-band h3,
  .hero-form h2,
  .contact-box h2,
  .contact-box h3 {
    font-size: 1rem;
    line-height: 1.18;
  }

  .hero-copy,
  .hero-form,
  .section-card,
  .cta-band,
  .contact-box {
    padding: 18px 16px;
  }
}
@media (min-width: 860px) {
  .top-links,
  .navbar-menu { display: inline-flex; }
  .topbar-inner { flex-wrap: nowrap; gap: 8px; }
  .brand { flex: 0 1 270px; }
  .brand span {
    font-size: 0.62rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .top-links,
  .navbar-menu { gap: 10px; }
  .navbar-menu .nav-pill,
  .top-links a {
    padding: 6px 12px;
    font-size: 0.76rem;
    text-align: center;
    justify-content: center;
  }
  .top-actions,
  .navbar-menu {
    flex-wrap: nowrap;
    gap: 10px;
  }
  .top-actions .btn,
  .navbar-menu .btn {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.76rem;
    text-align: center;
    justify-content: center;
  }
  .hero-split { grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr); align-items: start; }
  .cards-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .section-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-grid { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); }
  .contact-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .sticky-bar { left: auto; right: 18px; bottom: 18px; width: 240px; }
  footer { padding-bottom: 42px; }
}
