/* ==========================================
   ZIL MASTER STYLES SYSTEM
   ========================================== */

:root {
    --gold: #E5C158;
    --gold-glow: rgba(229, 193, 88, 0.35);
    --bg-dark: #070709;
    --card-bg: rgba(18, 14, 12, 0.88);
    --border-gold: rgba(229, 193, 88, 0.3);
    --text-main: #FFFFFF;
    --text-sub: #CBD5E1;
}

body.theme-golden {
    --gold: #E5C158;
    --gold-glow: rgba(229, 193, 88, 0.35);
    --bg-dark: #070709;
    --card-bg: rgba(18, 14, 12, 0.88);
    --border-gold: rgba(229, 193, 88, 0.3);
}

body.theme-vampiric {
    --gold: #F43F5E;
    --gold-glow: rgba(244, 63, 94, 0.4);
    --bg-dark: #0D060A;
    --card-bg: rgba(25, 10, 18, 0.88);
    --border-gold: rgba(244, 63, 94, 0.35);
}

body.theme-astral {
    --gold: #A855F7;
    --gold-glow: rgba(168, 85, 247, 0.4);
    --bg-dark: #08040C;
    --card-bg: rgba(20, 10, 30, 0.88);
    --border-gold: rgba(168, 85, 247, 0.35);
}

