/* === PÁGINA QUIÉNES SOMOS === */
/* Paleta de colores terracota:
   - Header: Terracota #C67854
   - Sidebar: Marrón terracota #8B6B5C
   - Botones del menú: Beige/dorado #D9A574 con hover #C89465
   - Botón cerrar sesión: Terracota rojizo #B85C4A con hover #A64C3A
   - Fondo principal: Beige claro #F5E6D3
   - Botón guardar cambios: Verde terracota #9FB18F
   - Botones de acción negativa: Terracota rojizo #B85C4A
*/

@import url('https://fonts.cdnfonts.com/css/feather-bold');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Feather Bold', 'Arial', 'Helvetica', sans-serif;
    background-color: #F5E6D3 !important;
    color: #4A4A4A;
}

/* === HEADER === */
.header {
    background-color: #C67854 !important;
    background: linear-gradient(135deg, #C67854 0%, #B56744 100%) !important;
    padding: 20px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo .circle {
    width: 50px;
    height: 50px;
    background-color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-size: 40px;
    font-weight: 900;
    color: #C67854;
}

.logo h1 {
    color: #FFFFFF;
    font-size: 48px !important;
    font-weight: 900;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    margin: 0;
}

.nav-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-header {
    background-color: #D9A574;
    color: #2C2C2C;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 15px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.btn-header:hover {
    background-color: #C89465;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-header.active {
    background-color: #8B6B5C;
    color: #FFFFFF;
}

.btn-regresar {
    background: transparent !important;
    color: #FFFFFF !important;
    border: 2px solid #FFFFFF !important;
    padding: 12px 24px;
    font-weight: bold;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.btn-regresar:hover {
    color: #F5E6D3 !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
    text-decoration: none;
    transform: translateX(-3px);
}

/* === CONTENIDO PRINCIPAL === */
.contenido {
    background-color: #F5E6D3;
    padding: 30px 20px 60px 20px;
    min-height: calc(100vh - 90px);
}

.quienes {
    max-width: 1200px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.quienes h2 {
    font-size: 48px;
    font-weight: 900;
    color: #8B6B5C;
    margin-top: 30px;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.quienes-contenido {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
    margin: 0 auto;
}

.img-quienes {
    width: 35%;
    max-width: 350px;
    height: auto;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(139, 107, 92, 0.2);
}

.texto-quienes {
    width: 65%;
    text-align: justify;
    line-height: 1.8;
    font-size: 16px;
    color: #4A4A4A;
}

.texto-quienes p {
    margin-bottom: 20px;
}

/* === POR QUÉ SOCIO === */
.porque {
    margin-top: 60px;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.porque h2 {
    font-size: 48px;
    font-weight: 900;
    color: #8B6B5C;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.porque p {
    font-size: 16px;
    max-width: 1000px;
    margin: 0 auto 25px auto;
    text-align: justify;
    line-height: 1.8;
    color: #4A4A4A;
}

/* === TEMAS === */
.temas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.tema {
    text-align: center;
    transition: transform 0.3s ease;
}

.tema:hover {
    transform: translateY(-8px);
}

.tema img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 16px rgba(139, 107, 92, 0.2);
    transition: box-shadow 0.3s ease;
}

.tema:hover img {
    box-shadow: 0 8px 24px rgba(139, 107, 92, 0.3);
}

.tema h3 {
    font-size: 22px;
    color: #8B6B5C;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* === FOOTER === */
.footer {
    background-color: #2C2C2C;
    color: #F5E6D3;
    padding: 15px 20px;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-text {
    font-size: 13px;
    margin-bottom: 5px;
    color: #D9A574;
    font-weight: 500;
}

.footer-email {
    color: #F5E6D3;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-email:hover {
    color: #D9A574;
    text-decoration: underline;
}

/* Forzar ocultamiento del enlace de salto si algún script lo inyecta */
.skip-link {
    display: none !important;
}

/* Override: footer no fijo en vistas públicas (Quienes Somos) */
.public-layout .footer,
.public-layout footer {
    position: static !important;
}

/* === IMAGEN CULTURA EXTRA === */
.imagen-cultura-extra {
    margin-top: 60px;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.img-cultura-grande {
    width: 100%;
    max-width: 800px;
    height: auto;
    object-fit: cover;
    border: 3px solid #8B6B5C;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(139, 107, 92, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.img-cultura-grande:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 32px rgba(139, 107, 92, 0.4);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .header-content {
        padding: 0 20px;
    }

    .logo h1 {
        font-size: 48px;
        letter-spacing: 3px;
    }

    .logo .circle {
        width: 50px;
        height: 50px;
        font-size: 40px;
    }

    .nav-buttons {
        gap: 10px;
    }

    .btn-header {
        padding: 12px 20px;
        font-size: 14px;
    }

    .quienes-contenido {
        flex-direction: column;
        align-items: center;
    }

    .img-quienes,
    .texto-quienes {
        width: 100%;
        max-width: 600px;
    }

    .temas {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tema img {
        max-width: 400px;
        margin: 0 auto 15px auto;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .logo {
        margin-right: 0;
    }

    .nav-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .contenido {
        padding: 20px 16px;
    }

    .quienes h2 {
        font-size: 28px;
    }

    .porque h2 {
        font-size: 24px;
    }

    .texto-quienes,
    .porque p {
        font-size: 15px;
    }
}

/* === ACCESIBILIDAD === */
.btn-header:focus,
.btn-regresar:focus,
.footer-email:focus {
    outline: 3px solid #D9A574;
    outline-offset: 2px;
}


/* === MODO OSCURO PARA VISTA QUIENES SOMOS === */
[data-theme="dark"] body {
    background: #0B1220 !important;
    color: #E5E7EB !important;
}

[data-theme="dark"] .contenido {
    background: #0B1220 !important;
}

[data-theme="dark"] .quienes h2,
[data-theme="dark"] .porque h2 {
    color: #E5E7EB !important;
}

[data-theme="dark"] .texto-quienes p,
[data-theme="dark"] .porque p {
    color: #9CA3AF !important;
}

[data-theme="dark"] .tema h3 {
    color: #E5E7EB !important;
}

/* === ALTO CONTRASTE === */
[data-theme="high-contrast"] body {
    background: #000000 !important;
    color: #FFFF00 !important;
}

[data-theme="high-contrast"] .quienes h2,
[data-theme="high-contrast"] .porque h2 {
    color: #FFFF00 !important;
    font-weight: 900 !important;
}

[data-theme="high-contrast"] .texto-quienes p,
[data-theme="high-contrast"] .porque p {
    color: #FFFFFF !important;
    font-weight: 700 !important;
}

[data-theme="high-contrast"] .tema {
    border: 3px solid #FFFFFF !important;
}

[data-theme="high-contrast"] .tema h3 {
    color: #FFFF00 !important;
    font-weight: 900 !important;
}

/* === ESCALA DE GRISES === */
[data-grayscale="true"] body {
    filter: grayscale(100%) !important;
    -webkit-filter: grayscale(100%) !important;
}
