/* =====================================================
   INVITACIÓN 25 — FLORAL MINIMALISTA CON MÁS MORADO
   Responsivo: mobile-first
   ===================================================== */

/* ── Variables ──────────────────────────────────────── */
:root {
  /* Paleta principal */
  --cream: #faf7f4;
  --cream-2: #f5f0eb;
  --white: #ffffff;
  --lavender-bg: #f0eaf8;
  /* fondo lavanda suave para secciones */

  /* Morados - de más claro a más profundo */
  --purple-100: #f0e8ff;
  /* tints muy suaves */
  --purple-200: #ddd0f5;
  /* lavanda */
  --purple-300: #c9b8e8;
  /* pastel principal */
  --purple-400: #b09fd4;
  /* tono medio */
  --purple-500: #9478c4;
  /* vibrante pero no saturado */
  --purple-600: #7c5cbf;
  /* acento fuerte */
  --purple-700: #5c3ea0;
  /* profundo */

  /* Complementarios */
  --sage: #c4d4c0;
  --blush: #f0d9db;
  --mauve: #d4b8c4;

  /* Textos */
  --text-dark: #2a1e36;
  --text-mid: #5a4a6a;
  --text-light: #9a8aaa;

  /* Tipografía */
  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-sans: 'DM Sans', system-ui, sans-serif;

  /* Bordes */
  --radius-sm: 8px;
  --radius-md: 18px;
  --radius-lg: 36px;
  --radius-xl: 60px;

  /* Sombras */
  --shadow-card: 0 4px 24px rgba(124, 92, 191, 0.10);
  --shadow-lift: 0 10px 40px rgba(124, 92, 191, 0.18);
  --shadow-btn: 0 8px 28px rgba(92, 62, 160, 0.35);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--ff-sans);
  background-color: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* ═══════════════════════════════════════════════════
   CAPA DECORATIVA GLOBAL (fixed, debajo de todo)
═══════════════════════════════════════════════════ */
.deco-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* Orbs / blobs de color */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.25;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: var(--purple-300);
  top: -120px;
  left: -100px;
  animation: drift 20s ease-in-out infinite;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: var(--purple-500);
  top: 35%;
  right: -80px;
  animation: drift 26s ease-in-out infinite reverse;
}

.orb-3 {
  width: 250px;
  height: 250px;
  background: var(--blush);
  bottom: 30%;
  left: 5%;
  animation: drift 22s ease-in-out infinite 4s;
}

.orb-4 {
  width: 350px;
  height: 350px;
  background: var(--purple-200);
  bottom: -80px;
  right: 10%;
  animation: drift 18s ease-in-out infinite 8s reverse;
}

@keyframes drift {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(18px, -14px) scale(1.04);
  }

  66% {
    transform: translate(-12px, 10px) scale(0.97);
  }
}

/* Pétalos SVG flotantes */
.petal {
  position: absolute;
  fill: var(--purple-400);
}

.petal-a {
  width: 90px;
  top: 6%;
  left: 3%;
  opacity: 0.18;
  transform: rotate(-25deg);
  animation: petal-float 18s ease-in-out infinite;
}

.petal-b {
  width: 60px;
  top: 18%;
  right: 4%;
  opacity: 0.22;
  transform: rotate(40deg);
  animation: petal-float 22s ease-in-out infinite 3s reverse;
}

.petal-c {
  width: 110px;
  top: 42%;
  left: -15px;
  opacity: 0.12;
  transform: rotate(15deg);
  animation: petal-float 24s ease-in-out infinite 6s;
}

.petal-d {
  width: 75px;
  top: 60%;
  right: 2%;
  opacity: 0.2;
  transform: rotate(-60deg);
  animation: petal-float 20s ease-in-out infinite 2s reverse;
}

.petal-e {
  width: 50px;
  bottom: 22%;
  left: 8%;
  opacity: 0.25;
  transform: rotate(10deg);
  animation: petal-float 16s ease-in-out infinite 9s;
}

.petal-f {
  width: 80px;
  bottom: 8%;
  right: 6%;
  opacity: 0.15;
  transform: rotate(-30deg);
  animation: petal-float 19s ease-in-out infinite 5s reverse;
}

@keyframes petal-float {

  0%,
  100% {
    transform: translateY(0px) rotate(var(--r, -25deg));
  }

  50% {
    transform: translateY(-20px) rotate(var(--r, -25deg));
  }
}