/* SITE HEADER (LUXURY GLASS FLOATING BAR) */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(7, 5, 10, 0.82);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(229, 193, 88, 0.22);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
}
.header-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.brand-logo:hover {
    transform: scale(1.03);
}
.brand-logo-wrap {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, rgba(229,193,88,0.9), rgba(229,193,88,0.25));
    box-shadow: 0 0 16px var(--gold-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.brand-logo:hover .brand-logo-wrap {
    box-shadow: 0 0 22px var(--gold);
    transform: rotate(6deg);
}
.brand-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}
.brand-logo-svg {
    filter: drop-shadow(0 0 8px var(--gold-glow));
    transition: transform 0.3s ease;
}
.brand-logo:hover .brand-logo-svg {
    transform: rotate(15deg);
}
.brand-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 4px;
    text-shadow: 0 0 12px var(--gold-glow);
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}
.main-nav a {
    color: #E2E8F0;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.4px;
    padding: 6px 12px;
    border-radius: 8px;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.main-nav a:hover {
    color: var(--gold);
    background: rgba(229, 193, 88, 0.08);
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.lang-toggle, .currency-toggle {
    display: flex;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(229, 193, 88, 0.25);
    border-radius: 20px;
    padding: 2px;
    overflow: hidden;
}
.curr-btn {
    background: transparent;
    border: none;
    color: #94A3B8;
    padding: 4px 9px;
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.curr-btn:hover {
    color: #FFF;
}
.curr-btn.active {
    background: var(--gold);
    color: #000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.curr-btn.inactive {
    color: #64748B;
    background: transparent;
}
.header-reserve-btn {
    background: linear-gradient(135deg, var(--gold), #D4AF37);
    color: #000 !important;
    padding: 7px 18px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.76rem;
    text-decoration: none;
    letter-spacing: 1.2px;
    box-shadow: 0 4px 18px var(--gold-glow);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.header-reserve-btn:hover {
    transform: translateY(-1.5px) scale(1.02);
    box-shadow: 0 6px 24px var(--gold-glow);
}

/* ==========================================
   LUXURY FLOATING STUDIO DRAWER & GLASSMORPHISM
   ========================================== */
.control-toggle {
    position: fixed !important;
    top: 80px !important;
    right: 25px !important;
    z-index: 100001 !important;
    background: rgba(18, 12, 24, 0.85) !important;
    border: 1px solid var(--border-gold) !important;
    color: var(--gold) !important;
    width: 44px !important;
    height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.7), 0 0 15px var(--gold-glow) !important;
    font-size: 1.15rem !important;
    user-select: none !important;
    pointer-events: auto !important;
    backdrop-filter: blur(16px) !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.control-toggle:hover {
    transform: scale(1.1) rotate(45deg) !important;
    border-color: var(--gold) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.9), 0 0 22px var(--gold-glow) !important;
}

.control-panel {
    position: fixed !important;
    top: 135px !important;
    right: 25px !important;
    z-index: 100000 !important;
    background: rgba(14, 10, 20, 0.88) !important;
    border: 1px solid rgba(229, 193, 88, 0.3) !important;
    padding: 20px !important;
    border-radius: 20px !important;
    display: none;
    box-shadow: 0 25px 60px rgba(0,0,0,0.95), 0 0 30px rgba(229, 193, 88, 0.15) !important;
    backdrop-filter: blur(28px) !important;
    overflow-y: auto !important;
    color: #FFF !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
}
.control-panel.open {
    display: block !important;
    animation: luxuryPanelIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes luxuryPanelIn {
    from { opacity: 0; transform: translateY(-10px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.control-panel.panel-compact { width: 280px !important; max-height: 500px !important; }
.control-panel.panel-medium { width: 340px !important; max-height: 640px !important; }
.control-panel.panel-expanded { width: 440px !important; max-height: 85vh !important; }

/* Panel Header */
.panel-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
    padding-bottom: 12px !important;
    margin-bottom: 14px !important;
}
.panel-title-wrap {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}
.panel-badge-icon {
    color: var(--gold) !important;
    font-size: 1rem !important;
    animation: spinSlow 12s linear infinite;
}
@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.panel-title {
    color: var(--gold) !important;
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    margin: 0 !important;
}
.panel-header-actions {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}
.panel-size-actions {
    display: flex !important;
    gap: 4px !important;
    background: rgba(255,255,255,0.04) !important;
    padding: 2px !important;
    border-radius: 6px !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
}
.panel-size-btn {
    background: transparent !important;
    border: none !important;
    color: #94A3B8 !important;
    font-size: 0.7rem !important;
    font-weight: 700 !important;
    padding: 3px 8px !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}
.panel-size-btn.active, .panel-size-btn:hover {
    background: var(--gold) !important;
    color: #000 !important;
}
.panel-close-btn {
    background: rgba(255,255,255,0.04) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    color: var(--gold) !important;
    width: 26px !important;
    height: 26px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.1rem !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}
.panel-close-btn:hover {
    background: rgba(239, 68, 68, 0.2) !important;
    border-color: #EF4444 !important;
    color: #FFF !important;
}

/* Panel Tabs */
.panel-tabs {
    display: flex !important;
    gap: 6px !important;
    background: rgba(0,0,0,0.3) !important;
    padding: 4px !important;
    border-radius: 10px !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    margin-bottom: 16px !important;
}
.panel-tab-btn {
    flex: 1 !important;
    background: transparent !important;
    border: none !important;
    color: #94A3B8 !important;
    padding: 7px 10px !important;
    border-radius: 7px !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    text-align: center !important;
}
.panel-tab-btn.active {
    background: rgba(255,255,255,0.08) !important;
    color: var(--gold) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4) !important;
}

/* Tab Content */
.panel-tab-content {
    display: none !important;
}
.panel-tab-content.active {
    display: block !important;
    animation: tabFade 0.25s ease forwards;
}
@keyframes tabFade {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Theme Cards */
.theme-cards-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}
.theme-card {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 10px 12px !important;
    background: rgba(255,255,255,0.03) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 12px !important;
    cursor: pointer !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.theme-card:hover {
    background: rgba(255,255,255,0.06) !important;
    border-color: rgba(229, 193, 88, 0.4) !important;
    transform: translateX(4px);
}
.theme-card.active {
    background: rgba(229, 193, 88, 0.08) !important;
    border-color: var(--gold) !important;
    box-shadow: 0 4px 15px var(--gold-glow) !important;
}
.theme-card-preview {
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1.5px solid transparent !important;
}
.theme-dot {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
}
.theme-card-info {
    display: flex !important;
    flex-direction: column !important;
}
.theme-card-name {
    font-size: 0.86rem !important;
    font-weight: 700 !important;
    color: #FFF !important;
}
.theme-card.active .theme-card-name {
    color: var(--gold) !important;
}
.theme-card-sub {
    font-size: 0.72rem !important;
    color: #94A3B8 !important;
}

/* Canvas Mode Chips */
.canvas-mode-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 7px !important;
}
.bg-mode-chip {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 8px 12px !important;
    background: rgba(255,255,255,0.03) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 10px !important;
    color: #CBD5E1 !important;
    font-size: 0.8rem !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    text-align: left !important;
}
.bg-mode-chip:hover {
    background: rgba(255,255,255,0.07) !important;
    color: #FFF !important;
}
.bg-mode-chip.active {
    background: rgba(229, 193, 88, 0.12) !important;
    border-color: var(--gold) !important;
    color: var(--gold) !important;
    font-weight: 600 !important;
}
.chip-icon {
    font-size: 1.1rem !important;
}

/* Luxury Sliders & Badges */
.slider-group {
    background: rgba(0,0,0,0.2) !important;
    padding: 10px 12px !important;
    border-radius: 10px !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
}
.slider-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    font-size: 0.75rem !important;
    color: #CBD5E1 !important;
    margin-bottom: 6px !important;
}
.slider-badge {
    background: rgba(229, 193, 88, 0.15) !important;
    color: var(--gold) !important;
    padding: 2px 6px !important;
    border-radius: 4px !important;
    font-weight: 700 !important;
    font-size: 0.7rem !important;
}
.luxury-slider {
    width: 100% !important;
    height: 4px !important;
    background: rgba(255,255,255,0.15) !important;
    border-radius: 4px !important;
    accent-color: var(--gold) !important;
    cursor: pointer !important;
}

/* Toggle Switch Row */
.toggle-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 10px 12px !important;
    background: rgba(0,0,0,0.2) !important;
    border-radius: 10px !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    font-size: 0.78rem !important;
}
.switch {
    position: relative !important;
    display: inline-block !important;
    width: 38px !important;
    height: 20px !important;
}
.switch input { opacity: 0; width: 0; height: 0; }
.slider-round {
    position: absolute !important;
    cursor: pointer !important;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(255,255,255,0.15) !important;
    transition: .3s !important;
    border-radius: 20px !important;
}
.slider-round:before {
    position: absolute !important;
    content: "" !important;
    height: 14px !important;
    width: 14px !important;
    left: 3px !important;
    bottom: 3px !important;
    background-color: white !important;
    transition: .3s !important;
    border-radius: 50% !important;
}
input:checked + .slider-round {
    background-color: var(--gold) !important;
}
input:checked + .slider-round:before {
    transform: translateX(18px) !important;
    background-color: #000 !important;
}

/* Settings Pills */
.settings-pills-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
}
.settings-pill-block {
    background: rgba(0,0,0,0.2) !important;
    padding: 8px 10px !important;
    border-radius: 10px !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
}
.pill-label {
    display: block !important;
    font-size: 0.7rem !important;
    color: #94A3B8 !important;
    margin-bottom: 4px !important;
}
.pill-switcher {
    display: flex !important;
    background: rgba(255,255,255,0.05) !important;
    border-radius: 6px !important;
    padding: 2px !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
}
.pill-btn {
    flex: 1 !important;
    background: transparent !important;
    border: none !important;
    color: #94A3B8 !important;
    padding: 4px 6px !important;
    border-radius: 4px !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    text-align: center !important;
}
.pill-btn.active {
    background: var(--gold) !important;
    color: #000 !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3) !important;
}

/* ========================================================================
   INTRO SPLASH CINEMATOGRÁFICO
   ======================================================================== */
#zil-intro-splash {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #070709;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    pointer-events: all;
    animation: splashFadeOut 0.7s ease-in 2.4s forwards;
}
@keyframes splashFadeOut {
    0%   { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.04); pointer-events: none; }
}
#zil-intro-splash.gone {
    display: none;
}
.splash-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: splashContentIn 0.8s cubic-bezier(0.16,1,0.3,1) 0.2s both;
}
@keyframes splashContentIn {
    from { opacity: 0; transform: translateY(16px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.splash-moon-ring {
    width: 140px;
    height: 140px;
    animation: splashPulse 2.2s ease-in-out infinite;
    filter: drop-shadow(0 0 22px rgba(229,193,88,0.4));
}
@keyframes splashPulse {
    0%, 100% { filter: drop-shadow(0 0 22px rgba(229,193,88,0.35)); }
    50%       { filter: drop-shadow(0 0 40px rgba(229,193,88,0.6)); }
}
.splash-svg {
    width: 100%; height: 100%;
    animation: splashRotate 14s linear infinite;
}
@keyframes splashRotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
.splash-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 10px;
    text-shadow: 0 0 30px rgba(229,193,88,0.6);
    animation: splashBrand 1s ease-out 0.6s both;
}
@keyframes splashBrand {
    from { opacity: 0; letter-spacing: 18px; }
    to   { opacity: 1; letter-spacing: 10px; }
}
.splash-sub {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(229,193,88,0.65);
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: splashBrand 1s ease-out 0.9s both;
}
.splash-line {
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin-top: 10px;
    animation: splashLine 1s ease-out 1.1s both;
}
@keyframes splashLine {
    to { width: 160px; }
}

/* ========================================================================
   HERO SECTION — DISEÑO CINEMATOGRÁFICO
   ======================================================================== */
.hero-section {
    padding: 220px 20px 80px 20px;
    text-align: center;
    max-width: 980px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-container {
    width: 100%;
}

/* Animaciones de entrada escalonadas */
.hero-anim-1, .hero-anim-2, .hero-anim-3, .hero-anim-4, .hero-anim-5 {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-animate .hero-anim-1 { animation: heroFadeIn 0.9s cubic-bezier(0.16,1,0.3,1) 2.9s both; }
.hero-animate .hero-anim-2 { animation: heroFadeIn 0.9s cubic-bezier(0.16,1,0.3,1) 3.15s both; }
.hero-animate .hero-anim-3 { animation: heroFadeIn 0.9s cubic-bezier(0.16,1,0.3,1) 3.4s both; }
.hero-animate .hero-anim-4 { animation: heroFadeIn 0.9s cubic-bezier(0.16,1,0.3,1) 3.65s both; }
.hero-animate .hero-anim-5 { animation: heroFadeIn 0.9s cubic-bezier(0.16,1,0.3,1) 3.9s both; }

@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Eyebrow pill */
.section-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2.8px;
    text-transform: uppercase;
    background: rgba(10, 7, 16, 0.82);
    border: 1px solid rgba(229, 193, 88, 0.38);
    padding: 8px 22px;
    border-radius: 30px;
    box-shadow: 0 0 20px rgba(229, 193, 88, 0.15), 0 8px 24px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.05);
    backdrop-filter: blur(14px);
    margin-bottom: 22px;
    transition: all 0.3s ease;
}
.section-eyebrow:hover {
    border-color: var(--gold);
    box-shadow: 0 0 28px var(--gold-glow);
    transform: translateY(-1px);
}

/* Título del Hero */
.hero-title-master {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    color: #FFFFFF;
    line-height: 1.12;
    margin: 0 0 6px;
    font-weight: 700;
    text-shadow: 0 4px 32px rgba(0,0,0,0.98), 0 0 60px rgba(0,0,0,0.85);
    letter-spacing: -0.5px;
}
.hero-title-accent {
    background: linear-gradient(135deg, #FFFFFF 0%, var(--gold) 55%, #F5DFA0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

/* Divider decorativo */
.hero-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
    margin: 20px auto 16px;
    max-width: 280px;
}
.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(229,193,88,0.45), transparent);
}
.divider-glyph {
    color: var(--gold);
    font-size: 0.8rem;
    opacity: 0.75;
    animation: dividerPulse 3s ease-in-out infinite;
}
@keyframes dividerPulse {
    0%, 100% { opacity: 0.55; text-shadow: 0 0 6px transparent; }
    50%       { opacity: 1; text-shadow: 0 0 12px rgba(229,193,88,0.5); }
}

/* Subtítulo */
.hero-subtitle-master {
    color: rgba(220, 225, 235, 0.9);
    font-size: 1.06rem;
    max-width: 660px;
    margin: 0 auto 28px;
    line-height: 1.72;
    text-shadow: 0 2px 20px rgba(0,0,0,0.98);
}

/* ========================================================================
   ORÁCULO WIDGET — GLASSMORPHISM PREMIUM
   ======================================================================== */
.hero-oraculo-widget {
    margin: 0 auto 28px;
    max-width: 700px;
    background: rgba(12, 8, 18, 0.72);
    border: 1px solid rgba(229, 193, 88, 0.28);
    border-radius: 16px;
    padding: 20px 22px 18px;
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 40px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.03), inset 0 1px 0 rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}
.hero-oraculo-widget::before {
    content: '';
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 60%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(229,193,88,0.5), transparent);
}
.oraculo-header {
    font-size: 0.73rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2.2px;
    text-transform: uppercase;
    margin-bottom: 14px;
    opacity: 0.88;
}
.oraculo-cards-grid {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}
.oraculo-cat-card {
    flex: 1;
    min-width: 140px;
    background: rgba(255,255,255,0.028);
    border: 1px solid rgba(229,193,88,0.22);
    border-radius: 12px;
    padding: 14px 10px 12px;
    color: #FFF;
    cursor: pointer;
    transition: all 0.28s cubic-bezier(0.16,1,0.3,1);
    position: relative;
    overflow: hidden;
}
.oraculo-cat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(229,193,88,0.06), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.oraculo-cat-card:hover {
    border-color: rgba(229,193,88,0.6);
    background: rgba(229,193,88,0.07);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4), 0 0 18px rgba(229,193,88,0.2);
}
.oraculo-cat-card:hover::after { opacity: 1; }
.oraculo-icon {
    font-size: 1.35rem;
    display: block;
    margin-bottom: 6px;
}
.oraculo-label {
    font-size: 0.82rem;
    color: var(--gold);
    display: block;
    margin-bottom: 3px;
    font-weight: 700;
}
.oraculo-hint {
    font-size: 0.7rem;
    color: rgba(200,210,220,0.55);
    display: block;
    letter-spacing: 0.3px;
}

