/* =========================================
   1. VARIABLES Y BASE
   ========================================= */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
}

:root {
    --bg-main: #050505;
    --bg-sec: #0a0a0a;
    --accent: #d4af37;
    --text-light: #e5e5e5;
    --text-muted: #a3a3a3;
    --glass-bg: rgba(10, 10, 10, 0.5);
    --glass-border: rgba(255, 255, 255, 0.05);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

@media (pointer: fine) { body, body * { cursor: none; } }

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-main);
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, .nav-logo { font-family: 'Cinzel', serif; font-weight: 700; }

/* =========================================
   2. PRELOADER Y UTILIDADES
   ========================================= */
#preloader { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background-color: #050505; display: flex; justify-content: center; align-items: center; z-index: 99999; transition: opacity 0.6s ease, visibility 0.6s; }
#preloader.fade-out { opacity: 0; visibility: hidden; pointer-events: none; }
body.preload-active { overflow: hidden; }
.preloader-content { text-align: center; width: 300px; }
.loader-logo { font-family: 'Cinzel', serif; font-size: 3rem; color: var(--text-light); letter-spacing: 0.3em; margin-bottom: 20px; animation: pulse-gold 2s infinite; }
.loader-bar { width: 100%; height: 2px; background: rgba(255, 255, 255, 0.1); position: relative; overflow: hidden; border-radius: 2px; }
.loader-progress { position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: var(--accent); animation: load-run 2.5s cubic-bezier(0.65, 0, 0.35, 1) infinite; }
.loader-status { margin-top: 15px; font-size: 0.7rem; letter-spacing: 0.4em; color: var(--text-muted); text-transform: uppercase; }

@keyframes load-run { 0% { left: -100%; } 50% { left: 0; } 100% { left: 100%; } }
@keyframes pulse-gold { 0%, 100% { opacity: 0.8; transform: scale(0.98); } 50% { opacity: 1; transform: scale(1); color: var(--accent); } }

.text-accent { background: linear-gradient(135deg, #FFF8D6 0%, #D4AF37 50%, #997A15 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; color: var(--accent); }

/* Custom Cursor */
#cursor-dot, #cursor-ring { position: fixed; top: 0; left: 0; border-radius: 50%; pointer-events: none; z-index: 9999; }
#cursor-dot { width: 6px; height: 6px; background: var(--accent); transform: translate(-50%, -50%); }
#cursor-ring { width: 36px; height: 36px; border: 1px solid rgba(212, 175, 55, 0.5); transform: translate(-50%, -50%); transition: width 0.2s, height 0.2s, background 0.2s; }
.cursor-hover #cursor-ring { width: 50px; height: 50px; background: rgba(212, 175, 55, 0.1); border-color: transparent; }

/* Backgrounds */
#progress-bar { position: fixed; top: 0; left: 0; height: 3px; background: var(--accent); width: 0%; z-index: 10000; }
.glow-bg { position: absolute; top: -10vh; left: 50%; width: 80vw; height: 80vw; max-width: 800px; max-height: 800px; background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(5,5,5,0) 60%); transform: translateX(-50%); z-index: -1; pointer-events: none; }
.glass { background: var(--glass-bg); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid var(--glass-border); border-radius: 16px; box-shadow: var(--glass-shadow); }

body::after { content: ""; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px); background-size: 60px 60px; z-index: -2; pointer-events: none; -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 90%); mask-image: radial-gradient(circle at center, black 30%, transparent 90%); }
#hero-particles { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; pointer-events: none; opacity: 0.4; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-main); }
::-webkit-scrollbar-thumb { background: rgba(212, 175, 55, 0.3); border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* =========================================
   3. LAYOUT Y NAVEGACIÓN
   ========================================= */
.container { max-width: 1100px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.section { padding-top: 120px; padding-bottom: 120px; }
.section-title { font-size: 2.5rem; margin-bottom: 64px; text-align: center; }

/* Navbar Desktop */
.navbar { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 25px 0; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); border-bottom: 1px solid transparent; }
.navbar.scrolled { padding: 15px 0; background: rgba(5, 5, 5, 0.7); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--glass-border); }
.nav-content { display: flex; justify-content: space-between; align-items: center; }
.nav-logo { font-size: 1.5rem; letter-spacing: 0.1em; color: var(--text-light); text-decoration: none; }
.nav-links { display: flex; gap: 32px; }
.nav-link { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.05em; color: var(--text-muted); text-decoration: none; transition: 0.3s; }
.nav-link:hover { color: var(--text-light); }
.nav-actions { display: flex; align-items: center; gap: 24px; }

