*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg:       #FFF9F6;
  --rose:     #F2B8C6;
  --rose-s:   #FDE8EE;
  --lavender: #C9BFF0;
  --lav-s:    #EDE9FC;
  --sage:     #B8D8C5;
  --sage-s:   #E4F2EA;
  --peach:    #F5CEAA;
  --peach-s:  #FEF0E4;
  --sky:      #AACFE8;
  --sky-s:    #E2F1FA;
  --yellow:   #F5E4A0;
  --yellow-s: #FEFADC;
  --dark:     #3B3147;
  --mid:      #7A6F85;
  --light-text:#A89DB5;
  --border:   #EDE6F0;
  --white:    #FFFFFF;
}
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--bg); color: var(--dark); line-height: 1.6; overflow-x: hidden; }

/* PÁGINAS GENÉRICAS (privacidad, términos, etc.) */
.page-content-wrap { max-width: 800px; margin: 0 auto; padding: 140px 24px 80px; }
.page-content-wrap h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 500; margin-bottom: 24px; color: var(--dark); }
.page-content-wrap h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 500; margin: 32px 0 12px; color: var(--dark); }
.page-content-wrap p { margin-bottom: 16px; color: var(--mid); }
.page-content-wrap ul, .page-content-wrap ol { margin: 0 0 16px 24px; color: var(--mid); }
.page-content-wrap a { color: #C06080; text-decoration: underline; }

/* ── ANIMATIONS ── */
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes pulse-ring { 0%{transform:scale(1);opacity:1} 100%{transform:scale(1.5);opacity:0} }
@keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
@keyframes sparkle { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3) rotate(20deg)} }
@keyframes heartbeat { 0%,100%{transform:scale(1)} 30%{transform:scale(1.15)} 60%{transform:scale(1)} }
@keyframes spin-slow { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
@keyframes blob { 0%,100%{border-radius:60% 40% 30% 70%/60% 30% 70% 40%} 50%{border-radius:30% 60% 70% 40%/50% 60% 30% 60%} }
@keyframes wave { 0%{transform:rotate(0deg)} 25%{transform:rotate(15deg)} 75%{transform:rotate(-10deg)} 100%{transform:rotate(0deg)} }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── BLOBS ── */
.blob {
  position: absolute; border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  animation: blob 8s ease-in-out infinite; pointer-events: none; z-index: 0;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,249,246,0.92); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%; display: flex; align-items: center; justify-content: space-between; height: 68px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-img { height: 38px; width: auto; object-fit: contain; display: block; }
.nav-logo-text { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--dark); letter-spacing: 0.02em; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--mid); font-size: 0.85rem; font-weight: 400; transition: color 0.2s; }
.nav-links a:hover { color: var(--dark); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-country-select { position: relative; }
.nav-country-btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border: 1px solid var(--border);
  border-radius: 999px; background: var(--white); color: var(--dark); cursor: pointer; font-size: 0.8rem; font-weight: 600;
}
.nav-country-btn:hover { border-color: var(--rose); box-shadow: 0 8px 18px rgba(242,184,198,0.16); }
.nav-country-flags { font-size: 1rem; line-height: 1; }
.nav-country-menu {
  position: absolute; top: calc(100% + 8px); right: 0; display: none; flex-direction: column; gap: 6px;
  background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 8px; min-width: 132px;
  box-shadow: 0 14px 30px rgba(59,49,71,0.12);
}
.nav-country-select.open .nav-country-menu { display: flex; }
.nav-country-menu-item {
  border: none; background: transparent; padding: 8px 10px; border-radius: 10px; text-align: left; cursor: pointer;
  font-size: 0.82rem; color: var(--dark);
}
.nav-country-menu-item:hover { background: var(--rose-s); }
.btn { display: inline-flex; align-items: center; gap: 6px; padding: 11px 24px; border-radius: 50px; background: var(--dark); color: #fff; text-decoration: none; font-size: 0.82rem; font-weight: 500; transition: all 0.22s; border: 2px solid var(--dark); cursor: pointer; font-family: 'DM Sans', sans-serif; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(59,49,71,0.18); }
.btn-rose { background: var(--rose); border-color: var(--rose); color: var(--dark); }
.btn-rose:hover { background: #e8a0b2; border-color: #e8a0b2; box-shadow: 0 8px 20px rgba(242,184,198,0.4); }
.btn-outline { background: transparent; color: var(--dark); }
.btn-outline:hover { background: var(--dark); color: #fff; }
.btn-wa { background: #25D366; border-color: #25D366; color: #fff; }
.btn-wa:hover { background: #1ebe5d; border-color: #1ebe5d; box-shadow: 0 8px 20px rgba(37,211,102,0.3); }

/* ── HERO ── */
#hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 100px 5% 60px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #FFF9F6 0%, #FDE8EE 40%, #EDE9FC 100%);
}
#hero .blob:nth-child(1) { width: 400px; height: 400px; background: rgba(242,184,198,0.25); top: -100px; right: 5%; animation-duration: 10s; }
#hero .blob:nth-child(2) { width: 300px; height: 300px; background: rgba(201,191,240,0.2); bottom: 0; left: -80px; animation-duration: 12s; animation-delay: -3s; }
.hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; width: 100%; position: relative; z-index: 1; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: var(--white); border: 1px solid var(--border); border-radius: 50px; padding: 7px 16px; font-size: 0.75rem; color: var(--mid); margin-bottom: 24px; box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.hero-dot { width: 8px; height: 8px; background: var(--rose); border-radius: 50%; animation: heartbeat 2s ease-in-out infinite; }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(2.6rem, 4.5vw, 3.8rem); font-weight: 500; line-height: 1.15; color: var(--dark); margin-bottom: 20px; }
.hero-title em { font-style: italic; background: linear-gradient(135deg, #F2B8C6, #C9BFF0); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-desc { font-size: 1rem; color: var(--mid); max-width: 440px; margin-bottom: 36px; line-height: 1.8; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }
.chip { padding: 6px 14px; border-radius: 50px; font-size: 0.75rem; font-weight: 500; cursor: pointer; transition: all 0.2s; border: 2px solid transparent; text-decoration: none; display: inline-block; }
.chip-rose { background: var(--rose-s); color: #C06080; }
.chip-rose:hover, .chip-rose.active { background: var(--rose); color: var(--dark); }
.chip-lav { background: var(--lav-s); color: #7060C0; }
.chip-lav:hover, .chip-lav.active { background: var(--lavender); color: var(--dark); }
.chip-sage { background: var(--sage-s); color: #507060; }
.chip-sage:hover, .chip-sage.active { background: var(--sage); color: var(--dark); }
.chip-peach { background: var(--peach-s); color: #C08040; }
.chip-peach:hover, .chip-peach.active { background: var(--peach); color: var(--dark); }
.chip-sky { background: var(--sky-s); color: #406080; }
.chip-sky:hover, .chip-sky.active { background: var(--sky); color: var(--dark); }
.chip-yellow { background: var(--yellow-s); color: #A08030; }
.chip-yellow:hover, .chip-yellow.active { background: var(--yellow); color: var(--dark); }
.chip[data-estilo-filter] { font-size: 0.8rem; padding: 8px 18px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* HERO MOCKUP */
.hero-visual { position: relative; display: flex; justify-content: center; }
.mockup-phone {
  width: 260px; background: #fff; border-radius: 28px;
  box-shadow: 0 32px 64px rgba(59,49,71,0.14), 0 0 0 1px rgba(0,0,0,0.04);
  padding: 28px 22px; animation: float 4s ease-in-out infinite; position: relative; z-index: 2;
}
.mockup-notch { width: 60px; height: 6px; background: var(--border); border-radius: 3px; margin: 0 auto 20px; }
.mockup-tag { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rose); margin-bottom: 10px; text-align: center; }
.mockup-names { font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 400; text-align: center; line-height: 1.2; color: var(--dark); margin-bottom: 4px; }
.mockup-date { font-size: 0.7rem; color: var(--light-text); text-align: center; letter-spacing: 0.1em; margin-bottom: 16px; }
.mockup-hr { height: 1px; background: var(--border); margin-bottom: 14px; }
.mockup-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.mockup-cell label { display: block; font-size: 0.55rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--rose); margin-bottom: 2px; }
.mockup-cell span { font-size: 0.7rem; color: var(--dark); line-height: 1.3; }
.mockup-btn { width: 100%; padding: 10px; border-radius: 50px; background: linear-gradient(135deg, var(--rose), var(--lavender)); color: #fff; border: none; font-size: 0.7rem; font-weight: 500; cursor: pointer; font-family: 'DM Sans', sans-serif; letter-spacing: 0.05em; }
.mockup-badge { position: absolute; top: -10px; right: -10px; background: var(--yellow); color: var(--dark); font-size: 0.6rem; font-weight: 600; padding: 5px 10px; border-radius: 50px; border: 2px solid #fff; white-space: nowrap; animation: sparkle 3s ease-in-out infinite; }
.hero-float-1 { position: absolute; top: 10%; left: -30px; font-size: 2rem; animation: float 3s ease-in-out infinite; animation-delay: -1s; z-index: 1; }
.hero-float-2 { position: absolute; bottom: 15%; right: -20px; font-size: 1.6rem; animation: float 4s ease-in-out infinite; animation-delay: -2s; z-index: 1; }
.hero-float-3 { position: absolute; top: 50%; left: -40px; font-size: 1.4rem; animation: float 5s ease-in-out infinite; animation-delay: -0.5s; z-index: 1; }

/* ── STATS ── */
#stats { padding: 48px 5%; background: var(--dark); }
.stats-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat { text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 400; color: var(--rose); line-height: 1; margin-bottom: 4px; }
.stat-lbl { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: #888; }

/* ── SECTION BASE ── */
section { padding: 88px 5%; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-eyebrow { display: inline-block; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; padding: 5px 14px; border-radius: 50px; margin-bottom: 16px; }
.eyebrow-rose { background: var(--rose-s); color: #C06080; }
.eyebrow-lav  { background: var(--lav-s);  color: #7060C0; }
.eyebrow-sage { background: var(--sage-s); color: #507060; }
.eyebrow-peach{ background: var(--peach-s);color: #C08040; }
.eyebrow-sky  { background: var(--sky-s);  color: #406080; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.9rem, 3vw, 2.8rem); font-weight: 500; line-height: 1.25; color: var(--dark); margin-bottom: 14px; }
.section-title em { font-style: italic; }
.section-sub { font-size: 0.97rem; color: var(--mid); max-width: 480px; line-height: 1.8; }

/* ── EVENTOS ── */
#eventos { background: var(--bg); }
.eventos-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 16px; margin-top: 48px; }
.evento-card {
  background: var(--white); border: 2px solid var(--border); border-radius: 20px;
  padding: 32px 16px; text-align: center; cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1); text-decoration: none; display: block;
}
.evento-card:hover { transform: translateY(-8px) scale(1.03); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.evento-card:nth-child(1):hover { border-color: var(--rose); background: var(--rose-s); }
.evento-card:nth-child(2):hover { border-color: var(--lavender); background: var(--lav-s); }
.evento-card:nth-child(3):hover { border-color: var(--peach); background: var(--peach-s); }
.evento-card:nth-child(4):hover { border-color: var(--sage); background: var(--sage-s); }
.evento-card:nth-child(5):hover { border-color: var(--sky); background: var(--sky-s); }
.icon-wrap { width: 72px; height: 72px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; transition: all 0.3s; position: relative; }
.icon-wrap svg { width: 36px; height: 36px; transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1); }
.evento-card:hover .icon-wrap svg { transform: scale(1.2); }
.icon-rose { background: var(--rose-s); }
.icon-lav  { background: var(--lav-s); }
.icon-peach{ background: var(--peach-s); }
.icon-sage { background: var(--sage-s); }
.icon-sky  { background: var(--sky-s); }
.icon-yellow { background: var(--yellow-s); }
.evento-card:nth-child(1):hover .icon-wrap { background: var(--rose); }
.evento-card:nth-child(2):hover .icon-wrap { background: var(--lavender); }
.evento-card:nth-child(3):hover .icon-wrap { background: var(--peach); }
.evento-card:nth-child(4):hover .icon-wrap { background: var(--sage); }
.evento-card:nth-child(5):hover .icon-wrap { background: var(--sky); }
.evento-card:nth-child(6):hover .icon-wrap { background: var(--yellow); }
.evento-card:nth-child(6):hover { border-color: var(--yellow); background: var(--yellow-s); }
.evento-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 500; color: var(--dark); margin-bottom: 6px; }
.evento-desc { font-size: 0.75rem; color: var(--mid); line-height: 1.5; }
.badge-soon { display: inline-block; font-size: 0.58rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 10px; border-radius: 50px; background: var(--yellow-s); color: #9A8010; margin-top: 8px; border: 1px solid var(--yellow); }

/* ── FEATURES ── */
#features { background: linear-gradient(135deg, #FDE8EE 0%, #EDE9FC 100%); }
.features-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: 48px; }
.feature-card {
  background: rgba(255,255,255,0.7); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.9); border-radius: 20px;
  padding: 32px 28px; transition: all 0.3s; cursor: default;
  display: flex; flex-direction: column;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(59,49,71,0.08); background: rgba(255,255,255,0.95); }
.feature-icon-wrap { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; font-size: 1.6rem; transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1); flex-shrink: 0; }
.feature-card:hover .feature-icon-wrap { transform: rotate(-8deg) scale(1.1); }
.feature-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 500; color: var(--dark); margin-bottom: 8px; }
.feature-desc { font-size: 0.82rem; color: var(--mid); line-height: 1.7; }

/* ── CATÁLOGO ── */
#catalogo { background: var(--bg); }
.cat-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 44px; flex-wrap: wrap; gap: 16px; }
.estilo-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.estilo-tabs .chip { font-family: inherit; appearance: none; -webkit-appearance: none; }
.estilo-empty { text-align: center; max-width: 520px; margin: 0 auto 32px; padding: 18px 24px; border-radius: 16px; background: var(--rose-s); color: var(--mid); font-size: 0.9rem; line-height: 1.6; }
.estilo-vermas-wrap { display: flex; justify-content: center; margin-top: 36px; }
.estilos-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.estilo-card.estilo-hidden { display: none; }
.estilo-card { border-radius: 20px; overflow: hidden; background: var(--white); border: 2px solid var(--border); transition: all 0.3s; }
.estilo-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.09); }
.estilo-preview { height: 300px; position: relative; overflow: hidden; background: transparent; }

/* Mockup teléfono en catálogo */
.iya-mockup-phone {
  width: 260px; height: 520px;
  background: #1a1a2e;
  border-radius: 44px;
  padding: 14px;
  box-shadow: 0 0 0 2px #3a3a5a, 0 20px 60px rgba(0,0,0,0.25), inset 0 0 0 1px rgba(255,255,255,0.08);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.62);
  flex-shrink: 0;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.estilo-card:hover .iya-mockup-phone {
  transform: translate(-50%, -50%) scale(0.65);
  box-shadow: 0 0 0 2px #3a3a5a, 0 30px 80px rgba(0,0,0,0.35), inset 0 0 0 1px rgba(255,255,255,0.08);
}
.iya-mockup-phone::before {
  content: ''; position: absolute;
  right: -3px; top: 100px;
  width: 3px; height: 60px;
  background: #2a2a4a; border-radius: 0 4px 4px 0;
  box-shadow: 0 70px 0 #2a2a4a;
}
.iya-mockup-phone::after {
  content: ''; position: absolute;
  left: -3px; top: 80px;
  width: 3px; height: 36px;
  background: #2a2a4a; border-radius: 4px 0 0 4px;
  box-shadow: 0 46px 0 #2a2a4a, 0 90px 0 #2a2a4a;
}
.iya-mockup-notch {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 90px; height: 28px;
  background: #1a1a2e; border-radius: 0 0 20px 20px; z-index: 10;
}
.iya-mockup-screen {
  width: 100%; height: 100%;
  border-radius: 32px; overflow: hidden; position: relative;
}
.iya-mockup-screen::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 50%);
  pointer-events: none; z-index: 5; border-radius: 32px;
}
.iya-mockup-img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.iya-mockup-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center; font-size: 2.5rem;
}
.estilo-info { padding: 18px 20px; }
.estilo-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.estilo-icon { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0; }
.estilo-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--dark); }
.estilo-tagline { font-size: 0.75rem; color: var(--mid); margin-top: 2px; }
.color-dots { display: flex; gap: 6px; margin-bottom: 14px; }
.cdot { width: 18px; height: 18px; border-radius: 50%; border: 2px solid #fff; box-shadow: 0 0 0 1px rgba(0,0,0,0.08); cursor: pointer; transition: transform 0.2s; }
.cdot:hover { transform: scale(1.3); }
.estilo-foot { display: flex; justify-content: space-between; align-items: center; }
.disponible { font-size: 0.65rem; font-weight: 600; color: #507060; background: var(--sage-s); padding: 4px 10px; border-radius: 50px; }

/* ── PAÍS / PLANES ── */
.country-modal-backdrop {
  position: fixed; inset: 0; z-index: 400; display: none; align-items: center; justify-content: center;
  padding: 24px; background: rgba(59,49,71,0.62); backdrop-filter: blur(8px);
}
.country-modal-backdrop.show { display: flex; }
.country-modal {
  position: relative; width: min(560px, 100%); background: var(--white); border-radius: 28px;
  padding: 36px 32px; box-shadow: 0 24px 70px rgba(59,49,71,0.2); border: 1px solid var(--border);
}
.country-modal-close {
  position: absolute; top: 16px; right: 16px; width: 38px; height: 38px; border: none; border-radius: 50%;
  background: var(--rose-s); color: var(--dark); cursor: pointer; font-size: 1rem;
}
.country-modal .section-title { margin-bottom: 10px; }
.country-modal .section-sub { max-width: none; margin-bottom: 24px; }
.country-options { display: flex; gap: 12px; flex-wrap: wrap; }
.country-option {
  border: 1px solid var(--border); background: var(--white); color: var(--dark);
  padding: 14px 16px; border-radius: 18px; display: flex; flex-direction: column; align-items: flex-start;
  min-width: 150px; cursor: pointer; transition: all 0.22s ease;
}
.country-option:hover, .country-option.active {
  transform: translateY(-2px); border-color: var(--rose); box-shadow: 0 12px 24px rgba(242,184,198,0.18);
  background: var(--rose-s);
}
.country-flag { font-size: 1.35rem; margin-bottom: 6px; }
.country-name { font-weight: 600; font-size: 0.95rem; }
.country-sub { font-size: 0.73rem; color: var(--mid); }
.country-modal-brand { display: flex; justify-content: center; margin-bottom: 14px; }
.country-modal-logo { height: 72px; width: auto; object-fit: contain; }
.country-modal .section-title,
.country-modal .section-sub,
.country-modal .country-options,
.country-modal .country-banner-card {
  text-align: center;
}
.country-modal .section-sub { margin: 0 auto 22px; }
.country-banner-card {
  margin-top: 22px; padding: 18px 20px; border-radius: 18px; border: 1px solid var(--border);
  background: linear-gradient(135deg, var(--rose-s), var(--lav-s));
  text-align: center;
}
.country-banner-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--dark); line-height: 1.5; }
.planes-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.country-pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 999px;
  background: rgba(255,255,255,0.86); border: 1px solid var(--border); color: var(--dark);
  font-size: 0.82rem; font-weight: 600; white-space: nowrap;
}
.country-change-btn, .open-country-modal {
  border: none; background: var(--dark); color: #fff; padding: 10px 16px; border-radius: 999px;
  font-size: 0.8rem; font-weight: 600; cursor: pointer; transition: all 0.2s ease;
}
.country-change-btn:hover, .open-country-modal:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(59,49,71,0.14); }
.open-country-modal { background: var(--rose); color: var(--dark); }
#planes { background: linear-gradient(135deg, #E4F2EA 0%, #E2F1FA 50%, #FDE8EE 100%); }
.planes-intro { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; flex-wrap: wrap; gap: 16px; }
.planes-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.plan {
  background: rgba(255,255,255,0.8); backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,0.9); border-radius: 24px;
  padding: 36px 28px; position: relative; transition: all 0.3s;
}
.plan:hover { transform: translateY(-5px); box-shadow: 0 24px 48px rgba(59,49,71,0.1); background: rgba(255,255,255,0.97); }
.plan-featured { background: var(--dark); border-color: var(--dark); }
.plan-featured:hover { background: #4A3F58; }
.plan-pop { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--rose); color: var(--dark); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 16px; border-radius: 50px; white-space: nowrap; border: 2px solid #fff; }
.plan-name { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--dark); margin-bottom: 6px; }
.plan-featured .plan-name { color: #fff; }
.plan-desc { font-size: 0.8rem; color: var(--mid); margin-bottom: 20px; line-height: 1.6; }
.plan-featured .plan-desc { color: #9A90A8; }
.plan-price { display: flex; align-items: baseline; gap: 3px; margin-bottom: 4px; }
.plan-cur { font-size: 1.1rem; color: var(--rose); font-weight: 600; }
.plan-amt { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 400; color: var(--dark); line-height: 1; }
.plan-featured .plan-amt { color: #fff; }
.plan-once { font-size: 0.7rem; color: var(--mid); margin-bottom: 20px; }
.plan-featured .plan-once { color: #7A7088; }
.plan-hr { height: 1px; background: var(--border); margin-bottom: 20px; }
.plan-featured .plan-hr { background: #4A3F58; }
.plan-feats { list-style: none; margin-bottom: 28px; }
.plan-feats li { font-size: 0.82rem; color: var(--mid); padding: 7px 0; border-bottom: 1px solid var(--border); display: flex; align-items: flex-start; gap: 8px; line-height: 1.4; }
.plan-featured .plan-feats li { color: #B0A8BC; border-color: #4A3F58; }
.plan-feats li::before { content: '✦'; font-size: 0.55rem; color: var(--rose); margin-top: 5px; flex-shrink: 0; }

/* ── EXTRAS ── */
#extras { background: var(--bg); }
.extras-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 44px; }
.extra-card { background: var(--white); border: 2px solid var(--border); border-radius: 18px; padding: 26px 20px; transition: all 0.3s; }
.extra-card:hover { transform: translateY(-4px); box-shadow: 0 14px 28px rgba(0,0,0,0.07); }
.extra-card:nth-child(1):hover { border-color: var(--rose); }
.extra-card:nth-child(2):hover { border-color: var(--lavender); }
.extra-card:nth-child(3):hover { border-color: var(--sage); }
.extra-card:nth-child(4):hover { border-color: var(--peach); }
.extra-icon { font-size: 2rem; margin-bottom: 12px; display: block; transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1); }
.extra-card:hover .extra-icon { transform: scale(1.2) rotate(-5deg); }
.extra-name { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--dark); margin-bottom: 6px; }
.extra-desc { font-size: 0.78rem; color: var(--mid); line-height: 1.6; margin-bottom: 12px; }
.extra-price { font-size: 0.78rem; font-weight: 600; color: var(--rose); }

/* ── PROCESO ── */
#proceso { background: linear-gradient(135deg, var(--lav-s), var(--rose-s)); }
.proceso-steps { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; margin-top: 48px; }
.proceso-step { background: rgba(255,255,255,0.75); backdrop-filter: blur(8px); border-radius: 18px; padding: 24px 16px; text-align: center; border: 1px solid rgba(255,255,255,0.9); transition: all 0.3s; }
.proceso-step:hover { transform: translateY(-4px); background: rgba(255,255,255,0.97); box-shadow: 0 12px 24px rgba(0,0,0,0.06); }
.proceso-num { width: 36px; height: 36px; border-radius: 50%; background: var(--dark); color: #fff; font-size: 0.85rem; font-weight: 600; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.proceso-icon { font-size: 1.8rem; margin-bottom: 10px; transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1); }
.proceso-step:hover .proceso-icon { transform: scale(1.2); }
.proceso-title { font-family: 'Playfair Display', serif; font-size: 0.95rem; color: var(--dark); margin-bottom: 6px; }
.proceso-desc { font-size: 0.73rem; color: var(--mid); line-height: 1.6; }

/* ── FAQ ── */
#faq { background: var(--bg); }
.faq-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 48px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--white); border: 2px solid var(--border); border-radius: 14px; overflow: hidden; transition: border-color 0.2s; }
.faq-item.open { border-color: var(--lavender); }
.faq-q { padding: 16px 18px; font-size: 0.87rem; font-weight: 500; color: var(--dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; transition: background 0.2s; }
.faq-q:hover { background: var(--lav-s); }
.faq-arr { font-size: 0.7rem; color: var(--lavender); flex-shrink: 0; transition: transform 0.25s; }
.faq-item.open .faq-arr { transform: rotate(180deg); }
.faq-a { display: none; padding: 12px 18px 16px; font-size: 0.82rem; color: var(--mid); line-height: 1.7; border-top: 1px solid var(--border); }
.faq-item.open .faq-a { display: block; }
.faq-side { background: linear-gradient(135deg, var(--rose), var(--lavender)); border-radius: 24px; padding: 40px 32px; display: flex; flex-direction: column; justify-content: space-between; }
.faq-side-title { font-family: 'Playfair Display', serif; font-size: 1.7rem; color: #fff; font-weight: 400; line-height: 1.3; margin-bottom: 12px; }
.faq-side-desc { font-size: 0.85rem; color: rgba(255,255,255,0.8); margin-bottom: 32px; line-height: 1.7; }
.faq-side-emoji { font-size: 3.5rem; margin-bottom: 24px; animation: wave 3s ease-in-out infinite; display: inline-block; transform-origin: 70% 70%; }

/* ── TESTIMONIOS ── */
#testimonios { background: linear-gradient(135deg, var(--sage-s), var(--yellow-s)); }
.test-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.testimonio { background: rgba(255,255,255,0.85); backdrop-filter: blur(8px); border-radius: 20px; padding: 28px; border: 1px solid rgba(255,255,255,0.9); transition: all 0.3s; }
.testimonio:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,0,0,0.07); }
.t-stars { color: var(--rose); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 14px; }
.t-quote { font-family: 'Playfair Display', serif; font-size: 1rem; font-style: italic; color: var(--dark); line-height: 1.7; margin-bottom: 18px; }
.t-line { width: 28px; height: 2px; border-radius: 2px; background: var(--rose); margin-bottom: 12px; }
.t-name { font-size: 0.83rem; font-weight: 600; color: var(--dark); }
.t-event { font-size: 0.73rem; color: var(--mid); margin-top: 2px; }

/* ── CTA ── */
#cta { background: var(--dark); text-align: center; padding: 100px 5%; position: relative; overflow: hidden; }
#cta .blob { background: rgba(242,184,198,0.12); width: 500px; height: 500px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.cta-inner { position: relative; z-index: 1; }
#cta .section-title { color: #fff; max-width: 520px; margin: 0 auto 14px; }
.cta-sub { font-size: 0.97rem; color: #888; max-width: 420px; margin: 0 auto 44px; line-height: 1.8; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer { background: #2A2235; padding: 56px 5%; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: #fff; margin-bottom: 10px; }
.footer-logo-link { display: inline-flex; align-items: center; margin-bottom: 10px; }
.footer-logo { height: 44px; width: auto; object-fit: contain; display: block; }
.footer-desc { font-size: 0.78rem; color: #5A5068; line-height: 1.7; max-width: 220px; }
.footer-h { font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: #4A4058; margin-bottom: 14px; font-weight: 600; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.78rem; color: #8A7F98; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--rose); }
.footer-col-group { display: contents; }
.footer-bottom { max-width: 1200px; margin: 36px auto 0; padding-top: 20px; border-top: 1px solid #3A3048; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-copy { font-size: 0.73rem; color: #4A4058; }
.footer-copy a { color: #8A7F98; text-decoration: none; transition: color 0.2s; }
.footer-copy a:hover { color: var(--rose); }

/* ── WA FLOAT ── */
.wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 300; width: 54px; height: 54px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.45); text-decoration: none; transition: transform 0.2s; }
.wa-float:hover { transform: scale(1.12); }
.wa-float svg { width: 26px; height: 26px; fill: #fff; }
.wa-pulse { position: absolute; width: 100%; height: 100%; border-radius: 50%; background: rgba(37,211,102,0.4); animation: pulse-ring 2s ease-out infinite; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .eventos-grid { grid-template-columns: repeat(3,1fr); }
  .features-grid { grid-template-columns: repeat(3,1fr); }
  .proceso-steps { grid-template-columns: repeat(3,1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .planes-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .test-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .faq-wrap { grid-template-columns: 1fr; }
  .estilos-grid { grid-template-columns: repeat(2,1fr); }
  .extras-grid { grid-template-columns: repeat(2,1fr); }
  .nav-links { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { flex-direction: row; align-items: center; gap: 14px; padding: 16px 18px; }
  .feature-icon-wrap { width: 42px; height: 42px; margin-bottom: 0; font-size: 1.2rem; }
  .feature-title { margin-bottom: 0; }
  .feature-desc { display: none; }
}
@media (max-width: 580px) {
  .eventos-grid { grid-template-columns: repeat(2,1fr); }
  .estilos-grid { grid-template-columns: 1fr; }
  .extras-grid { grid-template-columns: 1fr; }
  .proceso-steps { grid-template-columns: repeat(2,1fr); }
  footer { padding: 40px 6%; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .footer-inner > div:first-child { grid-column: 1 / -1; }
  .footer-col-group { display: flex; flex-direction: column; gap: 22px; }
  .footer-desc { max-width: none; }
}
