/* Estilo general */
* {
    border: 0;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: Georgia, 'Times New Roman', Times, serif;
    position: relative;
}

/* Estilo del fondo del body */
body {
    background-image: url('/imagenes/fondo2.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Estilo del aviso de cookies */
.aviso-cookies {
    display: none; /* Oculto por defecto */
    background: #fff;
    padding: 20px;
    width: calc(100% - 40px);
    max-width: 300px;
    line-height: 150%;
    border-radius: 10px;
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 100;
    padding-top: 60px;
    box-shadow: 0px 2px 20px 10px rgba(222, 222, 222, .25);
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

.aviso-cookies.activo {
    display: block; /* Muestra el aviso cuando tiene la clase 'activo' */
}

.aviso-cookies .galleta {
    max-width: 100px;
    position: absolute;
    top: -50px;
    left: calc(50% - 50px);
}

.aviso-cookies .titulo,
.aviso-cookies .parrafo {
    margin-bottom: 15px;
}

.aviso-cookies .boton {
    width: 100%;
    background: #595959;
    border: none;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    padding: 15px 20px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s ease all;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 14px;
}

.aviso-cookies .boton:hover {
    background: #000;
}

.aviso-cookies .enlace {
    color: #4DBFFF;
    text-decoration: none;
    font-size: 14px;
}

.aviso-cookies .enlace:hover {
    text-decoration: underline;
}

/* Fondo del aviso de cookies */
.fondo-aviso-cookies {
    display: none; /* Oculto por defecto */
    position: fixed;
    z-index: 99;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    backdrop-filter: blur(5px); /* Aplica el desenfoque al fondo */
    background: rgba(0, 0, 0, 0.3); /* Color de fondo semi-transparente para el overlay */
}

.fondo-aviso-cookies.activo {
    display: block; /* Muestra el fondo cuando tiene la clase 'activo' */
}

/* Estilo del header (banner) */
#banner{
    position: fixed;
    width: 100%;
    margin: 0px;
    top: 0px;
    z-index: 100;
} 
.caja-all{
    border: solid rgba(86,87,93,255) 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100px;
    min-height: 130px;
    flex-wrap: wrap;
    transition: all 300ms ease-out;
    font-family: "Orbitron", sans-serif;
    background: url(/try/imgs/fondobanner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    border: none;
}
.caja-all .link{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 2;
    width: 300px;
}
.caja-all .link nav ul{
    display: flex;
    text-decoration: none;
    list-style-type: none;
    padding: 0px;
}
#banner .link nav ul li a {
    font-size: 15px;
    text-decoration: none;
    margin: 0px 15px;
    color: white;
    cursor: pointer;
    font-family: "Orbitron", sans-serif;
    font-weight: 600;

}
#banner .link nav ul li a:hover{
    color: orchid;
    transition: color 0.3s ease;
}

.caja-all .name{
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 100;
    font-size: calc(0.5rem + 0.5vw);
    color: rgba(204,204,210,255);
    width: 200px;
    height: 50px;
    flex-grow: 2;
    padding: auto;
}
.name h1{
    font-family: "Orbitron", sans-serif;
}
.img{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 0.3;
}
.img img{
    width: 80px;
    transition: width 0.5s ease;
}
.name img{
    width: 80px;
    transition: width 0.5s ease;
    
}
.img img :hover{
    width: 110px;
}

.caja-all .contac{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 0.5;
    height: 50px;
}

#Contacto{
    width: 110px;
    height: 40px;
    border-radius: 20px;
    font-size: 15px;
    background-color: rgba(7,132,169,255);
    color: white;
    border: solid rgb(75,76,81) 2px;
    font-family: "Orbitron", sans-serif;
    cursor: pointer;
}
#Contacto:hover{
    background-color: white;
    color:  rgba(7,132,169,255);
    transition: background-color 0.3s ease, color 0.3s ease;
}


/* Parte 2 */

/* Espaciado superior para elementos específicos */
.part1 {
    margin-top: 140px;
}

