/* Estilos Finales Perfeccionados - Técnicos GL */

@keyframes red-pulse {
    0% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7); transform: scale(1); }
    70% { box-shadow: 0 0 0 20px rgba(220, 38, 38, 0); transform: scale(1.05); }
    100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); transform: scale(1); }
}

.animate-red-pulse { animation: red-pulse 4s infinite; }

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.17, 0.55, 0.55, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Header Sticky - FONDO BLANCO */
#main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Enlaces del menú en modo scroll ( Sticky ) */
#main-header.scrolled .nav-link {
    color: #111827 !important;
}

#main-header.scrolled .nav-link:hover {
    color: #DC2626 !important;
}

/* Forzar color de hamburguesa en sticky */
#main-header.scrolled #menu-toggle {
    color: #111827 !important;
}

/* Dropdown Menu Desktop */
.group:hover .group-hover\:opacity-100 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* FAQ Accordion */
.faq-content {
    transition: max-height 0.4s ease-out;
    max-height: 0;
    overflow: hidden;
}

.faq-content.active {
    max-height: 1000px;
    padding-bottom: 1.5rem;
}

/* Especialistas LG - Punto de destaque */
.lg-highlight-dot {
    width: 6px;
    height: 6px;
    background-color: #DC2626;
    border-radius: 50%;
    display: inline-block;
    margin-left: 4px;
}

::selection { background-color: #DC2626; color: white; }
