@font-face {
    font-family: 'TitleFont';
    src: url('../fuentes/Centra-No2-Bold.ttf') format('truetype');
}
@font-face {
    font-family: 'BodyFont';
    src: url('../fuentes/Manrope-Medium.ttf') format('truetype');
}
@font-face {
    font-family: 'SemiDarkFont';
    src: url('../fuentes/Manrope-SemiBold.ttf') format('truetype');
}

/* Estilos personalizados para aplicar las fuentes */
h1, h2, h3 {
    font-family: 'TitleFont', sans-serif;
}
body, p {
    font-family: 'BodyFont', sans-serif;
}
.semi-dark-text {
    font-family: 'SemiDarkFont', sans-serif;
    font-weight: 600;
}

/* Estilos del modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.modal.active {
    display: flex;
}
.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    max-width: 500px;
    width: 100%;
}

.lang-link:hover {
    color: #35B9EC;
}

.active-lang {
    font-weight: 900;
    color: #35B9EC;
}

.g-recaptcha {
    transform: scale(0.90); /* Escala el reCAPTCHA */
    transform-origin: 0 0; /* Asegura que el widget se mantenga alineado */
}

.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}