/* ===========================================
   INVITORA - Stylesheet
   Estructura clara para facilitar edicion
   por agentes de IA.
   =========================================== */

/* ---------- Variables Globales ---------- */
:root {
  --color-gold: #C5A059;
  --color-gold-dark: #9A7B3D;
  --color-white: #FFFFFF;
  --color-cream: #FAF7F2;
  --color-black: #2D2D2D;
  --color-gray: #666666;
  --color-gray-light: #F5F5F5;
  --color-border: #EAE5DC;

  --font-serif: Georgia, 'Times New Roman', serif;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.1);
  --radius: 10px;
  --radius-lg: 16px;
  --max-width: 1140px;
  --header-height: 72px;

  --motion-fast: 260ms;
  --motion-medium: 480ms;
  --motion-slow: 900ms;
  --motion-reveal: 950ms;
  --motion-hover: 420ms;
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: color var(--motion-fast) var(--ease-premium), background-color var(--motion-fast) var(--ease-premium), border-color var(--motion-fast) var(--ease-premium), box-shadow var(--motion-fast) var(--ease-premium), transform var(--motion-fast) var(--ease-premium);
}

/* ---------- Reset Basico ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-sans);
  color: var(--color-black);
  background-color: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ---------- Utilidades ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 12px;
  color: var(--color-black);
}

.section-subtitle {
  text-align: center;
  color: var(--color-gray);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 48px auto;
}

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-align: center;
}

.btn-gold {
  background-color: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
}

.btn-gold:hover {
  background-color: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.btn-outline:hover {
  background-color: var(--color-gold);
  color: var(--color-white);
}

.btn-whatsapp {
  background-color: #25D366;
  color: var(--color-white);
  border-color: #25D366;
  font-size: 1.1rem;
  padding: 16px 36px;
}

.btn-whatsapp:hover {
  background-color: #1DA851;
  border-color: #1DA851;
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  transition: background-color var(--motion-medium) var(--ease-premium), border-color var(--motion-medium) var(--ease-premium), box-shadow var(--motion-medium) var(--ease-premium), backdrop-filter var(--motion-medium) var(--ease-premium);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-gold);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  max-height: 100%;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  width: auto;
  height: 42px;
  max-width: 190px;
  object-fit: contain;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .brand-logo {
    height: 34px;
    max-width: 150px;
  }
}

.nav-desktop {
  display: none;
}

.nav-desktop a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-black);
  padding: 8px 12px;
  border-radius: 6px;
  transition: var(--transition);
}

.nav-desktop a:hover {
  color: var(--color-gold);
  background-color: var(--color-cream);
}

/* ---------- Menu Movil ---------- */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-black);
  transform-origin: center;
  transition: transform var(--motion-fast) var(--ease-premium), opacity var(--motion-fast) var(--ease-premium), background-color var(--motion-fast) var(--ease-premium);
}

.mobile-nav {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  visibility: hidden;
  transition: opacity var(--motion-medium) var(--ease-premium), transform var(--motion-medium) var(--ease-premium), visibility 0s linear var(--motion-medium);
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
  transition-delay: 0s;
}

.mobile-nav a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-black);
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
  transition: color var(--motion-fast) var(--ease-premium), transform var(--motion-fast) var(--ease-premium);
}

.mobile-nav a:hover {
  color: var(--color-gold);
  transform: translateX(3px);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 80px;
  background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-white) 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  filter: saturate(0.7);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--color-cream) 0%, rgba(255,255,255,0.85) 60%, var(--color-white) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  text-align: center;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-black);
  margin-bottom: 16px;
}

.hero-title span {
  color: var(--color-gold);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--color-gray);
  margin-bottom: 12px;
}

.hero-text {
  font-size: 0.95rem;
  color: var(--color-gray);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.mockup-phone {
  width: 280px;
  height: 560px;
  background: linear-gradient(145deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  border-radius: 36px;
  box-shadow: var(--shadow-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 12px;
}

.mockup-phone::before {
  content: '';
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.2) 0%, transparent 60%);
}

.mockup-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

/* ---------- Seccion Eventos ---------- */
.eventos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.evento-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.evento-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.evento-image {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, var(--color-cream) 0%, #F0E6D3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-gold-dark);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.evento-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.evento-card:hover .evento-image img {
  transform: scale(1.08);
}

.evento-content {
  padding: 24px;
}

.evento-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--color-black);
}

.evento-desc {
  font-size: 0.9rem;
  color: var(--color-gray);
  margin-bottom: 16px;
}

/* ---------- Seccion Paquetes ---------- */
.paquetes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.paquete-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 0 0 40px 0;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.paquete-image {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--color-cream) 0%, #F0E6D3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.paquete-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.paquete-card:hover .paquete-image img {
  transform: scale(1.06);
}

.paquete-card-body {
  padding: 32px 28px 0;
}

.paquete-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.paquete-card.featured {
  border: 2px solid var(--color-gold);
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-cream) 100%);
}

.paquete-badge {
  display: inline-block;
  background-color: var(--color-gold);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.paquete-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.paquete-desc {
  font-size: 0.9rem;
  color: var(--color-gray);
  margin-bottom: 24px;
}

.paquete-price {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--color-gold);
  margin-bottom: 24px;
}

.paquete-price span {
  font-size: 0.9rem;
  color: var(--color-gray);
  display: block;
  margin-top: 4px;
}

.paquete-features {
  text-align: left;
  margin-bottom: 32px;
}

.paquete-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9rem;
  color: var(--color-gray);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.paquete-features li::before {
  content: '✓';
  color: var(--color-gold);
  font-weight: 700;
  flex-shrink: 0;
}

.paquete-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ---------- Seccion Proceso ---------- */
.proceso-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.proceso-step {
  text-align: center;
  padding: 32px 24px;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  position: relative;
}

.proceso-number {
  width: 48px;
  height: 48px;
  background-color: var(--color-gold);
  color: var(--color-white);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
}

.proceso-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.proceso-desc {
  font-size: 0.9rem;
  color: var(--color-gray);
}

/* ---------- Seccion Sobre Nosotros ---------- */
.sobre-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.sobre-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: var(--radius-lg);
  margin: 0 auto 32px auto;
  display: block;
  box-shadow: var(--shadow);
}

.sobre-text {
  font-size: 1.1rem;
  color: var(--color-gray);
  line-height: 1.8;
}

/* ---------- Seccion Testimonios ---------- */
.testimonios-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonio-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}

.testimonio-quote {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--color-black);
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonio-author {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-black);
}

.testimonio-event {
  font-size: 0.85rem;
  color: var(--color-gold);
  margin-top: 4px;
}

.testimonio-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  margin: 0 auto 16px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  overflow: hidden;
  border: 3px solid var(--color-white);
  box-shadow: 0 4px 12px rgba(197, 160, 89, 0.25);
}

.testimonio-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Seccion Contacto ---------- */
.contacto {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: var(--color-white);
  text-align: center;
}

.contacto-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--color-white);
}

.contacto-text {
  font-size: 1.1rem;
  opacity: 0.95;
  max-width: 560px;
  margin: 0 auto 32px auto;
}

/* ---------- Footer ---------- */
.footer {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 60px 0 24px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 0.9rem;
  color: #AAA;
  max-width: 300px;
}

.footer-links h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--color-white);
}

.footer-links a {
  display: block;
  font-size: 0.9rem;
  color: #AAA;
  padding: 4px 0;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: #888;
}

/* ---------- Paginas Internas ---------- */
.page-header {
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 40px;
  background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-white) 100%);
  text-align: center;
}

.page-title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  color: var(--color-black);
  margin-bottom: 8px;
}

.page-subtitle {
  color: var(--color-gray);
  font-size: 1rem;
}

/* Terminos */
.terminos-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px 80px 24px;
}

.terminos-content h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--color-gold-dark);
}

.terminos-content p,
.terminos-content li {
  font-size: 1rem;
  color: var(--color-gray);
  margin-bottom: 12px;
  line-height: 1.7;
}

.terminos-content ul {
  margin-left: 20px;
  margin-bottom: 16px;
}

.terminos-content ul li {
  list-style: disc;
}

.terminos-content strong {
  color: var(--color-black);
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity var(--motion-slow) var(--ease-premium), visibility 0s linear var(--motion-slow);
}

.preloader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  width: 160px;
  height: auto;
  margin-bottom: 24px;
  animation: preloaderPulse 2s ease-in-out infinite;
}

.preloader-bar {
  width: 120px;
  height: 2px;
  background: var(--color-border);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.preloader-bar::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color-gold);
  transform: translateX(-100%);
  animation: preloaderSlide 1.5s ease-in-out infinite;
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 0.6; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1); }
}

@keyframes preloaderSlide {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

/* ---------- Animaciones Avanzadas ---------- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--motion-reveal) var(--ease-premium), transform var(--motion-reveal) var(--ease-premium);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: var(--reveal-delay, 0ms);
}

/* Tipos de animacion */
.animate-fade-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--motion-reveal) var(--ease-premium), transform var(--motion-reveal) var(--ease-premium);
}

.animate-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: var(--reveal-delay, 0ms);
}

.animate-scale-in {
  opacity: 0;
  transform: scale(0.995) translateY(14px);
  transition: opacity var(--motion-reveal) var(--ease-premium), transform var(--motion-reveal) var(--ease-premium);
}

.animate-scale-in.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition-delay: var(--reveal-delay, 0ms);
}

.animate-reveal {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transition: opacity var(--motion-reveal) var(--ease-premium), clip-path var(--motion-reveal) var(--ease-premium);
}

