/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Transiciones globales mejoradas */
*, *::before, *::after {
    transition: all 0.3s ease;
}

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

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

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

/* Clases para animaciones */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Efecto ripple para botones */
@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Mejoras de accesibilidad */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
}

body {
    font-family: 'Crimson Text', serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0d1a 50%, #0d0d2b 100%);
    color: #d4af37;
    overflow-x: hidden;
    line-height: 1.7;
}

/* Estrellas animadas de fondo */
.stars-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: -1;
}

.stars-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #d4af37, transparent),
        radial-gradient(2px 2px at 40px 70px, #8a2be2, transparent),
        radial-gradient(1px 1px at 90px 40px, #dc143c, transparent),
        radial-gradient(1px 1px at 130px 80px, #4169e1, transparent),
        radial-gradient(2px 2px at 160px 30px, #d4af37, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
}

@keyframes sparkle {
    from { transform: translateY(0px); }
    to { transform: translateY(-100px); }
}

@keyframes mysticFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        box-shadow: 0 0 20px rgba(138, 43, 226, 0.6), 0 0 40px rgba(212, 175, 55, 0.3);
    }
    25% { 
        transform: translateY(-10px) rotate(2deg);
        box-shadow: 0 0 25px rgba(138, 43, 226, 0.8), 0 0 50px rgba(212, 175, 55, 0.4);
    }
    50% { 
        transform: translateY(-5px) rotate(0deg);
        box-shadow: 0 0 30px rgba(138, 43, 226, 1), 0 0 60px rgba(212, 175, 55, 0.5);
    }
    75% { 
        transform: translateY(-15px) rotate(-2deg);
        box-shadow: 0 0 25px rgba(138, 43, 226, 0.8), 0 0 50px rgba(212, 175, 55, 0.4);
    }
}

/* Navegación */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #d4af37;
}

.logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
    color: #c9a96e;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #d4af37;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #c9a96e;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.nav-menu a.active {
    color: #d4af37;
    font-weight: 600;
}

.nav-menu a.active::after {
    width: 100%;
    background: linear-gradient(90deg, #d4af37, #e6c757);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #b8941f);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #d4af37;
    margin: 3px 0;
    transition: 0.3s;
}

/* Control de audio */
.audio-control {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 1000;
}

.audio-btn {
    background: rgba(138, 43, 226, 0.8);
    border: none;
    color: #d4af37;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.3);
}

.audio-btn:hover {
    background: rgba(138, 43, 226, 1);
    transform: scale(1.1);
}

/* Sección Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.hero-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    filter: brightness(0.6) contrast(1.2);
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 20px;
    margin: 0 auto;
}

.mystical-symbol {
    margin-bottom: 3rem;
}

.pentagram {
    width: 60px;
    height: 60px;
    position: relative;
    margin: 0 auto;
}

.pentagram::before {
    content: '✦';
    font-size: 2.5rem;
    color: #d4af37;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #d4af37;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    letter-spacing: 2px;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    color: #c9a96e;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.9;
}

.hero-description p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.8;
    line-height: 1.6;
    color: #e6e6e6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    border: 2px solid #d4af37;
    padding: 18px 40px;
    border-radius: 8px;
    color: #1a1a1a;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #e6c757, #d4af37);
    border-color: #e6c757;
}



/* Contenedor general */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

/* Títulos de sección */
.section-title {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #d4af37;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    line-height: 1.3;
    padding: 0 1rem;
    word-wrap: break-word;
    letter-spacing: 1px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 4rem;
    color: #c9a96e;
    font-style: italic;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
    line-height: 1.8;
    font-weight: 300;
}

/* Sección de Servicios */
.services {
    padding: 80px 0;
    background: rgba(26, 13, 26, 0.3);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    justify-items: center;
    align-items: start;
}

.service-card {
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 380px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2), 0 0 25px rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.05);
}