/* Clusters de puntos */
.dot-cluster {
  position: absolute;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.dot-cl-1 {
  top: 28%;
  left: 1%;
}

.dot-cl-2 {
  bottom: 35%;
  right: 1%;
}

.dot-cluster .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--purple-400);
  opacity: 0.3;
  display: block;
}

/* ═══════════════════════════════════════════════════
   ESTRUCTURA DE SECCIONES
═══════════════════════════════════════════════════ */
.section {
  position: relative;
  z-index: 1;
  padding: clamp(60px, 10vw, 100px) clamp(16px, 5vw, 40px);
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

/* Cabecera de sección reutilizable */
.section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}

.section-ornament {
  color: var(--purple-400);
  font-size: 0.75rem;
  opacity: 0.7;
}

.section-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--purple-500);
}

.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 36px;
  font-style: italic;
}

/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px clamp(16px, 5vw, 40px) 100px;
  background: linear-gradient(160deg,
      var(--cream) 0%,
      var(--purple-100) 40%,
      var(--lavender-bg) 70%,
      var(--cream) 100%);
  overflow: hidden;
}

/* Arco superior */
.hero-arc {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: min(600px, 100%);
  height: 280px;
  border: 1.5px solid rgba(201, 184, 232, 0.4);
  border-radius: 50%;
  pointer-events: none;
}

.hero-arc::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(201, 184, 232, 0.25);
  border-radius: 50%;
}

/* Foto portada */
.hero-img-wrapper {
  position: relative;
  width: clamp(130px, 35vw, 180px);
  height: clamp(130px, 35vw, 180px);
  margin: 0 auto 36px;
  flex-shrink: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2.5px solid var(--purple-300);
  position: relative;
  z-index: 2;
}

.hero-img-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 184, 232, 0.45);
  animation: ring-pulse 3s ease-in-out infinite;
}

.ring-2 {
  inset: -22px;
  border-color: rgba(201, 184, 232, 0.22);
  animation-delay: 1s;
  animation-duration: 3.5s;
}

@keyframes ring-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.04);
    opacity: 0.65;
  }
}

/* Contenido hero */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pre-title {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--purple-500);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: fadeInUp 0.8s ease both 0.2s;
}

.pre-ornament {
  color: var(--purple-300);
  font-size: 0.6rem;
}

/* NÚMERO 25 */
.numero-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 4px;
}

.numero {
  font-family: var(--ff-serif);
  font-size: clamp(110px, 30vw, 220px);
  font-weight: 300;
  line-height: 0.82;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--purple-400);
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) both 0.3s;
}

.numero-shadow {
  position: absolute;
  inset: 0;
  font-family: var(--ff-serif);
  font-size: clamp(110px, 30vw, 220px);
  font-weight: 300;
  line-height: 0.82;
  letter-spacing: -0.04em;
  color: var(--purple-300);
  opacity: 0.18;
  transform: translate(5px, 8px);
  pointer-events: none;
  z-index: 1;
  user-select: none;
}

/* Divisor floral */
.divider-floral {
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(280px, 80vw);
  margin: 28px auto 24px;
  animation: fadeInUp 0.9s ease both 0.5s;
}

.div-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--purple-300), transparent);
}

.div-flores {
  color: var(--purple-400);
  font-size: 0.95rem;
  letter-spacing: 0.4em;
  white-space: nowrap;
  animation: spin-slow 15s linear infinite;
}

@keyframes spin-slow {
  from {
    letter-spacing: 0.3em;
  }

  50% {
    letter-spacing: 0.5em;
  }

  to {
    letter-spacing: 0.3em;
  }
}

.tagline {
  font-family: var(--ff-serif);
  font-size: clamp(1.5rem, 4.5vw, 2.5rem);
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.2;
  animation: fadeInUp 0.9s ease both 0.6s;
}

.tagline-italic {
  font-family: var(--ff-serif);
  font-size: clamp(1.25rem, 3.8vw, 2.1rem);
  font-weight: 300;
  font-style: italic;
  color: var(--purple-600);
  margin-top: 4px;
  margin-bottom: 16px;
  animation: fadeInUp 0.9s ease both 0.7s;
}

.sub-tagline {
  font-size: clamp(0.8rem, 2.2vw, 0.9rem);
  color: var(--text-light);
  font-weight: 300;
  letter-spacing: 0.02em;
  max-width: 340px;
  margin: 0 auto 28px;
  animation: fadeInUp 0.9s ease both 0.8s;
}

/* Flor decorativa en hero */
.hero-flor-deco {
  color: var(--purple-400);
  opacity: 0.55;
  animation: spin-flower 20s linear infinite;
  margin-top: 4px;
}

