@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
*{
    margin: auto;
    padding: 10px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
    text-shadow: #02784f 0.5px 0.5px 0.5px;
}
hr {
    width: 100%;
}
html{
    height: 100%;
}

body{
    min-height: 100vh;
}

header{
    position: fixed;
    top: 0%; left: 0%; right: 0;
    background: #06d675;
    box-shadow: 0.5px 10px #0a0a0a;
    padding: 0px 7%; 
    border-bottom: solid 1px #02a56c;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #02784f;
    padding: 10px 20px;
}

.logo {
    position:relative;
    margin-left: 0%;
    padding: 0%;
}

.logo img{
    width: 150px;
}

.menu {
    list-style: none;
    display: flex;
    align-items: center;
}

.menu li {
    position: relative;
}

.menu a {
    text-decoration: none;
    color: rgb(11, 11, 11);
    font-size: 18px;
    padding: 10px;
    display: block;
}

.menu li:hover > a {
    background-color: #0b0b0b;
    border-radius: 5px;
    border-bottom: #02784f solid 1px;
}

/* Submenú desplegable */
.submenu {
    display: none;
    position: relative;
    background-color: #b10d0d;
    top: 40px;
    left: 0;
    list-style: none;
    width: 30px;
    z-index: 10;
}

.submenu li {
    margin: 0;
    padding: 0;
}

.submenu a {
    padding: 10px;
    text-align: left;
}

.menu li:hover .submenu {
    display: block;

}

.menu-toggle {
    display: none;
    cursor: pointer;
    
}

.hamburger {
    width: 1px;
    height: 1px;
    background-color: rgb(9, 9, 9);
    position: absolute;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    width: 1px;
    height: 1px;
    background-color: rgb(134, 14, 14);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -10px;
}

.hamburger::after {
    top: 10px;
}

/*sections informative*/
section{
    margin-top:5%
}

/*SECCION TECNICA*/
.botton {
    display: flexbox;
    font-family: Arial, sans-serif;
    background-color: #fffcfc;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60vh;
}
#solicitud-form-container {
    display: none;
    background-color: rgba(255, 248, 248, 0.708);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
}
#solicitud-form {
    display: flex;
    flex-direction: column;
}
.form-field {
    margin-bottom: 15px;
}
label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}
input {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
#submit-btn {
    background-color: #28a745;
    color: white;
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
#submit-btn:hover {
    background-color: #218838;
}
#open-form-btn {
    background-color: #007bff;
    color: white;
    padding: 15px 20px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
#open-form-btn:hover {
    background-color: #0056b3;
}
/*pregalery*/
.matriz{
    display: flex;
    position: relative;
}
.matriz .img{
    width: 100%;
    align-content: center;
}
.matriz img{
    width: 800px;
    border-radius: 8%;


}

/*leyendafinal*/
.leyenda_final p{
    text-align: center;
}
/*footer*/
footer{
    width: 100%;
    padding: 0%;
    margin: 0%;
    height: auto;
    border-top: solid #02784f 1px;
    border-radius: 0.3% ;
}



@media only screen and (max-width: 500px) {
    section{
        margin-top: 100%;
    }

    nav{
        background-color: #eae4e4;
    }
    .menu {
        position: absolute;
        top: 60px;
        left: -100%;
        width: 100%;
        background-color: #fcf8f8;
        flex-direction: column;
        transition: all 0.3s ease;
    }

    .menu li {
        width: 100%;
        text-align: center;
    }

    .menu a {
        padding: 15px;
        display: block;
    }

    .menu.show {
        left: 0;
    }

    .menu-toggle {
        display: block;
    }

    .hamburger.active {
        background-color: transparent;
    }

    .hamburger.active::before {
        transform: rotate(45deg);
        top: 0;
    }

    .hamburger.active::after {
        transform: rotate(-45deg);
        top: 0;
    }

    /* Submenú para móviles */
    .submenu {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        background-color: #444;
    }

    .caja-l{
        width: 100%;
    
    }

    .caja-r{
        display: inline-block;
        width: 100%;
    }
    .sub-cajas{
        display: flex;
        width: 90%;
        align-content: center;
        justify-content: center;
        padding-left: 0%;
        margin-bottom:0%;
    }

    .sub-cajas img {
        width: 250px;
        margin-bottom: 0%;
    }

    .caja-img2 img{
        width: 150px;
        margin-left:20% ;
    }
}