html,body{
    background-color: #fff;
    font-family: 'Source Sans Pro',sans-serif;
    overflow-x: hidden !important;
    margin: 0px !important;
    padding: 0px !important;
}

*{
    text-decoration: none !important;
}

/* ------------------------------------------------------------------------------------------------------------ */

.nav{
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    height: 80px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px 0 25px;
    background-color: #fff;
    box-shadow: 0 19px 38px rgba(0,0,0,0.10);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.nav .links a{
    margin-right: 25px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    transition: color 0.3s ease;
}

.nav .links a:hover{
    color: #e0501b; /* Cambia esto al color que prefieras */
}

.nav .links .mainlink{
    color: #e0501b;
}

.nav h4{
    font-size: 22px;
    font-weight: bold;
    margin-left: 25px;
}

/* ------------------------------------------------------------------------------------------------------------ */
/* LANDING CSS documentado para que no se me vaya a olvidar xd */

.landing {
    background-image: url(../../img/Gal1.1.png);
    background-size: cover;
    display: flex;
    flex-direction: row;
    justify-content: flex-end; /* Alinea el contenido a la derecha */
    align-items: center;
    padding: 0 10vw;
    height: 100vh;
    position: relative;
}

/* Superposición para desvanecer la imagen de fondo */
.landing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Fondo semitransparente */
    z-index: -1;
}

/* Estilos para el texto */
.landingText {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 35%; /* Limita el ancho del texto al 35% */
    margin-right: auto; /* Alinea a la izquierda dentro de su espacio asignado */
    margin-left: 65%; /* Empuja el texto desde la izquierda */
}

/* Estilos para la imagen de galopin */
.imglanding {
    max-width: 100%;
    margin-bottom: 20px;
}

/* Estilos para el texto principal */
.landingText h1 {
    font-size: 2vw; /* Ajusta según sea necesario, o usa un tamaño fijo en píxeles */
    margin: 0;
    padding: 20px;
    color: #000; /* Color del texto */
    word-wrap: break-word; /* Asegura que las palabras no se desborden */
}



/* ------------------------------------------------------------------------------------------------------------ */

/* Estilos para la sección del fondo */
.footer-bottom {
    background-color: rgb(230, 230, 230);
    height: 15vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Añadido para centrar verticalmente */
    padding-bottom: 20px;
    width: 100%; /* Añadido para asegurar que la sección ocupe todo el ancho */
    text-align: center; /* Añadido para centrar el texto */
}