/* Estilo del banner */
.baner3 {
    background-image: url(/imagenes/banner3.png);
    background-size: cover; /* Ajusta el tamaño de la imagen para cubrir todo el contenedor */
    background-repeat: no-repeat;
    color: #ffffff;
    padding: 30px 0;
    text-align: left;
    font-style: oblique;
    border-radius: 10px;
    margin: 10px;
    font-size: 16px;
    height: 180px;
}

.baner3 h1 {
    margin-left: 100px;
}

/* Contenedor de contenido principal */
.content {
    position: relative;
    margin: 5% 10% 2%;
    font-weight: 10;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Dos columnas de igual tamaño */
    gap: 20px;
}

/* Sección central dentro del contenido */
.centro {
    display: flex;
    gap: 10px;
    margin-bottom: -4%;
    margin-top: 2%;
}

/* Estilo para la imagen principal */
#imagen-principal {
    height: 30vw;
    position: relative;
    left: 5%;
}

/* Información destacada */
.info {
    margin-bottom: 8%;
    border-radius: 30px;
    justify-content: center;
    font-weight: 10;
    padding: 20px;
    width: 50%;
    margin-left: 7%;
    position: relative;
    margin-top: 7%;
}

.info h2 {
    font-size: 40px;
    text-align: center;
    color: #00b2f8;
    background-color: #ffffff;
    padding-top: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.info h3 {
    margin-top: 0;
    text-align: center;
    font-size: 50px;
    color: rgb(0, 89, 255);
    font-family: "Timmana", sans-serif;
    background-color: #ffffff;
    padding-top: 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

/* Triángulo decorativo para .info */
.triangulo0 {
    position: absolute;
    bottom: 140px; /* Ajusta la posición vertical según el tamaño del triángulo */
    left: 50%; /* Centra horizontalmente */
    transform: translateX(-50%); /* Centra horizontalmente con precisión */
    width: 0;
    height: 0;
    border-left: 50px solid transparent; /* Ajusta el tamaño del triángulo */
    border-right: 50px solid transparent; /* Ajusta el tamaño del triángulo */
    border-top: 50px solid #ffffff; /* Color del triángulo igual al fondo del contenedor */
}

/* Estilo para el formulario dentro de .info */
.info form {
    display: flex;
    justify-content: center;
    align-items: center;
}

.info p {
    margin-top: 15px;
    margin-right: 10px;
    color: white;
}

/* Botón dentro de .info */
.info button {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-style: oblique;
    padding: 30px 80px;
    margin-top: 50px;
    font-size: 45px;
    background-color: rgba(252, 85, 19, 0.596);
    color: #000000;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: bold;
}

.info button:hover {
    background-color: #0dbac0ad;
    color: rgb(0, 0, 0);
}

/* Estilo de la sección de consejos */
.consejos {
    background: rgba(0, 4, 255, 0.2);
    padding: 5px 0 90px 0;
    position: relative;
    margin-bottom: -400px;
}

.consejos0 {
    background-color: #000;
    border: solid 5px white;
    padding: 10px;
    margin: 3% 35%;
}

.consejos0 h1 {
    margin: 10px;
    color: rgb(0, 132, 255);
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

/* Triángulo decorativo para .consejos0 */
.triangulo {
    position: absolute;
    bottom: -20px; /* Ajusta la posición vertical según el tamaño del triángulo */
    left: 50%; /* Centra horizontalmente */
    transform: translateX(-50%); /* Centra horizontalmente con precisión */
    width: 0;
    height: 0;
    border-left: 20px solid transparent; /* Ajusta el tamaño del triángulo */
    border-right: 20px solid transparent; /* Ajusta el tamaño del triángulo */
    border-top: 20px solid #ffffff; /* Color del triángulo igual al fondo del contenedor */
}

/* Diseño de contenedores en la sección de consejos */
.consejos1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Dos columnas de igual tamaño */
    gap: 20px; /* Espacio entre los contenedores */
}

.contenedor0 {
    background-color: #00ccff;
    color: white;
    border: 1px solid #ddd;
    padding: 20px;
    text-align: center;
    width: 50%;
    margin-left: 25%;
    border-radius: 10px;
    border: none;
}

.contenedor0 h3 {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 17px;
}

/* Diseño de otro tipo de contenedor */
.contenedor1 {
    background-color: #8d8d8d;
    border: 1px solid #ddd;
    color: white;
    padding: 20px;
    text-align: center;
    max-width: 50%;
    margin-left: 25%;
    border-radius: 10px;
    border: none;
}

.contenedor1 h3 {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 17px;
}

/* Estilo para imagen de laptop */
.laptop {
    position: relative;
    width: 400px; /* Ajusta el tamaño de la imagen */
    transform: translate(-50%, -30%); /* Ajusta la posición para centrar la imagen */
    top: 50%; /* Ajusta verticalmente a la mitad del contenedor */
    left: 50%;
}

/* Parte 3 */

/* Estilo del footer */
.footer {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.589);
    border-top: 50px solid rgb(0, 174, 255);
    width: 100%;
    display: flex;
}

/* Enlaces en el footer */
.footer-links {
    width: 25%;
    padding: 0 15px;
    text-align: center;
    text-shadow: 1px 0px 0px black, 0px 1px 0px black, -1px 0px 0px black, 0px -1px 0px black;
    margin: 40px 30px 40px 20px;
}

.footer-links h4 {
    font-size: 15px;
    color: #FFFFFF;
    border-bottom: 2px solid #0c8de2;
    display: inline-block;
    margin-left: 15px;
}

.footer-links ul {
    list-style-type: none;
    color: #c4c1c1bb;
}

.footer-links ul li {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-style: oblique;
    font-size: 20px;
    font-weight: 100;
    margin: 30px 0;
    text-align: center;
}

.footer-links ul li a {
    font-size: 12px;
    text-decoration: none;
    color: #BBBBBB;
    transition: all .3s ease;
    padding: 15px;
}

.footer-links ul li a:hover {
    color: #ffffff;
    box-shadow: 0px 0px 10px 10px #1981c7a4;
    border-radius: 15px;
    background-color: black;
}

/* Enlaces sociales en el footer */
.social-links a {
    display: inline-block;
    min-height: 40px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    text-align: center;
    border-radius: 50%;
    color: #FFFFFF;
    transition: all .5s ease;
}

.social-links a:hover {
    background-color: #00C3FF;
}

.socialMedia img {
    width: 50px;
    top: 40px;
    margin: 0 12px;
    border-radius: 30px;
}

.was img {
    width: 45px;
    top: 35px;
}
.socialMedia .was img {
    top: 35px;
}

.socialMedia img:hover {
    box-shadow: 0px 0px 10px 8px #ffffff86; /* Sombra intensa */
    transform: translateY(5px);
    transition: all 300ms;
    background-color: rgb(255, 255, 255);
}

.socialMedia .was img:hover {
    background-color: rgba(9, 255, 0, 0.575);
}

.socialMedia .tiktok img:hover {
    background-color: rgba(0, 0, 0, 0.575);
}


/*Contactanos*/

#contact-form-container {
    position: fixed;
    bottom: 1%;
    left: 1%;
    width: 60%;
    height: 60%;
    background-image: url(/imagenes/silhouette-machu-picchu.png.png);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    opacity: 0; /* Inicialmente invisible */
    pointer-events: none; /* Evita la interacción mientras está oculto */
    transition: opacity 0.3s ease, visibility 0.3s ease; /* Transición suave */
    visibility: hidden; /* Oculta el contenedor */
    z-index: 1000;
    flex-direction: column;
    border-radius: 10px;
    border: 5px 5px 5px rgb(0, 119, 255);
}