.animate-reveal.visible {
  opacity: 1;
  clip-path: inset(0 0% 0 0);
  transition-delay: var(--reveal-delay, 0ms);
}

/* Hero entrance animations */
.hero-entrance {
  opacity: 0;
  transform: translateY(16px);
  animation: heroFadeIn var(--motion-reveal) var(--ease-premium) forwards;
}

.hero-entrance:nth-child(1) { animation-delay: 80ms; }
.hero-entrance:nth-child(2) { animation-delay: 140ms; }
.hero-entrance:nth-child(3) { animation-delay: 200ms; }
.hero-entrance:nth-child(4) { animation-delay: 260ms; }

@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeInScale {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Floating animation for mockup */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(0.5deg); }
}

.mockup-phone {
  animation: float 6s ease-in-out infinite;
}

/* Shimmer effect */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Gold particles background */
.gold-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.gold-particles::before,
.gold-particles::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.08) 0%, transparent 70%);
  animation: particleFloat 20s ease-in-out infinite;
}

.gold-particles::before {
  top: 10%;
  left: -5%;
  animation-delay: 0s;
}

.gold-particles::after {
  bottom: 10%;
  right: -5%;
  width: 400px;
  height: 400px;
  animation-delay: -10s;
}

@keyframes particleFloat {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  33% { transform: translate(30px, -20px) scale(1.1); opacity: 0.8; }
  66% { transform: translate(-20px, 15px) scale(0.95); opacity: 0.6; }
}

/* Hover effects */
.evento-card {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.evento-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.paquete-card {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.paquete-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.14);
}

.paquete-card.featured {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.paquete-card.featured:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 28px 72px rgba(197, 160, 89, 0.2);
}

.testimonio-card {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

/* Proceso step animations */
.proceso-step {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.proceso-step:hover {
  transform: translateY(-6px);
}

.proceso-step:hover .proceso-number {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(197, 160, 89, 0.3);
}

.proceso-number {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

/* Button shine effect */
.btn-gold {
  position: relative;
  overflow: hidden;
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}

.btn-gold:hover::before {
  left: 100%;
}

/* WhatsApp button pulse */
.btn-whatsapp {
  position: relative;
  overflow: hidden;
}

.btn-whatsapp::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  border: 2px solid #25D366;
  opacity: 0;
  animation: whatsappPulse 2s ease-out infinite;
}

@keyframes whatsappPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.08); opacity: 0; }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-gold);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
  opacity: 0.7;
}

.scroll-indicator svg {
  width: 24px;
  height: 24px;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Section title underline animation */
.section-title {
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  margin: 8px auto 0;
  transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.section-title.visible::after {
  width: 60px;
}

/* Image shimmer placeholder */
.evento-image {
  position: relative;
  overflow: hidden;
}

.evento-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
  pointer-events: none;
}

/* Counter animation for proceso numbers */
@keyframes countIn {
  0% { transform: scale(0) rotate(-10deg); opacity: 0; }
  60% { transform: scale(1.15) rotate(2deg); opacity: 1; }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

.proceso-step.visible .proceso-number {
  animation: countIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.proceso-step.visible:nth-child(1) .proceso-number { animation-delay: 0.1s; }
.proceso-step.visible:nth-child(2) .proceso-number { animation-delay: 0.2s; }
.proceso-step.visible:nth-child(3) .proceso-number { animation-delay: 0.3s; }
.proceso-step.visible:nth-child(4) .proceso-number { animation-delay: 0.4s; }

/* ---------- Responsive ---------- */
@media (min-width: 640px) {
  .hero-title {
    font-size: 3.25rem;
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .paquetes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proceso-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonios-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .nav-desktop {
    display: flex;
    gap: 8px;
  }

  .eventos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proceso-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }

  .hero-content {
    text-align: left;
  }

  .hero-text {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-buttons {
    justify-content: flex-start;
  }

  .eventos-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .paquetes-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonios-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

/* ===========================================
   LANDING PREMIUM 2026
   Landing-specific system for Invitora homepage.
   =========================================== */

.landing-page {
  --color-ink: #191713;
  --color-ink-soft: #3f3a32;
  --color-muted: #756d61;
  --color-ivory: #fbf7ee;
  --color-pearl: #fffdf8;
  --color-champagne: #ead7b4;
  --color-antique: #c59f58;
  --color-antique-dark: #8c6a34;
  --color-blush: #d9a69b;
  --color-rose-gold: #bd806f;
  --color-charcoal: #141210;
  --color-espresso: #241913;
  --color-bronze: #b47a3b;
  --color-whiskey: #8f552b;
  --line-soft: rgba(111, 92, 60, 0.18);
  --premium-shadow: 0 28px 80px rgba(54, 38, 16, 0.13);
  --premium-shadow-deep: 0 30px 90px rgba(12, 10, 8, 0.28);
  --radius-xl: 28px;
  --radius-2xl: 38px;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--color-ink);
  background:
    radial-gradient(circle at 15% 5%, rgba(234, 215, 180, 0.45), transparent 28rem),
    linear-gradient(180deg, #fffaf1 0%, #fffdf8 18%, #fbf7ee 100%);
  overflow-x: hidden;
}

.landing-page .container {
  max-width: 1200px;
}

.landing-page .section {
  position: relative;
  padding: clamp(72px, 9vw, 132px) 0;
  overflow: hidden;
}

.landing-page .section-title {
  max-width: 820px;
  margin: 0 auto 18px;
  color: var(--color-ink);
  font-family: var(--font-serif);
  font-size: clamp(2.35rem, 5vw, 5.2rem);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-align: center;
  left: auto;
  transform: none;
  display: block;
}

.landing-page .section-title::after {
  display: none;
}

.landing-page .section-title.align-left {
  margin-left: 0;
  text-align: left;
}

.landing-page .section-subtitle {
  max-width: 710px;
  margin-bottom: clamp(38px, 5vw, 68px);
  color: var(--color-muted);
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  line-height: 1.8;
}

.landing-page .section-kicker,
.landing-page .eyebrow {
  color: var(--color-antique-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.4;
  margin-bottom: 14px;
  text-align: center;
  text-transform: uppercase;
}

.landing-page .section-copy .section-kicker,
.landing-page .style-content .eyebrow,
.landing-page .family-content .eyebrow,
.landing-page .hero-copy .eyebrow {
  text-align: left;
}

.landing-page .section-text {
  color: var(--color-muted);
  font-size: 1.06rem;
  line-height: 1.85;
  margin-bottom: 30px;
  max-width: 620px;
}

.landing-page .btn {
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.landing-page a:focus-visible,
.landing-page button:focus-visible,
.landing-page summary:focus-visible {
  outline: 2px solid var(--color-antique);
  outline-offset: 4px;
}

.btn-premium {
  min-height: 50px;
  padding: 14px 24px;
}

.landing-page .btn-gold {
  background: linear-gradient(135deg, #d6b46f 0%, #a57a34 100%);
  border-color: transparent;
  box-shadow: 0 16px 38px rgba(158, 113, 44, 0.24);
}

.landing-page .btn-gold:hover {
  background: linear-gradient(135deg, #e0c27c 0%, #93692d 100%);
  box-shadow: 0 22px 54px rgba(158, 113, 44, 0.3);
}

.landing-page .btn-outline {
  border-color: rgba(159, 122, 54, 0.36);
  color: var(--color-ink);
  background: rgba(255, 253, 248, 0.56);
  backdrop-filter: blur(16px);
}

.landing-page .btn-outline:hover {
  border-color: var(--color-antique);
  background: #fff9ed;
  color: var(--color-ink);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(48, 33, 12, 0.12);
}

.light-outline {
  border-color: rgba(255, 255, 255, 0.34) !important;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

.light-outline:hover {
  background: rgba(255, 255, 255, 0.16) !important;
}

.btn-copper {
  background: linear-gradient(135deg, #c18a4f 0%, #6f3a1d 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 18px 42px rgba(70, 35, 14, 0.35);
}

.btn-copper:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(70, 35, 14, 0.42);
}

.landing-header {
  background: rgba(255, 252, 246, 0.72);
  border-bottom: 1px solid rgba(132, 104, 55, 0.16);
  backdrop-filter: blur(22px);
}

.landing-header.is-scrolled {
  box-shadow: 0 12px 40px rgba(53, 37, 15, 0.08);
}

.landing-header .nav-desktop a {
  color: rgba(25, 23, 19, 0.76);
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: color var(--motion-fast) var(--ease-premium), background-color var(--motion-fast) var(--ease-premium), border-color var(--motion-fast) var(--ease-premium), transform var(--motion-fast) var(--ease-premium);
}

.landing-header .nav-desktop a:hover {
  background: rgba(201, 162, 77, 0.1);
  border-color: rgba(201, 162, 77, 0.22);
  color: var(--color-ink);
  transform: translateY(-1px);
}

.landing-header .nav-desktop .nav-cta {
  background: var(--color-ink);
  color: #fff;
  padding: 8px 16px;
}

.landing-header .nav-desktop .nav-cta:hover {
  background: var(--color-antique-dark);
  color: #fff;
}

.landing-page .mobile-nav {
  background: rgba(255, 252, 246, 0.96);
  backdrop-filter: blur(22px);
}

.landing-page .menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.landing-page .menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.landing-page .menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(920px, 100svh);
  padding: calc(var(--header-height) + clamp(42px, 6vw, 78px)) 0 clamp(64px, 7vw, 96px);
  overflow: hidden;
}

.hero-ambient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 18%, rgba(217, 166, 155, 0.28), transparent 25rem),
    radial-gradient(circle at 82% 75%, rgba(180, 122, 59, 0.22), transparent 28rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), transparent 45%);
  pointer-events: none;
}

.hero-ambient::before {
  content: '';
  position: absolute;
  inset: 9% 4% auto auto;
  width: 44vw;
  height: 44vw;
  max-width: 650px;
  max-height: 650px;
  border: 1px solid rgba(175, 138, 72, 0.18);
  border-radius: 999px;
  transform: rotate(-14deg);
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
  gap: clamp(42px, 6vw, 84px);
  align-items: center;
  min-width: 0;
  width: 100%;
}

.hero-copy,
.hero-showcase,
.section-copy {
  min-width: 0;
}

.hero-heading {
  max-width: 730px;
  margin-bottom: 24px;
  color: var(--color-ink);
  font-family: var(--font-serif);
  font-size: clamp(3.15rem, 6.2vw, 6.6rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.86;
}

.hero-lede {
  max-width: 610px;
  color: var(--color-muted);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.85;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.hero-proof span {
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.6);
  color: var(--color-ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 9px 13px;
}

.hero-showcase {
  justify-self: end;
  width: min(100%, 560px);
}

.preview-switcher {
  display: flex;
  gap: 7px;
  width: fit-content;
  margin: 0 auto 18px;
  padding: 7px;
  border: 1px solid rgba(139, 109, 58, 0.22);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 18px 50px rgba(52, 39, 16, 0.08);
  backdrop-filter: blur(18px);
}

.preview-tab {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--color-muted);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 900;
  padding: 9px 13px;
  transition: color var(--motion-fast) var(--ease-premium), background-color var(--motion-fast) var(--ease-premium), box-shadow var(--motion-fast) var(--ease-premium), transform var(--motion-fast) var(--ease-premium);
}

.preview-tab:hover,
.preview-tab:focus-visible {
  color: var(--color-ink);
  transform: translateY(-1px);
}

.preview-tab.active {
  background: var(--color-ink);
  color: #fff;
  box-shadow: 0 10px 26px rgba(25, 23, 19, 0.18);
  transform: translateY(0);
}

.editorial-collage {
  position: relative;
  min-height: clamp(540px, 52vw, 610px);
}

.collage-card-main {
  position: absolute;
  inset: 26px 58px 78px 72px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 42px;
  background: linear-gradient(145deg, rgba(255, 253, 248, 0.94), rgba(244, 232, 210, 0.88));
  box-shadow: var(--premium-shadow);
  overflow: hidden;
}

.collage-card-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 20%, transparent 0 42%, rgba(20, 13, 8, 0.16) 100%),
    linear-gradient(180deg, transparent 46%, rgba(16, 13, 10, 0.42) 100%);
  pointer-events: none;
}

.preview-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity var(--motion-slow) var(--ease-premium), transform var(--motion-slow) var(--ease-premium);
}

.preview-image-romantic {
  object-position: 48% 42%;
}

.preview-image-corrido {
  object-position: 52% 48%;
}

.preview-image.active {
  opacity: 1;
  transform: scale(1);
}

.floating-note,
.mini-player {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 20px 50px rgba(42, 30, 13, 0.14);
  backdrop-filter: blur(18px);
}

.floating-note {
  padding: 16px 18px;
}

.floating-note span,
.mini-player small,
.story-card span {
  display: block;
  color: var(--color-antique-dark);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.floating-note strong,
.mini-player strong {
  display: block;
  color: var(--color-ink);
  font-size: 0.9rem;
  line-height: 1.35;
  margin-top: 4px;
}

.note-invitation {
  top: 58px;
  left: 0;
  max-width: 190px;
}

.note-song {
  right: 0;
  bottom: 118px;
  max-width: 210px;
}

.mini-player {
  left: 36px;
  right: 32px;
  bottom: 30px;
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px 20px;
}

.player-dot {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-antique), var(--color-rose-gold));
  flex: 0 0 auto;
}

.player-dot::before,
.player-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 4px;
  border-radius: 999px;
  background: #fff;
  transform: translateY(-50%);
}

.player-dot::before {
  left: 16px;
  height: 15px;
}

.player-dot::after {
  right: 16px;
  height: 22px;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  color: rgba(25, 23, 19, 0.52);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue::after {
  content: '';
  display: block;
  width: 1px;
  height: 38px;
  margin: 10px auto 0;
  background: linear-gradient(180deg, rgba(197, 159, 88, 0), rgba(197, 159, 88, 0.9));
}

.product-overview {
  background: var(--color-pearl);
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 22px;
}

.product-family-card {
  position: relative;
  min-height: 520px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 20px 70px rgba(43, 31, 12, 0.08);
  transition: transform var(--motion-hover) var(--ease-premium), box-shadow var(--motion-hover) var(--ease-premium);
}

.product-family-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--premium-shadow);
}

.invitations-family {
  display: grid;
  grid-template-rows: 1fr auto;
  background: #fff;
}

.song-family {
  display: flex;
  align-items: flex-end;
  background:
    radial-gradient(circle at 18% 18%, rgba(216, 174, 105, 0.24), transparent 22rem),
    linear-gradient(180deg, rgba(19, 15, 12, 0.22), rgba(19, 15, 12, 0.92)),
    url('https://images.unsplash.com/photo-1493225457124-a3eb161ffa5f?auto=format&fit=crop&w=1100&q=84') center/cover;
  color: #fff;
}

.family-media {
  min-height: 300px;
  overflow: hidden;
}

.family-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--motion-slow) var(--ease-premium);
}

