@font-face {
  font-family: "Bodoni Moda";
  src: url("../fonts/BodoniModa-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Bodoni Moda";
  src: url("../fonts/BodoniModa-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

:root {
  --bg: #f5f7f6;
  --surface: #ffffff;
  --ink: #1f2a2a;
  --muted: #5f6d6d;
  --line: #d8dfdc;
  --accent: #2F3E55;
  --max: 960px;
  --radius: 8px;
  --nav-height: 56px;
  --control-height: calc(1em + 1.4em + 2px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html {
  background: var(--bg);
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: transparent;
  line-height: 1.8;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 90% 10%, #ddece8 0, transparent 35%),
    radial-gradient(circle at 5% 80%, #e8efec 0, transparent 35%),
    var(--bg);
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: none;
}

.card:first-of-type {
  margin-top: 16px;
}

.eyebrow {
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

h1, h2, h3 { line-height: 1.2; margin: 0 0 24px; }
h1, h2 { font-family: "Bodoni Moda", Georgia, "Times New Roman", serif; }
h3 { font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, sans-serif; }
h1, h2 {
  font-size: clamp(1.7rem, 2.7vw, 2.3rem);
  font-weight: 400;
}
h2 { margin-top: 48px; }
h3 { font-size: 1.05rem; margin-top: 36px; }
p { margin: 0 0 24px; }

a,
a:visited {
  color: rgba(31, 42, 42, 0.8);
}

a:hover,
a:focus-visible {
  color: var(--ink);
}

nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(245, 247, 246, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(4px);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-right {
  margin-left: auto;
}

.nav-inner a,
.nav-mobile a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-group {
  position: relative;
}

.nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-parent::after {
  content: "▾";
  font-size: 0.75em;
  line-height: 1;
}

.nav-group-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  z-index: 30;
}

.nav-group:hover .nav-group-menu,
.nav-group:focus-within .nav-group-menu,
.nav-group.is-open .nav-group-menu {
  display: block;
}

.nav-group-menu a {
  display: block;
  padding: 4px 0;
  font-weight: 500;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--accent);
  padding: 6px 4px;
  cursor: pointer;
}

.nav-toggle-icon {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 22px;
}

.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  color: var(--ink);
}

.nav-toggle:focus-visible {
  outline: 1px solid rgba(47, 62, 85, 0.4);
  outline-offset: 2px;
}

.nav-mobile {
  display: none;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 48px 12px;
}

.nav-mobile a {
  display: block;
  padding: 6px 0;
}

.nav-mobile .nav-mobile-sub {
  padding-left: 14px;
  font-weight: 500;
}

@media (max-width: 980px) {
  .nav-left,
  .nav-right {
    display: none;
  }

  .nav-toggle {
    display: inline-block;
    margin-left: auto;
  }

  .site-nav.is-open .nav-mobile {
    display: block;
  }

  .nav-parent::after,
  .nav-group-menu {
    display: none;
  }
}

.grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  margin: 14px 0;
}

.fact {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fcfdfc;
}

.fact b { display: block; margin-bottom: 4px; }

ul {
  margin: 0;
  padding-left: 18px;
}

section { margin-top: 36px; }

.card-base > :last-child,
.card-more > :last-child {
  margin-bottom: 0;
}

.card-base {
  padding-bottom: 0.7rem;
}

.card-sticky {
  background: var(--surface);
}

.card-scroll-zone {
  position: relative;
}

.card.is-expanded .card-sticky {
  position: sticky;
  top: var(--nav-height);
  z-index: 7;
  margin: 0;
  padding: 24px 0 0;
}

.card-more {
  margin-top: 28px;
  padding-top: 2px;
  padding-left: 28px;
  border-left: 2px solid var(--line);
}

.card-tail {
  margin-top: 28px;
  text-align: center;
}

.card-cta-slot {
  margin: 0 0 20px;
}

.card-toggle {
  display: block;
  margin: 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-decoration: none;
  transition: color 160ms ease;
}

.card-toggle:hover,
.card-toggle:focus-visible {
  color: var(--accent);
}

.card-toggle:focus-visible {
  outline: none;
}

.cta-button {
  display: inline-block;
  padding: 0.7em 1.4em;
  line-height: 1;
  min-height: var(--control-height);
  border: 1px solid var(--accent);
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.cta-button,
.cta-button:visited,
.cta-button:hover,
.cta-button:focus-visible {
  color: #fff;
}

.qa-item {
  margin-bottom: 20px;
}

.qa-item b {
  display: block;
  margin-bottom: 4px;
}

.contact-form {
  margin-top: 20px;
  margin-bottom: 36px;
}

.contact-form label {
  display: block;
  margin: 20px 0 12px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.7em 1em;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  line-height: 1;
  color: var(--ink);
  background: #fff;
}

.contact-form input {
  min-height: var(--control-height);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(47, 62, 85, 0.28);
}

.contact-form-actions {
  margin-top: 24px;
}

.contact-form-actions .security-question-label {
  display: block;
  margin: 0 0 12px;
  font-weight: 600;
}

.contact-form-actions .security-question-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
}

.contact-form-actions .security-question-row .captcha-field {
  grid-column: 1 / span 2;
}

.contact-form-actions .security-question-row .send-cell {
  grid-column: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-form-actions .send-cell .cta-button {
  margin: 0;
  white-space: nowrap;
}

@media (max-width: 700px) {
  .contact-form-actions .security-question-row {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .contact-form-actions .security-question-row .captcha-field,
  .contact-form-actions .security-question-row .send-cell {
    grid-column: 1;
  }

  .contact-form-actions .security-question-row .send-cell {
    justify-content: stretch;
  }

  .contact-form-actions .security-question-row .send-cell .cta-button {
    width: 100%;
  }
}

.faq details {
  margin: 0 0 24px;
  padding: 0;
  border: 0;
  background: transparent;
}

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

.muted { color: var(--muted); }

.social-media-block h2 {
  margin-bottom: 24px;
}

.social-media-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

@media (max-width: 700px) {
  .social-media-row {
    grid-template-columns: 1fr;
  }
}

.social-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.social-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
}

.social-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}

.social-logo.whatsapp-logo {
  height: 60px;
}

.social-text-link {
  display: block;
  margin-top: 12px;
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

footer {
  margin: 52px 0 16px;
  font-size: 0.92rem;
  color: var(--muted);
}

.footer-row {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.footer-counter {
  margin-left: auto;
  color: transparent;
  -webkit-text-fill-color: transparent;
  user-select: text;
  white-space: nowrap;
}

.footer-counter::selection {
  color: var(--ink);
  -webkit-text-fill-color: var(--ink);
  background: rgba(47, 62, 85, 0.24);
}

@media (max-width: 700px) {
  .footer-row {
    display: block;
  }

  .footer-counter {
    display: inline-block;
    margin-left: 0;
    margin-top: 8px;
  }
}

.include-error {
  color: #8a1f11;
}

@media (max-width: 700px) {
  h1,
  h2,
  .eyebrow {
    text-align: center;
  }

  .wrap {
    padding: 1ch;
  }

  .nav-inner,
  .nav-mobile {
    padding-left: 1ch;
    padding-right: 1ch;
  }

  .card {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 1ch;
  }

  .card:first-of-type {
    margin-top: 0;
  }

  .card + .card {
    margin-top: 0;
    padding-top: 2.2rem;
  }

  .card + .card::before {
    content: "";
    display: block;
    width: 70%;
    margin: 0 auto 1.2rem;
    height: 3px;
    border-top: 0;
    background: #2f3e55;
    border-radius: 3px;
  }

  .card-scroll-zone,
  .card-sticky {
    position: static;
  }

  .card.is-expanded .card-sticky {
    position: static;
    top: auto;
    z-index: auto;
    padding: 0;
  }

  .card-more {
    margin-top: 1.2em;
    padding-top: 0;
    padding-left: 0;
    border-left: 0;
  }

  .card-tail {
    margin-top: 1.2em;
    text-align: center;
  }

  .card-cta-slot {
    text-align: center;
  }

  .card a.cta-button {
    display: table;
    margin-left: auto;
    margin-right: auto;
  }
}
