/* Resets and Variables */
:root {
    --bg-deep: #030005;
    --gold: #D4AF37;
    --gold-light: #F3E5AB;
    --gold-dark: #996515;
    --magenta: #5a0b3b;
    --purple: #230843;

    --text-main: #fcfcfc;
    --text-muted: #d0c0e0;

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Great Vibes', cursive;
    --font-elegant: 'Cormorant Garamond', serif;

    /* Organic Theme Colors */
    --bg-organic: #F4EBE2;
    --text-organic: #5D4037;
    --accent-organic-gold: #C5A059;
    --accent-organic-green: #4A5D4E;
    --accent-organic-soft: rgba(197, 160, 89, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Base Texts */
.gold-text {
    color: var(--gold);
}

.glow-text {
    text-shadow: 0 0 15px rgba(223, 178, 56, 0.6), 0 0 30px rgba(223, 178, 56, 0.4);
}

.text-shadow-heavy {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 20px rgba(223, 178, 56, 1);
}

/* ========================================= */
/* DYNAMIC BACKGROUND (Pseudo-Video Effect)  */
/* ========================================= */
.dynamic-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -10;
    overflow: hidden;
    background: var(--bg-deep);
}

.bg-base-moon {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    /* Replaced with previously generated moon */
    background: url('images/moon_background.png') no-repeat center center/cover;
    animation: moonBreathe 30s infinite alternate ease-in-out;
    will-change: transform;
}

.bg-layer-clouds {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    /* Replaced with previously generated clouds */
    background: url('images/mystic_clouds.png') repeat-x center center, linear-gradient(to top, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
    background-size: cover;
    opacity: 0.7;
    mix-blend-mode: screen;
    will-change: transform;
    /* Makes black transparent, keeps bright smoke */
}

.clouds-1 {
    animation: moveClouds 100s linear infinite;
}

.clouds-2 {
    transform: scale(1.2) scaleY(-1);
    opacity: 0.4;
    animation: moveClouds 70s linear infinite reverse;
}

@keyframes moonBreathe {
    0% {
        transform: scale(1) rotate(0deg);
        filter: brightness(0.8);
    }

    100% {
        transform: scale(1.08) rotate(2deg);
        filter: brightness(1.2);
    }
}

@keyframes moveClouds {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* CSS-based Dynamic Magic Dust Particles */
.magic-dust {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    /* Make sure it stays over the clouds but behind content */
    pointer-events: none;
    /* Let clicks pass through */
}

/* Base styling for the dynamically generated particles */
.particle {
    position: absolute;
    bottom: -10px;
    /* start slightly offscreen */
    background: radial-gradient(circle at center, var(--gold-light) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    animation: floatUp 15s linear infinite;
    filter: blur(1px);
    will-change: transform;
}

.particle.glow-heavy {
    background: radial-gradient(circle at center, #ffffff 0%, var(--gold) 40%, transparent 80%);
    filter: blur(2px);
    box-shadow: 0 0 25px var(--gold);
}

/* Organic Theme Overrides */
body.tema-organico {
    background-color: var(--bg-organic);
    color: var(--text-organic);
}

.tema-organico .dynamic-bg {
    background: var(--bg-organic);
}

.tema-organico .bg-base-moon {
    background: url('organic_bg.png') no-repeat center center/cover;
    opacity: 0.8;
}

.tema-organico .bg-layer-clouds {
    background: linear-gradient(to top, var(--accent-organic-soft) 0%, transparent 50%);
    opacity: 0.3;
}

.tema-organico .cinematic-box {
    background: rgba(244, 235, 226, 0.9);
    border-color: var(--accent-organic-gold);
    box-shadow: 0 15px 35px rgba(93, 64, 55, 0.1);
    backdrop-filter: blur(10px);
}

.tema-organico .title {
    background: linear-gradient(to bottom, var(--text-organic), var(--accent-organic-gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tema-organico .subtitle, 
.tema-organico .description,
.tema-organico .quote-text p,
.tema-organico .rich-card p {
    color: var(--text-organic);
    opacity: 0.9;
}

.tema-organico .gold-text {
    color: var(--accent-organic-gold);
}

.tema-organico .btn-primary {
    background: linear-gradient(135deg, var(--accent-organic-gold), var(--text-organic));
    color: var(--bg-organic);
    border-color: var(--accent-organic-gold);
}

.tema-organico .rich-card {
    background: #fff;
    border-color: var(--accent-organic-soft);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.tema-organico .rich-card:hover {
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.2);
    border-color: var(--accent-organic-gold);
}

.tema-organico .rich-card h3 {
    color: var(--text-organic);
}

.tema-organico .navbar {
    background: rgba(244, 235, 226, 0.8);
    border-bottom: 1px solid var(--accent-organic-soft);
}

.tema-organico .nav-links a {
    color: var(--text-organic);
}

.tema-organico .brand-logo {
    mix-blend-mode: multiply;
}

.tema-organico .ornate-panel {
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--accent-organic-gold);
    box-shadow: 0 30px 60px rgba(93, 64, 55, 0.1);
}

.tema-organico .mystic-input {
    background: #fff;
    border-color: var(--accent-organic-soft);
    color: var(--text-organic);
}

@keyframes floatUp {
    0% {
        transform: translateY(10vh) scale(0.5);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    50% {
        transform: translateY(-50vh) scale(1.8) translateX(30px);
        opacity: 0.9;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-110vh) scale(0.5) translateX(-30px);
        opacity: 0;
    }
}

/* ========================================= */
/* NAVBAR */
/* ========================================= */
.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(3, 0, 5, 0.4), transparent);
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: background 0.3s;
}

.brand-logo {
    max-height: 100px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: screen;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
    transition: transform 0.3s;
}

.brand-logo:hover {
    transform: scale(1.05);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-heading);
    transition: all 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
    text-shadow: 0 0 10px var(--gold);
}

.btn-book {
    border: 1px solid var(--gold);
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    /* Hard corners for mystic feel */
    background: rgba(223, 178, 56, 0.1);
    box-shadow: inset 0 0 10px rgba(223, 178, 56, 0.2);
}

.btn-book:hover {
    background: var(--gold);
    color: var(--bg-deep) !important;
    box-shadow: 0 0 20px var(--gold), inset 0 0 10px white;
}

/* ========================================= */
/* HERO SECTION */
/* ========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 5% 0;
    /* Added top padding to prevent overlap with navbar */
    position: relative;
    background: linear-gradient(to bottom, rgba(3, 0, 5, 0.3) 0%, rgba(3, 0, 5, 0.6) 100%);
}

.cinematic-box {
    background: radial-gradient(ellipse at center, rgba(35, 8, 67, 0.7) 0%, rgba(3, 0, 5, 0.8) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    padding: 2.5rem 3rem;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), inset 0 0 40px rgba(90, 11, 59, 0.5);
    backdrop-filter: blur(5px);
    max-width: 1100px;
    width: 90%;
    position: relative;
    overflow: hidden;
}

/* Inner gold border */
.cinematic-box::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(223, 178, 56, 0.15);
    pointer-events: none;
    border-radius: 8px;
}

.subtitle-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.subtitle {
    font-family: var(--font-heading);
    color: var(--gold-light);
    letter-spacing: 5px;
    text-transform: uppercase;
    font-size: 1.1rem;
}

.sparkles {
    font-size: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.welcome-label {
    font-family: var(--font-accent);
    font-size: 3.5rem;
    color: var(--gold-light);
    text-shadow: 0 0 10px rgba(243, 229, 171, 0.4);
    line-height: 1;
    font-weight: 400;
}

.brand-title {
    font-family: var(--font-elegant);
    font-size: 5.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 6px;
    background: linear-gradient(to bottom, #ffffff 40%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
}










.description {
    font-family: var(--font-elegant);
    font-style: italic;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.btn-primary {
    display: inline-block;
    text-align: center;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-deep);
    padding: 1.2rem 3rem;
    border-radius: 5px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--gold-light);
    transition: all 0.3s;
    position: relative;
    z-index: 2;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(223, 178, 56, 0.6);
}

.animate-pulse-glow {
    animation: pulseButton 2s infinite;
}

@keyframes pulseButton {
    0% {
        box-shadow: 0 0 0 0 rgba(223, 178, 56, 0.5);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(223, 178, 56, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(223, 178, 56, 0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ========================================= */
/* THIRD EYE QUOTE SECTION */
/* ========================================= */
.about-inna {
    padding: 8rem 5%;
    position: relative;
    display: flex;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(3, 0, 5, 0.6), rgba(3, 0, 5, 0.9));
    overflow: hidden;
}

.about-content {
    z-index: 2;
    text-align: center;
}

.about-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background: rgba(223, 178, 56, 0.05);
    border: 1px solid rgba(223, 178, 56, 0.2);
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 220px;
    backdrop-filter: blur(10px);
}

.badge-item:hover {
    background: rgba(223, 178, 56, 0.12);
    border-color: var(--gold);
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(223, 178, 56, 0.2);
}

.badge-icon {
    font-size: 3rem;
    filter: drop-shadow(0 0 15px var(--gold));
    animation: floatingIcon 4s ease-in-out infinite;
}

@keyframes floatingIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.badge-text {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-light);
    font-weight: 600;
}

.about-title {
    font-family: var(--font-accent);
    font-size: 4.5rem;
    color: var(--gold-light);
    margin-bottom: 2.5rem;
    line-height: 1;
    text-shadow: 0 0 20px rgba(243, 229, 171, 0.3);
}

.about-description {
    font-family: var(--font-elegant);
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 850px;
    margin: 0 auto 2.5rem;
    font-style: italic;
}

.about-quote {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-top: 4rem;
    font-weight: 500;
    text-transform: uppercase;
    opacity: 0.8;
    animation: glowText 3s infinite alternate;
}

@keyframes glowText {
    from { text-shadow: 0 0 5px var(--gold-dark); }
    to { text-shadow: 0 0 20px var(--gold); }
}

.eye-image-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    /* Replaced with previously generated Eye image */
    background: url('images/mystic_eye.png') no-repeat center center, radial-gradient(ellipse at center, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    background-size: cover;
    opacity: 0.25;
    mix-blend-mode: color-dodge;
}

.eye-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--purple) 0%, transparent 70%);
    animation: throb 4s infinite alternate;
}

@keyframes throb {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 1;
    }
}