.product-family-card:hover .family-media img {
  transform: scale(1.02);
}

.family-content {
  padding: clamp(28px, 4vw, 44px);
}

.family-content h3 {
  margin-bottom: 14px;
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 3.6vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.family-content p {
  color: var(--color-muted);
  font-size: 1rem;
  line-height: 1.78;
  margin-bottom: 24px;
}

.song-family .family-content p,
.song-family .eyebrow {
  color: rgba(255, 245, 224, 0.78);
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 26px;
}

.feature-pills li {
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  color: var(--color-ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 8px 12px;
}

.text-link {
  color: var(--color-antique-dark);
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.text-link::after {
  content: '→';
  margin-left: 8px;
  transition: transform var(--motion-fast) var(--ease-premium);
}

.text-link:hover::after {
  transform: translateX(5px);
}

.text-link-light {
  color: var(--color-champagne);
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.subproduct-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 26px;
}

.subproduct-card {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 16px;
  transition: transform var(--motion-hover) var(--ease-premium), background-color var(--motion-hover) var(--ease-premium), border-color var(--motion-hover) var(--ease-premium);
}

.subproduct-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.subproduct-card span {
  display: block;
  color: rgba(255, 245, 224, 0.7);
  font-size: 0.72rem;
  font-weight: 800;
  margin-bottom: 5px;
}

.subproduct-card strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.3;
}

.simple-explainer {
  background:
    radial-gradient(circle at 84% 10%, rgba(217, 166, 155, 0.2), transparent 26rem),
    linear-gradient(180deg, var(--color-pearl), #fff7ec);
}

.explainer-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.plain-language-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.plain-language-card {
  border: 1px solid var(--line-soft);
  border-radius: 26px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 18px 48px rgba(54, 38, 16, 0.07);
  padding: 26px;
  transition: transform var(--motion-hover) var(--ease-premium), box-shadow var(--motion-hover) var(--ease-premium);
}

.plain-language-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--premium-shadow);
}

.plain-language-card span,
.use-case-card span {
  color: var(--color-antique-dark);
  display: block;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.plain-language-card h3,
.use-case-card h3 {
  color: var(--color-ink);
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 2.8vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.98;
  margin-bottom: 14px;
}

.plain-language-card p,
.use-case-card p {
  color: var(--color-muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.split-layout,
.song-layout,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
}

.invitations-section {
  background:
    linear-gradient(180deg, #fffdf8, #fbf7ee),
    radial-gradient(circle at 20% 20%, rgba(234, 215, 180, 0.45), transparent 30rem);
}

.benefit-list {
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
}

.benefit-list div {
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.64);
  padding: 16px 18px;
}

.benefit-list strong,
.benefit-list span {
  display: block;
}

.benefit-list strong {
  color: var(--color-ink);
  margin-bottom: 4px;
}

.benefit-list span {
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.device-stage {
  position: relative;
  min-height: clamp(500px, 48vw, 560px);
}

.browser-preview {
  position: absolute;
  inset: 30px 0 90px 0;
  border: 1px solid rgba(159, 122, 54, 0.18);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--premium-shadow);
  overflow: hidden;
}

.browser-bar {
  display: flex;
  gap: 7px;
  align-items: center;
  height: 44px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(159, 122, 54, 0.12);
  background: #fffaf0;
}

.browser-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-champagne);
}

.browser-preview img {
  width: 100%;
  height: calc(100% - 44px);
  object-fit: cover;
}

.phone-preview {
  border: 9px solid #16130f;
  border-radius: 34px;
  background: #16130f;
  box-shadow: 0 28px 70px rgba(18, 14, 9, 0.24);
  overflow: hidden;
}

.phone-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlap-phone {
  position: absolute;
  right: 4%;
  bottom: 0;
  width: min(42%, 230px);
  height: 440px;
}

.event-collection {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.event-card {
  border: 1px solid var(--line-soft);
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.76);
  box-shadow: 0 16px 40px rgba(50, 35, 12, 0.06);
  overflow: hidden;
  transition: transform var(--motion-hover) var(--ease-premium), box-shadow var(--motion-hover) var(--ease-premium);
}

.event-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(50, 35, 12, 0.09);
}

