/*
Theme Name: WHOINT Organization
Theme URI: https://whoint.org
Author: Observador
Author URI: https://whoint.org
Description: Tema profesional para WHOINT.ORG - Organización Mundial de la Salud Real. Basado en diseño institucional de salud global.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: whoint
Tags: health, organization, responsive, custom-colors

This theme, like WordPress, is licensed under the GPL.
*/

/* ===============================================
   VARIABLES CSS - COLORES OFICIALES WHOINT
   =============================================== */
:root {
    --who-blue: #009CDE;
    --who-navy: #00205C;
    --who-dark-blue: #003366;
    --who-light-blue: #E6F4F8;
    --who-yellow: #FFB81C;
    --who-gray: #F5F5F5;
    --who-text: #333333;
    --who-white: #FFFFFF;
    --who-border: #DDDDDD;
}

/* ===============================================
   RESET Y BASE
   =============================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--who-text);
    background-color: var(--who-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ===============================================
   UTILIDADES
   =============================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}