@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Nunito:wght@500;600;700;800&display=swap');

/* ── Estética "suave" (migrada 2026). Estilos anteriores en /design-archive ──── */
:root {
  --accent:        #ff6f61;   /* coral — color de marca / primario */
  --accent-dark:   #ef5a4d;
  --accent-light:  #ffeef0;   /* tinte coral suave (badges, banners, hero-badge) */
  --coral:         #ff7a6b;   /* rojo cálido para avisos */
  --coral-dark:    #e0564a;
  --coral-light:   #fff0ee;
  --blue:          #5aa9ff;   /* azul secundario (p. ej. contador de adultos) */
  --blue-dark:     #3d8be0;
  --yellow:        #ffd166;
  --mint:          #36b37e;   /* verde — éxito / activo */
  --mint-dark:     #2c9e6c;
  --mint-light:    #e7f6ee;
  --bg:            #ffffff;
  --bg-2:          #fbf6f0;   /* fondo de página (crema) */
  --bg-3:          #f3ece3;
  --dot:           #f1e6d8;   /* lunar del fondo crema (sello del collage) */
  --sky:           #eaf3ff;   /* tinte azul suave (cuadros de icono) */
  --cream:         #fff6e9;   /* tinte amarillo suave (botones/cajas crema) */
  --border:        #efe7df;
  --border-2:      #e2d8cc;
  --text:          #33304a;
  --text-2:        #5a5468;
  --muted:         #8c8699;
  --success:       #36b37e;
  --success-bg:    #e7f6ee;
  --danger:        #e5484d;
  --danger-bg:     #fdecec;
  --warning:       #F59E0B;
  --warning-bg:    #FFFBEB;
  --radius-sm:     9px;
  --radius:        14px;
  --radius-lg:     22px;
  --shadow:        0 5px 16px rgba(51,48,74,0.09);
  --shadow-md:     0 12px 30px rgba(51,48,74,0.10);
  --font-head:     'Fredoka', sans-serif;
  --font-body:     'Nunito', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--bg-2);
  /* Lunares apenas insinuados: el sello "suave" del collage */
  background-image: radial-gradient(var(--dot) 1.3px, transparent 1.4px);
  background-size: 22px 22px;
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

/* ── NAVBAR ────────────────────────────────────────────────────────────────── */
.navbar {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text);
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 30px; height: 30px;
  flex-shrink: 0; display: block;
}
.logo-word { white-space: nowrap; }
.logo-word .c { color: var(--accent); }
.logo-dot { color: var(--accent); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-btn {
  font-size: 0.82rem; font-weight: 500;
  color: var(--text-2); text-decoration: none;
  padding: 6px 12px; border-radius: var(--radius-sm);
  transition: background 0.15s;
}
.nav-btn:hover { background: var(--bg-3); }
.nav-btn-primary {
  background: var(--accent); color: #fff;
  padding: 6px 14px; border-radius: var(--radius-sm);
  font-size: 0.82rem; font-weight: 600;
  text-decoration: none; transition: background 0.15s;
}
.nav-btn-primary:hover { background: var(--accent-dark); }

/* ── LAYOUT ──────────────────────────────────────────────────────────────── */
.page { max-width: 680px; margin: 0 auto; padding: 40px 20px 80px; flex: 1; width: 100%; }
.page-wide { max-width: 960px; margin: 0 auto; padding: 40px 20px 80px; flex: 1; width: 100%; }
.page-narrow { max-width: 480px; margin: 0 auto; padding: 40px 20px 80px; flex: 1; width: 100%; }

/* ── CARD ────────────────────────────────────────────────────────────────── */
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}
.card + .card { margin-top: 16px; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────────────────── */
h1 { font-family: var(--font-head); font-size: 1.75rem; font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; }
h2 { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; letter-spacing: -0.01em; }
h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; }
p  { font-size: 0.95rem; line-height: 1.6; color: var(--text-2); }
.section-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 12px;
}