.event-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.event-card h3 {
  margin: 18px 18px 6px;
  font-family: var(--font-serif);
  font-size: 1.55rem;
  line-height: 1;
}

.event-card p {
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.58;
  margin: 0 18px 20px;
}

.song-experience {
  background:
    radial-gradient(circle at 18% 20%, rgba(185, 128, 72, 0.35), transparent 30rem),
    linear-gradient(135deg, #171310 0%, #241913 46%, #0f0e0d 100%);
  color: #fff;
}

.song-glow {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
}

.light-copy .section-title,
.light-copy .section-text {
  color: #fff;
}

.light-copy .section-text {
  color: rgba(255, 245, 224, 0.72);
}

.song-visual {
  position: relative;
  min-height: clamp(500px, 48vw, 540px);
}

.experience-frame {
  position: absolute;
  inset: 0 56px 70px 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-2xl);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--premium-shadow-deep);
  overflow: hidden;
}

.experience-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 14%, transparent 0 38%, rgba(15, 10, 7, 0.2) 100%),
    linear-gradient(180deg, transparent 42%, rgba(10, 8, 7, 0.78));
}

.experience-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}

.audio-card,
.story-card {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(22, 17, 13, 0.72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
}

.audio-card {
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: flex;
  gap: 14px;
  align-items: center;
  border-radius: 24px;
  padding: 18px;
}

.audio-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-champagne), var(--color-bronze));
  color: #1c130d;
  font-size: 1.35rem;
  font-weight: 900;
}

.audio-card small {
  color: rgba(255, 245, 224, 0.65);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.audio-card strong {
  display: block;
  color: #fff;
}

.story-card {
  right: 0;
  bottom: 0;
  width: 250px;
  border-radius: 24px;
  padding: 22px;
}

.story-card p {
  color: rgba(255, 245, 224, 0.78);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-top: 8px;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.included-grid div {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  padding: 17px;
}

.included-grid span {
  color: var(--color-champagne);
  display: block;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  line-height: 1;
  margin-bottom: 8px;
}

.included-grid strong {
  color: #fff;
  display: block;
  font-size: 0.9rem;
  line-height: 1.35;
}

.style-showcase {
  background: var(--color-ivory);
}

.style-panels {
  display: grid;
  gap: 28px;
}

.style-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  border-radius: var(--radius-2xl);
  overflow: hidden;
}

.romantic-panel {
  border: 1px solid rgba(192, 136, 119, 0.2);
  background:
    radial-gradient(circle at 78% 12%, rgba(217, 166, 155, 0.22), transparent 24rem),
    linear-gradient(135deg, #fffdf8, #f4e7df);
  padding: clamp(18px, 3vw, 30px);
}

.corrido-panel {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  border: 1px solid rgba(197, 139, 68, 0.2);
  background:
    radial-gradient(circle at 15% 22%, rgba(180, 122, 59, 0.22), transparent 26rem),
    linear-gradient(135deg, #171310, #2a1b13 58%, #0f0e0d);
  color: #fff;
  padding: clamp(18px, 3vw, 30px);
}

.style-media {
  min-height: clamp(420px, 42vw, 500px);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(62, 39, 14, 0.14);
}

.style-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--motion-slow) var(--ease-premium);
}

.romantic-panel .style-media img {
  object-position: 50% 42%;
}

.corrido-panel .style-media img {
  object-position: 50% 48%;
}

.style-panel:hover .style-media img {
  transform: scale(1.02);
}

.corrido-media {
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.style-content {
  padding: clamp(10px, 3vw, 34px);
}

.style-content h3 {
  margin-bottom: 18px;
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 4.6vw, 5.2rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.88;
}

.style-content p {
  color: var(--color-muted);
  font-size: 1.02rem;
  line-height: 1.78;
  margin-bottom: 24px;
}

.corrido-panel .style-content p,
.corrido-panel .eyebrow {
  color: rgba(255, 245, 224, 0.72);
}

.check-list {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.check-list li {
  color: var(--color-ink-soft);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.94rem;
  line-height: 1.48;
}

.check-list li::before {
  content: '';
  width: 7px;
  height: 7px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--color-antique);
  box-shadow: 0 0 0 5px rgba(197, 159, 88, 0.13);
  flex: 0 0 auto;
}

.dark-checks li,
.corrido-panel .check-list li,
.song-family .check-list li {
  color: rgba(255, 245, 224, 0.78);
}

.dark-checks li::before,
.corrido-panel .check-list li::before {
  background: var(--color-bronze);
  box-shadow: 0 0 0 5px rgba(180, 122, 59, 0.16);
}

.use-cases-section {
  background:
    radial-gradient(circle at 12% 14%, rgba(234, 215, 180, 0.42), transparent 25rem),
    linear-gradient(180deg, var(--color-ivory), #fffdf8);
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.use-case-card {
  position: relative;
  min-height: 260px;
  border: 1px solid var(--line-soft);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 249, 238, 0.92));
  box-shadow: 0 18px 48px rgba(54, 38, 16, 0.07);
  padding: 26px;
  overflow: hidden;
  transition: transform var(--motion-hover) var(--ease-premium), box-shadow var(--motion-hover) var(--ease-premium), border-color var(--motion-hover) var(--ease-premium);
}

.use-case-card::after {
  content: '';
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 104px;
  height: 104px;
  border: 1px solid rgba(197, 159, 88, 0.2);
  border-radius: 999px;
}

.use-case-card:hover {
  border-color: rgba(197, 159, 88, 0.36);
  transform: translateY(-3px);
  box-shadow: var(--premium-shadow);
}

.process-section {
  background: #fffdf8;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-card {
  position: relative;
  border: 1px solid var(--line-soft);
  border-radius: 26px;
  background: linear-gradient(180deg, #fff, #fff9ef);
  padding: 28px 24px;
  box-shadow: 0 18px 46px rgba(53, 37, 15, 0.07);
  transition: transform var(--motion-hover) var(--ease-premium), box-shadow var(--motion-hover) var(--ease-premium);
}

.process-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 56px rgba(53, 37, 15, 0.10);
}

.process-card span {
  color: var(--color-antique);
  display: block;
  font-family: var(--font-serif);
  font-size: 2.6rem;
  line-height: 1;
  margin-bottom: 26px;
}

.process-card h3 {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  line-height: 1.05;
  margin-bottom: 12px;
}

.process-card p {
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.62;
}

.packages-section {
  background:
    linear-gradient(180deg, var(--color-ivory), #fffdf8 55%, var(--color-ivory));
}

.premium-packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.premium-package {
  position: relative;
  border: 1px solid var(--line-soft);
  border-radius: 32px;
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 20px 60px rgba(54, 38, 16, 0.08);
  padding: 34px 28px;
  transition: transform var(--motion-hover) var(--ease-premium), box-shadow var(--motion-hover) var(--ease-premium);
}

.premium-package:hover {
  transform: translateY(-3px);
  box-shadow: var(--premium-shadow);
}

.featured-package {
  background:
    radial-gradient(circle at 80% 0%, rgba(234, 215, 180, 0.45), transparent 18rem),
    linear-gradient(180deg, #211810, #13100d);
  color: #fff;
  transform: translateY(-18px);
}

.featured-package:hover {
  transform: translateY(-16px);
}

.package-badge,
.package-topline {
  width: fit-content;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1;
  padding: 9px 11px;
  text-transform: uppercase;
}

.package-topline {
  border: 1px solid rgba(197, 159, 88, 0.26);
  color: var(--color-antique-dark);
  margin-bottom: 26px;
}

.package-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--color-antique);
  color: #fff;
}

.premium-package h3 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  letter-spacing: -0.045em;
  line-height: 0.95;
  margin-bottom: 14px;
}

.premium-package p {
  color: var(--color-muted);
  font-size: 0.94rem;
  line-height: 1.68;
  margin-bottom: 22px;
}

.featured-package p,
.featured-package .check-list li,
.featured-package .package-topline {
  color: rgba(255, 245, 224, 0.76);
}

.featured-package .package-topline {
  border-color: rgba(255, 255, 255, 0.2);
}

.package-price {
  color: var(--color-antique-dark);
  font-size: 0.95rem;
  font-weight: 900;
  margin-bottom: 22px;
}

.featured-package .package-price {
  color: var(--color-champagne);
}

.package-actions {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.previews-section {
  background: var(--color-pearl);
}

.preview-gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-auto-rows: 230px;
  gap: 18px;
}

.preview-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(31, 22, 9, 0.11);
  transition: transform var(--motion-hover) var(--ease-premium), box-shadow var(--motion-hover) var(--ease-premium);
}

.preview-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--premium-shadow);
}

.preview-card.tall {
  grid-row: span 2;
}

.preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--motion-slow) var(--ease-premium);
}

.preview-card:hover img {
  transform: scale(1.02);
}

.preview-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(12, 10, 8, 0.68));
}

.preview-card span {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 1;
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1;
}

.testimonials-section {
  background: linear-gradient(180deg, #fffdf8, var(--color-ivory));
}

.testimonial-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.benefits-grid {
  grid-template-columns: repeat(3, 1fr);
}

.benefit-card {
  min-height: 100%;
}

.testimonial-premium {
  border: 1px solid var(--line-soft);
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.84);
  box-shadow: 0 20px 54px rgba(54, 38, 16, 0.07);
  padding: 28px;
}

.testimonial-premium img {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  object-fit: cover;
  margin-bottom: 22px;
  box-shadow: 0 0 0 6px rgba(234, 215, 180, 0.38);
}