@keyframes spin-flower {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Onda inferior del hero */
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 2;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ═══════════════════════════════════════════════════
   SECCIÓN DETALLES (fecha/hora/lugar)
═══════════════════════════════════════════════════ */
.info-section {
  background: var(--lavender-bg);
  max-width: 100%;
  padding-left: clamp(16px, 5vw, 60px);
  padding-right: clamp(16px, 5vw, 60px);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 2vw, 24px);
  max-width: 780px;
  margin: 0 auto 40px;
}

/* Las tarjetas de info */
.info-card {
  background: var(--white);
  border: 1.5px solid rgba(201, 184, 232, 0.5);
  border-radius: var(--radius-md);
  padding: clamp(20px, 4vw, 36px) clamp(12px, 2vw, 20px);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* barra morada superior en cada tarjeta */
.card-deco-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--purple-300), var(--purple-500), var(--purple-300));
}

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

.info-icon {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin-bottom: 10px;
}

.info-title {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--purple-500);
  font-weight: 500;
  margin-bottom: 8px;
}

.info-value {
  font-family: var(--ff-serif);
  font-size: clamp(0.9rem, 2.2vw, 1.08rem);
  color: var(--text-dark);
  line-height: 1.5;
}

.info-value strong {
  color: var(--purple-600);
}

/* ═══════════════════════════════════════════════════
   CUENTA REGRESIVA
═══════════════════════════════════════════════════ */
.countdown-section {
  background: linear-gradient(135deg,
      var(--purple-700) 0%,
      var(--purple-600) 40%,
      var(--purple-500) 100%);
  max-width: 100%;
  padding: clamp(60px, 10vw, 100px) clamp(16px, 5vw, 40px);
  position: relative;
  overflow: hidden;
}

.countdown-section .section-label {
  color: rgba(255, 255, 255, 0.7);
}

.countdown-section .section-ornament {
  color: rgba(255, 255, 255, 0.5);
}

/* Círculos decorativos dentro del countdown */
.cd-bg-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.cd-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cd-c1 {
  width: 400px;
  height: 400px;
  top: -150px;
  left: -100px;
}

.cd-c2 {
  width: 300px;
  height: 300px;
  bottom: -120px;
  right: -60px;
}

.countdown-sub {
  font-family: var(--ff-serif);
  font-size: clamp(1.2rem, 3.5vw, 1.7rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: clamp(30px, 6vw, 50px);
  font-style: italic;
}

/* Timer */
.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 2vw, 16px);
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.cd-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: clamp(12px, 3vw, 20px) clamp(16px, 4vw, 28px);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  min-width: clamp(64px, 16vw, 90px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cd-num {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 8vw, 4rem);
  font-weight: 300;
  color: #fff;
  line-height: 1;
  display: block;
  transition: transform 0.15s ease;
}

.cd-num.bump {
  transform: scale(1.18);
}

.cd-label {
  font-size: clamp(0.55rem, 1.5vw, 0.65rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.cd-sep {
  font-family: var(--ff-serif);
  font-size: clamp(1.5rem, 5vw, 2.8rem);
  color: rgba(255, 255, 255, 0.5);
  align-self: flex-start;
  padding-top: clamp(10px, 2vw, 16px);
  line-height: 1;
}

/* ── Ola entre countdown y gifts ── */
.wave-sep {
  background: var(--lavender-bg);
  line-height: 0;
  z-index: 1;
  position: relative;
}

.wave-sep svg {
  width: 100%;
  height: auto;
  display: block;
  background: var(--purple-600);
}

/* ═══════════════════════════════════════════════════
   REGALOS
═══════════════════════════════════════════════════ */
.gifts-section {
  background: var(--cream);
}

/* Tarjeta única centrada */
.gifts-single {
  background: var(--white);
  border: 1.5px solid rgba(201, 184, 232, 0.45);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 6vw, 52px) clamp(24px, 5vw, 48px);
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow-lift);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Blob decorativo en esquina superior */
.gifts-single::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, var(--purple-100) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Blob decorativo en esquina inferior */
.gifts-single::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, var(--purple-200) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.5;
}

.gifts-single:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(124, 92, 191, 0.22);
}

/* Badge del icono */
.gift-card-badge {
  font-size: 2.2rem;
  background: linear-gradient(135deg, var(--purple-100), var(--lavender-bg));
  border: 1.5px solid rgba(201, 184, 232, 0.55);
  border-radius: 50%;
  width: 66px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.gift-title {
  font-family: var(--ff-serif);
  font-size: clamp(1.4rem, 3.8vw, 2rem);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.gift-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--purple-400), transparent);
  border-radius: 2px;
  margin: 0 auto 16px;
}