/* ========================================= */
/* SERVICES SECTION */
/* ========================================= */
.services {
    padding: 8rem 5%;
    position: relative;
    background: rgba(3, 0, 5, 0.7);
    border-top: 1px solid rgba(223, 178, 56, 0.2);
    border-bottom: 1px solid rgba(223, 178, 56, 0.2);
}

.section-badge {
    text-align: center;
    color: var(--gold);
    font-family: var(--font-heading);
    letter-spacing: 4px;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 1);
}

.rich-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto;
}

.rich-card {
    position: relative;
    background: linear-gradient(145deg, rgba(35, 8, 67, 0.6), rgba(3, 0, 5, 0.9));
    border: 1px solid rgba(223, 178, 56, 0.2);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 10px;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    overflow: hidden;
}

.rich-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(223, 178, 56, 0.1), transparent);
    transform: skewX(-20deg);
    transition: 0.5s;
}

.rich-card:hover::before {
    left: 150%;
}

.rich-card:hover {
    transform: translateY(-15px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(223, 178, 56, 0.2);
}

.card-border-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.5;
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(223, 178, 56, 0.5);
}

.floating {
    animation: float 3s ease-in-out infinite;
}

.pulse {
    animation: throb 2s infinite alternate;
}

.rich-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--gold-light);
    letter-spacing: 1px;
}

