/* ==========================================================
// ESTILOS DEDICADOS PARA EL HUB (hub.html)
// ========================================================== */
:root {
    --primary-color: #A3E635;
    --dark-color: #1C1917;
    --dark-color-light: #2A2624;
    --text-color: #E7E5E4;
    --text-color-dark: #A8A29E;
}

/* ================== V4: FONDO SUTIL ESTÁTICO ================== */
.hub-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    background: linear-gradient(rgba(28, 25, 23, 0.9), rgba(28, 25, 23, 0.95)), url('../img/hero-bg.jpg') no-repeat center center/cover;
    filter: blur(5px);
    opacity: 0.5;
}


/* ARREGLO PARA "VENTANA CORTADA" */
.gpt-content {
    justify-content: flex-start;
}

/* ================== V4: CONTENEDOR HUMANIZADO ================== */
.gpt-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hub-profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    box-shadow: 0px 5px 20px rgba(163, 230, 53, 0.2);
    margin-bottom: 2rem;
}

/* ================== V4: BOTÓN INSTALAR ES PRIMARIO (VERDE) ================== */
.gpt-btn.gpt-btn-install {
    background-color: var(--primary-color);
    color: var(--dark-color);
    box-shadow: 0px 4px 20px rgba(163, 230, 53, 0.25);
    border: none;
    order: 1;
}

.gpt-btn.gpt-btn-install:hover {
    background-color: #bfff40;
    color: var(--dark-color);
    transform: scale(1.03) translateY(-2px);
    box-shadow: 0px 8px 30px rgba(163, 230, 53, 0.35);
}

/* V6: Íconos del botón Instalar */
.gpt-btn.gpt-btn-install .fa-desktop {
    margin-left: 0.25rem;
    margin-right: 0.5rem;
}
.gpt-btn.gpt-btn-install .fa-mobile-alt {
    margin-right: 0.25rem;
}


/* Re-asignamos el orden de los otros botones */
.gpt-btn#gpt-access-btn {
    order: 2;
}
.gpt-btn#ig-follow-btn {
    order: 3;
}

/* ================== V6: HOVER BOTÓN INSTAGRAM ================== */
.gpt-btn#ig-follow-btn:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: var(--primary-color); /* Mantenemos el verde en el borde */
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(220, 39, 67, 0.3);
}


/* ================== V5: VIDEO INCORPORADO ================== */
.hub-section {
    background-color: var(--dark-color-light);
    border: 1px solid #3a3633;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    max-width: 600px;
    width: 100%;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.4);
}
.hub-section.hidden {
    display: none;
}
.hub-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1.5rem;
}
.hub-section p {
    font-size: 1rem;
    color: var(--text-color);
    text-align: center;
}

.hub-video-container {
    width: 100%;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    background-color: #000;
}

.hub-video {
    width: 100%;
    height: auto;
    display: block;
}


/* ================== V7: ESTILOS PARA DISCLAIMER-BOX ================== */
.disclaimer-box {
    background-color: var(--dark-color); /* Un poco más oscuro para diferenciar */
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    padding: 2rem;
    font-size: 0.9rem;
    color: var(--text-color-dark);
    text-align: center;
    max-width: 600px;
    width: 100%;
    margin-top: 1.5rem; /* Separación del gpt-container */
    box-shadow: 0px 5px 20px rgba(163, 230, 53, 0.2);
}
.disclaimer-box .btn-whatsapp-small {
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}
.disclaimer-box #gpt-continue-btn {
    margin-top: 1.5rem;
    width: 100%;
}

/* V9 (Req 3): Estilos para el botón de instalar secundario en el disclaimer */
.disclaimer-box .gpt-btn.gpt-btn-install {
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid var(--text-color-dark);
    box-shadow: none;
    width: 100%;
    margin-top: 1rem;
}

.disclaimer-box .gpt-btn.gpt-btn-install:hover {
    background-color: var(--dark-color);
    border-color: var(--text-color);
    color: var(--primary-color);
    transform: scale(1.03);
    box-shadow: none;
}


.filosofia-accordion {
    margin-top: 1.5rem;
    border: 1px solid #3a3633;
    border-radius: 15px;
    overflow: hidden;
    text-align: left;
}
.filosofia-accordion-toggle {
    display: block;
    padding: 1rem 1.5rem;
    background: var(--dark-color-light); /* Diferente al de index.html */
    cursor: pointer;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1rem;
    transition: background-color 0.3s ease;
}
.filosofia-accordion-toggle:hover {
    background: #000;
}
.filosofia-accordion-toggle .plus-icon {
    float: right;
    transition: transform 0.3s ease;
}
.filosofia-accordion[open] .plus-icon {
    transform: rotate(45deg);
}
.filosofia-accordion-content {
    padding: 1.5rem 2rem;
    background: var(--dark-color-light);
}
.filosofia-accordion-content h3 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}
.filosofia-accordion-content p {
    color: var(--text-color-dark);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-align: left; /* Aseguramos texto justificado */
}
.filosofia-accordion-content h3:first-child {
    margin-top: 0;
}


/* Responsive */
@media (max-width: 768px) {
    .hub-section h2 {
        font-size: 1.8rem;
    }
    .hub-profile-pic {
        width: 100px;
        height: 100px;
    }
}