/* =========================================
   ABOUT – ESTILOS AISLADOS (NO TOCAN NAV)
   ========================================= */

/* Contenedor principal */
.gh-about-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 8rem 1.5rem 5rem 1.5rem; /* deja espacio para el nav fijo */
}

/* ---------- Separadores entre secciones ---------- */

.gh-section-divider {
    max-width: 900px;
    margin: 0 auto 3rem auto;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ---------- Títulos de secciones ---------- */

.gh-section-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.5rem;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
    text-align: center;
}

.gh-section-title-center {
    text-align: center;
    margin-bottom: 1.25rem;
}

/* ---------- Intro / Hero ---------- */

.gh-about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gh-tagline {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--primary-light);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.gh-about-header h1 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 3rem;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.gh-highlight-brand {
    color: var(--primary);
}

.gh-about-intro-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--muted);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* ---------- KPI Row (resumen rápido) ---------- */

.gh-kpi-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    max-width: 850px;
    margin: 3rem auto 0 auto;
}

.gh-kpi-card {
    background-color: var(--card);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem 1.2rem;
    text-align: left;
}

.gh-kpi-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    font-weight: 600;
}

.gh-kpi-value {
    display: block;
    margin-top: 0.35rem;
    font-size: 1.05rem;
    color: var(--text);
    font-weight: 700;
}

.gh-kpi-desc {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.85rem;
    color: var(--muted);
}

/* ---------- Founders (cards sencillas) ---------- */

.gh-founders-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--muted);
    text-align: center;
    margin-bottom: 0.75rem;
}

.gh-founders-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto 5rem auto;
}

.gh-founder-card {
    background-color: var(--card);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    column-gap: 1.25rem;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.gh-founder-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    background-color: #26221d;
}

.gh-founder-img-wrapper {
    flex-shrink: 0;
}

.gh-founder-img-wrapper img {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 999px;
    object-fit: cover;
    background-color: var(--surface);
    border: 2px solid var(--primary);
}

.gh-founder-info h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    font-family: 'Inter', sans-serif;
}

.gh-founder-role {
    margin-top: 0.35rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary-light);
    font-weight: 600;
}

/* =========================================
   TIMELINE – VERTICAL SIMPLE, SIN NEONES
   ========================================= */

.gh-timeline-section {
    max-width: 900px;
    margin: 0 auto 5rem auto;
}

.gh-timeline-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 2rem;
    color: var(--text);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
}

.gh-timeline-subtitle-center {
    text-align: center;
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 2.5rem;
}

/* Contenedor de nodos */
.gh-timeline-vertical {
    position: relative;
    padding-left: 2.25rem;
}

/* Línea vertical */
.gh-timeline-vertical::before {
    content: "";
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: rgba(255, 255, 255, 0.12);
}

/* Nodo */
.gh-timeline-node {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

/* Punto circular con número */
.gh-node-icon {
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 999px;
    background-color: var(--bg);
    border: 2px solid rgba(255, 189, 89, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gh-node-index {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary-light);
}

/* Card */
.gh-node-card {
    background-color: var(--card);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.1rem;
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.gh-node-year {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.15rem 0.6rem;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.06);
    color: var(--muted);
    margin-bottom: 0.45rem;
    font-weight: 600;
}

.gh-node-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.35rem;
}

.gh-node-text {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.6;
}

/* Hover sobrio */
.gh-timeline-node:hover .gh-node-card {
    border-color: rgba(255, 189, 89, 0.7);
    background-color: #26221d;
    transform: translateY(-2px);
}

/* Nodo actual (GamzyHost) ligeramente destacado */
.gh-node-current .gh-node-card {
    border-color: rgba(255, 189, 89, 0.9);
}

.gh-node-year-current {
    background-color: var(--primary);
    color: #1d1a15;
}

/* ---------- Filosofía + valores ---------- */

.gh-philosophy-box {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--card);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3rem 2.5rem;
    text-align: center;
}

.gh-philosophy-box h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.6rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
}

.gh-philosophy-box p {
    font-size: 0.98rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.gh-philosophy-box p:last-child {
    margin-bottom: 0;
}

.gh-philosophy-link {
    margin-top: 2rem;
    font-size: 0.95rem;
    color: var(--muted);
}

/* Enlace interno SEO-friendly */
.gh-inline-link {
    color: var(--primary-light);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 189, 89, 0.5);
    padding-bottom: 1px;
}

.gh-inline-link:hover {
    color: var(--primary);
    border-color: var(--primary);
}

/* Valores debajo de la filosofía */
.gh-values-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    text-align: left;
}

.gh-value-item {
    display: flex;
    column-gap: 0.75rem;
    align-items: flex-start;
}

.gh-value-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background-color: var(--primary);
    margin-top: 0.4rem;
}

.gh-value-item h4 {
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 0.2rem;
}

.gh-value-item p {
    font-size: 0.85rem;
    color: var(--muted);
    margin: 0;
}

/* ---------- Responsive básico ---------- */
@media (max-width: 900px) {
    .gh-kpi-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gh-values-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .gh-about-header h1 {
        font-size: 2.1rem;
    }

    .gh-kpi-row {
        grid-template-columns: minmax(0, 1fr);
    }

    .gh-values-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .gh-philosophy-box {
        padding: 2.2rem 1.6rem;
    }

    .gh-timeline-section {
        padding-inline: 0.5rem;
    }

    .gh-timeline-vertical {
        padding-left: 1.75rem;
    }

    .gh-timeline-vertical::before {
        left: 0.9rem;
    }

    .gh-node-card {
        padding: 0.9rem 0.95rem;
    }

    .gh-node-title {
        font-size: 1.05rem;
    }

    .gh-node-text {
        font-size: 0.9rem;
    }
}
