/* ==========================================================================
   1. ESTILOS GENERALES Y TIPOGRAFÍAS BASE
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    color: #000000; 
    background-color: #ffffff;
}

.contenedor {
    width: 98%;
    max-width: 1280px;
    margin: auto;
}

.contenido-angosto {
    max-width: 800px; 
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

img {
    width: 100%;
    height: auto;
    display: block;
}

/* Etiquetas de texto globales */
h1 {
    font-family: 'Londrina Solid', sans-serif;
    font-weight: 400;
    font-size: 50px;
    line-height: 1.1;
    color: #5a453a;
    margin-bottom: 15px;
}

.titulodos {
    font-size: 70px;
    text-align: center;
}

.subtitulo {
    font-size: 21px;
    font-family: 'Quicksand', sans-serif;
    text-align: center;
    color: #c87453;
}

h2 {
    font-family: 'Londrina Solid', sans-serif;
    font-weight: 400;
    font-size: 36px;
    color: #5a453a;
    margin-bottom: 22px;
    text-transform: uppercase; 
}

h3 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 25px;
    color: #000000;
}

p {
    font-family: 'Quicksand', sans-serif;
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #000000;
}

.destacado {
    font-size: 20px;
    font-weight: 700;
}

.bajada {
    font-size: 20px;
    font-weight: 700;
}


/* ==========================================================================
   2. HEADER / BARRA DE NAVEGACIÓN
   ========================================================================== */
.header {
    background-color: #ffffff;
    padding: 12px 0;
}

.flex-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
}

.imagen-logo {
    max-height: 75px;
    width: auto;
    display: block;
}

/* Menú hamburguesa (Celular) */
.menu-hamburguesa {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-hamburguesa span {
    width: 100%;
    height: 3px;
    background-color: #000000;
    border-radius: 2px;
    transition: all 0.3s ease;
}   

/* Enlaces del menú */
.menu-izq {
    display: none;
    flex-direction: column;
    gap: 15px;
    text-align: center;
}

.menu-izq.active {
    display: flex;
}

.menu-izq a {
    text-decoration: none;
    color: #000000;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 16px;
}


/* ==========================================================================
   3. ESTRUCTURAS DE BLOQUES INTERNOS (DIVS / SECCIONES)
   ========================================================================== */
.seccion-inicio {
   width: 100%;
   padding: 10px 0px 50px 0px;
   background-color: #f5f1eb;
}

.inicio-talleres {
   width: 100%;
   padding: 10px 0px 50px 0px;
   background-color: #f5f1eb;
   text-align: center;
}

.seccion-blanca {
    padding: 30px 0;
    text-align: center;
}

.imagen-fondo {
    width: 100%;
    height: auto;   
    display: block;
    margin-top: 20px;
}


/* ==========================================================================
   4. COMPONENTES REUTILIZABLES (BOTONES, GRIDS Y TARJETAS)
   ========================================================================== */
/* Botones genéricos */
.boton {
    display: inline-block;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #000000;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid #556b2f;
    border-radius: 10px;
    margin-top: 10px;
}

.botontalleres {
    display: inline-block;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #000000;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid #556b2f;
    border-radius: 10px;
    margin: 15px auto 0 auto;
    text-align: center;
}

/* Distribución en grillas */
.flex-dos-columnas {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.flex-cuatro-columnas {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.columna {
    width: 100%;
}

.centro-vertical {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Tarjetas */
.tarjeta-beneficio {
    width: 100%;
    border: 1px solid #000000; 
    padding: 30px 15px;
    text-align: center;
    font-family: 'Londrina Solid', sans-serif;
    font-size: 28px;
    line-height: 1.1;
    color: #000000;
}

.tarjeta-beneficio a {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
}

.tarjeta-entrevista {
    width: 100%;
}

.tarjeta-entrevista img {
    margin-bottom: 12px;
}

/* Bloque exclusivo de montos fijos (Donaciones) */
.contenedor-montos {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 15px 0;
}

.btn-monto {
    background-color: #f5f1eb;
    color: #5a453a;
    border: 1px solid #5a453a;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}


/* ==========================================================================
   5. FOOTER
   ========================================================================== */
.footer {
    background-color: #556b2f;
    padding: 60px 0;
    border-top: 1px solid #000000;
    margin-top: 50px;
}

.frase-footer {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 40px;
    text-align: left;
}

.links-footer {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.columna-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.columna-links a {
    color: #000000;
    text-decoration: none;
    font-family: 'Londrina Solid', sans-serif;
    font-size: 18px;
    letter-spacing: 0.5px;
}


/* ==========================================================================
   6. RESPONSIVE DESIGN (PANTALLAS GRANDES DESDE 700PX)
   ========================================================================== */
@media (min-width: 700px) {
    h1 {
        font-size: 60px;
    }
    .titulodos {
        font-size: 90px;
    }
    .titulotres {
        font-size: 75px;
    }
    h2 {
        font-size: 48px;
    }
    .botontalleres {
        /* Espacio libre para futuras reglas si querés */
    }
    
    /* Reacomodo de Header en PC */
    .flex-header {
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: nowrap;
        gap: 0;
    }
    .menu-hamburguesa {
        display: none;
    }
    .menu-izq {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        gap: 30px;
        width: auto;
        padding-top: 0;
    }

    /* Grillas en PC */
    .flex-dos-columnas {
        flex-direction: row;
        gap: 5%;
    }
    .flex-dos-columnas.invertiva { /* Mantenemos tu clase original */
        flex-direction: row-reverse;
    }
    .flex-dos-columnas.invertida { /* Agregamos la corrección por las dudas */
        flex-direction: row-reverse;
    }
    .flex-cuatro-columnas{
        flex-direction: row;
        gap: 2%;
    }

    /* Columnas y Tarjetas en PC */
    .columna {
        flex: 1;
        width: 47%;
    }
    .tarjeta-beneficio {
        flex: 1;
        width: 23.5%;
    }
    .tarjeta-entrevista {
        flex: 1;
        width: 23.5%;
    }

    /* Footer en PC */
    .links-footer {
        flex-direction: row;
    }
    .columna-links {
        flex: 1;
        width: 23.5%;
    }

    /* Ajustes de secciones en PC */
    .seccion-inicio {
        padding: 20px 0px 20px 0px;
        min-height: 50vh;
        display: flex;
        align-items: center;
    }
    .inicio-talleres {
        padding: 20px 0px 20px 0px;
        min-height: 50vh;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }
    .seccion-cursos {
        width: 100%;
        padding: 10px 0;
        text-align: center;
    }
    .imagen-fondo {
        margin-top: 0;
    }
}