.testimonial-premium p {
  color: var(--color-ink-soft);
  font-family: var(--font-serif);
  font-size: 1.34rem;
  line-height: 1.35;
  margin-bottom: 24px;
}

.testimonial-premium strong,
.testimonial-premium span {
  display: block;
}

.testimonial-premium strong {
  color: var(--color-ink);
  font-size: 0.95rem;
}

.testimonial-premium span {
  color: var(--color-antique-dark);
  font-size: 0.8rem;
  font-weight: 800;
  margin-top: 3px;
}

.faq-section {
  background: #fffdf8;
}

.faq-layout {
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 16px 40px rgba(54, 38, 16, 0.055);
  overflow: hidden;
  transition: border-color var(--motion-medium) var(--ease-premium), box-shadow var(--motion-medium) var(--ease-premium), background-color var(--motion-medium) var(--ease-premium);
}

.faq-item:hover,
.faq-item[open] {
  border-color: rgba(159, 122, 54, 0.24);
  box-shadow: 0 18px 48px rgba(54, 38, 16, 0.08);
}

.faq-item summary {
  color: var(--color-ink);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
  padding: 22px 24px;
  transition: color var(--motion-fast) var(--ease-premium);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  float: right;
  color: var(--color-antique-dark);
  font-size: 1.2rem;
  transition: transform var(--motion-fast) var(--ease-premium), color var(--motion-fast) var(--ease-premium);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  border-top: 1px solid rgba(159, 122, 54, 0.13);
  color: var(--color-muted);
  line-height: 1.72;
  padding: 0 24px 22px;
}

.faq-item[open] p {
  animation: faqReveal var(--motion-medium) var(--ease-premium);
}

@keyframes faqReveal {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.final-cta {
  background:
    radial-gradient(circle at 15% 25%, rgba(197, 159, 88, 0.25), transparent 30rem),
    linear-gradient(135deg, #171310, #2a1b13 62%, #0f0e0d);
  color: #fff;
}

.final-cta-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: clamp(30px, 5vw, 58px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.04);
  box-shadow: var(--premium-shadow-deep);
  padding: clamp(38px, 8vw, 88px);
  text-align: center;
}

.final-cta-card .section-kicker {
  color: var(--color-champagne);
}

.final-cta-card h2 {
  max-width: 850px;
  margin: 0 auto 20px;
  font-family: var(--font-serif);
  font-size: clamp(2.7rem, 6vw, 6.2rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.final-cta-card p {
  max-width: 700px;
  margin: 0 auto 32px;
  color: rgba(255, 245, 224, 0.74);
  font-size: 1.05rem;
  line-height: 1.75;
}

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

.refined-footer {
  background:
    radial-gradient(circle at 12% 0%, rgba(197, 159, 88, 0.12), transparent 24rem),
    linear-gradient(135deg, #11100e, #19130f 58%, #0d0c0b);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-img {
  width: 170px;
  height: auto;
  margin-bottom: 16px;
  max-height: 58px;
  object-fit: contain;
}

.refined-footer .footer-desc {
  color: rgba(255, 245, 224, 0.62);
  line-height: 1.7;
  max-width: 380px;
}

.refined-footer .footer-links h4 {
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.refined-footer .footer-links a {
  color: rgba(255, 245, 224, 0.6);
  width: fit-content;
}

.refined-footer .footer-links a:hover {
  color: var(--color-champagne);
}

.refined-footer .footer-bottom {
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 245, 224, 0.48);
}

.landing-page .animate-on-scroll.is-revealing,
.landing-page .animate-fade-up.is-revealing,
.landing-page .animate-scale-in.is-revealing,
.landing-page .animate-reveal.is-revealing {
  will-change: opacity, transform;
}

@media (max-width: 1080px) {
  .hero-layout,
  .explainer-layout,
  .split-layout,
  .song-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    justify-self: center;
  }

  .product-grid,
  .style-panel,
  .corrido-panel {
    grid-template-columns: 1fr;
  }

  .process-timeline,
  .event-collection,
  .use-case-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .premium-packages,
  .testimonial-strip {
    grid-template-columns: 1fr;
  }

  .featured-package,
  .featured-package:hover {
    transform: none;
  }

  .style-media {
    min-height: 380px;
  }
}

@media (max-width: 1120px) {
  .landing-page .nav-desktop {
    display: none;
  }

  .landing-page .menu-toggle {
    display: flex;
  }
}

@media (min-width: 1121px) {
  .landing-page .nav-desktop {
    display: flex;
    gap: 6px;
  }

  .landing-page .menu-toggle {
    display: none;
  }
}

@media (max-width: 760px) {
  .landing-page .container {
    padding: 0 18px;
  }

  .landing-page .section {
    padding: 66px 0;
  }

  .site-hero {
    min-height: auto;
    display: block;
    padding-top: calc(var(--header-height) + 34px);
    padding-bottom: 56px;
  }

  .hero-copy,
  .hero-showcase {
    width: calc(100vw - 36px);
    max-width: 100%;
  }

  .hero-heading {
    font-size: clamp(2.75rem, 15.5vw, 4.6rem);
    line-height: 0.9;
    max-width: 100%;
  }

  .hero-lede,
  .section-text {
    font-size: 0.98rem;
  }

  .hero-actions,
  .section-actions,
  .final-cta-card .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn,
  .section-actions .btn,
  .final-cta-card .btn {
    width: 100%;
  }

  .hero-proof {
    gap: 7px;
  }

  .hero-proof span {
    font-size: 0.72rem;
  }

  .preview-switcher {
    width: 100%;
    justify-content: center;
  }

  .preview-tab {
    flex: 1;
    padding-left: 8px;
    padding-right: 8px;
  }

  .card-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .editorial-collage {
    min-height: 460px;
  }

  .collage-card-main {
    inset: 16px 18px 92px;
    border-radius: 32px;
  }

  .note-invitation {
    top: 0;
    left: 0;
  }

  .note-song {
    right: 0;
    bottom: 110px;
  }

  .floating-note {
    max-width: 178px;
    padding: 13px;
  }

  .floating-note strong,
  .mini-player strong {
    font-size: 0.8rem;
  }

  .mini-player {
    left: 0;
    right: 0;
    bottom: 10px;
    padding: 14px;
  }

  .product-family-card {
    min-height: auto;
  }

  .subproduct-row,
  .plain-language-grid,
  .included-grid,
  .process-timeline,
  .event-collection,
  .use-case-grid {
    grid-template-columns: 1fr;
  }

  .plain-language-card,
  .use-case-card {
    padding: 22px;
  }

  .device-stage,
  .song-visual {
    min-height: 420px;
  }

  .browser-preview {
    inset: 0 0 84px;
  }

  .overlap-phone {
    width: 180px;
    height: 330px;
    right: 8px;
  }

  .event-card img {
    height: 190px;
  }

  .experience-frame {
    inset: 0 0 78px;
  }

  .story-card {
    left: 18px;
    right: 18px;
    width: auto;
  }

  .style-panel,
  .romantic-panel,
  .corrido-panel {
    border-radius: 30px;
  }

  .style-media {
    min-height: 300px;
    border-radius: 24px;
  }

  .premium-package {
    padding: 30px 22px;
  }

  .preview-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .preview-card.tall {
    grid-row: span 1;
  }

  .testimonial-premium p {
    font-size: 1.18rem;
  }

  .faq-item summary {
    padding: 20px;
  }

  .faq-item p {
    padding: 0 20px 20px;
  }

  .final-cta-card {
    padding: 36px 20px;
  }
}

@media (max-width: 430px) {
  .landing-page .section-title {
    font-size: 2.42rem;
  }

  .hero-heading {
    font-size: 2.92rem;
  }

  .editorial-collage {
    min-height: 400px;
  }

  .collage-card-main {
    inset: 22px 0 100px;
  }

  .floating-note {
    display: none;
  }

  .device-stage,
  .song-visual {
    min-height: 380px;
  }

  .overlap-phone {
    width: 150px;
    height: 290px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-page *,
  .landing-page *::before,
  .landing-page *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .landing-page .animate-on-scroll,
  .landing-page .animate-fade-up,
  .landing-page .animate-scale-in,
  .landing-page .animate-reveal,
  .hero-entrance {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }
}

/* ===========================================
   LANDING ART DIRECTION 2
   Editorial, cinematic, motion-rich overrides.
   =========================================== */

.landing-page {
  --color-ink: #17120f;
  --color-ink-soft: #372c25;
  --color-muted: #796f66;
  --color-ivory: #f8f1e5;
  --color-pearl: #fffaf2;
  --color-champagne: #efd9ab;
  --color-antique: #c79a4d;
  --color-antique-dark: #8d6629;
  --color-blush: #d4a197;
  --color-rose-gold: #b66f63;
  --color-charcoal: #100d0b;
  --color-espresso: #20120e;
  --color-bronze: #b87932;
  --color-whiskey: #7f471f;
  --line-soft: rgba(92, 70, 41, 0.18);
  --line-glass: rgba(255, 255, 255, 0.46);
  --paper: #fff8ec;
  --paper-warm: #f2e3cc;
  --black-glass: rgba(15, 11, 9, 0.74);
  --premium-shadow: 0 32px 90px rgba(36, 24, 12, 0.18), 0 1px 0 rgba(255, 255, 255, 0.78) inset;
  --premium-shadow-deep: 0 42px 120px rgba(9, 7, 6, 0.48), 0 1px 0 rgba(255, 255, 255, 0.12) inset;
  --radius-xl: 30px;
  --radius-2xl: 46px;
  background:
    linear-gradient(90deg, rgba(118, 92, 51, 0.045) 1px, transparent 1px) 0 0 / 88px 88px,
    linear-gradient(180deg, #fffaf2 0%, #f8efe1 42%, #fffaf2 100%);
}

.landing-page::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 16%, rgba(199, 154, 77, 0.12), transparent 28rem),
    radial-gradient(circle at 84% 22%, rgba(182, 111, 99, 0.11), transparent 26rem),
    radial-gradient(circle at 50% 102%, rgba(20, 13, 9, 0.09), transparent 35rem);
  filter: saturate(1.04);
}

.landing-page::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(61, 43, 24, 0.18) 1px, transparent 0);
  background-size: 18px 18px;
  mix-blend-mode: multiply;
}

.landing-page .container {
  max-width: 1240px;
}

.landing-page .section {
  padding: clamp(86px, 10vw, 150px) 0;
}

.landing-page .section-title {
  max-width: 920px;
  font-size: clamp(2.8rem, 5.45vw, 6.35rem);
  line-height: 0.88;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.landing-page .section-title.align-left {
  max-width: 760px;
}

.landing-page .section-subtitle,
.landing-page .section-text,
.hero-lede {
  color: rgba(55, 44, 37, 0.72);
  text-wrap: pretty;
}

.landing-page .section-kicker,
.landing-page .eyebrow,
.plain-language-card span,
.use-case-card span,
.floating-note span,
.mini-player small,
.story-card span,
.audio-card small {
  color: var(--color-antique-dark);
  letter-spacing: 0.22em;
}

.landing-page .btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 999px;
  transform: translateZ(0);
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 520ms cubic-bezier(0.16, 1, 0.3, 1), border-color 520ms cubic-bezier(0.16, 1, 0.3, 1), background-color 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.landing-page .btn::before {
  content: '';
  position: absolute;
  inset: -80% -35%;
  z-index: -1;
  background: linear-gradient(105deg, transparent 22%, rgba(255, 255, 255, 0.48) 48%, transparent 74%);
  transform: translateX(-85%) rotate(10deg);
  transition: transform 880ms cubic-bezier(0.16, 1, 0.3, 1);
}

.landing-page .btn:hover::before {
  transform: translateX(85%) rotate(10deg);
}

.landing-page .btn:hover {
  transform: translateY(-4px) scale(1.015);
}

.landing-page .btn-gold,
.landing-page .btn-copper {
  border-color: rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 46%),
    #b98938;
  color: #fff;
  box-shadow: 0 18px 42px rgba(125, 79, 23, 0.28), 0 1px 0 rgba(255, 255, 255, 0.38) inset;
}

.landing-page .btn-gold:hover,
.landing-page .btn-copper:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), transparent 46%),
    #a8782e;
  box-shadow: 0 26px 68px rgba(125, 79, 23, 0.34), 0 1px 0 rgba(255, 255, 255, 0.42) inset;
}

