@charset "utf-8";

body {
    margin: 0px;
    font-family: 'Montserrat', sans-serif;
    background: url(./recursos/background.png);
    background-repeat: no repeat;
    background-attachment: fixed;
    background-size: cover;
}

/* Estilos del Menu Principal responsivo */

.menu-main {
    display: flex;
    justify-content: space-between;
    background: #ffffff;
    border-bottom: 1px solid #ffffff;
    height: 70px;
}

.menu-main a {
    flex: 1;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    color: #9b9b9b;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    justify-content: center;
    align-items: center;
}

.menu-main a:hover {
    background: rgba(0, 0, 0, .1);
}

@media (max-width: 768px) {
    .menu-main {
        height: auto;
        border-bottom: 0px;
        display: block;

    }

    .menu-main a {
        height: 45px;
        border-bottom: 1px solid #29487d;

    }
}

/* Estilo de la pleca */

.plecasup {
    position: relative;
    width: 100%;
    z-index: -1;
    background: none;
    margin-top: -2px;

}

/* Estilo del logo */

.img-logo {

    width: 250px;
    height: auto;
    margin-left: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
}

/* Estilos del Menú Hamburguesa responsivo */

.menu-toggle {
    font-size: 28px;
    cursor: pointer;
    background: none;
    border: none;
    color: #ffffff;
    position: absolute;
    top: 165px;
    left: 30px;
    z-index: 3;
    background: #691d33;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: changeColor 5s infinite alternate;
}

.menu-toggle:hover {
    background-color: #bc945c;
    transform: scale(1.1);
}

@keyframes changeColor {
    0% {
        background-color: #691d33; 
    }
    50% {
        background-color: #bc945c; 
    }
    100% {
        background-color: #691d33; 
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        top: 620px; 
        left: 15px;
      position: fixed;
        padding: 6px;
        font-size: 28px;
        background: #bc945c;
    }
}

@media (max-width: 380px) {
    .menu-toggle {
       top: 370px;
        left: 15px;
        position: fixed; 
        padding: 6px;
        font-size: 28px;
        background: #bc945c;
    }
}


/* Estilos del mismo menú pero ya por dentro */

.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(105, 29, 51, 0.92);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 2;
}

/* .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(105, 29, 51, 0.92);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 999; 
    overflow-y: auto; 
    padding: 20px;
} */

/* Para pantallas pequeñas (móviles) */
@media (max-width: 600px) {
    .menu {
        gap: 10px;
        padding: 15px;
        text-align: center;
    }
}


/* Menú visible */
.menu-open {
    opacity: 1;
    visibility: visible;
    overflow-y: scroll;
    /* top: 60px; */
}

.menu-open::-webkit-scrollbar {
    display: block;
}

/* Enlaces del menú */
.menu a {
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    color: #ddc9a2;
    font-size: 19px;
    padding: 10px 300px;
    width: 350px;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.menu a:hover {
    background-color: #ddc9a2;
    transform: scale(1.1);
    color: black;
    width: 440px;
}


/* Responsivo */
@media (max-width: 768px) {
    .menu a {
        font-size: 18px;
    }

    .menu-toggle {
        font-size: 24px;
    }

    .menu-open {
        top: 0px;
        overflow-x: hidden;
    }
}

@media (max-width: 480px) {
    .menu a {
        font-size: 16px;
    }

    .content h1 {
        font-size: 32px;
    }

    .menu-open {
        top: 0px;
        overflow-x: hidden;
    }
}

/* Titulo */

.titulo {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    /* padding: 15px 70px; */
}

.titulo h1 {
    color: #691C31;
    display: grid;
    font-weight: 800;
    text-align: center;
}

.titulo h3 {
    color: #A07B4A;
    font-weight: 800;
    font-size: 1.2em;
    margin-top: 20px;
}

/* Video */

.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70vh; /* Ocupa toda la pantalla */
}

video {
    max-width: 100%;
    height: auto;
    border-radius: 40px; /* Opcional: bordes redondeados */
}

/* Estilo del footer nuevo */

ul {
    list-style: none;
    padding-left: 0;
}

footer {
    background-color: #691C33;
    color: #bbb;
    line-height: 1.5;
}

footer a {
    text-decoration: none;
    color: #eee;
}

a:hover {
    text-decoration: underline;
}

.ft-title {
    color: #fff;
    font-family: "Merriweather", serif;
    font-size: 1.375rem;
    padding-bottom: 0.625rem;
}

.ft-text {
    color: #DDC8A1;
    width: 300px;
    font-size: 1.05rem;
    margin-top: 35px;
    padding-top: 1.25rem;
    text-align: center;
    padding-bottom: 1.25rem;
}

.footer-img {
    max-width: 100%;
    width: 300px;
    margin-top: 35px;
}

.footer-img-logo {
    max-width: 100%;
    width: 200px;
}

/* Footer main */

.ft-main {
    padding: 1px 2px;
    display: flex;
    flex-wrap: wrap;
}

@media only screen and (min-width: 230px) {
    .ft-main {
        justify-content: space-evenly;
    }
}

@media only screen and (min-width: 430px) {
    .ft-main {
        justify-content: space-evenly;
    }
}

@media only screen and (min-width: 1240px) {
    .ft-main {
        justify-content: space-evenly;
    }
}

.ft-main-item {
    padding: 1.25rem;
    min-width: 12.5rem;
}

.ft-main-item>p:first-child {
    border-left: 3px solid #DDC8A1;
    padding-left: 15px;
}

/* Footer social */

.ft-social {
    padding: 0 1.875rem 1.25rem;
}

.ft-social-list {
    display: flex;
    justify-content: center;
    padding-top: 3.25rem;
}

.ft-social-list li {
    margin: 0.5rem;
    font-size: 1.25rem;
}

.ft-social-pie {
    max-width: 100%;
    width: 100%;
}

.ft-social-list li a img {
    max-width: 100%;
    width: 60px;
}

@media (max-width: 768px) {
    .ft-social-pie {
        width: 100%;
        content: url('../img/Plecas/cenefa2.png');
        height: auto;
    }
}

.ft-social img {
    max-width: 100%;
    width: 100%;
}

/* Estilos del iframe */

.mid::-webkit-scrollbar {
    display: none;
}

.content {
    display: grid;
    align-items: center;
    grid-template-columns: 100%;
    column-gap: 15px;
}

.head {
    padding: 5px;
}


.navigation li {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    margin: 7px;
    width: 68%;
    height: 30px;
}

.hiperlis {
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    line-height: 1.2;
    text-decoration: none;
    text-wrap: wrap;
    width: 202px;
    height: 45px;
    text-decoration: none;
    text-align: center;
}

.hiperlis:hover {
    font-size: 19px;
}