/* Estilos cuando el contenedor está visible */
#contact-form-container.show {
    opacity: 1; /* Visible */
    pointer-events: auto; /* Permite la interacción cuando está visible */
    visibility: visible; /* Muestra el contenedor */
}

/* Estilos del formulario */
.contact-form {
    background: white;
    padding: 20px;
    border-radius: 8px;
}

#close-contact-form {
    background: rgb(158, 2, 2);
    color: rgb(255, 255, 255);
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    position: relative;
    left:47%;
    bottom: 60%;
}

#contact-form-header {
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

#contact-form-header h1 {
    margin: 0;
    font-size: 28px;
    color: #ffffff; /* Color de texto más oscuro para contraste */
}

#contact-intro-paragraph {
    margin-top: 10px;
    margin-bottom: 15px;
    font-size: 16px;
    color: #ffffff; /* Color de texto más suave */
    line-height: 1.5; /* Espaciado de línea para mejor legibilidad */
}

#contact-intro {
    width: 100%;
    height: 60px; /* Altura mayor para permitir hasta dos líneas de texto */
    padding: 10px;
    border-radius: 5px;
    resize: none;
    overflow: hidden;
    font-size: 16px;
    color: #ffffff; /* Color de texto más suave */
}

#contact-form-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

#contact-form-left, #contact-form-main, #contact-form-right {
    width: 32%;
    padding: 15px;
}

