/*
Theme Name:   Rememberos Child
Theme URI:    https://rememberos.es
Description:  Child theme de Hello Elementor para Rememberos.es — todas las personalizaciones del sitio.
Author:       Rememberos.es
Author URI:   https://rememberos.es
Template:     hello-elementor
Version:      1.0.0
License:      GNU General Public License v2 or later
License URI:  https://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  rememberos-child
*/



/* ----------------------------------------------------------------
   PRODUCTOS AGOTADOS — botón y mensaje
   ---------------------------------------------------------------- */
.rememberos-btn-agotado {
    opacity: 0.7;
    cursor: not-allowed;
    white-space: normal;
    height: auto;
    line-height: 1.2;
    padding: 10px 15px;
    text-align: center;
    display: inline-block;
}

.rememberos-stock-cerrado {
    color: #e2401c;
    font-weight: bold;
}


/* ----------------------------------------------------------------
   DESGLOSE DE GASTOS DE GESTIÓN EN FICHA DE PRODUCTO
   ---------------------------------------------------------------- */
.rememberos-fee-breakdown {
    font-size: 0.9em;
    color: #666;
    margin-top: 5px;
}

.rememberos-fee-breakdown strong {
    color: #000;
}





/* ============================================
   5. ARCHIVE FIESTAS — [fiestas_grid]
   ============================================ */

.archive-fiestas {
    padding: 60px 24px;
    background: #0a0818;
    width: 100%;
    box-sizing: border-box;
}

.archive-fiestas .elementor-loop-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.card-fiesta {
    background: #120f2a;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 77, 126, 0.15);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.card-fiesta:hover {
    transform: translateY(-6px);
    border-color: #ff4d7e;
    box-shadow: 0 20px 40px rgba(255, 77, 126, 0.2);
}

.card-fiesta__imagen img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.card-fiesta__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.card-fiesta__titulo {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: clamp(14px, 2vw, 18px);
    color: #ffffff;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.card-fiesta__btn .elementor-button {
    background: #ff4d7e !important;
    color: #ffffff !important;
    border-radius: 50px !important;
    font-family: 'Unbounded', sans-serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    padding: 12px 28px !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: background 0.2s ease, transform 0.2s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}

.card-fiesta__btn .elementor-button:hover {
    background: #e0365f !important;
    transform: scale(1.03) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .archive-fiestas .elementor-loop-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .archive-fiestas {
        padding: 40px 16px;
    }

    .card-fiesta__titulo {
        font-size: 14px;
    }
}





/* ═══════════════════════════════════════════════════════════════════
   UTILIDADES GLOBALES — Clases compartidas entre todas las páginas
   Pegar UNA SOLA VEZ en style.css, antes de §8
═══════════════════════════════════════════════════════════════════ */

/* Eyebrow de sección — texto pequeño en magenta encima del título */
.section-eyebrow,
.section-eyebrow.elementor-widget-text-editor p {
  font-family: 'Unbounded', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #ff4d7e;
  margin: 0 0 10px;
}

/* Título principal de sección */
.section-title .elementor-heading-title,
.section-title h1,
.section-title h2,
.section-title h3 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4.5vw, 50px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: #f5f1e8;
  margin: 0;
}

/* Palabra "suave" dentro de cualquier título — añade span.title-light en el heading */
.title-light {
  font-weight: 300;
  color: #a8a2c0;
}

/* Tarjeta de paso — usada en home (cómo comprar) y embajadores (cómo funciona) */
.step-card {
  position: relative;
  padding: 32px 26px;
  border: 1px solid rgba(245,241,232,0.10);
  border-radius: 24px;
  background: #13102a;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 60% at 50% 0%,
    rgba(255,77,126,0.07),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.step-card:hover {
  border-color: rgba(255,77,126,0.4);
  transform: translateY(-4px);
}
.step-card:hover::before { opacity: 1; }

.step-num {
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: 56px;
  line-height: 1;
  color: #ff4d7e;
  opacity: 0.18;
  position: absolute;
  top: 18px; right: 22px;
  letter-spacing: -0.05em;
  user-select: none;
  pointer-events: none;
}

.step-icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: rgba(255,77,126,0.10);
  border: 1px solid rgba(255,77,126,0.28);
  display: flex; align-items: center; justify-content: center;
  color: #ff4d7e;
  margin-bottom: 20px;
}
.step-icon svg { width: 22px; height: 22px; }

.step-h {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: #f5f1e8;
  margin: 0 0 10px;
  line-height: 1.15;
}

.step-p,
.step-card p {
  font-size: 14px;
  color: #a8a2c0;
  line-height: 1.65;
  margin: 0;
}
.step-p strong,
.step-card p strong {
  color: #f5f1e8;
  font-weight: 600;
}

/* ─────────────────────────────────────────
   §14 HERO CABECERA — ~200px
───────────────────────────────────────── */

