/* ============================================================
   UN REZO CÓSMICO - Estilos Principales
   Tema: Cósmico · Místico · Espiritual · Oscuro Profundo
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Cinzel:wght@400;600;700&family=Raleway:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

/* === VARIABLES === */
:root {
    --gold: #FFD700;
    --gold-light: #FFF0A0;
    --gold-dim: rgba(255, 215, 0, 0.6);
    --gold-glow: rgba(255, 215, 0, 0.15);
    --purple-deep: #0a0015;
    --purple-dark: #120025;
    --purple-mid: #1a0035;
    --purple-accent: #2d004d;
    --purple-light: #6b0099;
    --violet: #9B59B6;
    --violet-light: #C39BD3;
    --cosmic-blue: #0d1b8e;
    --star-white: rgba(255, 255, 255, 0.9);
    --text-primary: #e8d5ff;
    --text-secondary: rgba(200, 181, 232, 0.8);
    --text-muted: rgba(180, 150, 210, 0.6);
    --border-gold: rgba(255, 215, 0, 0.25);
    --border-purple: rgba(180, 100, 255, 0.2);
    --card-bg: rgba(26, 0, 53, 0.7);
    --card-hover: rgba(45, 0, 77, 0.9);
    --shadow-gold: 0 0 30px rgba(255, 215, 0, 0.2);
    --shadow-purple: 0 20px 60px rgba(0, 0, 0, 0.5);
    --radius: 16px;
    --radius-sm: 8px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
    font-family: 'Raleway', sans-serif;
    background-color: var(--purple-deep);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Fondo estrellado animado */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(107, 0, 153, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(13, 27, 142, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(45, 0, 77, 0.3) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* === ESTRELLAS === */
.stars-container {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.star {
    position: absolute;
    border-radius: 50%;
    background: #fff;
    animation: twinkle var(--dur, 3s) infinite alternate ease-in-out;
    animation-delay: var(--delay, 0s);
}

@keyframes twinkle {
    0% { opacity: 0.1; transform: scale(1); }
    100% { opacity: 0.9; transform: scale(1.5); }
}

/* === TIPOGRAFÍA === */
h1, h2, h3, h4 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.03em;
}

.display-title {
    font-family: 'Cinzel Decorative', serif;
    font-weight: 700;
}

a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }

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

/* === LAYOUT === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.section {
    padding: 90px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    font-size: 12px;
    letter-spacing: 5px;
    color: var(--gold-dim);
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--gold);
    margin-bottom: 16px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 20px auto 0;
    max-width: 300px;
}

.section-divider::before, .section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-dim));
}
.section-divider::after { background: linear-gradient(to left, transparent, var(--gold-dim)); }
.section-divider span { color: var(--gold); font-size: 20px; }

/* === HEADER / NAVBAR === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    z-index: 1000;
    background: rgba(10, 0, 21, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-gold);
    transition: var(--transition);
    overflow: hidden;
}

.navbar.scrolled {
    background: rgba(10, 0, 21, 0.97);
    box-shadow: 0 4px 30px rgba(255, 215, 0, 0.1);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 78px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 12px;
    overflow: hidden;
}

/* Logo */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    flex-shrink: 0;
    min-width: 0;
}

.logo-svg {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}

/* Imagen PNG del logo en navbar */
.navbar-brand img {
    height: 62px;
    width: auto;
    flex-shrink: 0;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.brand-name {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.05rem;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.brand-tagline {
    font-size: 0.58rem;
    letter-spacing: 3px;
    color: var(--gold-dim);
    text-transform: uppercase;
}

/* Nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-links a {
    padding: 8px 16px;
    font-size: 0.82rem;
    letter-spacing: 1px;
    color: var(--text-primary);
    text-transform: uppercase;
    border-radius: 25px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
    background: var(--gold-glow);
}

/* Cart icon */
.cart-btn {
    position: relative;
    padding: 10px;
    border-radius: 50%;
    background: var(--gold-glow);
    border: 1px solid var(--border-gold);
    color: var(--gold);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: flex;
}

.cart-btn:hover { background: rgba(255, 215, 0, 0.2); color: var(--gold-light); }

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--gold);
    color: var(--purple-deep);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hamburger — visible en móvil, oculto en desktop */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.3s ease;
    pointer-events: none;
}

/* Mobile nav — siempre en el DOM, controlado solo por transform */
.mobile-nav {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: linear-gradient(160deg, #0f0025 0%, #1a0035 100%);
    border-left: 1px solid rgba(255,215,0,0.15);
    z-index: 9998;
    padding: 80px 28px 40px;
    overflow-y: auto;
    transform: translateX(110%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.35s;
    box-shadow: -8px 0 40px rgba(0,0,0,0.6);
}

.mobile-nav.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: all;
}

/* Backdrop */
.mobile-nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9997;
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s;
}
.mobile-nav-backdrop.open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.mobile-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    font-size: 1rem;
    color: var(--text-primary);
    border-bottom: 1px solid rgba(255,215,0,0.1);
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
    transition: var(--transition);
    text-decoration: none;
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--gold); padding-left: 8px; }

