/*FUENTES GENERALES*/
@font-face {
    font-family: "Normal";
    src: url(fonts/Gidole/Gidole-Regular.ttf);
}
@font-face {
    font-family: "Titles";
    src: url(fonts/Outfit/Outfit-VariableFont_wght.ttf);
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    font-family: titles;
}

body {
    font-family: Normal;
    background-color: #00091A;
    overflow-x: hidden;
}

/* CABECERA GENERAL */
header {
    width: 100%;
}

.cabecera {
    background: #DC052D;
    display: flex;
    align-items: center; 
    justify-content: flex-start;
    padding: 15px 10vw;
    height: auto;
    min-height: 65px;
    color: white;
    font-family: "Titles", sans-serif;
    font-weight: 800;
    font-size: 14px;
}

.cajaCabecera {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.cabecera img {
    width: 50px;
    height: auto;
}

.cabecera h1 {
    margin-left: 15px;
    font-size: 1.5rem;
}

.nav {
    background: #C60428;
    padding: 10px 10vw;
}

.nav .CajaCabecera {
    display: flex;
    flex-direction: row; 
    justify-content: flex-start; 
    align-items: center; 
    flex-wrap: wrap;
}

.nav a {
    font-family: "Normal", sans-serif;
    color: white;
    text-decoration: none;
    padding: 8px 10px;
    margin: 5px 0;
    transition: text-decoration 0.3s ease-in-out;
}

.paginaSeleccionada {
    font-family: normal;
    font-weight: bold;
}

.nav a:hover {
    text-decoration: underline solid 2px white;
}

/* BLOQUE DE INFORMACIÓN */
.containerCuadro {
    width: 100%;
    display: flex;
    justify-content: center;
}

.cuadro {
    width: 80%;
    max-width: 1200px;
    padding: 3%;
    color: white;
    background: #000E29;
}

/* FOOTER GENERAL */
footer {
    background: #DC052D;
    padding: 5vh 10vw;
    width: 100%;
}

.partners p {
    font-family: titles;
    font-weight: 800;
    color: white;
    text-align: center;
    font-size: 24px;
}

.imagenesPartners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

.imagenesPartners img {
    width: 70px;
    height: auto;
    margin: 10px;
    transition: transform 0.5s ease;
}

.imagenesPartners img:hover {
    transform: scale(1.20);
}

.enlaces {
    margin: 50px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.bloqueEnlaces {
    margin: 15px;
    min-width: 150px;
}

.bloqueEnlaces h4 {
    font-family: titles;
    font-weight: 600;
    color: white;
}

.bloqueEnlaces a {
    font-family: Normal;
    font-weight: 50;
    color: white;
    text-decoration: none;
    display: block;
    padding: 15px 0 0 0;
}

.bloqueEnlaces a:hover {
    text-decoration: underline solid 2px white;
}

.logo {
    display: flex;           
    justify-content: center; 
    align-items: center;     
    margin: 30px auto;       
    width: 100%;           
}

.logo img {
    width: 100px;
    height: auto;
    display: block; 
}

.redesSociales {
    display: flex;
    margin: 50px 0;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.redesSociales img {
    height: 35px;
    width: auto;
}

.desarrolladora {
    color: rgb(255, 154, 154);
    text-align: center;
}

/* Media queries para responsive */
@media only screen and (max-width: 1200px) {
    .cuadro {
        width: 90%;
    }
    
    .imagenesPartners img {
        width: 60px;
        margin: 8px;
    }
}

@media only screen and (max-width: 992px) {
    .cabecera {
        padding: 15px 5vw;
    }
    
    .nav {
        padding: 10px 5vw;
    }
    
    .nav .CajaCabecera {
        justify-content: center;
    }
    
    .nav a {
        text-align: center;
    }
    
    .cuadro {
        width: 95%;
        padding: 20px;
    }
    
    .enlaces {
        gap: 10px;
    }
    
    .bloqueEnlaces {
        margin: 10px;
    }
}

@media only screen and (max-width: 768px) {
    .cabecera {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .cajaCabecera {
        flex-direction: column;
        justify-content: center;
    }
    
    .cabecera img {
        margin-bottom: 10px;
    }
    
    .cabecera h1 {
        margin-left: 0;
        font-size: 1.2rem;
    }
    
    .nav {
        padding: 5px;
    }
    
    .nav a {
        padding: 8px 5px;
        font-size: 0.9rem;
    }
    
    .cuadro {
        width: 100%;
        padding: 15px;
    }
    
    .redesSociales {
        gap: 15px;
    }
    
    .redesSociales img {
        height: 30px;
    }
    
    .imagenesPartners img {
        width: 50px;
        margin: 5px;
    }
    
    .partners p {
        font-size: 20px;
    }
    
    .logo img {
        width: 80px;
    }
}

@media only screen and (max-width: 576px) {
    .cabecera h1 {
        font-size: 1rem;
    }
    
    .nav a {
        font-size: 0.8rem;
        padding: 6px 4px;
    }
    
    .cuadro {
        padding: 10px;
    }
    
    .bloqueEnlaces {
        width: 100%;
        text-align: center;
        margin: 5px 0;
    }
    
    .bloqueEnlaces h4 {
        margin-top: 15px;
    }
    
    .desarrolladora {
        font-size: 0.8rem;
    }
    
    .imagenesPartners img {
        width: 40px;
    }
}