/* ========== ARTS — Deep Theming System ========== */
/* 1. BASE VARIABLES */
:root {
  --bg-deep: #2c3228;
  --bg-primary: #33392e;
  --bg-elevated: #3d4437;
  --text-primary: #ebe4d8;
  --text-secondary: rgba(235, 228, 216, 0.7);
  --text-muted: rgba(235, 228, 216, 0.4);
  --gold: #d0c1a9;
  --gold-light: #e6dac6;
  --gold-dark: #b5a48a;
  --glass-bg: rgba(235, 228, 216, 0.05);
  --glass-border: rgba(208, 193, 169, 0.15);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-quart: cubic-bezier(0.76, 0, 0.24, 1);
  --deep-transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  --font-display: "Cormorant Garamond", "Georgia", serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --font-accent: "Syne", sans-serif;
  --nav-height: 60px;
  --banner-height: 0px;
  /* Theme vars - defaults (bodas) */
  --t-accent: #d0c1a9;
  --t-accent-glow: rgba(208, 193, 169, 0.15);
  --t-bg: #2c3228;
  --t-bg2: #33392e;
  --t-text: #ebe4d8;
  --t-text2: rgba(235, 228, 216, 0.7);
  --t-card-bg: rgba(44, 50, 40, 0.9);
  --t-border: rgba(208, 193, 169, 0.2);
  --t-badge-bg: rgba(208, 193, 169, 0.1);
  --t-heading-font: var(--font-display);
  --t-banner-bg: linear-gradient(90deg, #242a20, #2c3228 50%, #242a20);
  --t-banner-text: #d0c1a9;
  --t-banner-border: rgba(208, 193, 169, 0.15);
  --t-hero-tint: transparent;
  --t-overlay-top: transparent;
  --t-overlay-mid: transparent;
  --t-overlay-bot: transparent;
}

/* 2. THEME: BODAS */
body.tema-bodas {
  --t-accent: #d0c1a9;
  --t-accent-glow: rgba(208, 193, 169, 0.15);
  --t-bg: #e8dfd1;
  --t-bg2: #dfd5c5;
  --t-text: #2c3228;
  --t-text2: rgba(44, 50, 40, 0.7);
  --t-card-bg: rgba(255, 255, 255, 0.65);
  --t-border: rgba(44, 50, 40, 0.15);
  --t-badge-bg: rgba(44, 50, 40, 0.1);
  --t-heading-font: var(--font-display);
  --t-banner-bg: linear-gradient(90deg, #242a20, #2c3228 50%, #242a20);
  --t-banner-text: #d0c1a9;
  --t-banner-border: rgba(208, 193, 169, 0.15);
  --t-hero-tint: transparent;
  --t-overlay-top: transparent;
  --t-overlay-mid: transparent;
  --t-overlay-bot: transparent;
}

/* 5. RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}
ul,
ol {
  list-style: none;
}

/* 6. THEMED CONTENT VISIBILITY */
.banner-mensaje,
.portada-emotivo,
.ra-texto,
.paquetes-set {
  display: none;
}

body.tema-bodas .banner-mensaje[data-tema="bodas"],
body.tema-bodas .portada-emotivo[data-tema="bodas"],
body.tema-bodas .ra-texto[data-tema="bodas"],
body.tema-bodas .paquetes-set[data-tema="bodas"] {
  display: block;
}

body.tema-quince .banner-mensaje[data-tema="quince"],
body.tema-quince .portada-emotivo[data-tema="quince"],
body.tema-quince .ra-texto[data-tema="quince"],
body.tema-quince .paquetes-set[data-tema="quince"] {
  display: block;
}

body.tema-cumple .banner-mensaje[data-tema="cumple"],
body.tema-cumple .portada-emotivo[data-tema="cumple"],
body.tema-cumple .ra-texto[data-tema="cumple"],
body.tema-cumple .paquetes-set[data-tema="cumple"] {
  display: block;
}

/* Fade-in for themed content */
.banner-mensaje,
.portada-emotivo,
.ra-texto,
.paquetes-set {
  animation: themeContentIn 0.8s var(--ease-out-expo) forwards;
}
@keyframes themeContentIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 7. PROMO BANNER */
.banner-promo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--banner-height);
  z-index: 1000;
  background: var(--t-banner-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--t-banner-border);
  transition: var(--deep-transition);
}
.banner-promo p {
  font-size: 0.8rem;
  color: var(--t-banner-text);
  letter-spacing: 0.5px;
  font-weight: 400;
  text-align: center;
  padding: 0 1rem;
  transition: color 0.8s var(--ease-out-expo);
}