.gift-text {
  font-size: clamp(0.84rem, 2vw, 0.92rem);
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
}

.gift-text em {
  color: var(--purple-600);
  font-style: italic;
}

/* Lista con iconos */
.gift-icon-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.gift-icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--lavender-bg);
  border: 1px solid rgba(201, 184, 232, 0.35);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.gift-icon-list li:hover {
  background: var(--purple-100);
  transform: translateX(4px);
}

.gift-icon-item-icon {
  font-size: 1.35rem;
  flex-shrink: 0;
  line-height: 1.3;
}

.gift-icon-item-text {
  font-size: clamp(0.82rem, 2vw, 0.88rem);
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.5;
}

.gift-icon-item-sub {
  display: block;
  font-size: clamp(0.72rem, 1.6vw, 0.78rem);
  color: var(--text-light);
  font-weight: 400;
  margin-top: 2px;
}

/* Mensaje de compañía */
.gift-presence-msg {
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.gift-presence-ornament {
  color: var(--purple-400);
  font-size: 1.1rem;
  opacity: 0.65;
  flex-shrink: 0;
}

.gift-presence-text {
  font-family: var(--ff-serif);
  font-size: clamp(1.05rem, 3vw, 1.35rem);
  font-weight: 300;
  font-style: italic;
  color: var(--purple-600);
  line-height: 1.6;
  max-width: 340px;
}

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.footer {
  position: relative;
  z-index: 1;
  background: var(--purple-700);
  color: rgba(255, 255, 255, 0.85);
  overflow: hidden;
}

.footer-top-wave {
  line-height: 0;
  background: var(--lavender-bg);
}

.footer-top-wave svg {
  width: 100%;
  display: block;
}

.footer-inner {
  padding: clamp(48px, 8vw, 80px) clamp(16px, 5vw, 40px) clamp(48px, 8vw, 72px);
  text-align: center;
}

/* Flores del footer */
.footer-flor-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
}

.footer-flower {
  width: clamp(36px, 8vw, 52px);
  height: clamp(36px, 8vw, 52px);
  color: var(--purple-300);
  animation: spin-flower 18s linear infinite;
  flex-shrink: 0;
}

.footer-flower:last-child {
  animation-direction: reverse;
  animation-duration: 22s;
}

.footer-dots-row {
  display: flex;
  gap: 6px;
  align-items: center;
}

.footer-dots-row span {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.footer-quote {
  font-family: var(--ff-serif);
  font-size: clamp(1rem, 3vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  max-width: 420px;
  margin: 0 auto 20px;
  border: none;
}

.footer-sub {
  font-size: clamp(0.65rem, 1.8vw, 0.75rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

/* ═══════════════════════════════════════════════════
   ANIMACIONES DE ENTRADA (scroll reveal)
═══════════════════════════════════════════════════ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — TABLET
═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .info-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .info-value {
    font-size: 0.85rem;
  }

  .gifts-single {
    max-width: 480px;
  }

  .cd-sep {
    display: none;
  }

  .countdown {
    gap: 10px;
  }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — MOBILE
═══════════════════════════════════════════════════ */
@media (max-width: 520px) {

  /* Info cards: una columna */
  .info-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Countdown: 2x2 grid */
  .countdown {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    max-width: 240px;
    margin: 0 auto;
  }

  .cd-sep {
    display: none;
  }

  .cd-card {
    min-width: unset;
    width: 100%;
    padding: 16px 12px;
  }

  .hero-arc {
    display: none;
    /* ocultar en mobile para limpiar */
  }

  .petal-a,
  .petal-c {
    display: none;
  }

  /* reducir pétalos en mobile */

  .orb-1 {
    width: 220px;
    height: 220px;
  }

  .orb-2 {
    width: 160px;
    height: 160px;
  }

  .orb-3 {
    display: none;
  }

  .dot-cluster {
    display: none;
  }

  .gifts-single {
    max-width: 100%;
  }

  .footer-flor-row {
    gap: 10px;
  }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — LARGE SCREENS
═══════════════════════════════════════════════════ */
@media (min-width: 1024px) {
  .info-section {
    padding-left: 80px;
    padding-right: 80px;
  }

  .gifts-single {
    max-width: 560px;
  }

  .hero-img-wrapper {
    width: 200px;
    height: 200px;
  }
}