/* Título del menú móvil */
.mobile-nav-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 0.7rem;
    color: rgba(255,215,0,0.4);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,215,0,0.15);
}

/* === HERO SECTION === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at center top, rgba(107, 0, 153, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse at center bottom, rgba(45, 0, 77, 0.6) 0%, transparent 60%),
        radial-gradient(ellipse at 30% 50%, rgba(13, 27, 142, 0.2) 0%, transparent 50%);
}

/* Luna decorativa */
.hero-moon {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, rgba(255, 215, 0, 0.06) 0%, transparent 70%);
    border: 1px solid rgba(255, 215, 0, 0.08);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: moonPulse 8s ease-in-out infinite;
}

@keyframes moonPulse {
    0%, 100% { box-shadow: 0 0 60px rgba(255, 215, 0, 0.05), 0 0 120px rgba(255, 215, 0, 0.03); }
    50% { box-shadow: 0 0 100px rgba(255, 215, 0, 0.1), 0 0 200px rgba(255, 215, 0, 0.05); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 5px;
    color: var(--gold-dim);
    text-transform: uppercase;
    border: 1px solid var(--border-gold);
    padding: 8px 20px;
    border-radius: 25px;
    margin-bottom: 30px;
    background: var(--gold-glow);
    animation: fadeInDown 0.8s ease;
}

.hero-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--gold);
    text-shadow: 
        0 0 40px rgba(255, 215, 0, 0.4),
        0 0 80px rgba(255, 215, 0, 0.2);
    line-height: 1.05;
    margin-bottom: 16px;
    animation: fadeInDown 0.8s ease 0.2s both;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: var(--violet-light);
    font-style: italic;
    margin-bottom: 40px;
    animation: fadeInDown 0.8s ease 0.4s both;
}

.hero-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto 50px;
    line-height: 1.8;
    animation: fadeInDown 0.8s ease 0.6s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInDown 0.8s ease 0.8s both;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gold-dim);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: scrollBounce 2s infinite;
    z-index: 2;
}

.scroll-indicator::after {
    content: '';
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold-dim), transparent);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* === BOTONES === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-family: 'Raleway', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn:hover::before { opacity: 1; }

.btn-primary {
    background: linear-gradient(135deg, var(--gold), #FFA500);
    color: var(--purple-deep);
    box-shadow: 0 4px 20px rgba(255, 165, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 165, 0, 0.5);
    color: var(--purple-deep);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--border-gold);
}

.btn-outline:hover {
    background: var(--gold-glow);
    border-color: var(--gold);
    transform: translateY(-2px);
    color: var(--gold);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-purple);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-sm { padding: 10px 20px; font-size: 0.78rem; }
.btn-lg { padding: 18px 42px; font-size: 0.95rem; }

/* === CARDS === */
.card {
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.card:hover {
    background: var(--card-hover);
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), var(--shadow-gold);
}

.card:hover::before { opacity: 1; }

.card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-img-placeholder {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, var(--purple-accent), var(--purple-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.card-body { padding: 24px; }
.card-label {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-dim);
    margin-bottom: 8px;
    display: block;
}
.card-title {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 10px;
}
.card-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}
.card-price {
    font-size: 1.6rem;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: var(--gold);
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 16px;
}
.card-price-currency { font-size: 0.9rem; font-weight: 400; }
.card-price-duration {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
}

/* Grid */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* === FEATURES BAR === */
.features-bar {
    background: linear-gradient(135deg, rgba(45, 0, 77, 0.8), rgba(26, 0, 53, 0.8));
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
    padding: 24px 0;
}

.features-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    list-style: none;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.features-list li span:first-child { font-size: 1.3rem; }

/* === ABOUT SECTION === */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-circle {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(ellipse at 35% 35%, rgba(255, 215, 0, 0.15) 0%, rgba(45, 0, 77, 0.6) 60%, var(--purple-deep) 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    margin: 0 auto;
    box-shadow: 0 0 80px rgba(255, 215, 0, 0.1), inset 0 0 60px rgba(107, 0, 153, 0.2);
    animation: floatCircle 6s ease-in-out infinite;
}

@keyframes floatCircle {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(2deg); }
    66% { transform: translateY(-8px) rotate(-1deg); }
}