#contact-form-left, #contact-form-right {
    background-color: #0084ff81; /* Fondo claro para secciones laterales */
    border-radius: 5px;
    margin-left: 20px;
    margin-right: 20px;
    color: white;
}

#contact-form-main {
    background-color: #0084ff81; /* Fondo blanco para el formulario */
    border-radius: 5px;
}

#contact-form-container h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #ffffff;
}

#contact-form-container form label {
    display: block;
    margin: 10px 0 5px;
    color: #ffffff;
}

#contact-form-container form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#contact-form-container form button {
    padding: 10px 20px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

#contact-form-container form button:hover {
    background-color: #0056b3;
}

#contact-form-container .social-icons {
    display: flex;
    flex-direction: column;
}

#contact-form-container .social-icon {
    display: block;
    margin: 5px 0;
    color: #007BFF;
    text-decoration: none;
}

#contact-form-container .social-icon:hover {
    text-decoration: underline;
}
.social-icon{
    margin-left: 20px;
}
.social-icon img {
    width: 70px; /* Ajusta el tamaño deseado */
    height: auto; /* Mantiene la proporción de aspecto */
    transition: transform 0.3s ease; /* Añade una transición suave */
    margin-left: 40%;
    margin-top: 30px;
    background-color: rgba(0, 0, 0, 0.651);
    border-radius: 25px;
}


/* Estilos para pantallas con un ancho máximo de 1600px */

@media (max-width: 1600px) {
    /* Estilo del banner */
    .baner3 {
        font-size: 15px;
        background-size: 100%;
        height: 140px;
    }

    /* Estilo para los elementos dentro de #banner2 .menu2 */
    #banner2 .menu2 h1 {
        font-size: 25px;
        margin-top: 3px;
    }

    #banner2 .menu2 nav ul li a {
        font-size: 13px;
        margin: 0 -5px;
    }

    /* Estilo del botón de cita */
    .btn_quote2 {
        font-size: 15px;
        margin: 5px;
    }
    .info{
        margin-top: 80px;
    }
    /* Estilo de los títulos dentro de .info */
    .info h2 {
        font-size: 30px;
    }

    /* Estilo del contenedor del formulario de contacto */
    #contact-form-container {
        width: 50%;
        height: 70%;
    }

    #close-contact-form {
        left: 47%;
        bottom: 90%;
    }

    /* Estilo de los íconos sociales */
    .social-icon img {
        margin-top: 15px;
        width: 40px; /* Ajusta el tamaño deseado */
    }

    /* Estilo para el encabezado y contenido del formulario de contacto */
    #contact-form-container h2 {
        font-size: 15px;
    }

    #contact-form-content {
        display: flex;
        justify-content: space-between;
        width: 100%;
        height: 67%;
        margin-top: -30px;
    }

    /* Estilo de los campos del formulario de contacto */
    #contact-form-container form input, form textarea {
        width: 100%;
        padding: 10px;
        margin-bottom: 5px;
        border: 1px solid #ddd;
        border-radius: 4px;
        height: 30px;
    }

    #contact-form-container form label {
        font-size: 13px;
    }
}

  
/* Estilos para pantallas con un ancho máximo de 820px (para dispositivos móviles) */

