/* Luz Tarot - Estilos Violetas, Negro, Azules y Amarillo */

:root {
    --primary-purple: #6B46C1;
    --dark-purple: #4C1D95;
    --light-purple: #A78BFA;
    --mystic-blue: #1E3A8A;
    --dark-blue: #1E1B4B;
    --golden-yellow: #F59E0B;
    --dark-gold: #D97706;
    --mystic-black: #0F0F23;
    --text-light: #F8FAFC;
    --gradient-primary: linear-gradient(135deg, var(--primary-purple), var(--mystic-blue));
    --gradient-gold: linear-gradient(135deg, var(--golden-yellow), var(--dark-gold));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cormorant Garamond', serif;
    background: var(--mystic-black);
    color: var(--text-light);
    overflow-x: hidden;
}

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

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

@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.3); }
    50% { transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px var(--primary-purple); }
    50% { box-shadow: 0 0 40px var(--light-purple), 0 0 60px var(--primary-purple); }
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.animate-fade-in { animation: fadeIn 1s ease-out; }
.animate-slide-up { animation: slideUp 1s ease-out 0.3s both; }
.animate-bounce-in { animation: bounceIn 1s ease-out 0.6s both; }
.animate-float { animation: float 3s ease-in-out infinite; }

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: var(--gradient-primary);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #fff, transparent),
        radial-gradient(2px 2px at 40px 70px, var(--golden-yellow), transparent),
        radial-gradient(1px 1px at 90px 40px, #fff, transparent),
        radial-gradient(1px 1px at 130px 80px, var(--light-purple), transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: twinkle 4s ease-in-out infinite;
    z-index: 1;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.15;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    z-index: 3;
    position: relative;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.sr-luz {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-light);
    opacity: 0.9;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.cta-buttons {
    margin-bottom: 2rem;
}

.btn {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    padding: 15px 30px;
    margin: 10px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--mystic-black);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
    color: var(--mystic-black);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
    color: white;
}

.pulse-btn {
    animation: pulse 2s infinite;
}

.consultation-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.consultation-info p {
    margin: 5px 0;
    font-size: 1.1rem;
}

.consultation-info i {
    color: var(--golden-yellow);
    margin-right: 10px;
}

/* Mystical Orb */
.mystical-orb {
    position: relative;
    width: 600px;
    height: 600px;
    margin: 0 auto;
    z-index: 3;
}

.orb-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--light-purple), transparent);
    border-radius: 50%;
    animation: glow 3s ease-in-out infinite;
}

.orb-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 50px var(--primary-purple);
    overflow: hidden;
}

.orb-content i {
    font-size: 4rem;
    color: var(--golden-yellow);
}

.orb-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--mystic-black), var(--dark-blue));
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(107, 70, 193, 0.2);
    backdrop-filter: blur(10px);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(107, 70, 193, 0.1);
    border-color: var(--primary-purple);
    box-shadow: 0 20px 40px rgba(107, 70, 193, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.3);
    overflow: hidden;
    position: relative;
}

.service-icon i {
    font-size: 2rem;
    color: var(--golden-yellow);
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

.service-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.service-card p {
    color: rgba(248, 250, 252, 0.8);
    font-size: 1rem;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--dark-blue), var(--mystic-black));
    position: relative;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(107, 70, 193, 0.3);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(107, 70, 193, 0.2);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(107, 70, 193, 0.4);
}

.gallery-item-large {
    height: 500px;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-item:not(.gallery-item-large) {
    height: 400px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.contact-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.2;
}

.contact-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-section .section-title,
.contact-section .contact-description,
.contact-section .contact-buttons,
.contact-section .payment-info {
    position: relative;
    z-index: 3;
}

.contact-description {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-buttons {
    margin-bottom: 2rem;
}

.btn-xl {
    padding: 20px 40px;
    font-size: 1.2rem;
}

.payment-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    display: inline-block;
}

.payment-info i {
    color: var(--golden-yellow);
    margin-right: 10px;
}

/* Payment Methods Section */
.payment-section {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--mystic-black), var(--dark-blue));
    position: relative;
}

.payment-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    color: var(--text-light);
}

.payment-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 20px 0;
}

.payment-logo-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(107, 70, 193, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 100px;
    opacity: 0;
    transform: translateY(20px);
}

.payment-logo-item:hover {
    transform: translateY(-5px);
    background: rgba(107, 70, 193, 0.1);
    border-color: var(--primary-purple);
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.2);
}

.payment-logo {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(1.1);
    transition: transform 0.3s ease;
}

.payment-logo-item:hover .payment-logo {
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: var(--mystic-black);
    padding: 0;
    text-align: center;
    border-top: 1px solid rgba(107, 70, 193, 0.2);
}

.footer-logo-wrapper {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 40px 0;
    background: var(--mystic-black);
    text-align: center;
    border-top: 1px solid rgba(107, 70, 193, 0.2);
    box-sizing: border-box;
}

.footer-logo-link {
    display: inline-block;
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.footer-logo-link:hover {
    opacity: 0.8;
}

.footer-logo {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.footer .container {
    padding: 30px 15px;
}

.footer p {
    color: rgba(248, 250, 252, 0.6);
    margin: 0;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: #fff;
}

.whatsapp-float i {
    color: #fff;
    font-size: 32px;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .mystical-orb {
        width: 300px;
        height: 300px;
    }
    
    .orb-content {
        width: 200px;
        height: 200px;
    }
    
    .orb-content i {
        font-size: 2.5rem;
    }
    
    .orb-image {
        width: 100%;
        height: 100%;
    }
    
    .hero-background-image {
        opacity: 0.1;
    }
    
    .contact-background-image {
        opacity: 0.15;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-image {
        width: 100%;
        height: 100%;
    }
    
    .gallery-item:not(.gallery-item-large) {
        height: 300px;
    }
    
    .gallery-item-large {
        height: 350px;
    }
    
    .payment-logos {
        gap: 20px;
        padding: 15px 0;
    }
    
    .payment-logo-item {
        min-width: 120px;
        height: 80px;
        padding: 15px;
    }
    
    .payment-logo {
        max-height: 60px;
    }
    
    .payment-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .footer-logo-wrapper {
        padding: 30px 0;
    }
    
    .footer-logo {
        max-width: 150px;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 28px;
    }
    
    .whatsapp-float i {
        font-size: 28px;
    }
}

/* Scroll animations */
.service-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.service-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.gallery-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.payment-logo-item.animate {
    opacity: 1;
    transform: translateY(0);
}