.about-ornament {
    position: absolute;
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    animation: spinSlow var(--dur, 20s) linear infinite;
}

@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.about-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--gold);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.about-stat {
    text-align: center;
    padding: 16px;
    background: var(--gold-glow);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
}

.stat-number {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--gold);
    display: block;
    font-weight: 700;
}

.stat-label { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }

/* === TESTIMONIALS === */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    padding: 30px;
    position: relative;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.testimonial-quote {
    font-size: 3rem;
    color: rgba(255, 215, 0, 0.2);
    line-height: 1;
    margin-bottom: 12px;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-light), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.testimonial-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold);
}

.testimonial-service {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.stars-rating { color: var(--gold); font-size: 0.8rem; letter-spacing: 2px; }

/* === CALENDAR === */
.calendar-section { background: rgba(10, 0, 21, 0.5); }

.calendar-container {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    align-items: start;
}

.calendar-widget {
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.cal-header {
    background: linear-gradient(135deg, var(--purple-accent), var(--purple-light));
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cal-nav {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--border-gold);
    color: var(--gold);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cal-nav:hover { background: var(--gold); color: var(--purple-deep); }

.cal-month-year {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    color: var(--gold);
    text-align: center;
}

.cal-grid {
    padding: 16px;
}

.cal-days-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin-bottom: 8px;
}

.cal-day-name {
    text-align: center;
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold-dim);
    padding: 8px 2px;
}

.cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-secondary);
}

.cal-day:hover:not(.disabled):not(.empty) {
    background: var(--gold-glow);
    color: var(--gold);
}

.cal-day.today { color: var(--gold); font-weight: 700; }
.cal-day.selected { background: var(--gold); color: var(--purple-deep) !important; font-weight: 700; }
.cal-day.disabled { opacity: 0.3; cursor: not-allowed; }
.cal-day.empty { cursor: default; }
.cal-day.has-booking { position: relative; }
.cal-day.has-booking::after {
    content: '';
    position: absolute;
    bottom: 3px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
}

/* Time slots */
.time-slots {
    margin-top: 16px;
    padding: 0 16px 16px;
}

.time-slots-title {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--gold-dim);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.time-slot {
    padding: 8px;
    text-align: center;
    font-size: 0.8rem;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid var(--border-gold);
    color: var(--text-secondary);
    transition: var(--transition);
    background: transparent;
}

.time-slot:hover:not(.occupied) {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-glow);
}

.time-slot.selected { background: var(--gold); color: var(--purple-deep); border-color: var(--gold); font-weight: 600; }
.time-slot.occupied { opacity: 0.3; cursor: not-allowed; text-decoration: line-through; }

/* Booking Form */
.booking-form {
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    padding: 32px;
    backdrop-filter: blur(10px);
}

.booking-form h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.booking-form p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 24px;
}

.booking-summary {
    background: var(--gold-glow);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-bottom: 24px;
    display: none;
}

.booking-summary.show { display: block; }

.booking-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 6px;
    color: var(--text-secondary);
}

.booking-summary-row strong { color: var(--gold); }

/* === FORM ELEMENTS === */
.form-group { margin-bottom: 20px; }

.form-label {
    display: block;
    font-size: 0.82rem;
    letter-spacing: 1px;
    color: var(--gold-dim);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    background: rgba(10, 0, 21, 0.6);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
    background: rgba(20, 0, 40, 0.8);
}

.form-control::placeholder { color: var(--text-muted); }

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23FFD700' d='M7 7l3-3 3 3M7 13l3 3 3-3'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
}

textarea.form-control { resize: vertical; min-height: 100px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* === CONTACT === */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.contact-info p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-items { display: flex; flex-direction: column; gap: 20px; }

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.contact-item:hover {
    border-color: rgba(255, 215, 0, 0.5);
    background: var(--card-hover);
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--gold-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item-title { font-size: 0.8rem; color: var(--gold-dim); letter-spacing: 1px; text-transform: uppercase; }
.contact-item-value { font-size: 0.95rem; color: var(--text-primary); margin-top: 2px; }

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: var(--gold-glow);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gold);
    color: var(--purple-deep);
    transform: translateY(-3px);
}

/* === FOOTER === */
.footer {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(10, 0, 21, 0.5));
    border-top: 1px solid var(--border-gold);
    padding: 60px 0 30px;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.8;
    margin: 16px 0;
}

.footer-col h4 {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
    font-size: 0.88rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 5px; }