.navegacion-principal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 999;
  transition: var(--deep-transition);
}
.navegacion-principal.scrolled {
  background: rgba(44, 50, 40, 0.70);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(208, 193, 169, 0.1);
}
.navegacion-contenedor {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}
.navegacion-logo {
  font-family: var(--font-display);
  font-size: 0;
  letter-spacing: 0;
  color: var(--text-primary);
  transition: var(--deep-transition);
  opacity: 0.9;
}
.navegacion-logo svg {
  opacity: 0.9;
  transition: opacity 0.3s;
}
.navegacion-logo:hover svg {
  opacity: 1;
}
.navegacion-enlaces {
  display: flex;
  gap: 1.8rem;
}
.navegacion-enlaces a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 200;
  letter-spacing: 0.5px;
  text-transform: none;
  color: var(--text-primary);
  opacity: 0.8;
  transition: opacity 0.3s;
  position: relative;
}
.navegacion-enlaces a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 0.5px;
  background: var(--text-primary);
  transition: width 0.4s var(--ease-out-expo);
}
.navegacion-enlaces a:hover {
  opacity: 1;
}
.navegacion-enlaces a:hover::after {
  width: 100%;
}
.navegacion-derecha {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.navegacion-cta {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 200;
  letter-spacing: 0.5px;
  text-transform: none;
  padding: 0.4rem 1.2rem;
  border: 0.5px solid rgba(235, 228, 216, 0.3);
  color: var(--text-primary);
  border-radius: 40px;
  transition: var(--deep-transition);
  opacity: 0.9;
}
.navegacion-cta:hover {
  background: rgba(235, 228, 216, 0.1);
  border-color: var(--t-accent);
}
.menu-movil-boton {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.menu-movil-boton span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-primary);
  transition: all 0.3s;
}
.menu-movil {
  position: fixed;
  top: 70px;
  right: 1.5rem;
  left: auto;
  width: auto;
  min-width: 220px;
  height: auto;
  background: rgba(30, 35, 27, 0.95); /* Deeper green/black for elegance */
  backdrop-filter: blur(20px);
  border: 0.5px solid rgba(235, 228, 216, 0.15);
  border-radius: 12px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 1.5rem;
  gap: 1.2rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px) scale(0.95);
  transform-origin: top right;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}
.menu-movil.active {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}
.menu-movil a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: var(--text-primary);
  letter-spacing: 1px;
  transition: color 0.3s;
}
.menu-movil a:hover {
  color: var(--t-accent);
}

/* 9. HERO */
.portada {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.portada-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.portada-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 28s ease-in-out infinite alternate;
  transition: opacity 0.8s var(--ease-out-expo);
}
@keyframes kenBurns {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.1) translate(-1.5%, -1%);
  }
}
.portada-tinte {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: var(--t-hero-tint);
  mix-blend-mode: overlay;
  transition: background 1.2s var(--ease-out-expo);
}
.portada-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(
    to bottom,
    var(--t-overlay-top) 0%,
    var(--t-overlay-mid) 50%,
    var(--t-overlay-bot) 100%
  );
  transition: background 1.2s var(--ease-out-expo);
}
.portada-contenido {
  position: relative;
  z-index: 4;
  text-align: left;
  width: 100%;
  max-width: 1400px;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-letras {
  max-width: 500px;
  width: 100%;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out-expo) 0.3s forwards;
}
.portada-emotivo h1 {
  font-family: var(--t-heading-font);
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out-expo) 0.3s forwards;
  transition: font-family 0.8s;
}
.portada-emotivo h1 em {
  font-style: italic;
  color: var(--t-accent);
  transition: color 0.8s var(--ease-out-expo);
}
.portada-subtitulo {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out-expo) 0.6s forwards;
}
.boton-principal {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 2.5rem;
  background: var(--t-accent);
  color: var(--bg-deep);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius-xl);
  transition: var(--deep-transition);
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out-expo) 0.9s forwards;
}
.boton-principal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 30%,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.6s;
}
.boton-principal:hover::before {
  transform: translateX(100%);
}
.boton-principal:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--t-accent-glow);
}