.divider {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin: 1.5rem auto;
}

.rich-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    min-height: 100px;
}

.price {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.btn-secondary {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    transition: 0.3s;
    background: rgba(0, 0, 0, 0.5);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--bg-deep);
    box-shadow: 0 0 20px var(--gold);
}

/* ========================================= */
/* BOOKING SECTION (Candles Theme) */
/* ========================================= */
.booking {
    padding: 2rem 5% 10rem;
    position: relative;
    display: flex;
    justify-content: center;
    scroll-margin-top: 100px;
}

.candles-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Replaced with previously generated Candles Image */
    background: url('images/smoking_candles.png') no-repeat center center, linear-gradient(to top, rgba(90, 11, 59, 0.5) 0%, transparent 80%);
    background-size: cover;
    opacity: 0.6;
    mix-blend-mode: hard-light;
    pointer-events: none;
    z-index: -1;
}

.ornate-panel {
    background: rgba(10, 2, 18, 0.85);
    backdrop-filter: blur(15px);
    border: 2px solid var(--gold-dark);
    padding: 4rem;
    border-radius: 5px;
    max-width: 850px;
    width: 95%;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9), inset 0 0 50px rgba(0, 0, 0, 0.8);
    position: relative;
}

/* Simulated Ornate Corners */
.ornate-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--gold);
}

.top-left {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
}

.top-right {
    top: 10px;
    right: 10px;
    border-left: none;
    border-bottom: none;
}

.bottom-left {
    bottom: 10px;
    left: 10px;
    border-right: none;
    border-top: none;
}

