@font-face {
    font-family: 'MontserratLight';
    src: url('../Fuentes/MontserratAlternates-Bold.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* Espaciados */
.Espaciado1 {
    letter-spacing: -1px;
}
.Espaciado {
    letter-spacing: 4px;
}

/* Fondo adaptativo */
body {
    background-image: url('../Imagenes/Fondo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin: 0;
    font-family: 'MontserratLight', sans-serif;
}

/* Animación para los enlaces */
.animated-button {
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.animated-button:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(240, 227, 227, 0.3);
}

/* Títulos y textos */
h1 {
    font-size: 4.5vw;
    color: #999999;
    margin: -1% !important;
}
h3 {
    font-size: 4vw;
    color: #E66E23;
    margin: 1% 0% 0% -1% !important;
}

/* Espaciado adicional en móviles */
@media (max-width: 768px) {
    h1, h3 {
        font-size: 6vw;
    }
    .container {
        margin: 5% 0;
    }
}
