/* Importar las fuentes */
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter-Regular.ttf') format('opentype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter-Medium.ttf') format('opentype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter-SemiBold.ttf') format('opentype');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter-Bold.ttf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Mulish';
    src: url('../fonts/Mulish/Mulish-Medium.ttf') format('opentype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Mulish';
    src: url('../fonts/Mulish/Mulish-ExtraBold.ttf') format('opentype');
    font-weight: 800;
    font-style: normal;
}
@font-face {
    font-family: 'Mulish';
    src: url('../fonts/Mulish/Mulish-Black.ttf') format('opentype');
    font-weight: 900;
    font-style: normal;
}


/* Global Adjustments */
body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    background-color: #FAFBFD;
}

h1, h2, h3 {
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
    padding: 0;
}

/* Header */
.site-header {
    width: 100%;
    background-color: #f2f0eb;
    box-shadow: 0 1px 3px 0 rgba(9, 100, 174, 0.102);
    height: 72px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

/* Contenedor del Header */
.header-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
}

/* Logo */
.logo img {
    height: 50px;
    width: auto;
}

/* Navbar */
.navbar {
    width: 100%;
    background-color: #0964AE;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 72px;
    z-index: 9;
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.navbar-left, .navbar-right {
    flex: 0 0 150px; 
}

.navbar-center {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.back-button {
    color: white;
    text-decoration: none;
    font-family: 'Inter';
    font-size: 1rem;
    font-weight: 500;
    padding: 0.25rem 41px;
    display: inline-block;
    transition: color 0.2s ease;
}

.back-button:hover {
    color: #cce6ff;
}


/* Menú */
.menu {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.menu li {
    display: inline;
}

.menu li a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Inter';
    padding: 9px 15px 2px 15px; /* Agrega espacio adicional abajo */
    display: inline-block; /* Necesario para que padding funcione correctamente */
    border-bottom: 3px solid transparent; /* Evita que los enlaces no activos se muevan */
    transition: color 0.3s ease;
}

.menu li a.active {
    border-bottom: 3px solid #fff;
    color: #fff;
}

/* Estilos tipográficos */

h1 {
    font-size: 2.5rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
    font-family: 'Mulish';
    font-weight: 500;
}
h1 strong {
    font-family: 'Mulish';
    font-weight: 800;
}

h2 {
    font-size: 1.75rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    font-family: 'Mulish';
    font-weight: 800;
}

h2 a {
    text-decoration: none;
    color: #051607;
    transition: color 0.3s;
}

h2 a:hover {
    color: #064b8e;
}

h3 {
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    font-family: 'Mulish';
    font-weight: 500;
}

h4 {
    font-size: 1.25rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    font-family: 'Inter';
    font-weight: 500;
}

body {
    font-size: 1rem;
    letter-spacing: -0.006em;
    line-height: 1.5;
    font-family: 'Inter';
    font-weight: 400;
}

body-small {
    font-size: 0.8125rem;
    letter-spacing: -0.003em;
    line-height: 1.3;
    font-family: 'Inter';
    font-weight: 400;
}

sm {
    font-family: 'Inter';
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.09em;
    line-height: 1;
    text-transform: uppercase;
}

xs {
    font-family: 'Inter';
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.09em;
    line-height: 1;
    text-transform: uppercase;
}