.service-icon {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.service-image {
    width: 100%;
    height: 200px;
    margin: 20px 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    filter: brightness(0.8) contrast(1.1);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
    filter: brightness(1) contrast(1.2);
}

.service-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #d4af37;
}

.service-card p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.read-more {
    display: inline-block;
    color: #c9a96e;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 16px;
    border: 1px solid #c9a96e;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
}

.read-more:hover {
    background: #b8941f;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.3);
}

.service-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #c9a96e;
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.3);
}

/* Sección de Testimonios */
.testimonials {
    padding: 80px 0;
    background: rgba(13, 13, 43, 0.3);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    height: 300px;
}

.testimonial {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
}

.testimonial.active {
    opacity: 1;
}

.testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-author h4 {
    color: #d4af37;
    font-family: 'Cinzel', serif;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: #c9a96e;
    font-size: 0.9rem;
}

.testimonial-dots {
    text-align: center;
    margin-top: 2rem;
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active,
.dot:hover {
    background-color: #d4af37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Sección Sobre Mí */
.about {
    padding: 80px 0;
    background: rgba(26, 13, 26, 0.3);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.mystical-frame {
    width: 300px;
    height: 300px;
    border: 3px solid #d4af37;
    border-radius: 50%;
    position: relative;
    margin: 0 auto;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.2), rgba(10, 10, 10, 0.8));
}

.shaman-silhouette {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.samael-circle-image {
    width: 90%;
    height: 90%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(212, 175, 55, 0.5);
    box-shadow: 
        0 0 20px rgba(212, 175, 55, 0.3),
        0 0 40px rgba(138, 43, 226, 0.2),
        inset 0 0 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.samael-circle-image:hover {
    transform: scale(1.05);
    box-shadow: 
        0 0 30px rgba(212, 175, 55, 0.5),
        0 0 60px rgba(138, 43, 226, 0.3),
        0 0 90px rgba(220, 20, 60, 0.2),
        inset 0 0 20px rgba(0, 0, 0, 0.3);
}

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

.about-text h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.about-text h3 {
    color: #8a2be2;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.credentials {
    margin: 2rem 0;
}

.credential {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.credential i {
    color: #d4af37;
    font-size: 1.2rem;
}

/* Sección Blog */
.blog {
    padding: 80px 0;
    background: rgba(13, 13, 43, 0.3);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    justify-items: center;
    align-items: start;
}

.blog-card {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 380px;
    height: auto;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px) rotateX(3deg);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.3), 0 0 20px rgba(212, 175, 55, 0.2);
}

.blog-image {
    height: 200px;
    background: linear-gradient(45deg, rgba(138, 43, 226, 0.3), rgba(220, 20, 60, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-icon {
    font-size: 4rem;
    color: #d4af37;
}

.blog-content {
    padding: 2rem;
}

.blog-content h3 {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    margin-bottom: 1rem;
}

.read-more {
    color: #8a2be2;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #d4af37;
}



/* Sección de Comentarios Sagrados */
.sacred-comments {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(20, 20, 40, 0.95), rgba(40, 20, 60, 0.95));
    position: relative;
    overflow: hidden;
}

.sacred-comments::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="stars" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23d4af37" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>') repeat;
    opacity: 0.3;
    animation: starTwinkle 20s linear infinite;
}

@keyframes starTwinkle {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

.sacred-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
    justify-items: center;
    align-items: start;
    margin-top: 2rem;
}

.sacred-comment {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.sacred-comment::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    animation: rotate 10s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sacred-comment:hover::before {
    opacity: 1;
}

.sacred-comment:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.sacred-image {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #d4af37;
}

.sacred-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.sacred-comment:hover .sacred-image img {
    transform: scale(1.1);
}

.mystical-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sacred-comment:hover .mystical-overlay {
    opacity: 1;
}

.mystical-overlay i {
    color: #d4af37;
    font-size: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.sacred-content {
    text-align: center;
    position: relative;
    z-index: 3;
}

.sacred-content blockquote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    position: relative;
    padding: 0 20px;
}

.sacred-content blockquote::before,
.sacred-content blockquote::after {
    content: '"';
    font-size: 2rem;
    color: #d4af37;
    position: absolute;
    top: -10px;
}

.sacred-content blockquote::before {
    left: 0;
}

.sacred-content blockquote::after {
    right: 0;
}

.sacred-author h4 {
    color: #d4af37;
    margin-bottom: 5px;
    font-family: 'Cinzel', serif;
}

.sacred-author span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.sacred-stars {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.sacred-stars i {
    color: #d4af37;
    font-size: 0.9rem;
    animation: starGlow 2s ease-in-out infinite alternate;
}

.sacred-stars i:nth-child(2) { animation-delay: 0.2s; }
.sacred-stars i:nth-child(3) { animation-delay: 0.4s; }
.sacred-stars i:nth-child(4) { animation-delay: 0.6s; }
.sacred-stars i:nth-child(5) { animation-delay: 0.8s; }

@keyframes starGlow {
    0% { opacity: 0.7; }
    100% { opacity: 1; text-shadow: 0 0 10px #d4af37; }
}

.sacred-gallery {
    position: relative;
    z-index: 2;
}

.gallery-title {
    text-align: center;
    color: #d4af37;
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    margin-bottom: 40px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    justify-items: center;
    align-items: center;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    border-color: #d4af37;
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay span {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    color: #d4af37;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

/* Responsive para Comentarios Sagrados */
@media (max-width: 768px) {
    .sacred-comments {
        padding: 60px 0;
    }
    
    .sacred-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .sacred-comment {
        padding: 20px;
    }
    
    .gallery-title {
        font-size: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
}

/* Sección de Contacto */
.contact {
    padding: 80px 0;
    background: rgba(26, 13, 26, 0.3);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
    justify-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 3rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #d4af37;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(26, 13, 26, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: #d4af37;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    background: rgba(212, 175, 55, 0.05);
}

.submit-btn {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    border: 2px solid #d4af37;
    padding: 18px 35px;
    border-radius: 8px;
    color: #1a1a1a;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #e6c757, #d4af37);
    border-color: #e6c757;
}

.mystical-circle {
    width: 200px;
    height: 200px;
    border: 3px solid #d4af37;
    border-radius: 50%;
    margin: 0 auto 2rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.2), transparent);
}

.inner-symbols {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.samael-contact-image {
    width: 85%;
    height: 85%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(212, 175, 55, 0.5);
    box-shadow: 
        0 0 15px rgba(212, 175, 55, 0.3),
        0 0 30px rgba(138, 43, 226, 0.2),
        inset 0 0 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.samael-contact-image:hover {
    transform: scale(1.05);
    box-shadow: 
        0 0 25px rgba(212, 175, 55, 0.5),
        0 0 50px rgba(138, 43, 226, 0.3),
        0 0 75px rgba(220, 20, 60, 0.2),
        inset 0 0 15px rgba(0, 0, 0, 0.3);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #d4af37;
}

.contact-item i {
    color: #8a2be2;
    font-size: 1.2rem;
}

/* Contador de visitas animado */
.visitor-counter {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(138, 43, 226, 0.9);
    color: #d4af37;
    padding: 10px 15px;
    border-radius: 25px;
    font-size: 0.9rem;
    z-index: 1000;
    border: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.visitor-counter:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.5);
}

.counter-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #d4af37;
    border-radius: 50%;
    pointer-events: none;
    animation: counterParticle 1s ease-out forwards;
}

@keyframes counterParticle {
    from {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
    to {
        opacity: 0;
        transform: scale(0.3) translateY(-30px);
    }
}





/* Footer con fases lunares */
.footer {
    background: rgba(10, 10, 10, 0.9);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
}

.moon-phases {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1rem 0;
}

.moon-phase {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #d4af37;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.moon-phase:hover {
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.moon-phase.new-moon {
    background: #333;
    border: 2px solid #d4af37;
}

.moon-phase.waxing-crescent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: #333;
    border-radius: 50% 0 0 50%;
}

.moon-phase.waning-crescent::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: #333;
    border-radius: 0 50% 50% 0;
}

.moon-phase.full-moon {
    animation: moonGlow 3s ease-in-out infinite;
}

@keyframes moonGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(212, 175, 55, 0.3); }
    50% { box-shadow: 0 0 30px rgba(212, 175, 55, 0.8); }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
    justify-items: center;
    align-items: start;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 2rem auto;
}

.footer-section h3,
.footer-section h4 {
    color: #d4af37;
    margin-bottom: 1rem;
    font-family: 'Cinzel', serif;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #8a2be2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #d4af37;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #8a2be2;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #d4af37;
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: #8a2be2;
}

/* Responsive Design */
/* Tablets */
@media (max-width: 1024px) and (min-width: 769px) {
    .container {
        padding: 0 3rem;
    }
    
    .hero-content {
        max-width: 700px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

/* Móviles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
        min-height: 100vh;
        justify-content: center;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }
    
    .hero-description p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
        max-width: 100%;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .mystical-frame {
        width: 250px;
        height: 250px;
        margin: 0 auto 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
    
    .whatsapp-float a {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float i {
        margin-top: 13px;
    }
    
    .container {
        padding: 0 1.5rem;
    }
}

/* Tablet responsivo */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero {
        padding: 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .sacred-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 1.5rem 0.5rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .mystical-orb {
        width: 180px;
        height: 180px;
    }
    
    .mystical-frame {
        width: 200px;
        height: 200px;
    }
    
    .service-card,
    .blog-card {
        margin-bottom: 1rem;
        padding: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .mystical-circle {
        width: 150px;
        height: 150px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .sacred-comment {
        padding: 15px;
    }
    
    .sacred-image {
        width: 60px;
        height: 60px;
    }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease-out;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out;
}

.scale-in {
    animation: scaleIn 0.6s ease-out;
}

/* Transición de carga de página elegante */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(10, 10, 10, 0.98) 0%,
        rgba(26, 13, 26, 0.95) 25%,
        rgba(138, 43, 226, 0.1) 50%,
        rgba(13, 13, 43, 0.95) 75%,
        rgba(10, 10, 10, 0.98) 100%);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.page-loader::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%23d4af37" opacity="0.8"><animate attributeName="opacity" values="0.8;0.2;0.8" dur="3s" repeatCount="indefinite"/></circle><circle cx="80" cy="30" r="0.5" fill="%238a2be2" opacity="0.6"><animate attributeName="opacity" values="0.6;0.1;0.6" dur="4s" repeatCount="indefinite"/></circle><circle cx="60" cy="70" r="1.5" fill="%23dc143c" opacity="0.7"><animate attributeName="opacity" values="0.7;0.3;0.7" dur="2.5s" repeatCount="indefinite"/></circle><circle cx="30" cy="80" r="0.8" fill="%234169e1" opacity="0.5"><animate attributeName="opacity" values="0.5;0.1;0.5" dur="3.5s" repeatCount="indefinite"/></circle></svg>') repeat;
    animation: starField 20s linear infinite;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
}

.mystical-loading {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mystical-loading::before {
    content: '🔮';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    animation: mysticalPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8));
    z-index: 3;
}

.mystical-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    border: 3px solid transparent;
    border-top: 3px solid #d4af37;
    border-right: 3px solid rgba(138, 43, 226, 0.6);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: elegantRotate 3s linear infinite;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.4));
}

/* Efectos adicionales del loader */
.mystical-loading {
    background: radial-gradient(circle, 
        transparent 40%, 
        rgba(212, 175, 55, 0.1) 41%, 
        rgba(212, 175, 55, 0.1) 42%, 
        transparent 43%);
}

.mystical-loading::before {
    box-shadow: 
        0 0 30px rgba(212, 175, 55, 0.6),
        0 0 60px rgba(138, 43, 226, 0.4),
        0 0 90px rgba(220, 20, 60, 0.2);
}

.mystical-loading::after {
    border-left: 3px solid rgba(220, 20, 60, 0.4);
    border-bottom: 3px solid rgba(65, 105, 225, 0.4);
}

/* Animaciones elegantes */
@keyframes mysticalPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8)) hue-rotate(0deg);
    }
    25% {
        transform: translate(-50%, -50%) scale(1.1);
        filter: drop-shadow(0 0 30px rgba(138, 43, 226, 0.9)) hue-rotate(90deg);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        filter: drop-shadow(0 0 40px rgba(220, 20, 60, 0.8)) hue-rotate(180deg);
    }
    75% {
        transform: translate(-50%, -50%) scale(1.1);
        filter: drop-shadow(0 0 30px rgba(65, 105, 225, 0.9)) hue-rotate(270deg);
    }
}

