@font-face {
    font-family: 'Branding';
    src: url('../fonts/Branding Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Branding';
    src: url('../fonts/Branding Medium.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Branding';
    src: url('../fonts/Branding Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Branding';
    src: url('../fonts/Branding Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color: #0055b8;
    --secondary-color: #ffb600;
    --text-color: #333;
    --white: #ffffff;

    --font-family: 'Branding', sans-serif;
}

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

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

/* ========================
   ESTILOS BASE / ESTRUCTURA GLOBALES
   ======================== */

/* Contenedor principal */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Utilidades de texto */
.text-center {
    text-align: center;
}

.font-bold {
    font-weight: 700;
}

.font-black {
    font-weight: 900;
}

/* Estructura de grilla simple de 2 columnas */
.col-2-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.col-2-grid.reverse {
    flex-direction: row-reverse;
}

.col-half {
    flex: 1;
    min-width: 300px;
}

/* Imagen base fluida */
.img-placeholder {
    width: 100%;
    height: auto;
    display: block;
}