/* --- ESTILOS PÁGINAS INTERNAS --- */

.page-hero {
    height: 60vh;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: flex-end;
    /* Texto abajo */
    padding-bottom: 60px;
    color: var(--color-white);
    overflow: hidden;
}

.page-hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: -1;
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: 3.5rem;
    max-width: 800px;
}

/* --- CONTENIDO PRINCIPAL --- */
.page-content {
    padding: 80px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    /* Columna ancha + Sidebar */
    gap: 60px;
}

.lead-text {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--color-black);
    margin-bottom: 40px;
    line-height: 1.8;
}

.main-column h3 {
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--color-accent-dark);
}

.main-column p {
    margin-bottom: 20px;
    color: var(--color-text-muted);
    font-size: 1.05rem;
}

.content-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 30px 0;
}

.highlights-list {
    list-style: none;
    margin-bottom: 30px;
    background-color: var(--color-white);
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.highlights-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
}

.highlights-list li i {
    color: var(--color-accent);
}

/* --- SIDEBAR --- */
.sidebar {
    position: relative;
}

.sticky-card {
    position: sticky;
    top: 100px;
    /* Debajo del nav */
    background-color: var(--color-white);
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    text-align: center;
}

.sticky-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.sticky-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 25px;
}

/* Responsive Internas */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .sticky-card {
        position: static;
        margin-top: 40px;
    }
}