/* ========================================================================
   CTAs DEL HERO
   ======================================================================== */
.hero-cta-group {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-top: 28px;
    flex-wrap: wrap;
}
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: linear-gradient(135deg, var(--gold) 0%, #D4AA40 100%);
    color: #0A0805 !important;
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 1.2px;
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid rgba(255,220,100,0.5);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
    box-shadow: 0 4px 20px rgba(229,193,88,0.4), 0 0 0 0 rgba(229,193,88,0);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}
.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
    transition: left 0.5s ease;
}
.btn-hero-primary:hover::before { left: 100%; }
.btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 32px rgba(229,193,88,0.55), 0 0 0 3px rgba(229,193,88,0.2);
}
.btn-icon {
    font-size: 0.8rem;
    animation: btnIconSpin 6s linear infinite;
}
@keyframes btnIconSpin {
    0%, 90%, 100% { transform: rotate(0deg); }
    95%            { transform: rotate(180deg); }
}
.btn-hero-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.9) !important;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.22);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}
.btn-hero-ghost:hover {
    border-color: rgba(229,193,88,0.5);
    color: var(--gold) !important;
    background: rgba(229,193,88,0.06);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.btn-arrow {
    transition: transform 0.3s ease;
    font-size: 1.1rem;
}
.btn-hero-ghost:hover .btn-arrow { transform: translateX(4px); }

/* Botones generales (compatibilidad con resto de la página) */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--gold);
    color: #000 !important;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid var(--gold);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px var(--gold-glow);
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px var(--gold);
}
.btn-secondary {
    background: transparent !important;
    color: #FFF !important;
    border-color: rgba(255,255,255,0.3) !important;
    box-shadow: none !important;
}
.btn-secondary:hover {
    border-color: var(--gold) !important;
    color: var(--gold) !important;
}