.web-hero.e-con {
  position: relative;
  min-height: 200px;
  display: flex !important;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 48px 40px 44px;
  background:
    radial-gradient(ellipse 90% 120% at 50% 130%, rgba(255,138,61,0.30) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 85% -10%,  rgba(255,77,126,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 5%  60%,   rgba(0,229,255,0.12)  0%, transparent 55%),
    linear-gradient(180deg, #0f0b22 0%, #1e1540 55%, #3a1555 85%, #6b1e4a 100%) !important;
}

/* Líneas retro horizontales al fondo */
.web-hero.e-con::before {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: repeating-linear-gradient(
    90deg,
    transparent 0, transparent 40px,
    rgba(255,255,255,0.03) 40px, rgba(255,255,255,0.03) 41px
  );
  z-index: 0;
  pointer-events: none;
}

/* Brillo central difuso */
.web-hero.e-con::after {
  content: "";
  position: absolute;
  bottom: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: min(500px, 100vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255,77,126,0.22) 0%,
    rgba(255,138,61,0.15) 40%,
    transparent 70%
  );
  z-index: 0;
  pointer-events: none;
}

/* Contenido sobre los efectos */
.web-hero.e-con > .e-con-inner {
  position: relative;
  z-index: 2;
}

/* Eyebrow "Contacto" */
.web-hero .web-hero-eyebrow,
.web-hero .web-hero-eyebrow.elementor-widget-text-editor p {
  font-family: 'Unbounded', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #ff4d7e;
  margin: 0 0 10px;
}

/* Título principal */
.web-hero .web-hero-title .elementor-heading-title,
.web-hero .web-hero-title h1 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: #f5f1e8;
  margin: 0;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}

/* Parte "suave" del título */
.web-hero .web-hero-title .title-light {
  font-weight: 300;
  color: #a8a2c0;
}

/* Breadcrumb opcional */
.web-breadcrumb,
.web-breadcrumb.elementor-widget-text-editor p {
  font-size: 12px;
  color: #6b6689;
  margin: 10px 0 0;
  letter-spacing: 0.05em;
}
.web-breadcrumb a { color: #a8a2c0; text-decoration: none; transition: color .2s; }
.web-breadcrumb a:hover { color: #ff4d7e; }

@media (max-width: 768px) {
  .web-hero.e-con { padding: 40px 16px 36px; min-height: 180px; }
}



/* ─────────────────────────────────────────
   §14 Página legal
───────────────────────────────────────── */
/* ── Contenedor texto legal ── */
.page-legal.e-con {
  max-width: 960px !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-top: 60px !important;
  padding-bottom: 60px !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
}

@media (max-width: 768px) {
  .page-legal.e-con {
    padding-left: 20px !important;
    padding-right: 20px !important;
    padding-top: 40px !important;
  }
}

/* Estilos del texto */
.page-legal .elementor-widget-text-editor p {
  font-size: 15px;
  line-height: 1.75;
  color: #c8c0d8;
  margin-bottom: 16px;
}
.page-legal .elementor-widget-text-editor strong,
.page-legal .elementor-widget-text-editor b {
  color: #f5f1e8;
}
.page-legal .elementor-widget-text-editor a {
  color: #ff4d7e;
  text-decoration: none;
}

/* ── Zona embajadores — panel cuenta ── */
.emb-panel {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

.emb-header h2 {
    font-family: 'Unbounded', sans-serif !important;
    font-size: clamp(18px, 2.5vw, 28px) !important;
    color: #f5f1e8 !important;
    font-weight: 700 !important;
    margin-bottom: 8px !important;
}

.emb-header p { color: #a8a2c0 !important; }

.emb-link-box {
    background: rgba(255,77,126,0.06) !important;
    border: 1.5px dashed rgba(255,77,126,0.4) !important;
    border-radius: 16px !important;
    padding: 24px !important;
    text-align: center !important;
    margin-bottom: 28px !important;
}

.emb-link-box strong {
    font-family: 'Unbounded', sans-serif !important;
    font-size: 10px !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    color: #ff4d7e !important;
}

.emb-url {
    font-family: 'Inter', monospace !important;
    font-size: 13px !important;
    background: rgba(2,8,24,0.6) !important;
    border: 1px solid rgba(255,77,126,0.2) !important;
    border-radius: 10px !important;
    padding: 14px 16px !important;
    color: #f5f1e8 !important;
    word-break: break-all !important;
    display: block !important;
    margin: 12px 0 6px !important;
    cursor: pointer !important;
}

.emb-help {
    font-size: 11px !important;
    color: #6b6480 !important;
}

.emb-stats {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
}

.emb-stat-card {
    background: #13102a !important;
    border: 1px solid rgba(245,241,232,0.08) !important;
    border-radius: 16px !important;
    padding: 24px 20px !important;
    text-align: center !important;
}

.emb-stat-title {
    font-family: 'Unbounded', sans-serif !important;
    font-size: 9px !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    color: #6b6480 !important;
}

.emb-stat-num {
    font-family: 'Unbounded', sans-serif !important;
    font-size: 36px !important;
    font-weight: 800 !important;
    color: #ff4d7e !important;
    display: block !important;
    margin-top: 8px !important;
    line-height: 1 !important;
}

@media (max-width: 600px) {
    .emb-stats { grid-template-columns: 1fr !important; }
}

/* ── Menú móvil pantalla completa ── */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #020818;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: transparent;
    border: none;
    color: #f5f1e8;
    font-size: 36px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}

.mobile-menu-nav ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center;
}

.mobile-menu-nav ul li {
    margin: 0 !important;
    padding: 0 !important;
}

.mobile-menu-nav ul li a {
    display: block !important;
    font-family: 'Unbounded', sans-serif !important;
    font-size: clamp(22px, 5vw, 36px) !important;
    font-weight: 700 !important;
    color: #f5f1e8 !important;
    text-decoration: none !important;
    padding: 16px 0 !important;
    letter-spacing: -0.02em !important;
    transition: color 0.2s !important;
}

.mobile-menu-nav ul li a:hover,
.mobile-menu-nav ul li.current-menu-item a {
    color: #ff4d7e !important;
}

/* Ocultar en desktop */
@media (min-width: 769px) {
    .mobile-menu-overlay {
        display: none !important;
    }
}

/* Bloquear scroll cuando está abierto */
body.menu-open {
    overflow: hidden;
}