.bottom-right {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
}

.mb-0 {
    margin-bottom: 0.5rem;
    text-shadow: none;
    font-size: 3rem;
}

.booking-subtitle {
    text-align: center;
    color: var(--gold-light);
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.3rem;
    margin-bottom: 3rem;
}

.form-group {
    margin-bottom: 2rem;
}

.demo-form label {
    display: block;
    margin-bottom: 0.8rem;
    font-family: var(--font-heading);
    color: var(--gold-light);
    letter-spacing: 1px;
    font-size: 1rem;
}

.mystic-input {
    width: 100%;
    padding: 1.2rem;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(223, 178, 56, 0.3);
    color: var(--gold-light);
    font-family: var(--font-body);
    font-size: 1.1rem;
    transition: 0.3s;
}

.mystic-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(223, 178, 56, 0.3);
    background: rgba(0, 0, 0, 0.9);
}

.payment-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 0.5rem;
}

.payment-option {
    cursor: pointer;
}

.payment-option input {
    display: none;
}

.method-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
}

.method-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.method-box small {
    display: block;
    font-size: 0.75rem;
    opacity: 0.6;
    margin-top: 0.3rem;
}

.payment-option input:checked + .method-box {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.payment-option:hover .method-box {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--gold-light);
}

.payment-info {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(10, 2, 18, 0.5);
    border-left: 3px solid var(--gold);
    border-radius: 4px;
}

.block-btn {
    width: 100%;
    margin-top: 1rem;
}

.box-glow {
    background: rgba(223, 178, 56, 0.1);
    border: 1px dashed var(--gold);
    padding: 1rem;
    text-align: center;
    color: var(--gold-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.gold-btn {
    width: 100%;
    font-size: 1.3rem;
    padding: 1.5rem !important;
    cursor: pointer;
}

.wp-note {
    text-align: center;
    margin-top: 1.5rem;
    opacity: 0.5;
    font-size: 0.8rem;
}

/* ========================================= */
/* FOOTER */
/* ========================================= */
footer {
    position: relative;
    background: #000;
    padding: 5rem 5% 3rem;
    text-align: center;
    border-top: 2px solid var(--gold-dark);
}

.footer-bg-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 100px;
    background: radial-gradient(ellipse, rgba(90, 11, 59, 0.5) 0%, transparent 70%);
}

.footer-content {
    position: relative;
    z-index: 10;
}

.footer-brand-logo {
    max-height: 150px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: screen;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.4));
}

.socials {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.glow-hover {
    transition: 0.3s;
    text-decoration: none;
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.glow-hover:hover {
    color: var(--gold);
    text-shadow: 0 0 15px var(--gold);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 3rem;
    opacity: 0.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .welcome-label {
        font-size: 2.5rem;
    }

    .brand-title {
        font-size: 3.2rem;
        letter-spacing: 3px;
    }

    .nav-links {
        display: none;
    }

    .navbar {
        justify-content: center;
        padding: 1rem 5%;
    }

    .brand-logo {
        max-height: 80px;
    }

    .cinematic-box {
        padding: 2rem 1.5rem;
    }

    .ornate-panel {
        padding: 2rem 1.5rem;
    }

    .quote-text h2 {
        font-size: 1.8rem;
    }

    /* Performance optimization for mobile */
    .cinematic-box, 
    .ornate-panel, 
    .immersive-service,
    .navbar,
    .quote-text,
    .entry-portal {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .cinematic-box {
        background: rgba(3, 0, 5, 0.95) !important;
    }
    
    .tema-organico .cinematic-box {
        background: rgba(244, 235, 226, 0.98) !important;
    }

    .tema-vino .cinematic-box {
        background: rgba(26, 3, 13, 0.98) !important;
    }
}

/* ========================================= */
/* FLOATING AUDIO BUTTON */
/* ========================================= */
.float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(35, 8, 67, 0.7);
    border: 2px solid var(--gold);
    color: var(--gold-light);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4), inset 0 0 10px rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(5px);
}

.float-btn:hover {
    transform: scale(1.15) rotate(5deg);
    background: var(--gold);
    color: var(--bg-deep);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.9);
}

.float-btn .audio-icon {
    line-height: 1;
    /* fix optical centering */
}

/* ========================================= */
/* ENTRY PORTAL OVERLAY */
/* ========================================= */
.entry-portal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: radial-gradient(ellipse at center, rgba(35, 8, 67, 1) 0%, rgba(3, 0, 5, 1) 100%);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: opacity 1.5s ease-out, visibility 1.5s ease-out;
}