.landing-page .btn-outline {
  border-color: rgba(126, 92, 39, 0.27);
  background: rgba(255, 250, 242, 0.72);
  box-shadow: 0 12px 34px rgba(45, 32, 15, 0.06), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.landing-page .btn-whatsapp {
  border: 1px solid rgba(37, 211, 102, 0.45);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 48%),
    #19c967;
  box-shadow: 0 18px 50px rgba(25, 201, 103, 0.28), 0 1px 0 rgba(255, 255, 255, 0.42) inset;
}

.landing-header {
  background: rgba(255, 248, 236, 0.78);
  border-bottom: 1px solid rgba(96, 70, 35, 0.12);
  box-shadow: 0 18px 50px rgba(25, 18, 10, 0.045);
  backdrop-filter: blur(28px) saturate(1.35);
}

.landing-header .brand-logo {
  filter: drop-shadow(0 8px 16px rgba(34, 23, 10, 0.08));
}

.landing-header .nav-desktop a {
  color: rgba(23, 18, 15, 0.74);
}

.landing-header .nav-desktop a:hover {
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(183, 133, 55, 0.24);
  box-shadow: 0 12px 28px rgba(55, 36, 12, 0.08);
}

.landing-header .nav-desktop .nav-cta {
  background: #17120f;
  box-shadow: 0 12px 30px rgba(20, 13, 8, 0.22);
}

.site-hero {
  min-height: min(980px, 100svh);
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.94) 0%, rgba(255, 247, 235, 0.82) 45%, rgba(251, 232, 214, 0.62) 100%),
    url('../img/hero/invitaciones-digitales-hero.webp') right center / min(52vw, 760px) auto no-repeat;
}

.site-hero::before,
.site-hero::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.site-hero::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 248, 236, 0.96) 0 36%, rgba(255, 248, 236, 0.72) 54%, rgba(24, 16, 12, 0.12) 100%),
    radial-gradient(circle at calc(70% + var(--hero-drift, 0px)) 28%, rgba(255, 255, 255, 0.55), transparent 21rem),
    radial-gradient(circle at 14% 76%, rgba(199, 154, 77, 0.16), transparent 20rem);
}

.site-hero::after {
  inset: auto 6vw 6vw auto;
  width: clamp(260px, 30vw, 520px);
  height: clamp(260px, 30vw, 520px);
  border: 1px solid rgba(142, 101, 42, 0.18);
  border-radius: 50%;
  box-shadow: inset 0 0 70px rgba(255, 255, 255, 0.35), 0 0 80px rgba(201, 154, 77, 0.08);
  transform: translate3d(calc(var(--parallax-x, 0px) * 0.18), calc(var(--parallax-y, 0px) * 0.18), 0) rotate(-12deg);
  animation: orbitBreath 9s ease-in-out infinite;
}

.hero-ambient {
  opacity: 1;
  background:
    radial-gradient(circle at 73% 22%, rgba(255, 255, 255, 0.44), transparent 18rem),
    radial-gradient(circle at 88% 62%, rgba(176, 103, 85, 0.12), transparent 20rem);
}

.hero-ambient::before {
  inset: 10% 3% auto auto;
  border-color: rgba(135, 95, 35, 0.18);
  box-shadow: 0 0 90px rgba(199, 154, 77, 0.09);
  animation: slowSpin 32s linear infinite;
}