@keyframes elegantRotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
        border-top-color: #d4af37;
        border-right-color: rgba(138, 43, 226, 0.6);
    }
    25% {
        border-top-color: rgba(138, 43, 226, 0.8);
        border-right-color: rgba(220, 20, 60, 0.6);
    }
    50% {
        transform: translate(-50%, -50%) rotate(180deg);
        border-top-color: rgba(220, 20, 60, 0.8);
        border-right-color: rgba(65, 105, 225, 0.6);
    }
    75% {
        border-top-color: rgba(65, 105, 225, 0.8);
        border-right-color: rgba(212, 175, 55, 0.6);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
        border-top-color: #d4af37;
        border-right-color: rgba(138, 43, 226, 0.6);
    }
}

@keyframes starField {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100px);
    }
}

/* Animaciones para el loader elegante */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes fadeOutDown {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(-30px);
    }
}

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.8;
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
        opacity: 0.6;
    }
    75% {
        transform: translateY(-30px) rotate(270deg);
        opacity: 1;
    }
}

/* Imagen del nombre */
.name-image-container {
    margin-bottom: 15px;
    text-align: center;
}

.name-image {
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 
        0 0 20px rgba(212, 175, 55, 0.3),
        0 0 40px rgba(138, 43, 226, 0.2);
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.name-image:hover {
    transform: scale(1.05);
    box-shadow: 
        0 0 30px rgba(212, 175, 55, 0.5),
        0 0 60px rgba(138, 43, 226, 0.3),
        0 0 90px rgba(220, 20, 60, 0.2);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
}

/* Responsive para la imagen del nombre */
@media (max-width: 768px) {
    .name-image {
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .name-image {
        max-width: 200px;
    }
}

/* Canvas para estrellas */
#starCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

/* Modo solar/lunar */
body.solar-mode {
    background: linear-gradient(135deg, #2c1810 0%, #4a2c1a 50%, #1a1a2e 100%);
}

body.solar-mode .section-title {
    color: #ffa500;
}

body.solar-mode .nav-menu a {
    color: #ffa500;
}

body.solar-mode .logo {
    color: #ffa500;
}

body.solar-mode .service-card {
    border-color: rgba(255, 165, 0, 0.3);
}

body.solar-mode .service-card:hover {
    border-color: #ffa500;
}

/* Cursor místico mejorado */
.mystical-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid #d4af37;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.1s ease;
    mix-blend-mode: difference;
}

.cursor-trail {
    position: fixed;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, #d4af37, transparent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    animation: trailFade 0.8s ease-out forwards;
}

@keyframes trailFade {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.3);
    }
}