/* ── FORMS ───────────────────────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.88rem; font-weight: 500;
  color: var(--text); margin-bottom: 6px;
}
.form-group .hint { font-size: 0.78rem; color: var(--muted); margin-top: 5px; }
input[type="text"],
input[type="email"],
input[type="password"],
input[type="date"],
input[type="time"],
input[type="number"],
input[type="url"],
input[type="tel"],
input[type="search"],
textarea, select {
  width: 100%; padding: 11px 14px;
  background: var(--bg); border: 1.5px solid var(--border-2);
  border-radius: var(--radius); font-family: var(--font-body);
  font-size: 0.92rem; color: var(--text);
  transition: border-color 0.15s, box-shadow 0.15s; outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255,111,97,0.14);
}
textarea { resize: vertical; min-height: 80px; }
/* Quita las flechas del input number para que iguale a los de texto */
input[type="number"] { -moz-appearance: textfield; }
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.date-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ── BUTTONS ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 11px 20px; border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.92rem; font-weight: 800;
  cursor: pointer; transition: transform 0.12s, box-shadow 0.12s, background 0.15s, filter 0.12s;
  border: none; text-decoration: none; white-space: nowrap;
  box-shadow: var(--shadow);
}
.btn:active { transform: translateY(1px); filter: brightness(0.97); }
.btn-outline { box-shadow: none; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-coral { background: var(--coral); color: #fff; }
.btn-coral:hover { background: var(--coral-dark); }
.btn-success { background: var(--mint); color: #fff; }
.btn-success:hover { background: var(--mint-dark); }
/* CTA estrella del collage: amarillo cálido sobre el hero coral / la cinta oscura */
.btn-yellow { background: var(--yellow); color: #5b4a1f; }
.btn-yellow:hover { background: #f5c34d; }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-dark); }
/* Botón crema para acciones suaves (copiar, modificar…) */
.btn-cream { background: var(--cream); color: #8a6a25; box-shadow: var(--shadow); }
.btn-cream:hover { background: #ffedd2; }
.btn-outline { background: transparent; color: var(--text-2); border: 1px solid var(--border-2); }
.btn-outline:hover { background: var(--bg-3); }
.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover { background: #e05555; }
.btn-ghost { background: transparent; color: var(--text-2); }
.btn-ghost:hover { background: var(--bg-3); }
.btn-lg { padding: 13px 28px; font-size: 1rem; }
.btn-sm { padding: 6px 12px; font-size: 0.8rem; }
.btn-full { width: 100%; }
.btn-icon { padding: 8px; border-radius: var(--radius-sm); }

/* ── COUNTER BUTTONS (para niños/adultos) ───────────────────────────────── */
.counter-row {
  display: flex; align-items: center; gap: 0;
  background: var(--bg-2); border: 1px solid var(--border-2);
  border-radius: var(--radius); overflow: hidden; width: fit-content;
}
.counter-btn {
  width: 44px; height: 44px; border: none; background: none;
  font-size: 1.25rem; font-weight: 700; color: var(--accent);
  cursor: pointer; transition: background 0.15s;
  display: flex; align-items: center; justify-content: center;
}
.counter-btn:hover { background: var(--accent-light); }
.counter-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.counter-val {
  min-width: 48px; text-align: center;
  font-size: 1.25rem; font-weight: 700; color: var(--text);
  font-family: var(--font-head);
}
.counter-group { display: flex; flex-direction: column; gap: 4px; }
.counter-label { font-size: 0.82rem; font-weight: 500; color: var(--text-2); }

/* ── BADGES ──────────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 10px; border-radius: 999px;
  font-size: 0.75rem; font-weight: 500;
}
.badge-success { background: var(--success-bg); color: var(--mint-dark); }
.badge-danger  { background: var(--danger-bg);  color: var(--coral-dark); }
.badge-warning { background: var(--warning-bg); color: #92400e; }
.badge-neutral { background: var(--bg-3); color: var(--text-2); }
.badge-accent  { background: var(--accent-light); color: var(--accent-dark); }
.badge-coral   { background: var(--coral-light); color: var(--coral-dark); }

/* ── ALERT ───────────────────────────────────────────────────────────────── */
.alert {
  display: flex; gap: 12px; padding: 14px 16px;
  border-radius: var(--radius); font-size: 0.88rem; line-height: 1.5;
}
.alert-info    { background: var(--accent-light); color: var(--accent-dark); border: 1px solid rgba(255,111,97,0.18); }
.alert-success { background: var(--success-bg);   color: #065f46; border: 1px solid rgba(107,203,119,0.2); }
.alert-warning { background: var(--warning-bg);   color: #92400e; border: 1px solid rgba(245,158,11,0.2); }
.alert-danger  { background: var(--danger-bg);    color: var(--coral-dark); border: 1px solid rgba(255,107,107,0.2); }

/* ── DIVIDER ─────────────────────────────────────────────────────────────── */
.divider { border: none; border-top: 1px solid var(--border); margin: 24px 0; }

/* ── CHIPS ───────────────────────────────────────────────────────────────── */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent-light); color: var(--accent-dark);
  border-radius: 999px; padding: 5px 12px;
  font-size: 0.82rem; font-weight: 500;
}
.chip-remove {
  background: none; border: none; cursor: pointer;
  color: var(--accent); padding: 0; line-height: 1;
  font-size: 1rem; opacity: 0.7; transition: opacity 0.15s;
}
.chip-remove:hover { opacity: 1; }

/* ── STATS BAR ───────────────────────────────────────────────────────────── */
.stats-bar {
  display: flex; gap: 16px; flex-wrap: wrap;
}
.stat-item {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 16px 20px;
  flex: 1; min-width: 100px; text-align: center; box-shadow: var(--shadow);
}
.stat-num {
  font-family: var(--font-head); font-size: 2.6rem; font-weight: 700;
  color: var(--accent); line-height: 1;
}
/* Etiquetas grandes y con contraste: la mayoría del público tiene presbicia */
.stat-label { font-size: 1.05rem; font-weight: 700; color: var(--text-2); margin-top: 8px; }

/* ── EVENT CARD ─────────────────────────────────────────────────────────── */
.event-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px 24px;
  box-shadow: var(--shadow); transition: box-shadow 0.15s, border-color 0.15s;
  text-decoration: none; color: inherit; display: block;
}
.event-card:hover { box-shadow: var(--shadow-md); border-color: var(--accent); }
.event-card-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.event-card-title { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--text); }
.event-card-child { font-size: 0.85rem; color: var(--text-2); margin-top: 2px; }
.event-card-meta { display: flex; flex-wrap: wrap; gap: 10px; font-size: 0.82rem; color: var(--muted); }
.event-card-meta span { display: flex; align-items: center; gap: 4px; }
.event-card-footer { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 8px; }

/* ── CONFIRMATION LIST ──────────────────────────────────────────────────── */
.conf-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.conf-item:last-child { border-bottom: none; }
.conf-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent-light); color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1rem; font-weight: 700;
  flex-shrink: 0;
}
.conf-info { flex: 1; min-width: 0; }
.conf-name { font-weight: 600; font-size: 0.95rem; color: var(--text); }
.conf-detail { font-size: 0.82rem; color: var(--text-2); margin-top: 2px; }
.conf-kids { font-size: 0.8rem; color: var(--muted); margin-top: 4px; }
.conf-notes { font-size: 0.8rem; color: var(--accent); background: var(--accent-light); padding: 4px 10px; border-radius: var(--radius-sm); margin-top: 6px; display: inline-block; }

/* ── STEP INDICATOR ─────────────────────────────────────────────────────── */
.step-indicator { display: flex; align-items: center; gap: 0; margin-bottom: 28px; }
.step-dot {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; font-weight: 700; flex-shrink: 0;
  transition: all 0.2s;
}
.step-dot.active { background: var(--accent); color: #fff; }
.step-dot.done   { background: var(--mint); color: #fff; }
.step-dot.pending { background: var(--bg-3); color: var(--muted); }
.step-line { flex: 1; height: 2px; background: var(--border); transition: background 0.2s; }
.step-line.done { background: var(--mint); }

/* ── THEME SELECTOR ─────────────────────────────────────────────────────── */
.theme-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 10px; }
.theme-option {
  border: 1.5px solid var(--border); border-radius: var(--radius); background: var(--bg);
  padding: 12px 8px; text-align: center; cursor: pointer;
  transition: all 0.15s; user-select: none;
}
.theme-option:hover { border-color: var(--mint); background: var(--mint-light); }
.theme-option.selected { border-color: #bfe6d2; background: var(--mint-light); box-shadow: var(--shadow); }
.theme-option.locked { opacity: 0.5; cursor: not-allowed; }
.theme-option .theme-emoji { font-size: 1.5rem; display: block; margin-bottom: 4px; }
.theme-option .theme-name { font-size: 0.78rem; font-weight: 500; color: var(--text-2); }

/* ── PREMIUM BADGE ──────────────────────────────────────────────────────── */
.premium-crown {
  display: inline-flex; align-items: center; gap: 4px;
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
  border: 1px solid #F59E0B; border-radius: 999px;
  padding: 3px 10px; font-size: 0.78rem; font-weight: 700; color: #92400e;
}

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border); background: var(--bg);
  padding: 28px 24px; text-align: center;
  font-size: 0.8rem; color: var(--muted); margin-top: 40px;
  line-height: 1.9;
}
footer a { color: var(--text-2); text-decoration: none; transition: color 0.15s; }
footer a:hover { color: var(--accent); }
footer strong { color: var(--text); font-family: var(--font-head); letter-spacing: -0.02em; }
.footer-cookie-btn {
  background: none; border: none; color: var(--muted); font-size: 0.8rem;
  cursor: pointer; padding: 0; font-family: inherit; text-decoration: underline;
}
.footer-cookie-btn:hover { color: var(--accent); }
/* ── Footer social icons ── */
.footer-social {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; margin-bottom: 12px;
}
.footer-social-link {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  color: var(--muted); background: var(--bg-2); border: 1px solid var(--border);
  transition: color 0.15s, background 0.15s, border-color 0.15s, transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
  text-decoration: none;
}
.footer-social-link:hover {
  color: #fff; background: var(--accent); border-color: var(--accent);
  transform: translateY(-3px) rotate(-4deg);
}

/* ── SKELETON LOADER ────────────────────────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, var(--bg-3) 25%, var(--bg-2) 50%, var(--bg-3) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: var(--radius-sm);
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ── EMPTY STATE ────────────────────────────────────────────────────────── */
.empty-state { text-align: center; padding: 60px 20px; }
.empty-state-icon { font-size: 3rem; margin-bottom: 16px; }
.empty-state h3 { font-size: 1.1rem; margin-bottom: 8px; }
.empty-state p { max-width: 340px; margin: 0 auto 24px; }

/* ── MOBILE ──────────────────────────────────────────────────────────────── */
@media (max-width: 520px) {
  .page, .page-wide, .page-narrow { padding: 24px 16px 80px; }
  .card { padding: 20px; }
  h1 { font-size: 1.4rem; }
  .stats-bar { gap: 10px; }
  .date-row { grid-template-columns: 1fr; }
}

/* ── Guías SEO ──────────────────────────────────────────────────────────── */
.guide { max-width: 760px; margin: 0 auto; padding: 0 20px 64px; }
.breadcrumb { font-size: 0.8rem; color: var(--muted); margin: 20px 0 10px; }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.guide-hero h1 { font-size: clamp(1.6rem, 4.5vw, 2.4rem); margin: 6px 0 14px; line-height: 1.2; }
.guide-lead { font-size: 1.05rem; color: var(--text-2); line-height: 1.65; margin-bottom: 14px; }
.guide-meta { font-size: 0.8rem; color: var(--muted); margin-bottom: 20px; }
.disclosure { font-size: 0.78rem; color: var(--muted); background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 10px 14px; line-height: 1.5; margin: 18px 0; }
.guide h2 { font-size: 1.35rem; margin: 38px 0 12px; scroll-margin-top: 80px; }
.guide h3 { font-size: 1.05rem; margin: 22px 0 8px; }
.guide p { color: var(--text-2); line-height: 1.7; margin-bottom: 14px; }
.guide ul, .guide ol { margin: 0 0 16px 22px; color: var(--text-2); line-height: 1.85; }
.guide strong { color: var(--text); }
.toc { background: var(--accent-light); border-radius: var(--radius-lg); padding: 18px 22px; margin: 24px 0; }
.toc strong { display: block; margin-bottom: 8px; color: var(--accent-dark); }
.toc a { color: var(--accent-dark); text-decoration: none; display: block; padding: 3px 0; font-size: 0.92rem; }
.toc a:hover { text-decoration: underline; }
.prod-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 10px; margin: 14px 0 6px; }
.prod-card { display: flex; align-items: center; gap: 10px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 12px 14px; text-decoration: none; color: var(--text); font-size: 0.9rem; font-weight: 500; transition: border-color .15s, transform .15s; }
.prod-card:hover { border-color: var(--accent); transform: translateY(-1px); }
.prod-card .emoji { font-size: 1.3rem; flex-shrink: 0; }
.prod-card .ext { margin-left: auto; color: var(--muted); font-size: 0.8rem; }
.faq-item { border-top: 1px solid var(--border); padding: 16px 0; }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-item h3 { margin: 0 0 6px; font-size: 1rem; }
.faq-item p { margin: 0; }
.cta-box { text-align: center; background: linear-gradient(135deg, var(--accent-light), var(--bg)); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 22px; margin: 38px 0 8px; }
.cta-box h2 { margin: 0 0 8px; }
.cta-box p { margin: 0 0 16px; color: var(--text-2); }
.related { margin-top: 38px; display: grid; gap: 10px; }
.related-card { display: block; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 16px; text-decoration: none; color: var(--text); transition: border-color .15s; }
.related-card:hover { border-color: var(--accent); }
.related-card span { display: block; font-size: 0.82rem; color: var(--muted); margin-top: 2px; }

/* ── Hero suave (degradado coral) — página del invitado / landing ──────────── */
.soft-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(140deg, #ff8a7a, #ff6f61);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 38px rgba(255,111,97,0.30);
  padding: 32px 22px 28px; text-align: center; color: #fff;
  animation: heroPop 0.5s ease both;
}
@keyframes heroPop { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.soft-hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 20% 0%, rgba(255,255,255,0.18), transparent 45%);
}
.soft-hero > * { position: relative; z-index: 1; }
.soft-hero h1 { color: #fff; }
.soft-hero p  { color: rgba(255,255,255,0.92); }
.soft-hero .hero-emoji {
  display: inline-grid; place-items: center; width: 92px; height: 92px; margin-bottom: 10px;
  font-size: 3rem; background: #fff; border-radius: 50%;
  box-shadow: 0 10px 22px rgba(0,0,0,0.16), inset 0 0 0 4px rgba(255,209,102,0.55);
  animation: heroFloat 5s ease-in-out infinite;
}
@keyframes heroFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
.soft-hero .hero-tag {
  display: inline-block; background: rgba(255,255,255,0.22); color: #fff;
  font-family: var(--font-head); font-weight: 600; font-size: 0.72rem;
  letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 14px; border-radius: 20px;
}
.soft-hero .hero-pill {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 12px;
  background: #fff; color: var(--text); border-radius: 30px; padding: 7px 14px;
  font-weight: 700; font-size: 0.85rem; box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}
/* Medallón "roseta" del collage: cuadros blancos girados que forman una medalla
   festoneada detrás del emoji, dentro de un círculo blanco con aro amarillo.
   Markup: <div class="hero-medal"><i></i><i></i><i></i><span class="core">🎂</span></div> */
.hero-medal {
  position: relative; width: 104px; height: 104px; margin: 0 auto 10px;
  animation: heroFloat 5s ease-in-out infinite;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.16));
}
.hero-medal i {
  position: absolute; inset: 13px;
  background: rgba(255,255,255,0.85); border-radius: 9px;
}
.hero-medal .core {
  position: absolute; inset: 22px; border-radius: 50%; overflow: hidden;
  background: #fff; display: grid; place-items: center; font-size: 2.5rem; line-height: 1;
  box-shadow: inset 0 0 0 3px rgba(255,209,102,0.6);
}
.hero-medal .core img { width: 100%; height: 100%; display: block; object-fit: cover; }
.hero-medal.sm { width: 84px; height: 84px; }
.hero-medal.sm i { inset: 11px; border-radius: 7px; }
.hero-medal.sm .core { inset: 18px; font-size: 2rem; }

/* ── Cuadro de icono pastel con emoji (sello del collage) ──────────────────── */
.soft-icon {
  flex: none; width: 48px; height: 48px; border-radius: 14px;
  display: grid; place-items: center; font-size: 1.45rem;
  box-shadow: var(--shadow);
}
.soft-icon.lg { width: 56px; height: 56px; font-size: 1.7rem; }
.soft-icon.mint  { background: var(--mint-light); }
.soft-icon.sky   { background: var(--sky); }
.soft-icon.pink  { background: var(--accent-light); }
.soft-icon.cream { background: var(--cream); }

/* ── Cinta CTA oscura con botón amarillo (pie de landing / invitación) ─────── */
.soft-cta {
  background: linear-gradient(140deg, #3a3556, #2c2740);
  border-radius: var(--radius-lg); padding: 24px 22px; text-align: center; color: #fff;
  box-shadow: var(--shadow-md);
}
.soft-cta h2, .soft-cta .soft-cta-title {
  color: #fff; font-family: var(--font-head); font-weight: 600;
  font-size: 1.15rem; margin: 0 0 4px;
}
.soft-cta p { color: rgba(255,255,255,0.82); margin: 0 0 16px; }

/* ── Fila de "feature" con cuadro de icono (cómo funciona / listas) ────────── */
.soft-feat { display: flex; gap: 12px; align-items: flex-start; }
.soft-feat + .soft-feat { margin-top: 14px; }
.soft-feat .soft-feat-body { padding-top: 2px; }
.soft-feat .soft-feat-body b { font-family: var(--font-head); font-weight: 600; font-size: 0.98rem; }
.soft-feat .soft-feat-body p { font-size: 0.86rem; margin: 2px 0 0; color: var(--text-2); }