.hero-layout {
  grid-template-columns: minmax(0, 0.98fr) minmax(470px, 0.92fr);
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.hero-copy::before {
  content: '';
  position: absolute;
  left: -24px;
  top: -38px;
  width: 72px;
  height: 72px;
  border-top: 1px solid rgba(141, 102, 41, 0.34);
  border-left: 1px solid rgba(141, 102, 41, 0.34);
  opacity: 0;
  transform: translate(-12px, 12px);
  animation: cornerReveal 1.1s 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-heading {
  max-width: 780px;
  font-size: clamp(3.55rem, 6.9vw, 7.65rem);
  line-height: 0.82;
  letter-spacing: -0.075em;
  text-wrap: balance;
}

.hero-lede {
  max-width: 640px;
  font-size: clamp(1.04rem, 1.4vw, 1.2rem);
}

.hero-actions {
  gap: 14px;
}

.hero-proof span {
  border-color: rgba(124, 88, 36, 0.15);
  background: rgba(255, 250, 242, 0.74);
  box-shadow: 0 14px 34px rgba(41, 29, 12, 0.055), 0 1px 0 rgba(255, 255, 255, 0.85) inset;
  backdrop-filter: blur(18px);
}

.hero-showcase {
  position: relative;
  z-index: 2;
  width: min(100%, 600px);
  transform: translate3d(calc(var(--parallax-x, 0px) * -0.12), calc(var(--parallax-y, 0px) * -0.12), 0);
}

.hero-showcase::before {
  content: '';
  position: absolute;
  inset: 6% -7% 4% 5%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  filter: blur(32px);
  transform: rotate(-9deg);
}

.preview-switcher {
  position: relative;
  z-index: 4;
  background: rgba(255, 250, 242, 0.86);
  border-color: rgba(121, 88, 40, 0.16);
  box-shadow: 0 24px 70px rgba(31, 21, 9, 0.13), 0 1px 0 rgba(255, 255, 255, 0.85) inset;
}

.preview-tab.active {
  background: #17120f;
  box-shadow: 0 12px 28px rgba(20, 13, 8, 0.22);
}

.editorial-collage {
  min-height: clamp(570px, 52vw, 650px);
  perspective: 1400px;
}

.collage-card-main {
  inset: 20px 56px 94px 84px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 54px;
  background: #17120f;
  box-shadow: 0 42px 110px rgba(36, 24, 12, 0.26), 0 1px 0 rgba(255, 255, 255, 0.3) inset;
  transform: rotateY(-7deg) rotateX(3deg) rotateZ(1deg);
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-showcase:hover .collage-card-main {
  transform: rotateY(-2deg) rotateX(1deg) rotateZ(0deg) translateY(-8px);
  box-shadow: 0 54px 140px rgba(36, 24, 12, 0.32), 0 1px 0 rgba(255, 255, 255, 0.36) inset;
}

.collage-card-main::before {
  content: '';
  position: absolute;
  inset: 16px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 42px;
  pointer-events: none;
}

.collage-card-main::after {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 7, 5, 0.04), rgba(12, 8, 6, 0.36) 68%, rgba(12, 8, 6, 0.72)),
    radial-gradient(circle at 48% 22%, rgba(255, 255, 255, 0.26), transparent 16rem);
}

.preview-image {
  filter: saturate(0.92) contrast(1.05) sepia(0.12);
  transform: scale(1.08);
  transition: opacity 950ms cubic-bezier(0.16, 1, 0.3, 1), transform 1400ms cubic-bezier(0.16, 1, 0.3, 1), filter 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.preview-image.active {
  transform: scale(1.015);
  filter: saturate(0.98) contrast(1.08) sepia(0.08);
}

.preview-image-romantic,
.preview-image-corrido {
  filter: saturate(0.75) contrast(1.08) sepia(0.18) brightness(0.92);
}

.floating-note,
.mini-player,
.audio-card,
.story-card {
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 250, 242, 0.76);
  box-shadow: 0 28px 80px rgba(28, 18, 9, 0.18), 0 1px 0 rgba(255, 255, 255, 0.74) inset;
  backdrop-filter: blur(24px) saturate(1.25);
}

.floating-note {
  animation: floatGlass 7s ease-in-out infinite;
}

.note-song {
  animation-delay: -2.8s;
}

.mini-player {
  animation: floatGlass 8s -1.2s ease-in-out infinite;
}

.player-dot,
.audio-icon {
  background: #b98938;
  box-shadow: 0 12px 28px rgba(185, 137, 56, 0.3);
}

.player-dot::before,
.player-dot::after {
  animation: equalizer 1.25s ease-in-out infinite alternate;
}

.player-dot::after {
  animation-delay: -0.35s;
}

.scroll-cue {
  opacity: 0.82;
}

.scroll-cue::after {
  background: linear-gradient(180deg, transparent, rgba(141, 102, 41, 0.86), transparent);
  animation: scrollCue 1.9s ease-in-out infinite;
}

.product-overview,
.simple-explainer,
.invitations-section,
.style-showcase,
.use-cases-section,
.process-section,
.packages-section,
.previews-section,
.testimonials-section,
.faq-section {
  background:
    linear-gradient(90deg, rgba(111, 83, 43, 0.04) 1px, transparent 1px) 0 0 / 92px 92px,
    linear-gradient(180deg, var(--paper), #f8efe1);
}

.simple-explainer,
.process-section,
.testimonials-section {
  background:
    radial-gradient(circle at 86% 20%, rgba(182, 111, 99, 0.105), transparent 26rem),
    linear-gradient(90deg, rgba(111, 83, 43, 0.04) 1px, transparent 1px) 0 0 / 92px 92px,
    #fff8ec;
}

.song-experience,
.final-cta,
.refined-footer {
  background:
    radial-gradient(circle at 18% 16%, rgba(184, 121, 50, 0.18), transparent 27rem),
    radial-gradient(circle at 84% 28%, rgba(175, 95, 80, 0.14), transparent 28rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 80px 80px,
    #100d0b;
}

.song-glow {
  opacity: 0.72;
  background-image:
    radial-gradient(circle at 12% 30%, rgba(239, 217, 171, 0.16), transparent 18rem),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  animation: filmDrift 18s linear infinite;
}

.product-family-card,
.plain-language-card,
.event-card,
.use-case-card,
.process-card,
.premium-package,
.testimonial-premium,
.faq-item,
.final-cta-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-color: rgba(109, 79, 37, 0.16);
  box-shadow: 0 24px 70px rgba(35, 24, 10, 0.09), 0 1px 0 rgba(255, 255, 255, 0.72) inset;
  transform: translateZ(0);
  transition: transform 720ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 720ms cubic-bezier(0.16, 1, 0.3, 1), border-color 720ms cubic-bezier(0.16, 1, 0.3, 1), background-color 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

.product-family-card::before,
.plain-language-card::before,
.event-card::before,
.process-card::before,
.premium-package::before,
.testimonial-premium::before,
.faq-item::before,
.final-cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(255, 255, 255, 0.62), transparent 32%);
  transition: opacity 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.product-family-card:hover,
.plain-language-card:hover,
.event-card:hover,
.use-case-card:hover,
.process-card:hover,
.premium-package:hover,
.testimonial-premium:hover,
.faq-item:hover {
  border-color: rgba(199, 154, 77, 0.34);
  transform: translateY(-10px);
  box-shadow: 0 38px 100px rgba(35, 24, 10, 0.16), 0 1px 0 rgba(255, 255, 255, 0.82) inset;
}

.product-family-card:hover::before,
.plain-language-card:hover::before,
.event-card:hover::before,
.process-card:hover::before,
.premium-package:hover::before,
.testimonial-premium:hover::before,
.faq-item:hover::before,
.final-cta-card:hover::before {
  opacity: 1;
}

.product-family-card {
  min-height: 560px;
  border-radius: 42px;
}

.invitations-family {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 248, 236, 0.92)),
    #fffaf2;
}

.song-family {
  background:
    radial-gradient(circle at 70% 12%, rgba(255, 255, 255, 0.16), transparent 18rem),
    radial-gradient(circle at 16% 72%, rgba(184, 121, 50, 0.22), transparent 18rem),
    #100d0b;
}

.song-family::after {
  content: '';
  position: absolute;
  inset: 24px;
  z-index: -1;
  border: 1px solid rgba(239, 217, 171, 0.14);
  border-radius: 32px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 0 / 34px 34px,
    radial-gradient(circle at 50% 22%, rgba(239, 217, 171, 0.12), transparent 15rem);
}

.song-family .family-content::before {
  content: '♪';
  position: absolute;
  right: clamp(24px, 4vw, 48px);
  top: clamp(22px, 4vw, 44px);
  color: rgba(239, 217, 171, 0.2);
  font-family: var(--font-serif);
  font-size: clamp(5rem, 10vw, 9rem);
  line-height: 1;
  animation: noteFloat 6s ease-in-out infinite;
}

.family-media {
  min-height: 330px;
}

.family-media img,
.event-card img,
.style-media img,
.preview-card img,
.browser-preview img,
.experience-frame img {
  filter: saturate(0.86) contrast(1.08) sepia(0.08);
}

.family-media,
.style-media,
.browser-preview,
.experience-frame,
.preview-card {
  position: relative;
}

.family-media::after,
.style-media::after,
.browser-preview::after,
.experience-frame::after,
.preview-card::after,
.event-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.22), transparent 15rem),
    linear-gradient(180deg, transparent 35%, rgba(19, 12, 8, 0.38));
}

.family-content {
  position: relative;
  z-index: 2;
}

.feature-pills li,
.subproduct-card,
.benefit-list div,
.included-grid div,
.package-topline,
.package-badge {
  border-color: rgba(123, 89, 39, 0.16);
  background: rgba(255, 250, 242, 0.62);
  box-shadow: 0 12px 30px rgba(39, 27, 11, 0.055), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  backdrop-filter: blur(18px);
}

.song-family .feature-pills li,
.song-family .subproduct-card,
.included-grid div,
.corrido-panel .package-topline,
.featured-package .package-topline {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16), 0 1px 0 rgba(255, 255, 255, 0.12) inset;
}

.subproduct-card:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(239, 217, 171, 0.34);
  transform: translateY(-5px) scale(1.02);
}

.text-link {
  position: relative;
  color: var(--color-antique-dark);
}

.text-link::before {
  content: '';
  position: absolute;
  left: 0;
  right: 22px;
  bottom: -6px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.text-link:hover::before {
  transform: scaleX(1);
}

.plain-language-card,
.use-case-card,
.process-card,
.testimonial-premium {
  background: rgba(255, 250, 242, 0.76);
  backdrop-filter: blur(18px);
}

.plain-language-card:nth-child(2),
.plain-language-card:nth-child(3),
.use-case-card:nth-child(4n + 2),
.use-case-card:nth-child(4n + 3) {
  background: rgba(250, 240, 225, 0.82);
}

.use-case-card {
  min-height: 286px;
}

.use-case-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.85;
  background:
    linear-gradient(180deg, transparent 0 58%, rgba(255, 255, 255, 0.4)),
    radial-gradient(circle at 88% 86%, rgba(199, 154, 77, 0.16), transparent 7rem);
}

.use-case-card::after {
  width: 130px;
  height: 130px;
  border-color: rgba(199, 154, 77, 0.18);
  transition: transform 720ms cubic-bezier(0.16, 1, 0.3, 1), opacity 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

.use-case-card:hover::after {
  opacity: 0.62;
  transform: translate(-12px, -12px) scale(1.12);
}

.device-stage::before,
.song-visual::before {
  content: '';
  position: absolute;
  inset: 12% 2% 0 8%;
  border-radius: 50%;
  background: rgba(199, 154, 77, 0.13);
  filter: blur(42px);
}

.browser-preview {
  border-color: rgba(110, 80, 38, 0.16);
  border-radius: 38px;
  box-shadow: 0 36px 100px rgba(37, 25, 10, 0.2), 0 1px 0 rgba(255, 255, 255, 0.85) inset;
  transform: rotate(-2deg);
  transition: transform 800ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.device-stage:hover .browser-preview {
  transform: rotate(-0.5deg) translateY(-8px);
}

.overlap-phone {
  right: 1%;
  border-width: 10px;
  border-color: #120e0c;
  box-shadow: 0 38px 110px rgba(18, 12, 6, 0.32);
  transform: rotate(4deg);
  transition: transform 800ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.device-stage:hover .overlap-phone {
  transform: rotate(1deg) translateY(-12px);
}

.experience-frame {
  border-radius: 52px;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 48px 130px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(255, 255, 255, 0.15) inset;
  transform: rotate(-3deg);
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.song-visual:hover .experience-frame {
  transform: rotate(-1deg) translateY(-10px);
}

.experience-frame::before {
  content: '';
  position: absolute;
  inset: 22px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 36px;
  pointer-events: none;
}

.experience-frame::after {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 7, 5, 0.06), rgba(10, 7, 5, 0.74)),
    radial-gradient(circle at 50% 22%, rgba(239, 217, 171, 0.2), transparent 15rem);
}

.audio-card,
.story-card {
  background: rgba(18, 13, 10, 0.72);
  color: #fff;
}

.story-card span,
.audio-card small {
  color: var(--color-champagne);
}

.story-card p {
  color: rgba(255, 244, 224, 0.78);
}

.style-panel {
  border-radius: 52px;
  box-shadow: 0 32px 100px rgba(35, 24, 10, 0.12);
}

.romantic-panel {
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.5), transparent 18rem),
    #f9ede3;
  border-color: rgba(182, 111, 99, 0.2);
}