/* Botón CTA Navbar */
.nav-cta { background: transparent; color: var(--accent); border: 1px solid var(--accent); padding: 8px 20px; border-radius: 100px; font-family: 'Poppins', sans-serif; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; cursor: pointer; transition: all 0.3s ease; }
.nav-cta:hover { background: var(--accent); color: var(--bg-main); box-shadow: 0 0 15px rgba(212, 175, 55, 0.3); }

/* Menu Toggle (Hamburguesa) */
.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; z-index: 1001; }
.menu-toggle span { display: block; width: 24px; height: 2px; background-color: var(--text-light); transition: all 0.3s ease; }
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu Overlay */
.mobile-menu { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(5, 5, 5, 0.95); backdrop-filter: blur(15px); z-index: 999; display: flex; align-items: center; justify-content: center; opacity: 1; visibility: visible; transition: opacity 0.4s ease, visibility 0.4s ease; }
.mobile-menu.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.mobile-menu-content { display: flex; flex-direction: column; align-items: center; gap: 24px; transform: translateY(0); transition: transform 0.4s ease; }
.mobile-menu.hidden .mobile-menu-content { transform: translateY(30px); }
.mobile-link { font-family: 'Cinzel', serif; font-size: 1.5rem; color: var(--text-light); text-decoration: none; letter-spacing: 0.1em; transition: 0.3s; }
.mobile-link:hover, .mobile-link:active { color: var(--accent); }

/* =========================================
   4. HERO Y EFECTOS PREMIUM
   ========================================= */
header.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    width: 100%;
}

.hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); margin-bottom: 24px; letter-spacing: 0.02em; line-height: 1.1; }
.hero p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 48px; max-width: 600px; margin-left: auto; margin-right: auto; }

.glow-text { text-shadow: 0 0 40px rgba(212, 175, 55, 0.4); position: relative; display: inline-block; }
.float-anim { animation: float 4s ease-in-out infinite; }

/* Botones Generales */
.btn { 
    background: rgba(212, 175, 55, 0.15); 
    color: var(--text-light); 
    border: 1px solid var(--accent); 
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2); 
    padding: 16px 32px; 
    border-radius: 100px; 
    font-family: 'Poppins', sans-serif; 
    font-size: 0.85rem; 
    font-weight: 600; 
    letter-spacing: 0.1em; 
    text-transform: uppercase; 
    transition: all 0.3s ease; 
    outline: none; 
    position: relative; 
    overflow: hidden; 
}
.btn:hover { border-color: var(--accent); background: var(--accent); color: var(--bg-main); box-shadow: 0 0 20px rgba(212, 175, 55, 0.2); }
.btn::after { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%); transform: skewX(-25deg); transition: all 0.7s ease; }
.btn:hover::after { left: 200%; }

/* Modals & UI Widgets */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; z-index: 1000; opacity: 1; transition: opacity 0.3s; }
.modal-overlay.hidden { opacity: 0; pointer-events: none; }
.modal-content { max-width: 500px; width: 90%; padding: 48px; position: relative; transform: translateY(0); transition: transform 0.3s; }
.modal-overlay.hidden .modal-content { transform: translateY(20px); }
.close-btn { position: absolute; top: 24px; right: 24px; font-size: 1.5rem; color: var(--text-muted); transition: 0.3s; cursor: pointer; }
.close-btn:hover { color: var(--text-light); }

#cookie-banner { position: fixed; bottom: 24px; left: 24px; max-width: 350px; padding: 24px; z-index: 900; display: flex; flex-direction: column; gap: 16px; transition: transform 0.4s, opacity 0.4s; }
#cookie-banner p { font-size: 0.85rem; color: var(--text-muted); }
#cookie-banner.hidden { transform: translateY(20px); opacity: 0; pointer-events: none; }

#back-to-top { position: fixed; bottom: 24px; right: 24px; width: 50px; height: 50px; border: 1px solid var(--glass-border); border-radius: 50%; background: var(--glass-bg); color: var(--accent); font-size: 1.2rem; display: flex; align-items: center; justify-content: center; z-index: 900; transition: 0.3s; cursor: pointer; }
#back-to-top:hover { border-color: var(--accent); background: rgba(212,175,55,0.1); }
#back-to-top.hidden { opacity: 0; transform: translateY(20px); pointer-events: none; }

/* Reveals & Animations */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
@keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Revelado de Texto */
h2.reveal-text span.word { opacity: 0.15 !important; display: inline-block !important; transform: translateY(10px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); transition-delay: calc(var(--word-index) * 0.1s); will-change: opacity, transform; }
h2.reveal-text.active span.word { opacity: 1 !important; transform: translateY(0) !important; }

