/* ===== CSS VARIABLES ===== */
:root {
  --background: 0 0% 100%;
  --foreground: 222 47% 11%;
  --card: 0 0% 100%;
  --card-foreground: 222 47% 11%;
  --popover: 0 0% 100%;
  --popover-foreground: 222 47% 11%;
  --primary: 333 65% 51%;
  --primary-foreground: 0 0% 100%;
  --secondary: 333 20% 96%;
  --secondary-foreground: 333 65% 30%;
  --muted: 333 20% 96%;
  --muted-foreground: 333 10% 55%;
  --accent: 333 20% 96%;
  --accent-foreground: 333 65% 40%;
  --destructive: 0 84% 60%;
  --destructive-foreground: 0 0% 98%;
  --border: 333 15% 88%;
  --input: 333 15% 88%;
  --ring: 333 65% 51%;
  --radius: 0.75rem;
}

/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  line-height: 1.5;
}
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; }
a { text-decoration: none; color: inherit; }

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 1024px) {
  .container { padding-left: 2rem; padding-right: 2rem; }
}

/* ===== UTILITY ===== */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.text-center { text-align: center; }
.w-full { width: 100%; }
.mt-10 { margin-top: 2.5rem; }
.text-primary { color: hsl(var(--primary)); }
.border-b { border-bottom: 1px solid hsl(var(--border)); }
.bg-pink-50 { background-color: #fdf2f8; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  transition: all 0.2s;
  border: 2px solid transparent;
  outline: none;
  cursor: pointer;
  text-decoration: none;
}
.btn:focus-visible { outline: 2px solid hsl(var(--ring)); outline-offset: 2px; }
.btn:disabled { opacity: 0.5; pointer-events: none; }
.btn-rounded { border-radius: 9999px; }
.btn-rounded-sm { border-radius: 9999px; }
.btn-primary { background: #be185d; color: white; padding: 0.75rem 1.5rem; height: 2.75rem; }
.btn-primary:hover { opacity: 0.9; }
.btn-submit { background: #be185d; color: white; height: 3rem; font-size: 1rem; padding: 0 1.5rem; }
.btn-submit:hover { opacity: 0.9; }
.btn-sticky { background: #be185d; color: white; width: 100%; height: 3.5rem; font-size: 1rem; font-weight: 600; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
.btn-white { background: white; color: hsl(var(--primary)); padding: 0.5rem 1.5rem; height: 2.75rem; }
.btn-white:hover { background: rgba(255,255,255,0.9); }
.btn-outline { border: 2px solid hsl(var(--border)); background: transparent; color: hsl(var(--foreground)); padding: 0.5rem 1.5rem; height: 2.75rem; }
.btn-outline:hover { background: hsl(var(--accent)); }
.btn-outline-pink { border: 2px solid hsl(var(--primary)); background: transparent; color: hsl(var(--primary)); height: 2.25rem; width: 2.25rem; padding: 0; }
.btn-outline-pink:hover { background: hsl(var(--primary)); color: white; }
.btn-outline-dashed { border: 2px dashed hsl(var(--border)); background: transparent; color: #6b7280; height: 2.75rem; padding: 0.5rem 1.5rem; gap: 0.5rem; display: inline-flex; align-items: center; justify-content: center; }
.btn-outline-dashed:hover { background: hsl(var(--accent)); }
.btn-icon { height: 2.25rem; width: 2.25rem; padding: 0; display: inline-flex; align-items: center; justify-content: center; }
.btn-lg { height: 3.25rem; padding: 0.75rem 2.5rem; font-size: 1rem; }
.btn-flex-1 { flex: 1; height: 2.75rem; }
.btn-cta { padding-left: 2.5rem; padding-right: 2.5rem; font-weight: 600; }

/* ===== BADGE ===== */
.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
}
.badge-pink { border: 1px solid rgba(232,46,138,0.3); background: rgba(232,46,138,0.1); color: #e82e8a; }
.badge-white { background: rgba(255,255,255,0.2); color: white; border: 1px solid rgba(255,255,255,0.3); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: all 0.3s;
  background: transparent;
}
.navbar.scrolled {
  background: white;
  box-shadow: 0 1px 3px 0 rgba(0,0,0,0.1);
  border-bottom: 1px solid #f3f4f6;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
@media (min-width: 1024px) {
  .navbar-inner { height: 5rem; }
}
.navbar-logo { display: flex; align-items: center; user-select: none; }
.logo-img { height: 2.5rem; width: auto; object-fit: contain; }
@media (min-width: 1024px) {
  .logo-img { height: 3rem; }
}
.navbar-desktop { display: none; }
@media (min-width: 1024px) {
  .navbar-desktop { display: flex; align-items: center; gap: 2rem; }
}
.nav-link {
  background: none;
  border: none;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
  transition: color 0.2s;
}
.nav-link:hover { color: hsl(var(--primary)); }
.navbar-desktop-cta { display: none; }
@media (min-width: 1024px) {
  .navbar-desktop-cta { display: block; }
}
.navbar-hamburger {
  display: block;
  background: none;
  border: none;
  padding: 0.5rem;
  border-radius: 0.375rem;
  color: #374151;
}
@media (min-width: 1024px) {
  .navbar-hamburger { display: none; }
}
.mobile-menu {
  display: none;
  background: white;
  border-top: 1px solid #f3f4f6;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}
.mobile-menu.open { display: block; }
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 0;
}
.mobile-nav-link {
  background: none;
  border: none;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f9fafb;
  cursor: pointer;
}
.mobile-nav-link:hover { color: hsl(var(--primary)); }
@media (min-width: 1024px) {
  .mobile-menu, .mobile-menu.open { display: none; }
}

/* ===== TOAST ===== */
.toast-container {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 24rem;
}
.toast {
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  padding: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  animation: slideIn 0.3s ease-out;
}
.toast-border-success { border-left: 4px solid #22c55e; }
.toast-border-error { border-left: 4px solid #ef4444; }
.toast-border-info { border-left: 4px solid #3b82f6; }
.toast-icon { margin-top: 0.125rem; flex-shrink: 0; }
.toast-icon-success { color: #22c55e; }
.toast-icon-error { color: #ef4444; }
.toast-icon-info { color: #3b82f6; }
.toast-message { font-size: 0.875rem; color: #1f2937; flex: 1; }
.toast-close { background: none; border: none; color: #9ca3af; cursor: pointer; padding: 0; flex-shrink: 0; }
.toast-close:hover { color: #6b7280; }

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ===== HERO SECTION ===== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fce7f3 0%, #f9a8d4 45%, #ec4899 100%);
}
.hero-deco-top {
  position: absolute;
  top: 0; right: 0;
  width: 24rem; height: 24rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transform: translateY(-50%) translateX(50%);
  pointer-events: none;
}
.hero-deco-bottom {
  position: absolute;
  bottom: 0; left: 0;
  width: 18rem; height: 18rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transform: translateY(50%) translateX(-50%);
  pointer-events: none;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 10;
  padding-top: 6rem;
  padding-bottom: 4rem;
}
@media (min-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
.hero-text { text-align: center; }
@media (min-width: 1024px) {
  .hero-text { text-align: left; }
}
.hero-title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.25;
  color: #1f2937;
  margin-bottom: 1rem;
}
@media (min-width: 640px) {
  .hero-title { font-size: 3rem; }
}
@media (min-width: 1024px) {
  .hero-title { font-size: 3.75rem; }
}
.hero-subtitle {
  font-size: 1rem;
  color: #374151;
  max-width: 28rem;
  margin: 0 auto 1.5rem;
  line-height: 1.625;
}
@media (min-width: 640px) {
  .hero-subtitle { font-size: 1.125rem; }
}
@media (min-width: 1024px) {
  .hero-subtitle { margin-left: 0; }
}
.hero-subtitle strong { color: #1f2937; }
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
@media (min-width: 1024px) {
  .hero-tags { justify-content: flex-start; }
}
.hero-tag {
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
  color: #e82e8a;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.6);
}

/* ===== FORM CARD ===== */
.form-card {
  background: hsl(var(--card));
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  border: 0;
}
.form-card-body { padding: 1.5rem; }
@media (min-width: 640px) {
  .form-card-body { padding: 2rem; }
}
.form { display: flex; flex-direction: column; gap: 0.75rem; }
.form-header { margin-bottom: 0.5rem; }
.form-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.25;
}
@media (min-width: 640px) {
  .form-title { font-size: 1.5rem; }
}
.form-desc { font-size: 0.875rem; color: #6b7280; margin-top: 0.25rem; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.form-input {
  display: flex;
  height: 2.75rem;
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--input));
  background: hsl(var(--background));
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: hsl(var(--foreground));
  outline: none;
  transition: box-shadow 0.2s;
}
.form-input::placeholder { color: hsl(var(--muted-foreground)); }
.form-input:focus {
  box-shadow: 0 0 0 2px hsl(var(--ring)), 0 0 0 4px white;
}
.form-input[type="number"] { -moz-appearance: textfield; }
.form-input[type="number"]::-webkit-inner-spin-button,
.form-input[type="number"]::-webkit-outer-spin-button { appearance: none; margin: 0; }
.form-select-wrapper { width: 100%; }
.form-select {
  display: flex;
  height: 2.75rem;
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--input));
  background: hsl(var(--background));
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: hsl(var(--foreground));
  outline: none;
  cursor: pointer;
  transition: box-shadow 0.2s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
}
.form-select:focus { box-shadow: 0 0 0 2px hsl(var(--ring)), 0 0 0 4px white; }
.form-select option { color: hsl(var(--foreground)); }
.form-field-conditional { margin-top: 0; }
.form-protected {
  text-align: center;
  font-size: 0.75rem;
  color: #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  margin-top: 0.25rem;
}
.form-protected svg { width: 0.75rem; height: 0.75rem; }

/* ===== FAMILIARES LIST ===== */
.familiares-list {
  background: #f9fafb;
  border-radius: 0.5rem;
  padding: 0.75rem;
}
.familiares-list-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}
.familiares-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  color: #6b7280;
  padding: 0.25rem 0;
}
.familiares-list-remove {
  color: #f87171;
  background: none;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
}
.familiares-list-remove:hover { color: #dc2626; }

/* ===== SECTIONS ===== */
.section { padding: 5rem 0; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .badge { margin-bottom: 1rem; }
.section-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 1rem;
}
@media (min-width: 640px) {
  .section-title { font-size: 2.25rem; }
}
@media (min-width: 1024px) {
  .section-title { font-size: 3rem; }
}
.section-desc {
  font-size: 1rem;
  color: #6b7280;
  max-width: 28rem;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .section-desc { font-size: 1.125rem; }
}

/* ===== BENEFITS ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
}
.card {
  background: hsl(var(--card));
  border-radius: 1rem;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
  transition: box-shadow 0.2s;
}
.card:hover { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
.card-body { padding: 1.5rem; }
.benefit-card .card-body { display: flex; flex-direction: column; gap: 0.75rem; }
.benefit-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: hsla(var(--primary), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary));
}
.benefit-icon svg { width: 1.25rem; height: 1.25rem; }
.benefit-title { font-weight: 600; color: #111827; font-size: 1rem; }
.benefit-desc { color: #6b7280; font-size: 0.875rem; line-height: 1.625; }

/* ===== MIDDLE BANNER ===== */
.middle-banner {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  min-height: 280px;
}
@media (min-width: 640px) {
  .middle-banner { min-height: 320px; }
}
@media (min-width: 1024px) {
  .middle-banner { min-height: 400px; }
}
.middle-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}
@media (min-width: 640px) {
  .middle-banner-img { object-position: center; }
}
.middle-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #fce7f3 0%, #f9a8d4 24%, rgba(249,168,212,0.85) 42%, rgba(249,168,212,0.18) 62%, transparent 78%);
}
.middle-banner-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 280px;
  max-width: 220px;
  padding: 2rem 1.5rem;
}
@media (min-width: 640px) {
  .middle-banner-content {
    justify-content: center;
    min-height: 320px;
    max-width: 24rem;
    padding: 3rem;
  }
}
@media (min-width: 1024px) {
  .middle-banner-content { min-height: 400px; }
}
.middle-banner-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: #1f2937;
  line-height: 1.25;
  margin-bottom: 0;
}
@media (min-width: 640px) {
  .middle-banner-title { font-size: 2.25rem; margin-bottom: 1rem; }
}
.middle-banner-desc {
  display: none;
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.625;
}
@media (min-width: 640px) {
  .middle-banner-desc { display: block; font-size: 1rem; }
}

/* ===== STEPS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
}
.step-card { border: 0; text-align: center; }
.step-card-body { padding: 2rem; display: flex; flex-direction: column; gap: 0.75rem; align-items: center; }
.step-number {
  display: block;
  font-size: 3.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, #f472b6, #db2777);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.step-title { font-weight: 700; color: #111827; font-size: 1.125rem; }
.step-desc { color: #6b7280; font-size: 0.875rem; line-height: 1.625; text-align: center; }

/* ===== STATS ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.stat-card { text-align: center; }
.stat-card-body { padding: 1.5rem; }
@media (min-width: 640px) {
  .stat-card-body { padding: 2rem; }
}
.stat-value {
  display: block;
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #f472b6, #db2777);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (min-width: 640px) {
  .stat-value { font-size: 3rem; }
}
.stat-label { color: #6b7280; font-size: 0.875rem; }

/* ===== TESTIMONIALS CAROUSEL ===== */
.carousel { position: relative; }
.carousel-track-wrapper { overflow: hidden; margin-bottom: 2.5rem; }
.carousel-track {
  display: flex;
  transform: translateX(0%);
  transition: transform 0.7s ease-in-out;
}
.carousel-page {
  width: 100%;
  flex-shrink: 0;
}
.carousel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .carousel-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .carousel-grid { grid-template-columns: repeat(3, 1fr); }
}
.testimonial-card { }
.testimonial-card-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.testimonial-stars { display: flex; gap: 0.25rem; }
.testimonial-star { width: 1rem; height: 1rem; fill: hsl(var(--primary)); color: hsl(var(--primary)); }
.testimonial-quote { color: #6b7280; font-size: 0.875rem; line-height: 1.625; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; padding-top: 0.5rem; }
.testimonial-avatar {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: hsl(var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; color: #111827; font-size: 0.875rem; }
.testimonial-plan { font-size: 0.75rem; color: #9ca3af; }
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.carousel-dots { display: flex; gap: 0.5rem; }
.carousel-dot {
  width: 0.625rem; height: 0.625rem;
  border-radius: 50%;
  border: none;
  background: #d1d5db;
  cursor: pointer;
  transition: background 0.2s;
}
.carousel-dot.active { background: hsl(var(--primary)); }

/* ===== FAQ ===== */
.faq-container { max-width: 42rem; margin: 0 auto; }
.faq-card { border: 0; overflow: hidden; }
.faq-inner { padding: 0; }
.faq-item { }
.faq-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: left;
  color: #1f2937;
  cursor: pointer;
  transition: color 0.2s;
  gap: 0.5rem;
}
@media (min-width: 640px) {
  .faq-trigger { font-size: 1rem; }
}
.faq-trigger:hover { color: hsl(var(--primary)); }
.faq-chevron {
  width: 1.25rem; height: 1.25rem;
  flex-shrink: 0;
  color: #9ca3af;
  transition: transform 0.2s;
}
.faq-trigger.open .faq-chevron { transform: rotate(180deg); }
.faq-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease-out;
}
.faq-content.open { max-height: 300px; }
.faq-content-inner {
  padding: 0 1.5rem 1.25rem;
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.625;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #be185d 0%, #db2777 50%, #ec4899 100%);
}
.cta-deco-top {
  position: absolute;
  top: 0; right: 0;
  width: 20rem; height: 20rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transform: translateY(-33%) translateX(33%);
  pointer-events: none;
}
.cta-deco-bottom {
  position: absolute;
  bottom: 0; left: 0;
  width: 16rem; height: 16rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transform: translateY(33%) translateX(-33%);
  pointer-events: none;
}
.cta-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: white;
  margin: 1rem 0;
  line-height: 1.25;
}
@media (min-width: 640px) {
  .cta-title { font-size: 2.25rem; }
}
@media (min-width: 1024px) {
  .cta-title { font-size: 3rem; }
}
.cta-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 640px) {
  .cta-desc { font-size: 1.125rem; }
}
.cta-desc span { display: block; }
.cta-section .container { position: relative; z-index: 10; }

/* ===== FOOTER ===== */
.footer {
  background: #111827;
  color: white;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 3rem 0;
}
.footer-logo {
  height: 2.5rem;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.footer-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  text-align: center;
  line-height: 1.625;
}
.footer-legal {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
  line-height: 1.625;
  max-width: 48rem;
}

/* ===== MOBILE STICKY CTA ===== */
.mobile-sticky-cta {
  position: fixed;
  left: 0.5rem;
  right: 0.5rem;
  bottom: 1rem;
  z-index: 50;
  pointer-events: none;
}
@media (min-width: 640px) {
  .mobile-sticky-cta { display: none; }
}
.mobile-sticky-inner {
  pointer-events: auto;
  transition: transform 0.3s, opacity 0.3s;
}
.mobile-sticky-inner.hidden {
  transform: translateY(1.5rem);
  opacity: 0;
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.5);
  padding: 1rem;
}
.modal-content {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  max-width: 28rem;
  width: 100%;
  padding: 1.5rem;
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.modal-title { font-size: 1.25rem; font-weight: 700; color: #1f2937; }
.modal-close {
  background: none; border: none;
  color: #9ca3af; cursor: pointer; padding: 0.25rem;
}
.modal-close:hover { color: #6b7280; }
.modal-body { display: flex; flex-direction: column; gap: 0.75rem; }
.modal-footer {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

/* ===== PREFERENCE MODAL ===== */
.preference-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  text-align: center;
  margin-bottom: 1rem;
}
.preference-options { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1rem; }
.preference-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 2px solid #e5e7eb;
  background: #f9fafb;
  cursor: pointer;
  transition: all 0.2s;
}
.preference-option.active {
  border-color: #7b3092;
  background: #f3e5f5;
}
.preference-radio {
  accent-color: #7b3092;
  width: 1rem;
  height: 1rem;
}
.preference-option-title { font-weight: 600; color: #1f2937; }
.preference-option-desc { font-size: 0.875rem; color: #6b7280; }

/* ===== GRACIAS PAGE ===== */
.gracias-page { }
.gracias-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #fce7f3 0%, #f9a8d4 45%, #ec4899 100%);
}
.gracias-bg-img {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 1024px) {
  .gracias-bg-img { display: block; }
}
.gracias-overlay {
  display: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #fce7f3 0%, #f9a8d4 30%, rgba(249,168,212,0.80) 50%, rgba(249,168,212,0.20) 72%, transparent 90%);
}
@media (min-width: 1024px) {
  .gracias-overlay { display: block; }
}
.gracias-content {
  position: relative;
  z-index: 10;
  width: 100%;
}
.gracias-inner {
  max-width: 36rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 6rem 1.5rem;
}
@media (min-width: 1024px) {
  .gracias-inner { padding: 6rem 2rem; }
}
.gracias-checkmark {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: #be185d;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}
.gracias-check-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: white;
}
.gracias-title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.25;
  color: #1f2937;
}
@media (min-width: 640px) {
  .gracias-title { font-size: 3rem; }
}
@media (min-width: 1024px) {
  .gracias-title { font-size: 3.75rem; }
}
.gracias-title-highlight { color: #be185d; }
.gracias-desc {
  color: #374151;
  font-size: 1.125rem;
  max-width: 28rem;
  line-height: 1.625;
}
@media (min-width: 640px) {
  .gracias-desc { font-size: 1.25rem; }
}
.gracias-tags { display: flex; flex-wrap: wrap; gap: 0.75rem; padding-top: 0.5rem; }
.gracias-tag {
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
  color: #374151;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.6);
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 700ms ease-out, transform 700ms cubic-bezier(0.22, 0.9, 0.29, 1);
}
.reveal.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}