/* ==========================================================================
   TIPOGRAFÍA PERSONALIZADA & VARIABLES GLOBALES - ALIMAR
   ========================================================================== */

@font-face {
    font-family: 'Designer';
    src: url('../assets/fonts/designer-normal.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --azul-oscuro: #041833;
    --verde-alimar: #419b24;
    --verde-alimar-hover: #347c1c;
    --blanco: #ffffff;
    --fuente-titulos: 'Designer', Arial, sans-serif;
    --fuente-body: Arial, Helvetica, sans-serif; /* Cambiado a Arial */
}

/* Aplicar Arial de forma global a todo el sitio */
body, input, button, select, textarea {
    font-family: var(--fuente-body) !important;
}

/* Clases de utilidad para títulos */
.font-designer,
.titulo-alimar {
    font-family: var(--fuente-titulos) !important;
}