/* Efectos de hover para elementos interactivos */
.service-card,
.blog-card,
.testimonial {
    cursor: pointer;
}

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

::-webkit-scrollbar-track {
    background: rgba(10, 10, 10, 0.5);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #8a2be2, #d4af37);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #d4af37, #8a2be2);
}



/* Notificaciones mejoradas */
.mystical-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid #d4af37;
    border-radius: 10px;
    padding: 15px 20px;
    color: #d4af37;
    font-family: 'Cinzel', serif;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    transform: translateX(400px);
    transition: all 0.3s ease;
    z-index: 9999;
    min-width: 300px;
    backdrop-filter: blur(10px);
}

.mystical-notification.show {
    transform: translateX(0);
}

.mystical-notification.lunar {
    border-color: #4169e1;
    color: #4169e1;
    box-shadow: 0 5px 20px rgba(65, 105, 225, 0.3);
}

.mystical-notification.solar {
    border-color: #d4af37;
    color: #d4af37;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.mystical-notification.magic {
    border-color: #dc143c;
    color: #dc143c;
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.3);
    animation: magicPulse 2s ease-in-out infinite;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-icon {
    font-size: 1.2em;
    animation: sparkle 1.5s ease-in-out infinite;
}

.notification-text {
    flex: 1;
    font-size: 0.95em;
    line-height: 1.4;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(180deg); }
}