.portal-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 2rem 5rem; /* Extra bottom padding for mobile bars */
    width: 100%;
    min-height: min-content;
}

.portal-logo {
    max-width: 250px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4));
    animation: portal-throb 4s infinite alternate;
}

@keyframes portal-throb {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.portal-text {
    color: var(--text-muted);
    font-family: var(--font-accent);
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.portal-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* ========================================= */
/* THEME SELECTOR BUTTONS */
/* ========================================= */
.theme-selector {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.theme-btn {
    background: rgba(3, 0, 5, 0.4);
    border: 1px solid var(--gold);
    color: var(--gold-light);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 100px;
}

.theme-btn:hover {
    background: rgba(212, 175, 55, 0.2);
}

.theme-btn .theme-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.theme-btn.active {
    background: var(--gold);
    color: #030005;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

/* ========================================= */
/* VINO TINTO (BORRAVINO) BASE DARK THEME OVERRIDES */
/* ========================================= */
body.tema-vino {
    --bg-deep: #1A030D;
    /* Very dark rich wine / burgundy */
    --wine-dark: rgba(26, 3, 13, 0.95);
    --wine-light: rgba(77, 15, 40, 0.7);
    background-color: var(--bg-deep);
}

.tema-vino .dynamic-bg {
    background: var(--bg-deep);
}

.tema-vino .navbar {
    background: linear-gradient(to bottom, rgba(26, 3, 13, 0.6), transparent);
}

.tema-vino .cinematic-box {
    background: radial-gradient(ellipse at center, var(--wine-light) 0%, var(--wine-dark) 100%);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), inset 0 0 40px rgba(77, 15, 40, 0.5);
}

.tema-vino .quote-text {
    background: var(--wine-dark);
    box-shadow: 0 0 50px rgba(77, 15, 40, 0.7);
}

.tema-vino .services {
    background: rgba(26, 3, 13, 0.8);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.tema-vino .rich-card {
    background: linear-gradient(145deg, var(--wine-light), var(--wine-dark));
}

.tema-vino .ornate-panel {
    background: var(--wine-dark);
}

.tema-vino footer {
    background: #0A0105;
}

.tema-vino .footer-bg-glow {
    background: radial-gradient(ellipse, rgba(77, 15, 40, 0.5) 0%, transparent 70%);
}

.tema-vino .entry-portal {
    background: radial-gradient(ellipse at center, #2A0815 0%, #0A0105 100%);
}

.tema-vino .float-btn {
    background: rgba(77, 15, 40, 0.7);
}

/* ========================================= */
/* MAGIC CURSOR */
/* ========================================= */
@media (pointer: fine) {
    body {
        cursor: none;
        /* Ocultar cursor por defecto en desktop */
    }

    #magic-cursor,
    #magic-cursor-trail {
        position: fixed;
        top: 0;
        left: 0;
        pointer-events: none;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        z-index: 99999;
    }

    /* Punto central principal */
    #magic-cursor {
        width: 8px;
        height: 8px;
        background: var(--gold-light);
        box-shadow: 0 0 10px 2px var(--gold);
        transition: width 0.2s, height 0.2s, background 0.2s;
    }

    /* Estela mÃ¡gica exterior */
    #magic-cursor-trail {
        width: 40px;
        height: 40px;
        border: 1px solid rgba(212, 175, 55, 0.5);
        transition: transform 0.1s ease-out, width 0.2s, height 0.2s;
    }

    /* Clase activa al pasar sobre links/botones */
    #magic-cursor.hover {
        width: 15px;
        height: 15px;
        background: transparent;
        border: 2px solid var(--gold);
    }

    #magic-cursor-trail.hover {
        width: 60px;
        height: 60px;
        background: rgba(212, 175, 55, 0.1);
        border-color: var(--gold);
    }

    /* PartÃ­culas de estela (emitidas al mover) */
    .cursor-particle {
        position: fixed;
        pointer-events: none;
        border-radius: 50%;
        background: var(--gold);
        box-shadow: 0 0 10px 2px rgba(212, 175, 55, 0.8);
        transform: translate(-50%, -50%);
        z-index: 99998;
        animation: cursorParticleFade 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    }

    @keyframes cursorParticleFade {
        0% {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }

        100% {
            opacity: 0;
            transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty))) scale(0);
        }
    }
}