.footer-bottom {
    border-top: 1px solid var(--border-gold);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy { font-size: 0.82rem; color: var(--text-muted); }
.footer-moon { font-size: 1.2rem; animation: moonPulse 4s infinite; }

/* === CART SIDEBAR === */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.cart-overlay.open { opacity: 1; visibility: visible; }

.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    max-width: 100vw;
    height: 100vh;
    background: var(--purple-dark);
    border-left: 1px solid var(--border-gold);
    z-index: 1600;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open { transform: translateX(0); }

.cart-header {
    padding: 24px;
    border-bottom: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-header h3 { font-size: 1.1rem; color: var(--gold); }

.cart-close {
    background: none;
    border: 1px solid var(--border-gold);
    color: var(--gold);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-close:hover { background: var(--gold); color: var(--purple-deep); }

.cart-items { flex: 1; overflow-y: auto; padding: 20px; }

.cart-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-gold);
}

.cart-item-icon {
    width: 52px;
    height: 52px;
    background: var(--gold-glow);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.cart-item-info { flex: 1; }
.cart-item-name { font-size: 0.9rem; color: var(--text-primary); font-weight: 600; }
.cart-item-price { font-size: 0.85rem; color: var(--gold); }
.cart-item-qty { font-size: 0.78rem; color: var(--text-muted); }

.cart-item-remove {
    background: none;
    border: none;
    color: rgba(255, 100, 100, 0.5);
    cursor: pointer;
    font-size: 1rem;
    padding: 0;
    transition: var(--transition);
    flex-shrink: 0;
    align-self: flex-start;
}

.cart-item-remove:hover { color: rgba(255, 100, 100, 0.9); }

.cart-footer {
    padding: 24px;
    border-top: 1px solid var(--border-gold);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.cart-total span:first-child { color: var(--text-muted); font-size: 0.9rem; }
.cart-total strong { font-size: 1.4rem; color: var(--gold); font-family: 'Cinzel', serif; }

/* === ALERT / TOAST === */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toast {
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-primary);
    backdrop-filter: blur(20px);
    animation: toastIn 0.4s ease;
    max-width: 320px;
    box-shadow: var(--shadow-purple);
}

.toast.success { border-color: rgba(100, 255, 150, 0.4); }
.toast.error { border-color: rgba(255, 100, 100, 0.4); }

@keyframes toastIn {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* === LOADING === */
.loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 0, 21, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.cosmic-spinner {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgba(255, 215, 0, 0.1);
    border-top-color: var(--gold);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* === BADGE === */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.badge-gold { background: rgba(255, 215, 0, 0.15); color: var(--gold); border: 1px solid rgba(255, 215, 0, 0.3); }
.badge-purple { background: rgba(155, 89, 182, 0.2); color: var(--violet-light); border: 1px solid rgba(155, 89, 182, 0.3); }
.badge-green { background: rgba(100, 200, 100, 0.15); color: #90EE90; border: 1px solid rgba(100, 200, 100, 0.3); }
.badge-red { background: rgba(200, 80, 80, 0.15); color: #FFA0A0; border: 1px solid rgba(200, 80, 80, 0.3); }

/* === PAGINATION === */
.pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 40px;
}

.page-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-gold);
    background: transparent;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-family: 'Raleway', sans-serif;
}

.page-btn:hover, .page-btn.active {
    background: var(--gold);
    color: var(--purple-deep);
    border-color: var(--gold);
}

/* === ANIMATIONS === */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in { animation: fadeIn 0.6s ease both; }
.fade-in-up { animation: fadeInUp 0.6s ease both; }

[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: none;
}

[data-aos="fade-up"] { transform: translateY(30px); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="fade-right"] { transform: translateX(-30px); }

/* === RESPONSIVE === */
@media (max-width: 1100px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }

    /* Navbar fijo en móvil */
    .navbar-inner {
        height: 68px;
        padding: 0 12px;
        gap: 8px;
    }
    .logo-svg { width: 44px; height: 44px; }
    .navbar-brand img { height: 56px; }
    .brand-name { font-size: 0.82rem; }
    .brand-tagline { font-size: 0.52rem; letter-spacing: 2px; }
    .cart-btn { padding: 8px; font-size: 1rem; }
    .hamburger { padding: 8px; }

    .about-grid, .calendar-container, .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .testimonials-slider { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; align-items: center; }
    .about-stats { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .section { padding: 60px 0; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .cart-sidebar { width: 100%; }
    .slots-grid { grid-template-columns: repeat(2, 1fr); }
    .features-list { gap: 20px; }
    .features-list li { font-size: 0.78rem; }
}

/* Scrollbar cosmico */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--purple-deep); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
