:root {
    --led-blue: #ff00b7;
    --led-purple: #ffffff;
    --bg-dark: #0a0a0b;
}

body {
    margin: 0;
    background: var(--bg-dark);
    color: white;
    font-family: 'Montserrat', sans-serif;
}

#starlight-canvas {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
}

/* --- NAVBAR (Igual que el resto) --- */
.navbar {
    position: fixed; top: 0; width: 100%; padding: 20px 5%;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 1000; background: rgba(10, 10, 11, 0.8);
    backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255,255,255,0.05);
}
.logo { font-weight: 900; letter-spacing: 2px; font-size: 1.4rem; }
.logo span { color: var(--led-blue); text-shadow: 0 0 10px var(--led-blue); }

.btn-main {
    padding: 10px 20px; background: transparent; border: 1px solid var(--led-blue);
    color: var(--led-blue); font-weight: 900; font-size: 0.7rem; cursor: pointer; transition: 0.3s;
}
.btn-main:hover { background: var(--led-blue); color: black; box-shadow: 0 0 20px var(--led-blue); }

/* --- FAQ CONTENT --- */
.faq-wrapper {
    max-width: 900px;
    margin: 0 auto; /* Centra el contenido */
    padding: 150px 5% 100px;
    box-sizing: border-box; /* Asegura que el padding no sume al ancho total */
    overflow: hidden; /* Corta cualquier cosa que intente salir por la derecha */
}

/* El botón volver en el FAQ debe estar dentro de la navbar */
/* Si el botón "VOLVER" estaba suelto en el HTML, mételo en la navbar como hice arriba */

.faq-header { text-align: center; margin-bottom: 60px; }
.faq-header h1 { font-weight: 900; letter-spacing: 5px; font-size: 2.5rem; margin-bottom: 10px; }
.faq-header h1 span { color: var(--led-blue); text-shadow: 0 0 15px var(--led-blue); }
.faq-header p { color: #666; font-size: 0.9rem; }

/* CATEGORÍAS */
.faq-category { margin-bottom: 50px; }
.faq-category h3 {
    font-size: 0.8rem; letter-spacing: 3px; color: #444;
    margin-bottom: 25px; display: flex; align-items: center; gap: 10px;
}
.faq-category h3 i { color: var(--led-blue); }

/* ITEMS DEL ACORDEÓN */
.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    color: white;
    font-family: 'Montserrat';
    font-size: 1rem;
    font-weight: 700;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}

.faq-question i {
    font-size: 0.8rem;
    color: #444;
    transition: 0.4s;
}

/* EFECTO CUANDO ESTÁ ACTIVO */
.faq-question.active {
    color: var(--led-blue);
}

.faq-question.active i {
    transform: rotate(45deg);
    color: var(--led-blue);
}

.faq-item:has(.active) {
    border-color: var(--led-blue);
    box-shadow: 0 0 20px rgba(255, 0, 183, 0.1);
    background: rgba(255, 0, 183, 0.02);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer p {
    padding: 0 30px 30px;
    margin: 0;
    color: #aaa;
    line-height: 1.8;
    font-size: 0.9rem;
}

.faq-answer strong { color: white; border-bottom: 1px solid var(--led-blue); }

/* RESPONSIVE */
@media (max-width: 768px) {
    .faq-header h1 { font-size: 1.8rem; }
    .faq-question { font-size: 0.9rem; padding: 20px; }
}

/* El botón volver en el FAQ debe estar dentro de la navbar */
/* Si el botón "VOLVER" estaba suelto en el HTML, mételo en la navbar como hice arriba */