/* ========================================================================
   SCROLL INDICATOR
   ======================================================================== */
.hero-scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 36px;
    opacity: 0.55;
    animation: scrollHintFloat 2.4s ease-in-out infinite;
}
.hero-scroll-hint:hover { opacity: 0.88; }
@keyframes scrollHintFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(5px); }
}
.scroll-text {
    font-size: 0.68rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(229,193,88,0.65);
    font-weight: 600;
}
.scroll-dot-track {
    width: 1.5px;
    height: 38px;
    background: rgba(229,193,88,0.15);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}
.scroll-dot {
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    box-shadow: 0 0 6px rgba(229,193,88,0.6);
    animation: scrollDotDrop 2.2s ease-in-out infinite;
}
@keyframes scrollDotDrop {
    0%   { top: -8px; opacity: 0; }
    20%  { opacity: 1; }
    80%  { opacity: 1; }
    100% { top: 38px; opacity: 0; }
}

/* Mystic emblem components (mantener compatibilidad) */
.mystic-coffee-emblem-wrap {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-coffee-icon { width: 45px; height: 45px; z-index: 2; }
.rotating-ring {
    position: absolute;
    width: 80px; height: 80px;
    border: 1px dashed var(--gold);
    border-radius: 50%;
    animation: spin 15s linear infinite;
}
.rotating-ring-outer {
    position: absolute;
    width: 100px; height: 100px;
    border: 1px solid var(--gold-glow);
    border-radius: 50%;
    animation: spin-reverse 22s linear infinite;
}
@keyframes spin { 100% { transform: rotate(360deg); } }
@keyframes spin-reverse { 100% { transform: rotate(-360deg); } }



/* IMMEDIATE TRUST BAR */
.immediate-trust-bar {
    margin-top: 35px;
}
.trust-pill-main {
    display: inline-block;
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.82rem;
}
.trust-chips {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 12px;
    color: #94A3B8;
    font-size: 0.8rem;
    flex-wrap: wrap;
}

/* SECTIONS HEADERS */
.section-header-master {
    text-align: center;
    margin-bottom: 35px;
}
.section-eyebrow {
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
}
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.3rem;
    color: #FFF;
    margin: 6px 0 0 0;
}
.section-subtext {
    color: #94A3B8;
    font-size: 0.88rem;
    max-width: 580px;
    margin: 6px auto 0;
}