/* Hide magic cursor on touch devices */
@media (pointer: coarse) {
    #magic-cursor,
    #magic-cursor-trail {
        display: none !important;
    }
}

/* ========================================= */
/* REVEAL ON SCROLL ANIMATIONS */
/* ========================================= */
.reveal-element {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-element.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================= */
/* IMMERSIVE SERVICE SECTIONS                */
/* ========================================= */

.section-intro {
    text-align: center;
    padding: 0 5% 4rem;
}

.services {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-badge-top {
    display: inline-block;
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    opacity: 0.9;
    position: relative;
}

.service-badge-top::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
}

.immersive-service {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 6rem;
    background: rgba(3, 0, 5, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.immersive-service:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 40px rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.immersive-service.reverse {
    direction: rtl;
}

.immersive-service.reverse > * {
    direction: ltr;
}

.service-visual {
    width: 100%;
    height: 100%;
    min-height: 550px;
    overflow: hidden;
    position: relative;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.immersive-service:hover .service-visual img {
    transform: scale(1.08);
}

.service-visual .card-border-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.5;
}

.service-details {
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details .category {
    font-family: var(--font-heading);
    color: var(--gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.service-details h2 {
    font-family: var(--font-elegant);
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    color: #fff;
}

.service-details .mantra {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.service-details .description {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
    max-width: none;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

.feature-item {
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 1.2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
    display: block;
}

.feature-item p {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    margin: 0;
    min-height: auto;
}

.ideal-list {
    margin: 1.5rem 0;
}

.ideal-list h4 {
    color: var(--gold);
    margin-bottom: 0.8rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.ideal-list ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.ideal-list li {
    background: rgba(255, 255, 255, 0.06);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.ideal-list li:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    color: var(--gold-light);
}

.immersive-service.compact {
    grid-template-columns: 1fr;
    text-align: center;
    max-width: 800px;
}

.immersive-service.compact .service-details {
    align-items: center;
}

.immersive-service.compact .ideal-list ul {
    justify-content: center;
}

/* Organic theme overrides for services */
body.tema-organico .immersive-service {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(93, 64, 55, 0.15);
    box-shadow: 0 20px 50px rgba(93, 64, 55, 0.08);
}

body.tema-organico .service-details h2 {
    color: var(--text-organic);
}

body.tema-organico .service-details .mantra {
    color: var(--accent-organic-gold);
}

body.tema-organico .service-details .description {
    color: var(--text-organic);
    opacity: 0.8;
}

body.tema-organico .service-details .category {
    color: var(--accent-organic-gold);
}

body.tema-organico .feature-item {
    background: rgba(197, 160, 89, 0.06);
    border-color: rgba(93, 64, 55, 0.1);
}

body.tema-organico .feature-item p {
    color: var(--text-organic);
}

body.tema-organico .ideal-list li {
    background: rgba(93, 64, 55, 0.05);
    color: var(--text-organic);
    border-color: rgba(93, 64, 55, 0.15);
}

body.tema-vino .immersive-service {
    background: rgba(26, 3, 13, 0.7);
    border-color: rgba(212, 175, 55, 0.15);
}

/* Responsive Services */
@media (max-width: 1024px) {
    .immersive-service,
    .immersive-service.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .service-visual {
        min-height: 350px;
    }

    .service-details {
        padding: 2.5rem;
    }

    .service-details h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .service-visual {
        min-height: 250px;
    }

    .service-details {
        padding: 2rem 1.5rem;
    }

    .service-details h2 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .ideal-list ul {
        flex-direction: column;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

/* ========================================= */
/* MYSTIC NOTIFICATIONS */
/* ========================================= */
#mystic-notification {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    min-width: 320px;
    max-width: 90vw;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.notification-hidden {
    opacity: 0;
    top: -100px !important;
    pointer-events: none;
}

.notification-content {
    background: rgba(15, 12, 24, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(212, 175, 55, 0.15);
}

.notification-icon {
    font-size: 1.4rem;
    filter: drop-shadow(0 0 5px var(--gold));
}

#notification-message {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    margin: 0;
    letter-spacing: 0.3px;
    font-weight: 500;
}

/* Glow effect for notification */
#mystic-notification:not(.notification-hidden) .notification-content {
    animation: notification-glow 2s infinite alternate;
}

@keyframes notification-glow {
    from { box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 10px rgba(212, 175, 55, 0.1); }
    to { box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(212, 175, 55, 0.3); }
}