@keyframes magicPulse {
    0%, 100% { box-shadow: 0 5px 20px rgba(220, 20, 60, 0.3); }
    50% { box-shadow: 0 5px 30px rgba(220, 20, 60, 0.6); }
}

.notification-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #4169e1);
    animation: progressBar 4s linear;
    border-radius: 0 0 10px 10px;
}

@keyframes progressBar {
    0% { width: 100%; }
    100% { width: 0%; }
}

@keyframes magicPulse {
    0%, 100% { box-shadow: 0 5px 20px rgba(220, 20, 60, 0.3); }
    50% { box-shadow: 0 5px 30px rgba(220, 20, 60, 0.6); }
}

/* Estilos adicionales para el contacto */
.whatsapp-contact .whatsapp-link {
    color: #d4af37;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-contact .whatsapp-link:hover {
    color: #e6c757;
    transform: translateX(5px);
}

.whatsapp-contact i {
    color: #8a2be2;
    font-size: 1.2em;
}

.whatsapp-contact:hover i {
    animation: pulse 1s infinite;
}

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

/* Partículas del contador mejoradas */
.counter-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #d4af37;
    border-radius: 50%;
    animation: particleFloat 1s ease-out forwards;
    box-shadow: 0 0 5px #d4af37;
}

@keyframes particleFloat {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-30px) scale(0.5);
    }
}