/* CAFES GRID 5 */
.experiencias-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.cafes-grid-5 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 20px;
    align-items: stretch;
}
.cafe-card-master {
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    padding: 24px 18px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    backdrop-filter: blur(10px);
}
.cafe-card-master.featured {
    border: 2px solid var(--gold);
    box-shadow: 0 0 25px var(--gold-glow);
}
.featured-ribbon {
    position: absolute;
    top: -12px;
    right: 15px;
    background: var(--gold);
    color: #000;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
}
.cafe-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.cafe-icon-badge {
    font-size: 1.1rem;
}
.cafe-duration {
    color: #94A3B8;
    font-size: 0.75rem;
    font-weight: 600;
}
.cafe-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    color: #FFF;
    margin: 0 0 8px 0;
}
.cafe-desc {
    color: #CBD5E1;
    font-size: 0.82rem;
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
}
.cafe-price {
    color: var(--gold);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 15px;
}
.cafe-reserve-btn {
    display: block;
    width: 100%;
    padding: 10px 8px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    font-weight: 700;
    font-size: 0.75rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
}
.cafe-reserve-btn:hover, .cafe-reserve-btn.featured-btn {
    background: var(--gold);
    color: #000 !important;
}

/* QUIZ SELECTOR */
.quiz-section {
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
}
.quiz-card-box {
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
}
.quiz-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--gold);
    margin: 0;
}
.quiz-subtext {
    color: #CBD5E1;
    font-size: 0.88rem;
    margin: 8px 0 20px 0;
}
.quiz-questions-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.quiz-option-btn {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    color: #FFF;
    padding: 12px 18px;
    border-radius: 8px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s;
}
.quiz-option-btn:hover {
    border-color: var(--gold);
    background: rgba(255,255,255,0.08);
}
.quiz-option-btn small {
    color: var(--gold);
    font-weight: 600;
}