.portada-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 5;
}

.portada-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 120px;
}

/* 10. CATALOG SECTION */
.seccion-catalogo {
  position: relative;
  overflow: hidden;
  background: var(--t-bg);
  transition: var(--deep-transition);
}
.catalogo-interior {
  max-width: 1400px;
  margin: 0 auto;
  padding: 6rem clamp(1.5rem, 4vw, 3rem);
}
.catalogo-encabezado {
  text-align: center;
  margin-bottom: 4rem;
}
.catalogo-encabezado .etiqueta-seccion {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--t-accent);
  margin-bottom: 1rem;
  display: block;
  font-weight: 600;
  transition: color 0.8s var(--ease-out-expo);
}
.catalogo-encabezado h2 {
  font-family: var(--t-heading-font);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--t-text);
  transition: var(--deep-transition);
}
.catalogo-encabezado p {
  color: var(--t-text2);
  max-width: 550px;
  margin: 0 auto;
  font-size: 1rem;
  transition: color 0.8s var(--ease-out-expo);
}

/* Tabs */
.catalogo-pestanas {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}
.pestana-boton {
  padding: 0.85rem 2.2rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius-xl);
  border: 1px solid var(--t-border);
  color: var(--t-text2);
  background: rgba(44, 50, 40, 0.4);
  backdrop-filter: blur(12px);
  transition: var(--deep-transition);
  cursor: pointer;
}
.pestana-boton:hover {
  border-color: var(--t-accent);
  color: var(--t-text);
}
.pestana-boton.active {
  background: var(--t-accent);
  color: var(--bg-deep);
  border-color: transparent;
  box-shadow: 0 4px 20px var(--t-accent-glow);
}

/* Card Grid */
.catalogo-grilla {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.8rem;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s var(--ease-out-expo),
    transform 0.6s var(--ease-out-expo);
}
.catalogo-grilla.active {
  display: grid;
  opacity: 1;
  transform: translateY(0);
}
.catalogo-tarjeta {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--t-card-bg);
  border: 1px solid var(--t-border);
  transition: var(--deep-transition);
  cursor: pointer;
  position: relative;
}
.catalogo-tarjeta:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.tarjeta-imagen {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.tarjeta-preview {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 1.2s var(--ease-out-expo);
}
.catalogo-tarjeta:hover .tarjeta-preview {
  transform: scale(1.06);
}
.tarjeta-preview .mock-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 2px;
  opacity: 0.25;
  text-align: center;
}
.tarjeta-preview::before,
.tarjeta-preview::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  pointer-events: none;
  border: 1px solid currentColor;
}
.tarjeta-preview::before {
  width: 120px;
  height: 120px;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
}
.tarjeta-preview::after {
  width: 80px;
  height: 80px;
  bottom: 25%;
  left: 50%;
  transform: translateX(-50%);
}
.tarjeta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out-expo);
}
.catalogo-tarjeta:hover .tarjeta-overlay {
  opacity: 1;
}
.boton-demo {
  padding: 0.7rem 1.6rem;
  border: 1px solid var(--t-accent);
  color: var(--t-text);
  background: rgba(208, 193, 169, 0.8);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius-xl);
  font-weight: 500;
  transition: all 0.3s;
  backdrop-filter: blur(8px);
}
.boton-demo:hover {
  background: #fff;
  color: #000;
}
.tarjeta-etiqueta {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.4rem 1rem;
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: var(--radius-xl);
  background: var(--t-badge-bg);
  color: var(--t-accent);
  backdrop-filter: blur(10px);
  border: 1px solid var(--t-border);
  z-index: 2;
  transition: var(--deep-transition);
}
.tarjeta-etiqueta.badge-inmersiva {
  background: rgba(255, 215, 0, 0.15);
  color: #ffd700;
  border-color: rgba(255, 215, 0, 0.2);
}
.tarjeta-info {
  padding: 1.2rem 1.4rem;
}
.tarjeta-info h3 {
  font-family: var(--t-heading-font);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--t-text);
  transition: var(--deep-transition);
}
.tarjeta-info p {
  font-size: 0.82rem;
  color: var(--t-text2);
  transition: color 0.8s var(--ease-out-expo);
}

