/* ==========================================================================
   AIA Consultores y Constructores - Tipografía Corporativa
   ========================================================================== */

/* 1. POPPINS - Títulos Principales */
@font-face {
    font-family: 'Poppins';
    src: url('../font/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../font/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../font/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../font/Poppins-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* 2. FUTURA - Subtítulos */
@font-face {
    font-family: 'Futura';
    src: url('../font/FuturaCyrillicBook.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Futura';
    src: url('../font/FuturaCyrillicMedium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Futura';
    src: url('../font/FuturaCyrillicBold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* 3. GREAT VIBES - Mensajes Destacados */
@font-face {
    font-family: 'Great Vibes';
    src: url('../font/GreatVibes-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* 4. MONTSERRAT - Textos Largos */
@font-face {
    font-family: 'Montserrat';
    src: url('../font/Montserrat-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../font/Montserrat-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../font/Montserrat-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Variables globales de tipografía */
:root {
    --font-title: 'Poppins', sans-serif;
    --font-subtitle: 'Futura', sans-serif;
    --font-accent: 'Great Vibes', cursive;
    --font-text: 'Montserrat', sans-serif;
}

/* ==========================================================================
   APLICACIÓN GLOBAL DE LA TIPOGRAFÍA SEGÚN MANUAL
   ========================================================================== */

/* Textos Largos (Montserrat) e Inicialización de Body */
body {
    margin: 0;
    padding: 0;
}

body, p, a, div, li, td, th, input, textarea, button {
    font-family: var(--font-text) !important;
}

/* Títulos Principales (Poppins) */
h1, h2, h3, 
.title, .titulo, .main-title, .hero-title, .titulo-moderno, 
.section-header h2, .section-title, .svc-hero__title {
    font-family: var(--font-title) !important;
}

/* Subtítulos y Datos Técnicos (Futura) */
h4, h5, h6, 
.subtitle, .subtitulo, .card-subtitle, .feature-content h3, 
.section-header p, .section-header h6, .svc-card__title,
.nav-link, .dropdown-content a, .btn, .btn-primary, .btn-login,
.stat-label, .detalle-item .label, .detalle-item .value {
    font-family: var(--font-subtitle) !important;
}

/* Mensajes Destacados (Great Vibes) */
.firma, .emocional, .great-vibes, .accent-text,
.inicio-contacto-subtitle {
    font-family: var(--font-accent) !important;
}