.corrido-panel,
.featured-package {
  background:
    radial-gradient(circle at 20% 24%, rgba(184, 121, 50, 0.17), transparent 20rem),
    #100d0b;
}

.style-media {
  border: 1px solid rgba(255, 255, 255, 0.36);
  box-shadow: 0 34px 95px rgba(44, 29, 11, 0.22);
  transform: rotate(-1deg);
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.corrido-panel .style-media {
  transform: rotate(1.2deg);
}

.style-panel:hover .style-media {
  transform: rotate(0deg) translateY(-8px);
  box-shadow: 0 44px 120px rgba(44, 29, 11, 0.28);
}

.style-panel:hover .style-media img,
.preview-card:hover img,
.event-card:hover img,
.product-family-card:hover .family-media img {
  transform: scale(1.075);
}

.process-timeline {
  gap: 18px;
  counter-reset: process;
}

.process-card {
  min-height: 300px;
  padding: 34px 28px;
}

.process-card span {
  color: rgba(141, 102, 41, 0.28);
  font-size: clamp(3.6rem, 7vw, 6.3rem);
  margin-bottom: 18px;
}

.process-card::after {
  content: '';
  position: absolute;
  top: 34px;
  right: 28px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(199, 154, 77, 0.22);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 154, 77, 0.5) 0 3px, transparent 4px);
}

.premium-package {
  border-radius: 40px;
  padding: 38px 32px;
  background: rgba(255, 250, 242, 0.78);
}

.featured-package,
.featured-package:hover {
  transform: translateY(-22px);
}

.featured-package:hover {
  transform: translateY(-30px);
}

.preview-gallery {
  grid-template-columns: 1.12fr 0.88fr 0.88fr;
  grid-auto-rows: 260px;
  gap: 22px;
}

.preview-card {
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 38px;
  box-shadow: 0 32px 90px rgba(33, 22, 9, 0.16);
}

.preview-card::before {
  content: '';
  position: absolute;
  inset: 14px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 28px;
  pointer-events: none;
}

.preview-card::after {
  background:
    linear-gradient(180deg, transparent 28%, rgba(12, 8, 6, 0.76)),
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.18), transparent 12rem);
}

.preview-card span {
  z-index: 3;
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  text-shadow: 0 16px 34px rgba(0, 0, 0, 0.42);
}

.testimonial-premium img {
  background: #fff8ec;
  box-shadow: 0 0 0 8px rgba(255, 248, 236, 0.82), 0 16px 36px rgba(50, 34, 12, 0.13);
}

.final-cta-card {
  border-radius: clamp(34px, 5vw, 64px);
  background:
    radial-gradient(circle at 50% 0%, rgba(239, 217, 171, 0.18), transparent 24rem),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 52px 150px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(255, 255, 255, 0.14) inset;
}

.final-cta-card::after {
  content: '';
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: clamp(24px, 4vw, 48px);
  pointer-events: none;
}

.hero-entrance {
  opacity: 0;
  transform: translateY(28px);
  animation: heroCinematicIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-entrance:nth-child(2) {
  animation-delay: 0.08s;
}

.hero-entrance:nth-child(3) {
  animation-delay: 0.18s;
}

.hero-entrance:nth-child(4) {
  animation-delay: 0.28s;
}

.landing-page .animate-on-scroll,
.landing-page .animate-fade-up,
.landing-page .animate-scale-in,
.landing-page .animate-reveal {
  opacity: 0;
  transform: translateY(42px) scale(0.985);
  filter: blur(10px);
  transition: opacity 980ms cubic-bezier(0.16, 1, 0.3, 1), transform 980ms cubic-bezier(0.16, 1, 0.3, 1), filter 980ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.landing-page .animate-scale-in {
  transform: translateY(34px) scale(0.94) rotateX(6deg);
}

.landing-page .animate-fade-up {
  transform: translateY(54px);
}

.landing-page .animate-on-scroll.visible,
.landing-page .animate-fade-up.visible,
.landing-page .animate-scale-in.visible,
.landing-page .animate-reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1) rotateX(0);
  filter: blur(0);
}

@keyframes heroCinematicIn {
  from {
    opacity: 0;
    transform: translateY(34px) scale(0.985);
    filter: blur(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes cornerReveal {
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@keyframes floatGlass {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -12px, 0); }
}

@keyframes equalizer {
  from { height: 12px; }
  to { height: 24px; }
}

@keyframes orbitBreath {
  0%, 100% { opacity: 0.72; transform: translate3d(calc(var(--parallax-x, 0px) * 0.18), calc(var(--parallax-y, 0px) * 0.18), 0) rotate(-12deg) scale(1); }
  50% { opacity: 1; transform: translate3d(calc(var(--parallax-x, 0px) * 0.18), calc(var(--parallax-y, 0px) * 0.18), 0) rotate(-8deg) scale(1.035); }
}

@keyframes slowSpin {
  to { transform: rotate(346deg); }
}

@keyframes scrollCue {
  0%, 100% { transform: scaleY(0.55); opacity: 0.45; }
  50% { transform: scaleY(1); opacity: 1; }
}

@keyframes filmDrift {
  to { background-position: 120px 80px, 72px 72px, 72px 72px; }
}

@keyframes noteFloat {
  0%, 100% { transform: translateY(0) rotate(-8deg); opacity: 0.18; }
  50% { transform: translateY(-14px) rotate(4deg); opacity: 0.28; }
}

@media (max-width: 1080px) {
  .site-hero {
    background:
      linear-gradient(180deg, rgba(255, 250, 242, 0.95), rgba(255, 248, 236, 0.78)),
      url('../img/hero/invitaciones-digitales-hero.webp') center bottom / min(92vw, 760px) auto no-repeat;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    width: min(100%, 620px);
  }

  .featured-package,
  .featured-package:hover {
    transform: none;
  }
}

@media (max-width: 760px) {
  .landing-page,
  .landing-page main,
  .site-hero,
  .hero-layout,
  .hero-copy,
  .hero-showcase {
    max-width: 100%;
    overflow-x: hidden;
  }

  .hero-copy,
  .hero-showcase {
    width: 100%;
  }

  .landing-page .section {
    padding: 74px 0;
  }

  .site-hero {
    padding-top: calc(var(--header-height) + 38px);
    background:
      linear-gradient(180deg, rgba(255, 250, 242, 0.96), rgba(255, 248, 236, 0.9)),
      url('../img/hero/invitaciones-digitales-hero.webp') center bottom / 760px auto no-repeat;
  }

  .site-hero::before {
    background:
      linear-gradient(180deg, rgba(255, 248, 236, 0.98) 0 42%, rgba(255, 248, 236, 0.86) 100%),
      radial-gradient(circle at 78% 30%, rgba(199, 154, 77, 0.13), transparent 16rem);
  }

  .hero-heading {
    font-size: clamp(3.15rem, 14vw, 4.85rem);
    line-height: 0.86;
    overflow-wrap: normal;
  }

  .hero-lede {
    font-size: 1rem;
    line-height: 1.75;
  }

  .hero-actions,
  .section-actions,
  .final-cta-card .hero-actions {
    gap: 12px;
  }

  .editorial-collage {
    min-height: 500px;
  }

  .collage-card-main {
    inset: 18px 22px 104px;
    border-radius: 38px;
    transform: rotateY(-3deg) rotateX(2deg);
  }

  .preview-switcher {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .hero-proof span,
  .preview-tab {
    min-width: 0;
  }

  .mini-player {
    left: 0;
    right: 0;
    bottom: 18px;
  }

  .product-family-card,
  .plain-language-card,
  .use-case-card,
  .process-card,
  .premium-package,
  .testimonial-premium {
    border-radius: 30px;
  }

  .product-family-card {
    min-height: auto;
  }

  .family-media {
    min-height: 260px;
  }

  .event-collection,
  .use-case-grid,
  .process-timeline,
  .premium-packages,
  .testimonial-strip,
  .preview-gallery {
    gap: 14px;
  }

  .browser-preview,
  .experience-frame,
  .style-media,
  .overlap-phone {
    transform: none;
  }

  .experience-frame {
    border-radius: 34px;
  }

  .style-panel {
    border-radius: 34px;
  }

  .preview-gallery {
    grid-auto-rows: 270px;
  }
}

@media (max-width: 430px) {
  .hero-heading {
    font-size: 3.25rem;
  }

  .editorial-collage {
    min-height: 430px;
  }

  .collage-card-main {
    inset: 22px 0 110px;
  }

  .site-hero::after,
  .hero-copy::before {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-entrance,
  .floating-note,
  .mini-player,
  .player-dot::before,
  .player-dot::after,
  .hero-ambient::before,
  .site-hero::after,
  .song-glow,
  .song-family .family-content::before,
  .scroll-cue::after {
    animation: none !important;
  }

  .landing-page .animate-on-scroll,
  .landing-page .animate-fade-up,
  .landing-page .animate-scale-in,
  .landing-page .animate-reveal,
  .hero-entrance {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
