:root {
  --bg: #fffafc;
  --surface: #ffffff;
  --surface-2: #fff1f6;
  --text: #1f1b2d;
  --muted: #5f5a73;
  --primary: #c2185b;
  --primary-2: #8e24aa;
  --accent: #ff4fa3;
  --success: #0b8f63;
  --border: #edd8e2;
  --shadow: 0 10px 30px rgba(62, 24, 48, 0.09);
  --radius: 14px;
  --radius-sm: 10px;
  --max: 1160px;
  --sp-1: 0.5rem;
  --sp-2: 0.75rem;
  --sp-3: 1rem;
  --sp-4: 1.5rem;
  --sp-5: 2rem;
  --sp-6: 3rem;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
  background: linear-gradient(180deg, #fffafe 0%, #fff 35%, #fff7fb 100%);
  color: var(--text);
  line-height: 1.6;
}
img { max-width: 100%; display: block; border-radius: var(--radius); }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
  background: #000;
  color: #fff;
  padding: .6rem .8rem;
  border-radius: 8px;
  z-index: 9999;
}

.container { width: min(var(--max), 92%); margin-inline: auto; }
.section { padding: clamp(2.5rem, 4vw, 5rem) 0; }
.section-alt { background: var(--surface-2); }
.section-head { margin-bottom: 1.4rem; }
.eyebrow {
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: .4rem;
}
h1, h2, h3, h4 { line-height: 1.2; }
h1 { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: .9rem; }
h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); margin-bottom: .8rem; }
h3 { font-size: 1.1rem; margin-bottom: .55rem; }
p { color: var(--muted); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: saturate(180%) blur(8px);
  background: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid var(--border);
}
.nav-wrap { display: flex; align-items: center; gap: 1rem; min-height: 74px; }
.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand-mark {
  width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
}
.brand strong { font-size: .95rem; display: block; }
.brand small { font-size: .72rem; color: var(--muted); }

.menu { margin-left: auto; display: flex; gap: 1rem; align-items: center; }
.menu a { padding: .45rem .55rem; border-radius: 8px; color: #2f2b3e; font-weight: 500; }
.menu a:hover, .menu a:focus-visible { background: #f9edf3; color: var(--primary); }
.menu a.active { color: var(--primary); background: #fde8f1; }

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 42px; height: 42px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
}
.menu-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: #4b435c;
  margin: 4px auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .8rem 1.15rem;
  border-radius: 11px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: .2s ease;
}
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: var(--shadow);
}
.btn-primary:hover, .btn-primary:focus-visible { transform: translateY(-1px); filter: brightness(1.03); }
.btn-outline {
  border-color: #d8b8c9;
  color: #51294d;
  background: #fff;
}
.btn-outline:hover, .btn-outline:focus-visible { background: #fff0f7; }

.hero-grid { display: grid; gap: 2rem; align-items: center; }
.hero .subtitle { font-size: 1.05rem; margin-bottom: .8rem; color: #453f58; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1rem; }
.hero-media img { min-height: 300px; object-fit: cover; box-shadow: var(--shadow); }
.trust-list { margin-top: 1rem; display: grid; gap: .45rem; }
.trust-list li::before { content: "✓ "; color: var(--success); font-weight: 700; }

.cards-grid { display: grid; gap: 1rem; }
.cards-3 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.cards-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: var(--shadow);
}
.icon { font-size: 1.4rem; margin-bottom: .55rem; }
.text-link { color: var(--primary); font-weight: 600; display: inline-block; margin-top: .7rem; }

.split { display: grid; gap: 1.2rem; }
.highlight-box, .mini-card, .trust-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}
.highlight-box ul { list-style: disc; padding-left: 1.2rem; color: var(--muted); }
.contact-list { display: grid; gap: .55rem; margin: .8rem 0 1rem; }
.contact-list a { color: var(--primary); }

.steps { display: grid; gap: .7rem; }
.steps li {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: .9rem 1rem;
}

.faq { display: grid; gap: .8rem; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: .95rem 1rem;
  background: #fff;
  border: none;
  font-weight: 600;
  cursor: pointer;
}
.faq-question::after { content: "+"; float: right; }
.faq-question[aria-expanded="true"]::after { content: "−"; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-answer p { padding: 0 1rem 1rem; }

.cta-final { text-align: center; }
.hero-actions.center { justify-content: center; }

.site-footer { background: #1f1324; color: #f8eefa; padding-top: 2rem; margin-top: 2rem; }
.footer-grid { display: grid; gap: 1rem; }
.site-footer h3, .site-footer h4 { color: #fff; margin-bottom: .45rem; }
.site-footer p, .site-footer li, .site-footer a { color: #e7d7ed; }
.site-footer ul { display: grid; gap: .45rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.15); margin-top: 1.2rem; padding: .85rem 0 1.3rem; }

.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  box-shadow: var(--shadow);
  z-index: 1001;
}
.back-to-top {
  position: fixed;
  right: 16px;
  bottom: 82px;
  width: 42px; height: 42px;
  border: none;
  border-radius: 999px;
  background: #3c2b44;
  color: #fff;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: .2s ease;
}
.back-to-top.show { opacity: 1; pointer-events: auto; }

.page-hero { padding: 6.5rem 0 2rem; }
.page-content { padding-bottom: 3rem; }
.legal-wrap, .contact-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.2rem;
}
.legal-wrap h2 { margin-top: 1.3rem; }
.legal-wrap p, .legal-wrap li { margin-bottom: .7rem; }
.legal-wrap ul { list-style: disc; padding-left: 1.2rem; }

.form-grid { display: grid; gap: .9rem; }
.field { display: grid; gap: .4rem; }
label { font-weight: 600; color: #3c3550; }
input, textarea, select {
  width: 100%;
  border: 1px solid #d8c6d0;
  border-radius: 10px;
  padding: .75rem .85rem;
  font: inherit;
  color: var(--text);
  background: #fff;
}
textarea { min-height: 140px; resize: vertical; }
input:focus-visible, textarea:focus-visible, select:focus-visible, button:focus-visible, a:focus-visible {
  outline: 3px solid rgba(194,24,91,.25);
  outline-offset: 2px;
}
.error { color: #b42318; font-size: .88rem; display: none; }
.field.invalid .error { display: block; }
.form-msg { margin-top: .7rem; font-weight: 600; }
.form-note { font-size: .93rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: .5s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (min-width: 860px) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; }
  .split { grid-template-columns: 1.1fr .9fr; align-items: start; }
  .footer-grid { grid-template-columns: 1.1fr 1fr 1fr; }
}

@media (max-width: 859px) {
  .desktop-cta { display: none; }
  .menu-toggle { display: inline-block; }
  .menu {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
  }
  .menu.open { max-height: 320px; padding: .5rem 4%; }
  .menu a { width: 100%; padding: .8rem .2rem; }
}

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