/* ZIA Centro Estético - Estilos Personalizados */

:root {
    --gold: #D4AF37;
    --soft-pink: #F7E0E3;
    --deep-pink: #D49DA3;
    --black: #0A0A0A;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--black);
    color: white;
    scroll-behavior: smooth;
}

.font-serif {
    font-family: 'Playfair Display', serif;
}

.text-gold {
    color: var(--gold);
}

.bg-gold {
    background-color: var(--gold);
}

.border-gold {
    border-color: var(--gold);
}

.text-soft-pink {
    color: var(--soft-pink);
}

.gold-gradient {
    background: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-reserve {
    background: linear-gradient(135deg, #BF953F, #AA771C);
    transition: all 0.3s ease;
}

.btn-reserve:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(170, 119, 28, 0.3);
}

.service-card {
    border: 1px solid rgba(212, 175, 55, 0.15);
    background: rgba(255, 255, 255, 0.01);
    transition: all 0.4s ease;
}

.service-card:hover {
    border-color: var(--deep-pink);
    background: rgba(212, 157, 163, 0.04);
    transform: translateY(-4px);
}

.promo-card {
    border: 1px solid rgba(212, 175, 55, 0.1);
    background: rgba(255, 255, 255, 0.01);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.promo-card:hover {
    border-color: var(--deep-pink);
    background: rgba(212, 157, 163, 0.04);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.05);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade {
    animation: fadeIn 1s ease-out forwards;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0A0A0A;
}

::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--deep-pink);
}

/* Glassmorphism Classes */
.glassmorphic {
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.glassmorphic-gold {
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37), inset 0 0 12px rgba(212, 175, 55, 0.05);
}

.glassmorphic-pink {
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 157, 163, 0.15);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37), inset 0 0 12px rgba(212, 157, 163, 0.05);
}

/* Background Glow Blobs */
.glow-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    mix-blend-mode: screen;
    pointer-events: none;
    opacity: 0.15;
    transition: all 0.8s ease;
}

.glow-blob-gold {
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, rgba(0, 0, 0, 0) 70%);
}

.glow-blob-pink {
    background: radial-gradient(circle, rgba(212, 157, 163, 0.3) 0%, rgba(0, 0, 0, 0) 70%);
}

/* Smooth hover effects and gold text/border overrides */
.hover-gold-glow:hover {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
}

.hover-pink-glow:hover {
    box-shadow: 0 0 20px rgba(212, 157, 163, 0.2);
    border-color: rgba(212, 157, 163, 0.4);
}

/* Pasarela de Reserva / Checkout Styles */
.glass-panel {
    background: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.2);
}
.btn-gold {
    background: linear-gradient(135deg, #d4af37, #aa8623);
    color: black;
}
.btn-gold:hover {
    background: linear-gradient(135deg, #eed276, #c5a036);
}
.checkout-border {
    border: 1px solid rgba(212, 175, 55, 0.15);
}
.modal {
    display: none;
}
.modal.active {
    display: flex;
}