@media (max-width: 1280px) { 

    /* Estilo para el contenedor del encabezado */
    .container_header2 {
        left: 10%;
        margin-left: 20%;
        margin-right: 20%;
    }

    /* Estilo para el banner */
    .baner3 {
        font-size: 8px;
        background-size: 100%;
        height: 0px;
        margin-top: 100px;
    }

    .baner3 h1 {
        margin-top: -20px;
        margin-left: 30px;
    }

    /* Oculta imágenes dentro del menú */
    .menu2 a img {
        display: none;
    }

    /* Estilo para la imagen principal */
    #imagen-principal {
        position: relative;
        bottom: 1%;
        margin-top: 10%;
        left: 10%;
    }

    /* Estilo para los elementos dentro de #banner2 .menu2 */
    #banner2 .menu2 h1 {
        font-size: 22px;
        margin-top: 13%;
        margin-left: 20px;
        font-weight: bold;
        font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;   
    }

    #banner2 .menu2 nav ul li a {
        font-size: 13px;
    }

    /* Estilo para el contenedor de información */
    .info {
        margin-bottom: 15%;
        margin-top: 15%;
        border-radius: 30px;
        justify-content: center;
        font-weight: 10;
        padding: 20px;
        width: 95%;
        margin-left: 2%;
    }

    .info h2 {
        font-size: 20px;
    }

    .info p {
        font-size: 11px;
    }

    .info input[type="text"] {
        padding: 9px;
        font-size: 12px;
        border: 2px solid #000000;
        border-radius: 8px;
        flex: 1;
        max-width: 300px; /* Ancho máximo del input */
        margin-right: 20px;
        margin-top: 20px;
    }
    .info button {
        font-weight: bold;
        font-size: 17px;
    }

    /* Estilo para los enlaces en el pie de página */
    .footer-links {
        width: 18%;
        padding: 0;
        text-align: center;
        position: relative;
        left: 7%;
        margin: 0 10px;
        margin-top: 3%;
        margin-bottom: 3%;
    }

    .footer-links ul li a {
        font-size: 10px;
        padding: 1px;
    }

    .footer-links h4 {
        margin-left: 20%;
        font-size: 15px;
    }

    .footer-links ul li {
        margin-left: 10%;
        padding: 0;
        padding-bottom: 1%;
    }

    /* Ajustes específicos para ciertos elementos en el pie de página */
    .footer-links:nth-child(1) {
        margin-left: 0px; /* Ajusta el valor según lo necesites */
    }

    .footer-links:nth-child(3) {
        margin-left: 0px; /* Ajusta el valor según lo necesites */
    }

    .footer-links:nth-child(4) {
        margin-left: 30px; /* Ajusta el valor según lo necesites */
    }

    .footer-links:nth-child(1) li {
        margin-left: 30px; /* Ajusta el valor según sea necesario */
    }

    .footer-links:nth-child(3) li {
        margin-left: 40px; /* Ajusta el valor según sea necesario */
    }

    .footer-links ul li a:hover {
        color: #ffffff;
        box-shadow: 0px 0px 10px 10px transparent;
        border-radius: 15px;
        background-color: transparent;
    }

    .footer-links ul :hover {
        color: #ffffff;
        box-shadow: 0px 0px 10px 10px #1981c7a4;
        border-radius: 15px;
        background-color: black;
    }

    /* Estilo para el encabezado */
    

    /* Estilo para el contenedor del formulario de contacto */
    #contact-form-container {
        width: 80%;
        height: 60%;
    }

    #close-contact-form {
        left: 47%;
        bottom: 90%;
    }

    .social-icon img {
        width: 40px; /* Ajusta el tamaño deseado */
        margin-top: 12px;
        margin-left: 35%;
    }

    #contact-form-container h2 {
        font-size: 15px;
    }

    #contact-form-content {
        display: flex;
        justify-content: space-between;
        width: 100%;
        height: 63%;
    }

    #contact-form-container form input, form textarea {
        width: 100%;
        padding: 10px;
        margin-bottom: 5px;
        border: 1px solid #ddd;
        border-radius: 4px;
        height: 10px;
    }

    #contact-form-container form label {
        font-size: 13px;
    }

    #contact-form-left, #contact-form-right {
        font-size: 13px;
    }

    /* Estilo para la imagen principal ajustada */
    #imagen-principal {
        margin-left: -70px;
        height: 300px;
        width: 600px;
    }

    /* Estilo para la imagen de laptop */
    .laptop {
        position: relative;
        width: 200px; /* Ajusta el tamaño de la imagen */
        transform: translate(-50%, -120%); /* Ajusta la posición para centrar la imagen */
        top: 50%; /* Ajusta verticalmente a la mitad del contenedor */
        left: 50%;
    }

    /* Estilo para los contenedores de contenido */
    .contenedor0 {
        padding: 20px;
        width: 70%;
        margin-left: 15%;
    }

    .contenedor0 h3 {
        font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
        font-size: 13px;
        align-items: center;
    }

    .contenedor1 {
        padding: 20px;
        text-align: center;
        max-width: 70%;
        margin-left: 15%;
    }

    .contenedor1 h3 {
        font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
        font-size: 13px;
        align-items: center;
    }

    /* Estilo para la sección de consejos */
    .consejos {
        background: rgba(0, 4, 255, 0.2);
        padding: 5px 0px 90px 0px;
        position: relative;
        margin-bottom: -200px;
    }

    .info h3 {
        font-size: 35px;
        z-index: 10;
    }

    /* Estilo para el contenedor de consejos */
    .consejos0 {
        width: 50%;
        margin-left: 25%;
    }
}

  @media (max-width: 600px){
    .baner3 {
        font-size: 6px;
        background-position: right;
        background-size: 200%;
        height: 100px;
        margin-top: 90px;
        padding-right: 50px;
    }
    .baner3 h1 {
        margin-top: -3px;
        margin-left: 30px;
    }
    .container_header2{
        left:13%;
        margin-left:0%;
        margin-right:0%;
    }
    #imagen-principal{
        display: none;
    }
    #contact-form-container {
        width: 90%;
        height: 40%;
        
    }
    #close-contact-form {
        left:43%;
        bottom: 90%;
    }
    #contact-form-header h1{
        font-size: 20px;
    }
    #contact-intro-paragraph{
        font-size: 13px;
    }
    .social-icon img {
        width: 15px; /* Ajusta el tamaño deseado */
        margin-top: 1px;
        margin-left: 35%;
    }
    #contact-form-container h2 {
        font-size: 12px;
    }
    #contact-form-content {
        display: flex;
        justify-content: space-between;
        width: 100%;
        height: 30%;
    }
    #contact-form-container form input, form textarea {
        width: 100%;
        padding: 10px;
        margin-bottom: 5px;
        border: 1px solid #ddd;
        border-radius: 4px;
        height: 5px;
    }
    #contact-form-container form label {
        font-size: 12px;
    }
    #contact-form-main{
        display: none;
    }
    #contact-form-left, #contact-form-right {
        font-size: 10px;
        margin-top: -30px;
        margin-left: 20px;
        margin-right:20px ;
        margin-bottom: -20px;
    }
    .laptop{
        display: none;
    }
    .contenedor0 {
        padding: 20px;
        width:90%;
        margin-left:5%;
        margin-right: 0%;
        padding: 10px;
    }
    .contenedor0 h3{
        font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
        font-size: 12px;
        align-items: center;
    }
    
    .contenedor1 {
        padding: 10px;
        max-width:90%;
        margin-left: 5%;
    }
    .contenedor1 h3{
        font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
        font-size: 12px;
        align-items: center;
    }
    .consejos{
        background: rgba(0, 4, 255, 0.2);
        padding: 5px 0px 90px 0px;
        position: relative;
        margin-bottom: -00px;
    }
    .info h3{
        font-size: 35px;
        z-index: 10;
    }
    .consejos0 {
        width: 90%;
        margin-left: 5%;
    }
    .footer-links {
        width: 18%;
        padding: 0;
        text-align:center;
        position: relative;
        left: -1%;
        margin: 0px 10px;
        margin-top: 3%;
        margin-bottom: 7%;
    }
    #banner2 .menu2 nav {
        margin-right: 0px; /* Espacio entre el nav y el botón */
        margin-left: 170px;
        margin-top: 10px;
    }
    .menu2 ul li {
        position: relative;
        right: 170px;
    }
    #banner2 .menu2 h1 {
        font-size: 22px;
        margin-top: 13%;
        margin-left: 2px;
        font-weight: bold;
        font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;   
    }
}
