/*
Theme Name: ERZSAC_V1
Theme URI: https://erzsac.com
Author: Frank Corzo
Author URI: https://corzo.pe
Description: Plantilla para ERZSAC.
Version: 1.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: erzsac.com
Tags: one-column, custom-header, custom-menu, rtl-language-support, sticky-post, threaded-comments, translation-ready
*/

/* -------------------------------------------------------------------------
   RESET BÁSICO Y ESTILOS GENERALES
------------------------------------------------------------------------- */

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.contenedor {
    max-width: 1100px;
    margin: 20px auto;
    padding: 0 20px;
    background-color: #fff;
    border: 1px solid #ddd;
}

a {
    color: #0073aa;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* -------------------------------------------------------------------------
   CABECERA (HEADER)
------------------------------------------------------------------------- */
.site-header {
    padding: 20px 0;
    border-bottom: 2px solid #0073aa;
}

.site-title a {
    font-size: 2.5em;
    font-weight: bold;
    color: #333;
}

/* -------------------------------------------------------------------------
   CONTENIDO PRINCIPAL
------------------------------------------------------------------------- */
.contenido-principal {
    display: flex;
}

.site-main {
    flex: 3; /* Ocupa 3/4 del espacio */
    padding-right: 20px;
}

/* -------------------------------------------------------------------------
   BARRA LATERAL (SIDEBAR)
------------------------------------------------------------------------- */
.widget-area {
    flex: 1; /* Ocupa 1/4 del espacio */
    border-left: 1px solid #ddd;
    padding-left: 20px;
}

/* -------------------------------------------------------------------------
   PIE DE PÁGINA (FOOTER)
------------------------------------------------------------------------- */
.site-footer {
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
    border-top: 1px solid #ddd;
    font-size: 0.9em;
}