/* PASOS */
.funciona-section {
    padding: 50px 20px;
    max-width: 1000px;
    margin: 0 auto;
}
.pasos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 16px;
}
.paso-card {
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}
.paso-num {
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
}
.paso-card h4 {
    color: #FFF;
    margin: 6px 0;
    font-size: 1rem;
}
.paso-card p {
    color: #94A3B8;
    font-size: 0.78rem;
    margin: 0;
    line-height: 1.4;
}
.funciona-note {
    text-align: center;
    color: #CBD5E1;
    font-size: 0.85rem;
    margin-top: 25px;
}

/* TESTIMONIOS */
.testimonios-section {
    padding: 50px 20px;
    max-width: 1000px;
    margin: 0 auto;
}
.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}
.testimonio-card {
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    padding: 20px;
    border-radius: 12px;
}
.testimonio-quote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.05rem;
    color: #FFF;
    margin: 0 0 10px 0;
    line-height: 1.5;
}
.testimonio-author {
    color: var(--gold);
    font-size: 0.78rem;
}

/* SOBRE LIZ & MARCA */
.sobre-liz-section {
    padding: 50px 20px;
    max-width: 800px;
    margin: 0 auto;
}
.sobre-liz-card-hybrid {
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    padding: 30px;
    border-radius: 16px;
}
.liz-bio-p {
    color: #CBD5E1;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-top: 10px;
}
.ley-badge-master {
    margin-top: 18px;
    padding: 12px 14px;
    background: rgba(255,255,255,0.03);
    border                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                