/* =========================================
   5. FOOTER PREMIUM
   ========================================= */
.footer { padding: 80px 0 40px; position: relative; z-index: 10; background: linear-gradient(to bottom, rgba(10,10,10,0) 0%, rgba(10,10,10,0.8) 100%); border-top: none; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
.footer-logo { font-size: 2.2rem; line-height: 1; display: inline-block; margin-bottom: 16px; background: linear-gradient(90deg, var(--text-light) 0%, #fff 40%, var(--accent) 50%, #fff 60%, var(--text-light) 100%); background-size: 200% auto; color: transparent; -webkit-background-clip: text; background-clip: text; animation: shine 5s linear infinite; text-shadow: 0 0 15px rgba(212, 175, 55, 0.2); }
@keyframes shine { to { background-position: 200% center; } }
.footer-slogan { color: var(--text-muted); font-size: 0.95rem; max-width: 300px; }
.footer-title { font-family: 'Cinzel', serif; color: var(--text-light); font-size: 1.1rem; margin-bottom: 20px; letter-spacing: 0.05em; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; transition: 0.3s; width: fit-content; }
.footer-links a:hover { color: var(--accent); transform: translateX(5px); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 30px; border-top: none; }
.social-links { display: flex; gap: 20px; }
.social-links a { color: var(--text-muted); font-size: 1.2rem; transition: 0.3s ease; }
.social-links a:hover { color: var(--accent); transform: translateY(-3px); }
.footer-copy p { color: var(--text-muted); font-size: 0.9rem; text-align: right; }

/* =========================================
   6. RESPONSIVE / MÓVIL
   ========================================= */

/* Arreglar el cursor congelado en táctiles */
@media (pointer: coarse) {
    * { cursor: auto !important; }
    #cursor-dot, #cursor-ring { display: none !important; }
}

/* Ajustes para Móvil (max-width: 768px) */
@media (max-width: 768px) {
    .container { padding-left: 24px !important; padding-right: 24px !important; }
    .section { padding-top: 80px !important; padding-bottom: 80px !important; }
.hero .btn {
        background: var(--accent);
        color: var(--bg-main);
        font-weight: 700;
        width: 100%;
        max-width: 320px;
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    }
    /* Navbar y Menú */
    .nav-content { flex-direction: row; }
    .nav-links, .nav-cta { display: none; }
    .menu-toggle { display: flex; }
    .navbar { padding: 15px 0; }
    .navbar.scrolled { padding: 10px 0; }

    /* Hero */
    .hero h1 { font-size: clamp(2rem, 8vw, 2.5rem); margin-top: 30px; }
    .hero p { font-size: 1rem; padding: 0 10px; }

    /* =========================================
       AJUSTES MODAL MÓVIL (ANTIBLOQUEO TECLADO)
       ========================================= */
    .modal-content { 
        width: 95%;
        padding: 40px 20px 30px; 
        max-height: 90vh; 
        overflow-y: auto; 
    }

    .modal-content h2 {
        font-size: 1.8rem; 
    }

    .close-btn { 
        top: 15px; 
        right: 20px; 
        font-size: 2rem; 
    }

    .form-input {
        font-size: 16px !important; 
        padding: 16px 15px;
    }

    /* Footer Móvil */
    .footer-grid { grid-template-columns: 1fr !important; text-align: center; gap: 40px; }
    .footer-slogan { margin: 0 auto; }
    .footer-links { align-items: center; }
    .footer-links a:hover { transform: translateY(-3px) translateX(0); }
    .footer-bottom { flex-direction: column; gap: 24px; text-align: center; }
    .footer-copy { display: flex; flex-direction: column; align-items: center; width: 100%; padding-bottom: 20px; }
    .footer-copy p { text-align: center !important; width: 100%; }
}

/* =========================================
   FORMULARIO INTERACTIVO (MODAL)
   ========================================= */
.form-group { position: relative; width: 100%; margin-bottom: 20px; }

.form-input {
    width: 100%; padding: 18px 20px; 
    background: rgba(10,10,10,0.8); border: 1px solid var(--glass-border); 
    color: var(--text-light); border-radius: 12px; font-family: inherit; font-size: 1rem;
    outline: none; transition: all 0.3s ease; box-shadow: inset 0 2px 10px rgba(0,0,0,0.5);
}

.form-input:focus { border-color: var(--accent); box-shadow: 0 0 15px rgba(212,175,55,0.2), inset 0 2px 10px rgba(0,0,0,0.5); }
.form-input.valid { border-color: #4ade80; } 
.form-input.invalid { border-color: #f87171; } 

.form-message { position: absolute; bottom: -22px; left: 5px; font-size: 0.8rem; font-weight: 600; transition: 0.3s; opacity: 0; }
.form-message.show { opacity: 1; }
.form-message.success { color: #4ade80; }
.form-message.error { color: #f87171; }

/* Checkbox Privacidad */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 25px;
    text-align: left;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    accent-color: var(--accent);
    cursor: pointer;
    width: 16px;
    height: 16px;
}

.checkbox-group label {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
    cursor: pointer;
}

.checkbox-group label a {
    color: var(--accent) !important;
    text-decoration: underline !important;
    text-underline-offset: 3px;
    transition: 0.3s ease;
}

.checkbox-group label a:hover {
    color: var(--text-light) !important;
}

/* Spinner de Carga del Botón */
.btn-submit { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    gap: 10px; 
    background: var(--accent); 
    color: var(--bg-main); 
    font-weight: 700; 
    border: none;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.btn-submit:hover {
    background: #eec94d;
    color: var(--bg-main);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
}
.spinner { width: 18px; height: 18px; border: 2px solid rgba(255,255,255,0.3); border-top-color: var(--text-light); border-radius: 50%; animation: spin 1s linear infinite; display: none; }
.btn-submit.loading .spinner { display: block; }
.btn-submit.loading .btn-text { opacity: 0.8; }

@keyframes spin { to { transform: rotate(360deg); } }

/* =========================================
   EFECTOS PREMIUM HERO
   ========================================= */

/* 1. Resplandor en texto dorado */
.glow-text {
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
    position: relative;
    display: inline-block;
}

/* 2. Animación de flotación suave para el Badge */
.float-anim {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

/* Indicador de Scroll Centrado */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0.7;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 10;
}

.scroll-indicator:hover {
    opacity: 1;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--text-muted);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 6px;
    background: var(--accent);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

.scroll-text {
    font-size: 0.7rem;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    text-transform: uppercase;
}

@keyframes scrollWheel {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}

/* Tira de texto en movimiento (Marquee) */
.marquee-wrapper {
    border-top: 1px solid var(--glass-border); 
    border-bottom: 1px solid var(--glass-border); 
    background: var(--bg-sec); 
    padding: 16px 0; 
    overflow: hidden; 
    display: flex; 
    white-space: nowrap;
}
.marquee-track {
    display: flex; 
    width: max-content;
    animation: scroll-left 30s linear infinite; 
}
.marquee-text {
    font-family: 'Cinzel', serif; 
    font-size: 0.9rem; 
    letter-spacing: 0.2em; 
    color: var(--text-muted);
    padding-right: 10px; 
}

/* =========================================
   TEXTOS LEGALES (MODALES)
   ========================================= */
.legal-modal {
    z-index: 1010; /* Asegura que quede por encima del modal de contacto */
}

.legal-content-box {
    text-align: justify;
    max-height: 85vh;
    overflow-y: auto;
    padding: 40px 30px;
}

.legal-text {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.8;
    text-align: justify;
}

.legal-text p {
    margin-bottom: 20px;
}

.legal-text strong {
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* Ajuste específico de scroll interno para modales legales */
.legal-content-box::-webkit-scrollbar {
    width: 6px;
}
.legal-content-box::-webkit-scrollbar-track {
    background: transparent;
}
.legal-content-box::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.2);
    border-radius: 4px;
}
/* =========================================
   INSIGNIAS FLOTANTES (ÉXITO / ERROR)
   ========================================= */
.badge-flotante {
    position: fixed;
    right: 20px;
    bottom: 20px;
    padding: 10px 20px;
    border-radius: 50px;
    color: #e5e5e5;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 9999;
}

.badge-flotante::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

/* Variante: Éxito (Verde) */
.badge-flotante.success {
    background-color: rgba(46, 204, 113, 0.15);
    border: 1px solid rgba(46, 204, 113, 0.3);
}
.badge-flotante.success::before {
    background-color: #2ecc71;
    animation: pulse-green 1.5s infinite;
}

/* Variante: Error (Rojo) */
.badge-flotante.error {
    background-color: rgba(248, 113, 113, 0.15);
    border: 1px solid rgba(248, 113, 113, 0.3);
}
.badge-flotante.error::before {
    background-color: #f87171;
    animation: pulse-red 1.5s infinite;
}

/* Animaciones de pulso */
@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(46, 204, 113, 0); }
    100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}

@keyframes pulse-red {
    0% { box-shadow: 0 0 0 0 rgba(248, 113, 113, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(248, 113, 113, 0); }
    100% { box-shadow: 0 0 0 0 rgba(248, 113, 113, 0); }
}