/* Special Banner */
.banner-especial {
  margin-top: 4rem;
  padding: 2.5rem 3rem;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.08),
    rgba(255, 100, 50, 0.06)
  );
  border: 1px solid rgba(255, 215, 0, 0.2);
  display: none;
  grid-template-columns: 1fr auto;
  gap: 2.5rem;
  align-items: center;
}

body.tema-quince .banner-especial,
body.tema-cumple .banner-especial {
  display: grid;
  animation: themeContentIn 0.8s var(--ease-out-expo) forwards;
}
.banner-especial-brillo {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--t-accent-glow), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: pulseGlow 4s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}
.banner-especial-contenido {
  position: relative;
  z-index: 2;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.insignia-especial {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  color: #000;
  margin-bottom: 1rem;
  animation: shimmerBadge 3s ease-in-out infinite;
}
@keyframes shimmerBadge {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.6);
  }
}
.banner-especial h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}
.banner-especial p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  max-width: 500px;
  line-height: 1.7;
}
.banner-especial .boton-principal {
  opacity: 1;
  animation: none;
}
.banner-especial-visual {
  position: relative;
  width: 180px;
  flex-shrink: 0;
}

/* Phone Device Mockup */
.telefono-marco {
  background: #0d0d1a;
  border-radius: 28px;
  padding: 10px 7px 12px;
  border: 2.5px solid rgba(255, 255, 255, 0.13);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
}
.telefono-notch {
  width: 45%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin: 0 auto 8px;
}
.telefono-pantalla {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: #000;
}
.banner-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.telefono-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: all 0.3s;
  z-index: 2;
}
.telefono-play-overlay:hover {
  background: rgba(0, 0, 0, 0.2);
}
.telefono-play-icono {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.8);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
  transition: transform 0.3s;
}
.telefono-play-overlay:hover .telefono-play-icono {
  transform: scale(1.15);
  color: #fff;
}
.telefono-play-texto {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.revelar {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s var(--ease-out-expo),
    transform 0.8s var(--ease-out-expo);
}
.revelar.revelado {
  opacity: 1;
  transform: translateY(0);
}
.revelar-retraso-1 {
  transition-delay: 0.1s;
}
.revelar-retraso-2 {
  transition-delay: 0.2s;
}
.revelar-retraso-3 {
  transition-delay: 0.3s;
}
.revelar-retraso-4 {
  transition-delay: 0.4s;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .banner-especial {
    padding: 2rem 1.5rem;
    gap: 2rem;
  }
  .banner-especial-visual {
    width: 160px;
  }
}
@media (max-width: 768px) {
  :root {
    --nav-height: 60px;
    --banner-height: auto;
  }
  .banner-promo {
    position: relative;
    padding: 0.6rem 1rem;
    height: auto;
  }
  .navegacion-principal {
    top: 0;
  }
  .navegacion-principal.has-banner {
    top: auto;
  }
  .navegacion-enlaces,
  .navegacion-cta {
    display: none;
  }
  .menu-movil-boton {
    display: flex;
  }
  .portada {
    min-height: 100svh;
  }
  .hero-letras {
    max-width: 250px;
    margin-bottom: 1.2rem;
  }
  .portada-emotivo h1 {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
    margin-bottom: 1rem;
  }
  .portada-subtitulo {
    font-size: 0.85rem;
    max-width: 280px;
    margin-bottom: 1.5rem;
  }
  .boton-principal {
    padding: 0.8rem 1.5rem;
    font-size: 0.7rem;
  }
  .catalogo-grilla {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .banner-especial {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
    text-align: center;
    gap: 1.5rem;
  }
  .banner-especial-contenido {
    align-items: center;
    text-align: center;
  }
  .banner-especial-visual {
    width: 140px;
    margin: 0 auto;
    order: -1;
  }
  .banner-especial h3 {
    font-size: 1.3rem;
  }
}
@media (max-width: 480px) {
  .catalogo-grilla {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }
  .catalogo-pestanas {
    gap: 0.3rem;
  }
  .pestana-boton {
    padding: 0.65rem 1.2rem;
    font-size: 0.7rem;
  }
  .banner-especial {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 1.5rem 1rem;
  }
  .banner-especial-visual {
    width: 120px;
  }
  .banner-especial h3 {
    font-size: 1.1rem;
  }
  .telefono-marco {
    border-radius: 22px;
    padding: 7px 5px 9px;
  }
  .telefono-pantalla {
    border-radius: 16px;
  }
}