/* Botón flotante de WhatsApp - Estilo místico */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: mysticFloat 3s ease-in-out infinite;
}

.whatsapp-float a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8a2be2 0%, #d4af37 50%, #8a2be2 100%);
    border-radius: 50%;
    text-decoration: none;
    color: #fff;
    box-shadow: 
        0 0 20px rgba(138, 43, 226, 0.6),
        0 0 40px rgba(212, 175, 55, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.5);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.whatsapp-float a::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.whatsapp-float:hover a::before {
    animation: shimmer 1.5s ease-in-out;
    opacity: 1;
}

.whatsapp-float a i {
    font-size: 28px;
    margin-bottom: 2px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
    transition: all 0.3s ease;
}

.whatsapp-float .whatsapp-text {
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Cinzel', serif;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    animation-play-state: paused;
}

.whatsapp-float:hover a {
    box-shadow: 
        0 0 30px rgba(138, 43, 226, 0.8),
        0 0 60px rgba(212, 175, 55, 0.5),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
    border-color: rgba(212, 175, 55, 0.8);
}

.whatsapp-float:hover a i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.whatsapp-float:hover .whatsapp-text {
    opacity: 1;
    transform: translateY(-1px);
}

.whatsapp-float:active {
    transform: scale(0.95);
}

@keyframes mysticFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        box-shadow: 0 5px 15px rgba(138, 43, 226, 0.3);
    }
    25% {
        transform: translateY(-8px) rotate(1deg);
        box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
    }
    50% {
        transform: translateY(-5px) rotate(0deg);
        box-shadow: 0 8px 20px rgba(138, 43, 226, 0.5);
    }
    75% {
        transform: translateY(-10px) rotate(-1deg);
        box-shadow: 0 12px 30px rgba(212, 175, 55, 0.3);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Responsive Design para WhatsApp */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float a i {
        font-size: 24px;
        margin-bottom: 1px;
    }
    
    .whatsapp-float .whatsapp-text {
        font-size: 8px;
        letter-spacing: 0.3px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float a i {
        font-size: 22px;
    }
    
    .whatsapp-float .whatsapp-text {
        font-size: 7px;
    }
}

@media (max-width: 360px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 10px;
        right: 10px;
    }
    
    .whatsapp-float a i {
        font-size: 20px;
    }
    
    .whatsapp-float .whatsapp-text {
        font-size: 6px;
        letter-spacing: 0.2px;
    }
}

