/* 1. Definición de la fuente local Gotham Book */
@font-face {
    font-family: 'Gotham Book';
    src: url('../fonts/gotham-book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* 2. Aplicación de la fuente y paleta de colores del PDF */
body {
    font-family: 'Gotham Book', sans-serif; /* Usamos Gotham Book como fuente principal */
    color: #333;
}
:root {
    --color-primary: #0d1a2e; /* Azul oscuro del header */
    --color-secondary: #2c3e50; /* Azul para títulos */
    --color-accent: #3498db; /* Acento para botones o links */
    --color-light-bg: #f8f9fa; /* Fondo claro para secciones */
}
.bg-primary { background-color: var(--color-primary); }
.bg-secondary { background-color: var(--color-secondary); }
.bg-light { background-color: var(--color-light-bg); }
.text-secondary { color: var(--color-secondary); }
.text-accent { color: var(--color-accent); }

/* 3. Configuración del container */
.container {
    max-width: 1200px !important;
    margin-left: auto;
    margin-right: auto;
}

.swiper-button-next,
.swiper-button-prev {
    color: white;
    transform: scale(0.7);
}
.swiper-pagination-bullet-active {
    background-color: white;
}

/* Estilo para listas con guion largo */
.list-dash {
    list-style: none;
    padding-left: 0;
}
.list-dash li {
    text-indent: -1.5rem;
    padding-left: 1.5rem;
}
.list-dash li::before {
    content: '— ';
    font-weight: bold;
    color: var(--color-secondary);
}

/* Ocultar flechas de Swiper en móviles */
@media (max-width: 767px) {
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
} 