/* ============================================
   IMPLEMENTACIÓN COMPLETA DE FUENTE GOTHAM
   ============================================ */

/* Gotham Light (300) */
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* Gotham Light Italic (300) */
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

/* Gotham Regular (400) */
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Book.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Gotham Regular Italic (400) */
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-BookItalic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

/* Gotham Medium (500) */
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* Gotham Medium Italic (500) */
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

/* Gotham Bold (700) */
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Gotham Bold Italic (700) */
@font-face {
    font-family: 'Gotham';
    src: url('fonts/Gotham-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

/* Gotham Black (900) */
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* ============================================
   CLASES UTILITARIAS PARA USAR GOTHAM
   ============================================ */

/* Familia de fuentes con fallbacks robustos */
.font-gotham {
    font-family: 'Gotham', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

/* Diferentes pesos */
.gotham-light {
    font-family: 'Gotham', 'Roboto', Arial, sans-serif;
    font-weight: 300;
}

.gotham-regular {
    font-family: 'Gotham', 'Roboto', Arial, sans-serif;
    font-weight: 400;
}

.gotham-medium {
    font-family: 'Gotham', 'Roboto', Arial, sans-serif;
    font-weight: 500;
}

.gotham-bold {
    font-family: 'Gotham', 'Roboto', Arial, sans-serif;
    font-weight: 700;
}

.gotham-black {
    font-family: 'Gotham', 'Roboto', Arial, sans-serif;
    font-weight: 900;
}

/* ============================================
   APLICACIÓN EN ELEMENTOS HTML
   ============================================ */

/* Títulos principales */
h1, h2, h3 {
    font-family: 'Gotham', 'Roboto', Arial, sans-serif;
    font-weight: 700;
}

/* Subtítulos */
h4, h5, h6 {
    font-family: 'Gotham', 'Roboto', Arial, sans-serif;
    font-weight: 500;
}

/* Texto del cuerpo (opcional, si quieres usar Gotham en lugar de Roboto) */
body {
    font-family: 'Gotham', 'Roboto', Arial, sans-serif;
    font-weight: 400;
}

/* Botones */
.btn {
    font-family: 'Gotham', 'Roboto', Arial, sans-serif;
    font-weight: 500;
}

/* Navegación */
.nav-link {
    font-family: 'Gotham', 'Roboto', Arial, sans-serif;
    font-weight: 500;
}