/* Animación especial para dispositivos táctiles */
@media (hover: none) and (pointer: coarse) {
    .whatsapp-float:active {
        transform: scale(0.9);
        transition: transform 0.1s ease;
    }
    
    .whatsapp-float:active a {
        box-shadow: 
            0 0 25px rgba(138, 43, 226, 0.9),
            0 0 50px rgba(212, 175, 55, 0.6),
            inset 0 0 25px rgba(255, 255, 255, 0.3);
    }
}
/* ... existing code ... */

/* Cursor místico */
.mystical-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid #d4af37;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.1s ease;
    mix-blend-mode: difference;
}

/* Rastro del cursor */
.cursor-trail {
    position: fixed;
    width: 6px;
    height: 6px;
    background: #d4af37;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    animation: trailFade 0.8s ease-out forwards;
}

@keyframes trailFade {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.3);
    }
}

/* Partículas místicas */
.mystical-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}



/* Loader místico mejorado - Eliminado para evitar conflictos */

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Modo solar */
body.solar-mode {
    background: linear-gradient(135deg, #1a1a0a 0%, #2a1d0a 50%, #1a0a2b 100%);
}

body.solar-mode .stars-bg::before {
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #ffd700, transparent),
        radial-gradient(2px 2px at 40px 70px, #ff8c00, transparent),
        radial-gradient(1px 1px at 90px 40px, #ff6347, transparent),
        radial-gradient(1px 1px at 130px 80px, #ffa500, transparent),
        radial-gradient(2px 2px at 160px 30px, #ffd700, transparent);
}

/* Notificaciones místicas */
.mystical-notification {
    position: fixed;
    top: 120px;
    right: 20px;
    background: rgba(10, 10, 10, 0.95);
    border: 2px solid #8a2be2;
    border-radius: 15px;
    padding: 15px 20px;
    color: #8a2be2;
    font-family: 'Crimson Text', serif;
    font-size: 1rem;
    max-width: 350px;
    z-index: 10001;
    transform: translateX(400px);
    transition: transform 0.5s ease;
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.3);
    backdrop-filter: blur(10px);
}

.mystical-notification.show {
    transform: translateX(0);
}

.mystical-notification.lunar {
    border-color: #4169e1;
    color: #4169e1;
    box-shadow: 0 5px 20px rgba(65, 105, 225, 0.3);
}

.mystical-notification.solar {
    border-color: #d4af37;
    color: #d4af37;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.mystical-notification.magic {
    border-color: #dc143c;
    color: #dc143c;
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.3);
    animation: magicPulse 2s ease-in-out infinite;
}

.notification-icon {
    font-size: 1.2rem;
    margin-right: 10px;
}

.notification-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #4169e1);
    animation: progressBar 4s linear;
    border-radius: 0 0 10px 10px;
}

@keyframes progressBar {
    0% { width: 100%; }
    100% { width: 0%; }
}

@keyframes magicPulse {
    0%, 100% { box-shadow: 0 5px 20px rgba(220, 20, 60, 0.3); }
    50% { box-shadow: 0 5px 30px rgba(220, 20, 60, 0.6); }
}