/* @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;1,300&family=Special+Gothic+Expanded+One&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --padding-container: 100px 0;
    --color-title: #001a49;
}

html,
body {
    height: 100%;
    scroll-snap-type: y proximity;
    scroll-behavior: smooth;
    font-family: "Inter", sans-serif;
    scroll-padding-top: 50px;
}

section:not(#clientes):not(.footer__copy):not(.footer):not(.footer__container) {
    height: 100vh;
    /* Pantalla completa */
    scroll-snap-align: start;
}

/* header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    transition: 0.7s;
    padding: 30px 20px;
} */

.container {
    width: 100%;
    /* max-width: 1200px; */
    margin: 0 auto;
    overflow: hidden;
    padding: var(--padding-container);
}

.hero {
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 800px;
    position: relative;
    display: grid;
    /* grid-template-rows: 100px 1fr; */
    color: #fff;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../src/img/fotosweb/INICIO.png);
    background-size: cover;
    z-index: -1;
}

/* NAV */


.nav {
    --padding-container: 0;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    z-index: 1000;
    padding: 20px 40px;
    transition: 0.5s;
}

.nav.abajo {
    background: #000;
    padding: 25px 50px;
    height: 70px;
}

.nav__logo img {
    margin-top: 5px;
    width: 200px;
}

.nav__title {
    font-weight: 300;
}

.nav__link {
    margin-left: auto;
    padding: 0;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    gap: 4em;
    font-weight: 500;
}

.nav__items {
    list-style: none;
}

.nav__links {
    margin-left: auto;
    padding: 0;
    text-decoration: none;
    color: #fff;
}

.nav__menu {
    margin-left: auto;
    cursor: pointer;
    display: none;
}

.nav__img {
    display: block;
    width: 30px;
}

.nav__close {
    display: var(--show, none);
}


/* HERO CONTAINER */

.hero__container {
    color: black;
    /* max-width: 800px; */
    --padding-container: 0;
    display: grid;
    grid-auto-rows: max-content;
    align-content: center;
    gap: 1em;
    padding-left: 70px;
    /* padding-bottom: 100px; */
    text-align: left;
}

.hero__title {
    font-size: 3rem;

}

.hero__paragraph {
    margin-bottom: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: #EDE208;
    /* text-shadow: 1px 1px 1px black, 0 0 3px gold; */
}

.hero__span {
    font-weight: 900;
    /* text-shadow: 1px 1px 1px black, 0 0 3px #EDE208; */
}

.cta {
    display: inline-block;
    background-color: grey;
    justify-self: center;
    color: #fff;
    text-decoration: none;
    padding: 13px 30px;
    border-radius: 32px;
}


/* ABOUT */


.container__about {
    display: flex;
    justify-content: space-between;
    /* Separa en dos columnas */
    align-items: center;
    /* Centra verticalmente */
    height: 100vh;
    min-height: 100vh;
    padding: 2rem;
    padding-bottom: 30px;
    background-image: url(../src/img/fotosweb/SERVICIOS.png);
    background-color: rgb(86, 86, 86);
    background-size: 0vh;
    background-position: center;
    background-size: cover;
    /* scroll-margin-top: 80px; */
}


.about {
    flex: 2;
    text-align: left;
    padding: 1rem;
    margin-left: 5%;
    max-width: 600px;
    padding-top: 70px;
    margin-top: 30px;
}


.subtitle {
    position: relative;
    font-size: 3rem;
    margin-bottom: 20px;
    z-index: 2;
    color: #E4E5E4;
    font-weight: 600;
}

.about__subtitle {
    color: rgb(235, 234, 234);
    position: relative;
    font-size: 3rem;
    margin-bottom: 20px;
    z-index: 2;
    color: #E4E5E4;
    font-weight: 600;
}

.about__text {
    position: relative;
    z-index: 1;
    line-height: 1;
    color: #E4E5E4;
    font-size: 15px;
    text-align: justify;
    font-weight: 400;
}

.about__list {
    padding-left: 20px;
    /* Espaciado para que no quede pegado */
    line-height: 1.3;
    font-size: 15px;
    color: #E4E5E4;
    font-weight: 400;
}

.about__list li {
    margin-bottom: 10px;
}

.about__cards {
    flex: 1;
    /* Sección derecha */
    display: flex;
    justify-content: right;
    align-items: center;
    padding: 2rem;
    /* Igual que en `.about` */
    margin-right: 5%;
    margin-top: 30px;
}

.about__main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 50px;
    margin-bottom: 85px;
}


.about__icons {
    width: 230px;
    /* Tamaño fijo para asegurar la forma */
    height: 230px;
    /* Igual al ancho para mantener proporción */
    background-color: #e4e5e4;
    /* Fondo para destacar */
    border-radius: 10%;
    /* Convierte en círculo */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    font-size: 14.5px;
}

.about__icon {
    width: 120px;
    margin-bottom: 25px;
}

.about__title {
    color: #2e2d2e;
    /* text-shadow: 1px 1px 1px black, 0 0 1px grey; */
    font-weight: 600;
}

.about__span {
    font-weight: 800;
    color: #EDE208;
}

/*------------------------------------------------------------------------!!!!!!!! KNOWLEDGE */


.knowledge {
    background-image: url(../src/img/fotosweb/QUIENES\ SOMOS.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    overflow: hidden;
}

.knowledge__subtitle {
    color: rgb(235, 234, 234);
    position: relative;
    font-size: 3rem;
    margin-bottom: 20px;
    z-index: 2;
    color: #E4E5E4;
    font-weight: 600;
}

.knowledge__container {
    display: grid;
    height: 100vh;
    max-width: 1200px;
    grid-template-columns: 2fr 1fr;
    gap: 2em;
    align-items: center;
    line-height: 1.3;
    font-size: 15px;
}

.knowledge__paragraph {
    font-weight: 400;
    color: #E4E5E4;
}

.knowledge__paragraph2 {
    font-weight: 400;
    color: #E4E5E4;
}

.knowledge__picture {
    display: flex;
    justify-content: center;
    /* Centra horizontalmente */
    gap: 20px;
    /* Espacio entre las cards */
}

.knowledge__span {
    font-weight: 800;
}

.profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Centra los elementos */
    justify-content: space-between;
    /* Distribuye bien los espacios */
    background-color: #E4E5E4;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
    width: 210px;
    /* Ajustamos tamaño uniforme */
    height: 280px;
    /* Igual altura en todas las cards */
}


.profile__name,
.profile__role {
    text-align: center;
}

/* .profile__info {
    display: flex;
    flex-direction: column; 
    justify-content: center;
}  */

.profile__role {
    color: #2E2D2C;
    font-weight: 400;
}

.profile__img {
    width: 100px;
    height: 100px;
    border-radius: 10%;
    margin-bottom: 30px;
    margin-top: 10px;
}

.profile__name {
    font-size: 18px;
    text-align: center;
    /* text-shadow: 1px 1px 1px grey; */
    font-weight: 800;
}

.profile__linkedin {
    margin-top: auto;
    /* Empuja el ícono de LinkedIn hacia abajo */
    display: flex;
    justify-content: center;
    align-items: center;
}

.linkedin__icon {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
}

.profile__linkedin:hover .linkedin__icon {
    transform: scale(1.2);
    /* Pequeño efecto al pasar el mouse */
}

/* PRICE */

.price {
    text-align: center;
}

.price__container {
    height: 100vh;
    background-image: url(../src/img/fotosweb/TRABAJOS-PROYECTOS.png);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1000;
    /* background-color: rgb(29, 147, 149); */
}

.subtitle__price {
    position: relative;
    font-size: 3rem;
    margin-top: -50px;
    z-index: 2;
    /* Asegura que quede sobre `.about__text` */
    color: #aaaaaa;
    /* text-shadow: 1px 1px 1px black; */
    font-weight: 600;
}

.price__table {
    padding-top: 25px;
    /* margin-top: 50px; */
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    justify-content: space-evenly;
    align-items: center;
    text-decoration: none;
}

.price__text {
    padding-top: 40px;
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.5rem;
    position: relative;
    font-size: 15px;
    margin-top: 30px;
    margin-bottom: 20px;
    /* text-shadow: 1px 1px 1px black; */
}

.price__button {
    text-decoration: none;
}

.price__element {
    background-image: url(../src/img/proyectosfondos/VER\ MÁS.png);
    background-size: contain;
    /* Ajusta la imagen para que se vea completa */
    background-repeat: no-repeat;
    /* Evita que se repita */
    background-position: center;
    /* Centra la imagen en el contenedor */
    text-align: center;
    border-radius: 13px;
    width: 1000px;
    height: 450px;
    padding: 50px;
    margin-top: 10px;
    transition: transform 0.3s ease;
}

.price__element:hover {
    transform: scale(1.05);
}

.price__name {
    color: #2E2D2C;
    font-weight: 600;
    font-size: 1.2rem;
    /* text-shadow: 1px 1px 1px black, 0 0 3px grey */
}

.price__price {
    font-size: 2.5rem;
    color: var(--color-price);
}

.price__items {
    margin-top: 35px;
    display: grid;
    /* gap: 1em; */
    /* padding: 0; */
    list-style: none;
    margin-bottom: 50px;
    justify-content: center;
    color: var(--color-items);
}

.price__img {
    width: 120px;
    /* Ajusta según el tamaño que quieras */
    height: 100px;
    transition: transform 0.3s ease;
}

/*-----------------------------------------------------------------------------------------------------------*/

/* SCROLLER */

.scroll {
    scroll-snap-align: start;
    position: relative;
    display: flex;
    width: 100%;
    overflow: hidden;
}

.scroll__title {
    text-align: center;
}

.subtitle--clientes {
    font-size: 2.5rem;
    font-weight: bold;
    background-color: #1E449C;
}


.scroll div {
    display: flex;
    justify-content: center;
    /* Centra horizontalmente */
    align-items: center;
    /* Centra verticalmente */
    gap: 20px;
    /* Espacio entre los logos */
    white-space: nowrap;
    animation: animate 50s linear infinite;
}

@keyframes animate {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.scroll:hover div {
    animation-play-state: paused;
}

.scroll__body {
    display: flex;
    background-color: #efefef;
    justify-content: center;
    align-items: center;
    min-height: 30vh;
}

.scroll__img1,
.scroll__img2,
.scroll__img3,
.scroll__img4,
.scroll__img5,
.scroll__img6,
.scroll__img7,
.scroll__img8,
.scroll__img9,
.scroll__img10,
.scroll__img11,
.scroll__img12,
.scroll__img13,
.scroll__img14,
.scroll__img15,
.scroll__img16,
.scroll__img17,
.scroll__img18,
.scroll__img19,
.scroll__img20,
.scroll__img21,
.scroll__img22 {
    width: 200px;
    height: 200px;
    margin: 0 25px;
    transition: .7s;
    cursor: pointer;
}



/* QUESTIONS */

#contacto {
    height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    /* Para mantener elementos centrados */
    align-items: center;
}

.questions {
    text-align: left;
    background-image: url(../src/img/fotosweb/CONTACTO.png);
    padding: 50px 20px;
}

.questions__container {
  position: relative; /* ya lo tienes */
  /* si quieres reservar espacio extra arriba, puedes añadir padding */
  padding-top: 100px;
}

.subtitle__questions {
  position: absolute;
  top: 70px;    /* distancia desde el top del contenedor */
  left: 180px;  /* distancia desde el left del contenedor */
  font-size: 3rem;
  color: #E4E5E4;
}



.form {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1em;
    width: 50%;
    margin-top: 50px;
    margin-left: 180px;
    margin-right: 180px;
}


.form__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5em;
}

.form__input {
    width: 30vw;
    padding: 12px;
    border: 2px solid #E4E5E4;
    /* Usa el dorado de los textos */
    background-color: #2E2D2C;
    font-size: 1rem;
    font-weight: 400;
    border-radius: 5px;
    color: white;
    outline: none;
}

.form__input::placeholder {
    color: rgb(255, 255, 255);
}

.form__input--message {
    min-height: 140px;
    resize: none;
}

.input__questions {
    width: 25%;
    margin-top: 40px;
    padding: 12px;
    background-color: #2E2D2C;
    /* Coincide con el botón .cta */
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 32px;
    /* Igual que el botón .cta */
    transition: background-color 0.3s ease-in-out;
}

input[type="submit"]:hover {
    background-color: #E4E5E4;
    /* Un gris más claro */
    color: white;
    transition: background-color 0.5s ease-in-out;
}

.map__questions {
    flex: 2;
    /* Igual al formulario, para que ambos ocupen el mismo espacio */
    padding-right: 120px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 1em;
    width: 50%;
}

.map__questions iframe {
    max-width: 100%;
}


/* FOOTER */

.footer {
    background-color: #1E449C;
}

.footer__title {
    font-weight: 300;
    font-size: 2rem;
    margin-bottom: 30px;
}

.footer__newsletter {
    margin-bottom: 15px;
}

.footer__title,
.footer__newsletter {
    color: #fff;
    font-size: 17px;
}

.footer__container {
    display: flex;
    max-width: 1200px;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #fff;
    padding-bottom: 60px;
}

.nav__link__footer {
    margin-left: auto;
    padding: 0;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    gap: 3em;
}

.nav--footer {
    padding-bottom: 20px;
    display: grid;
    gap: 1em;
    grid-auto-flow: row;
    height: 100%;
}

.nav__link--footer {
    display: flex;
    margin: 0;
    margin-right: 20px;
    flex-wrap: wrap;
}

.logo__footer img {
    padding-top: 10px;
    width: 275px;
}

.footer__inputs {
    display: flex;
    overflow: hidden;
}

.footer__input {
    background-color: #fff;
    height: 50px;
    display: block;
    padding-left: 10px;
    border-radius: 6px;
    font-size: 1rem;
    outline: none;
    border: none;
    margin-right: 16px;
}

.footer__submit {
    margin-left: auto;
    display: inline-block;
    height: 50px;
    padding: 0 20px;
    background-color: #2091F9;
    border: none;
    font-size: 1rem;
    color: white;
    border-radius: 6px;
    cursor: pointer;
}

.footer__linkedin {
    filter: invert(1);
    width: 40px;
}

.footer__copy {
    --padding-container: 30px 0;
    text-align: center;
    color: #fff;
}

.footer__copyright {
    font-weight: 300;
    margin-bottom: 10px;
    font-size: 15px;
}

.footer__social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}

.footer__social img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.footer__instagram img {
    width: 22px;
    /* antes 40px */
    height: 22px;
    /* mantiene proporción */
    object-fit: contain;
}

.footer__facebook img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.footer__icons {
    display: inline-flex;
    margin-bottom: 10px;
    margin-top: 10px;
}

.footer__img {
    width: 40px;
}

.footer__social img:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* ----------------------------------------WHATSAPP---------------------------------- */

.btn-wsp {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 25px;
    right: 25px;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
    transition: all 300ms ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-wsp:hover {
    background: #fff;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.3);
}

.img-wsp {
    padding-top: 2px;
    width: 50px;
    height: 50px;
    transition: filter 300ms ease;
}

/* Invertir el color del ícono al hacer hover */
.btn-wsp:hover .img-wsp {
    filter: brightness(0) saturate(100%) invert(41%) sepia(91%) saturate(749%) hue-rotate(94deg) brightness(95%) contrast(92%);
}


/* --------------------------------------------PROYECTOS--------------------------------------------- */
.body__proyectos {
    overflow-x: hidden;
    width: 100%; 
}
/*--------------------------------- VIVIENDAS -------------------------------------*/

.viviendas__container {
    background-image: url(../src/img/proyectosfondos/Frame\ 6.png);
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 50px 8%;
    gap: 30px;
}

.viviendas--subtitle__container {
    text-align: center;
    color: #E4E5E4;
    margin-bottom: 40px;
    margin-top: 75px;
}

.viviendas__subtitle {
    font-size: 2.7rem;
    color: #E4E5E4;
    font-weight: 600;
    text-align: center;
    margin-top: 50px;
}

.viviendas__gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    padding: 0 1rem;
    margin-top: 50px;
    box-sizing: border-box;
}

.viviendas__gallery img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    cursor: pointer;
    display: block;
    transition: transform 0.3s ease;
    border-radius: 7px;
}

.viviendas__gallery img:hover {
    transform: scale(1.1);
    /* Zoom leve al hacer hover */
}

/* EDIFICIOS */

.edificios__container {
    background-image: url(../src/img/proyectosfondos/Frame\ 7.png);
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 50px 8%;
    gap: 30px;
}

.edificios--subtitle__container {
    text-align: center;
    color: #E4E5E4;
    margin-bottom: 30px;
}

.edificios__subtitle {
    font-size: 2.7rem;
    color: #E4E5E4;
    font-weight: 600;
    text-align: center;
    /* margin-top: 30px; */
}

.edificios__gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
    /* margin-top: 30px; */
}

.edificios__gallery img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    cursor: pointer;
    display: block;
    transition: transform 0.3s ease;
    border-radius: 7px;
}

.edificios__gallery img:hover {
    transform: scale(1.1);
    /* Zoom leve al hacer hover */
}



/* INDUSTRIAS */

.industria__container {
    background-image: url(../src/img/proyectosfondos/Frame\ 8.png);
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 50px 8%;
    gap: 30px;
}

.industria--subtitle__container {
    text-align: center;
    color: #E4E5E4;
    margin-bottom: 30px;
}

.industria__subtitle {
    font-size: 2.7rem;
    color: #858585;
    font-weight: 600;
    text-align: center;
    margin-top: 50px;
}

.industria__gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 100px;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
    margin-top: 50px;
}


.industria__gallery img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    cursor: pointer;
    display: block;
    transition: transform 0.3s ease;
    border-radius: 7px;
}

.industria__gallery img:hover {
    transform: scale(1.1);
    /* Zoom leve al hacer hover */
}


/* PUENTES */

.puentes__container {
    background-image: url(../src/img/proyectosfondos/Frame\ 5.png);
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 50px 8%;
    gap: 30px;
}

.puentes--subtitle__container {
    text-align: center;
    color: #E4E5E4;
    margin-bottom: 50px;
}

.puentes__subtitle {
    font-size: 2.7rem;
    color: #E4E5E4;
    font-weight: 600;
    text-align: center;
    margin-top: 50px;
}

.puentes__gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 50px;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
    margin-top: 50px;
}


.puentes__gallery img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    cursor: pointer;
    display: block;
    transition: transform 0.3s ease;
    border-radius: 7px;
}

.puentes__gallery img:hover {
    transform: scale(1.1);
    /* Zoom leve al hacer hover */
}

/* HIDRAULICAS */

.hidraulicas__container {
    background-image: url(../src/img/proyectosfondos/Frame\ 9.png);
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 50px 8%;
    gap: 30px;
}

.hidraulicas--subtitle__container {
    text-align: center;
    color: #E4E5E4;
    margin-bottom: 50px;
}

.hidraulicas__subtitle {
    font-size: 2.7rem;
    color: #E4E5E4;
    font-weight: 600;
    text-align: center;
    margin-top: 50px;
}

.hidraulicas__gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 50px;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
    margin-top: 50px;
}


.hidraulicas__gallery img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    cursor: pointer;
    display: block;
    transition: transform 0.3s ease;
    border-radius: 7px;
}

.hidraulicas__gallery img:hover {
    transform: scale(1.1);
    /* Zoom leve al hacer hover */
}

/* CONTENCIONES */

.contenciones__container {
    background-image: url(../src/img/proyectosfondos/Frame\ 10.png);
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 50px 8%;
    gap: 30px;
}

.contenciones--subtitle__container {
    text-align: center;
    color: #E4E5E4;
    margin-bottom: 50px;
}

.contenciones__subtitle {
    font-size: 2.7rem;
    color: #E4E5E4;
    font-weight: 600;
    text-align: center;
    margin-top: 50px;
}

.contenciones__gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 50px;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
    margin-top: 50px;
}


.contenciones__gallery img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    cursor: pointer;
    display: block;
    transition: transform 0.3s ease;
    border-radius: 7px;
}

.contenciones__gallery img:hover {
    transform: scale(1.1);
    /* Zoom leve al hacer hover */
}


/* EDIFICIOS */

.edificios__container {
    background-image: url(../src/img/proyectosfondos/Frame\ 7.png);
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 50px 8%;
    gap: 30px;
}

.edificios--subtitle__container {
    text-align: center;
    color: #E4E5E4;
    margin-bottom: 30px;
}

.edificios__subtitle {
    font-size: 2.7rem;
    color: #E4E5E4;
    font-weight: 600;
    text-align: center;
    /* margin-top: 30px; */
}

.edificios__gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
    /* margin-top: 30px; */
}

.edificios__gallery img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    cursor: pointer;
    display: block;
    transition: transform 0.3s ease;
    border-radius: 7px;
}

.edificios__gallery img:hover {
    transform: scale(1.1);
    /* Zoom leve al hacer hover */
}

/* INDUSTRIAS */

.industria__container {
    background-image: url(../src/img/proyectosfondos/Frame\ 8.png);
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 50px 8%;
    gap: 30px;
}

.industria--subtitle__container {
    text-align: center;
    color: #E4E5E4;
    margin-bottom: 30px;
}

.industria__subtitle {
    font-size: 2.7rem;
    color: #858585;
    font-weight: 600;
    text-align: center;
    margin-top: 50px;
}

.industria__gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 100px;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
    margin-top: 50px;
}


.industria__gallery img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    cursor: pointer;
    display: block;
    transition: transform 0.3s ease;
    border-radius: 7px;
}

.industria__gallery img:hover {
    transform: scale(1.1);
    /* Zoom leve al hacer hover */
}

/* PUENTES */

.puentes__container {
    background-image: url(../src/img/proyectosfondos/Frame\ 5.png);
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 50px 8%;
    gap: 30px;
}

.puentes--subtitle__container {
    text-align: center;
    color: #E4E5E4;
    margin-bottom: 50px;
}

.puentes__subtitle {
    font-size: 2.7rem;
    color: #E4E5E4;
    font-weight: 600;
    text-align: center;
    margin-top: 50px;
}

.puentes__gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 50px;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
    margin-top: 50px;
}


.puentes__gallery img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    cursor: pointer;
    display: block;
    transition: transform 0.3s ease;
    border-radius: 7px;
}

.puentes__gallery img:hover {
    transform: scale(1.1);
    /* Zoom leve al hacer hover */
}

/* HIDRAULICAS */

.hidraulicas__container {
    background-image: url(../src/img/proyectosfondos/Frame\ 9.png);
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 50px 8%;
    gap: 30px;
}

.hidraulicas--subtitle__container {
    text-align: center;
    color: #E4E5E4;
    margin-bottom: 50px;
}

.hidraulicas__subtitle {
    font-size: 2.7rem;
    color: #E4E5E4;
    font-weight: 600;
    text-align: center;
    margin-top: 50px;
}

.hidraulicas__gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 50px;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
    margin-top: 50px;
}


.hidraulicas__gallery img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    cursor: pointer;
    display: block;
    transition: transform 0.3s ease;
    border-radius: 7px;
}

.hidraulicas__gallery img:hover {
    transform: scale(1.1);
    /* Zoom leve al hacer hover */
}


/* ESTADIOS */

.estadios__container {
    background-image: url(../src/img/proyectosfondos/Frame\ 11.png);
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 50px 8%;
    gap: 30px;
}

.estadios--subtitle__container {
    text-align: center;
    color: #E4E5E4;
    margin-bottom: 50px;
}

.estadios__subtitle {
    font-size: 2.7rem;
    color: #858585;
    font-weight: 600;
    text-align: center;
    margin-top: 50px;
}

.estadios__gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 100px;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
    margin-top: 50px;
}



.estadios__gallery img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    cursor: pointer;
    display: block;
    transition: transform 0.3s ease;
    border-radius: 7px;
}

.estadios__gallery img:hover {
    transform: scale(1.1);
}


/* ESPECIALES */

.especiales__container {
    background-image: url(../src/img/proyectosfondos/Frame\ 12.png);
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 50px 8%;
    gap: 30px;
}

.especiales--subtitle__container {
    text-align: center;
    color: #E4E5E4;
    margin-bottom: 50px;
}

.especiales__subtitle {
    font-size: 2.7rem;
    color: #E4E5E4;
    font-weight: 600;
    text-align: center;
    margin-top: 50px;
}

.especiales__gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 50px;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
    margin-top: 50px;
}



.especiales__gallery img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    cursor: pointer;
    display: block;
    transition: transform 0.3s ease;
    border-radius: 7px;
}

.especiales__gallery img:hover {
    transform: scale(1.1);
}

/* PATOLOGIAS */

.patologias__container {
    background-image: url(../src/img/proyectosfondos/Frame\ 13.png);
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 50px 8%;
    gap: 30px;
}

.patologias--subtitle__container {
    text-align: center;
    color: #E4E5E4;
    margin-bottom: 50px;
}

.patologias__subtitle {
    font-size: 2.7rem;
    color: #E4E5E4;
    font-weight: 600;
    text-align: center;
    margin-top: 50px;
}

.patologias__gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 50px;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
    margin-top: 50px;
}


.patologias__gallery img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    cursor: pointer;
    display: block;
    transition: transform 0.3s ease;
    border-radius: 7px;
}

.patologias__gallery img:hover {
    transform: scale(1.1);
}


/* --------------------------------------------------------------------------------------------*/
/* NAV PROYECTOS */

.nav--proyectos .nav__link {
    gap: 2em;
}

.nav--proyectos .nav__links {
    font-size: 1rem;
}

/* ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ */
/* ░░░░░░░░░░░░░░                                     MEDIA QUERIES / LANDING PAGE                                               ░░░░░░░░░░░░░░ */
/* ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ */

@media screen and (min-width: 1280px) and (max-width: 1440px) {
    .nav {
        --padding-container: 0;
        height: 90px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
        z-index: 1000;
        padding: 20px 40px;
        transition: 0.5s;
    }

    .nav.abajo {
        background: #000;
        padding: 25px 50px;
        height: 70px;
    }

    .nav__logo img {
        margin-top: 5px;
        width: 200px;
    }

    .nav__title {
        font-weight: 300;
    }

    .nav__link {
        margin-left: auto;
        padding: 0;
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: max-content;
        gap: 3em;
        font-weight: 500;
    }

    .about {
        padding-top: 100px;
    }

    .container__about {
        padding-bottom: 30px;
    }

    .price__element {
        margin-top: 80px;
            border-radius: 13px;
    }

}

@media screen and (min-width: 1024px) and (max-width: 1280px) {
.nav__menu {
        display: block;
    }

    .nav__link--menu {
        position: fixed;
        background-color: #000;
        top: 0;
        left: 0;
        height: 100%;
        width: 250px;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        z-index: 100;
        opacity: 0;
        pointer-events: none;
        transition: .7s opacity;
    }

    .nav__link--show {
        --show: block;
        opacity: 1;
        pointer-events: unset;
    }

    .nav__close {
        position: absolute;
        top: 30px;
        right: 30px;
        width: 30px;
        cursor: pointer;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .about {
        margin-right: 50px;
        margin-left: 70px;
    }

    .about__text,
    .about__list {
        font-size: 12px;
    }

    .about__icons {
        width: 175px;
        height: 175px;
    }

    .about__icon {
        width: 70px;
        height: 50px;
    }



    .knowledge {
        padding: 15px;
    }

    .knowledge__subtitle {
        font-size: 2.7rem;
    }

    .knowledge__texts {
        font-size: 12px;
    }

    .knowledge__container {
        grid-template-columns: 1fr;
        grid-template-rows: max-content 1fr;
        text-align: center;
        margin-top: -60px;
    }


    .knowledge__paragraph {
        padding-left: 70px;
        padding-right: 70px;
    }

    .knowledge__paragraph2 {
        padding-left: 70px;
        padding-right: 70px;
    }

    .knowledge__picture {
        padding-top: -30px;
    }

    .knowledge__picture {
        padding-top: -30px;
    }

    .subtitle__price {
        margin-top: -50px;

    }

    .price__table {
        margin-top: -90px;
    }

    .price__element {
        width: 800px;
        height: 600px;
            border-radius: 13px;
    }

    .subtitle__questions {
        top: 60px;
        font-size: 2.5rem;
        left: 110px;
    }

    .map__questions{
        margin-bottom: 20px;
    }

    .form {
        padding-left: 50px;
        margin-left: 40px;
        margin-right: 100px;
    }

    .map__questions {
        padding-right: 50px;
    }


    .footer__container {
        padding: 25px;
        align-items: center;
        text-align: center;
        gap: 1.2rem;
        /* Menos espacio entre bloques */
    }

    .logo__footer img {
        width: 200px;
        margin-bottom: 10px;
        padding-left: 30px;
    }

    .footer__social {
        flex-direction: row;
        gap: 1.5rem;
        margin-bottom: 10px;
    }

    .footer__inputs {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        margin-bottom: 10px;
    }

    .footer__input,
    .footer__submit {
        width: 100%;
        margin: 0;
    }

    .footer__title {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .footer__form {
        padding-right: 30px;
    }

    .footer__newsletter {
        font-size: 0.95rem;
        margin: 10px;
    }

    .nav__link__footer {
        grid-auto-flow: row;
        justify-content: center;
        gap: 1rem;
        margin-top: 10px;
    }

    .footer__copy {
        padding: 15px 0;
        font-size: 0.85rem;
    }
}

@media screen and (min-width: 920px) and (max-width: 1024px) {
    .nav__menu {
        display: block;
    }

    .nav__link--menu {
        position: fixed;
        background-color: #000;
        top: 0;
        left: 0;
        height: 100%;
        width: 250px;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        z-index: 100;
        opacity: 0;
        pointer-events: none;
        transition: .7s opacity;
    }

    .nav__link--show {
        --show: block;
        opacity: 1;
        pointer-events: unset;
    }

    .nav__close {
        position: absolute;
        top: 30px;
        right: 30px;
        width: 30px;
        cursor: pointer;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .about {
        margin-right: 50px;
        margin-left: 70px;
    }

    .about__text,
    .about__list {
        font-size: 12px;
    }

    .about__icons {
        width: 175px;
        height: 175px;
    }

    .about__icon {
        width: 70px;
        height: 50px;
    }



    .knowledge {
        padding: 15px;
    }

    .knowledge__subtitle {
        font-size: 2.7rem;
    }

    .knowledge__texts {
        font-size: 12px;
    }

    .knowledge__container {
        grid-template-columns: 1fr;
        grid-template-rows: max-content 1fr;
        text-align: center;
        margin-top: -60px;
    }


    .knowledge__paragraph {
        padding-left: 70px;
        padding-right: 70px;
    }

    .knowledge__paragraph2 {
        padding-left: 70px;
        padding-right: 70px;
    }

    .knowledge__picture {
        padding-top: -30px;
    }

    .knowledge__picture {
        padding-top: -30px;
    }

    .subtitle__price {
        margin-top: -50px;

    }

    .price__table {
        margin-top: -90px;
    }

    .price__element {
        width: 800px;
        height: 600px;
            border-radius: 13px;
    }

    .subtitle__questions {
        top: 60px;
        font-size: 2.5rem;
        left: 110px;
    }

    .map__questions{
        margin-bottom: 20px;
    }

    .form {
        padding-left: 50px;
        margin-left: 40px;
        margin-right: 100px;
    }

    .map__questions {
        padding-right: 50px;
    }


    .footer__container {
        padding: 25px;
        align-items: center;
        text-align: center;
        gap: 1.2rem;
        /* Menos espacio entre bloques */
    }

    .logo__footer img {
        width: 200px;
        margin-bottom: 10px;
        padding-left: 30px;
    }

    .footer__social {
        flex-direction: row;
        gap: 1.5rem;
        margin-bottom: 10px;
    }

    .footer__inputs {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        margin-bottom: 10px;
    }

    .footer__input,
    .footer__submit {
        width: 100%;
        margin: 0;
    }

    .footer__title {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .footer__form {
        padding-right: 30px;
    }

    .footer__newsletter {
        font-size: 0.95rem;
        margin: 10px;
    }

    .nav__link__footer {
        grid-auto-flow: row;
        justify-content: center;
        gap: 1rem;
        margin-top: 10px;
    }

    .footer__copy {
        padding: 15px 0;
        font-size: 0.85rem;
    }
}

@media screen and (min-width: 769px) and (max-width: 920px) {
    .nav__menu {
        display: block;
    }

    .nav__link--menu {
        position: fixed;
        background-color: #000;
        top: 0;
        left: 0;
        height: 100%;
        width: 250px;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        z-index: 100;
        opacity: 0;
        pointer-events: none;
        transition: .7s opacity;
    }

    .nav__link--show {
        --show: block;
        opacity: 1;
        pointer-events: unset;
    }

    .nav__close {
        position: absolute;
        top: 30px;
        right: 30px;
        width: 30px;
        cursor: pointer;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .about {
        width: 200px;
        /* padding-top: 150px; */
    }

    .about__main {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 15px;
        justify-items: center;
        margin-top: -10px;
    }

    .about__icons {
        width: 100px;
        height: 100px;
        font-size: 10px;
    }

    .about__icon {
        width: 50px;
        margin: 5px;
    }

    .about__cards {
        justify-content: center;
        margin-right: 0;
        padding: 1rem;
    }

    .about__text,
    .about__list {
        font-size: 12px;
    }

    .knowledge {
        padding: 15px;
    }

    .knowledge__subtitle {
        font-size: 2.7rem;
    }

    .knowledge__texts {
        font-size: 12px;
    }

    .knowledge__container {
        grid-template-columns: 1fr;
        grid-template-rows: max-content 1fr;
        text-align: center;
        margin-top: -50px;
    }


    .knowledge__paragraph {
        padding: 10px;
    }

    .knowledge__paragraph2 {
        padding-bottom: 10px;
    }

    .knowledge__picture {
        padding-top: -30px;
    }

    .price__element {
        margin-top: -20px;
        width: 600px;
        height: 400px;
        border-radius: 10px;
    }

    .subtitle__price {
        margin-top: -20px;

    }

    .subtitle__questions {
        top: 70px;
        font-size: 2.5rem;
        left: 120px;
    }

    .knowledge__picture {

        gap: 16px;
        /* achicamos el espacio entre cards */
        flex-wrap: wrap;
        /* por si no entran horizontalmente */
        justify-content: center;
    }

    .profile {
        width: 180px;
        /* más angosta */
        height: 240px;
        /* más corta */
        padding: 0.8rem;
        font-size: 0.95rem;
    }

    .profile__img {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
        margin-top: 8px;
    }

    .profile__name {
        font-size: 16px;
    }

    .profile__role {
        font-size: 0.9rem;
    }

    .linkedin__icon {
        width: 40px;
        height: 40px;
    }




    .form {
        padding-left: 50px;
        margin-left: 40px;
        margin-right: 100px;
    }

    .map__questions {
        padding-right: 50px;
    }

    .input__questions {
        width: 50%;
    }

    .footer__container {
        padding: 25px;
        align-items: center;
        text-align: center;
        gap: 1.2rem;
        /* Menos espacio entre bloques */
    }

    .logo__footer img {
        width: 200px;
        margin-bottom: 10px;
        padding-left: 30px;
    }

    .footer__social {
        flex-direction: row;
        gap: 1.5rem;
        margin-bottom: 10px;
    }

    .footer__inputs {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        margin-bottom: 10px;
    }

    .footer__input,
    .footer__submit {
        width: 100%;
        margin: 0;
    }

    .footer__title {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .footer__form {
        padding-right: 30px;
    }

    .footer__newsletter {
        font-size: 0.95rem;
        margin: 10px;
    }

    .nav__link__footer {
        grid-auto-flow: row;
        justify-content: center;
        gap: 1rem;
        margin-top: 10px;
    }

    .footer__copy {
        padding: 15px 0;
        font-size: 0.85rem;
    }
}

@media screen and (min-width: 480px) and (max-width: 769px) {
    .nav__menu {
        display: block;
    }

    .nav__link--menu {
        position: fixed;
        background-color: #000;
        top: 0;
        left: 0;
        height: 100%;
        width: 250px;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        z-index: 100;
        opacity: 0;
        pointer-events: none;
        transition: .7s opacity;
    }

    .nav__link--show {
        --show: block;
        opacity: 1;
        pointer-events: unset;
    }

    .nav__close {
        position: absolute;
        top: 30px;
        right: 30px;
        width: 30px;
        cursor: pointer;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__paragraph {
        font-size: 2.2rem;
        margin-left: -40px;
    }

    .about {
        width: 200px;
        padding-top: 100px;
        margin-left: -20px;
    }

    .about__main {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 20px;
        justify-items: center;
    }

    .about__icons {
        width: 100px;
        height: 100px;
        font-size: 9px;
    }

    .about__icon {
        margin: 10px;
        width: 40px;
    }

    .about__cards {
        justify-content: center;
        margin-right: -10px;
        padding: 10px;
        padding-top: 40px;
    }

    .about__text,
    .about__list {
        font-size: 12px;
    }

    .knowledge {
        padding: 15px;
    }

    .knowledge__container {
        grid-template-columns: 1fr;
        grid-template-rows: max-content 1fr;
        text-align: center;
        margin-top: -50px;
    }

    .knowledge__paragraph {
        font-size: 12px;
    }

    .knowledge__paragraph2 {
        font-size: 12px;
    }


    .knowledge__picture {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        margin-top: 50px;
    }

    .profile {
        width: 85vw;
        max-width: 260px;
        height: auto;
        padding: 0.8rem;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .profile__img {
        width: 60px;
        height: 60px;
        margin: 0;
        flex-shrink: 0;
    }

    .profile__name {
        font-size: 15px;
        text-align: center;
        font-weight: 700;
        flex-grow: 1;
    }

    .profile__linkedin {
        margin: 0;
        flex-shrink: 0;
    }

    .linkedin__icon {
        width: 36px;
        height: 36px;
    }

    .profile__role {
        display: none;
        /* Ocultamos el rol si no entra bien */
    }


    .subtitle__price {
        margin-top: -10px;
    }

    .price__element {
        width: 500px;
        height: 300px;
        margin-top: 60px;
    }

    .subtitle__questions {
        margin-top: 60px;
        padding-right: 500px;
        left: 120px;
    }

    .form {
        padding-left: 50px;
        margin-left: 40px;
        margin-right: 100px;
    }

    .map__questions {
        padding-right: 50px;
    }

    .input__questions {
        width: 50%;
    }

    .footer__container {
        padding: 25px;
        align-items: center;
        text-align: center;
        gap: 1.2rem;
        /* Menos espacio entre bloques */
    }

    .logo__footer img {
        width: 200px;
        margin-bottom: 10px;
        padding-left: 30px;
    }

    .footer__social {
        flex-direction: row;
        gap: 1.5rem;
        margin-bottom: 10px;
    }

    .footer__inputs {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        margin-bottom: 10px;
    }

    .footer__input,
    .footer__submit {
        width: 100%;
        margin: 0;
    }

    .footer__title {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .footer__form {
        padding-right: 30px;
    }

    .footer__newsletter {
        font-size: 0.95rem;
        margin: 10px;
    }

    .nav__link__footer {
        grid-auto-flow: row;
        justify-content: center;
        gap: 1rem;
        margin-top: 10px;
    }

    .footer__copy {
        padding: 15px 0;
        font-size: 0.85rem;
    }
}

@media (max-width: 600px) {
    .map__questions {
        display: none;
    }

    .form__container {
        margin-top: 100px;
        align-items: center;
        width: 100%;
    }

    .form__input {
        width: 100%;
    }

    .input__questions {
        width: 100%;
        text-align: center;
    }
}


@media (min-width: 440px) and (max-width: 480px) {
    .nav__menu {
        display: block;
    }

    .nav__link--menu {
        position: fixed;
        background-color: #000;
        top: 0;
        left: 0;
        height: 100%;
        width: 250px;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        z-index: 100;
        opacity: 0;
        pointer-events: none;
        transition: .7s opacity;
    }

    .nav__link--show {
        --show: block;
        opacity: 1;
        pointer-events: unset;
    }

    .nav__close {
        position: absolute;
        top: 30px;
        right: 30px;
        width: 30px;
        cursor: pointer;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__paragraph {
        font-size: 2.2rem;
        margin-left: -40px;
    }

    .about {
        width: 200px;
        padding-top: 150px;
        margin-left: -20px;
    }

    .about__main {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 30px;
        justify-items: center;
    }

    .about__icons {
        width: 120px;
        height: 120px;
        font-size: 9px;
    }

    .about__subtitle {
        margin-top: -100px;
    }

    .about__icon {
        width: 40px;
    }

    .about__cards {
        justify-content: center;
        margin-right: -10px;
        padding: 10px;
        padding-top: 40px;
    }

    .about__text,
    .about__list {
        font-size: 10px;
    }

    .knowledge {
        padding: 15px;
    }

    .knowledge__container {
        grid-template-columns: 1fr;
        grid-template-rows: max-content 1fr;
        text-align: center;
        margin-top: -50px;
    }

    .knowledge__paragraph {
        font-size: 12px;
    }

    .knowledge__paragraph2 {
        font-size: 12px;
    }


    .knowledge__picture {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding-top: 30px;
    }

    .profile {
        width: 85vw;
        max-width: 260px;
        height: auto;
        padding: 0.8rem;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .profile__img {
        width: 60px;
        height: 60px;
        margin: 0;
        flex-shrink: 0;
    }

    .profile__name {
        font-size: 15px;
        text-align: center;
        font-weight: 700;
        flex-grow: 1;
    }

    .profile__linkedin {
        margin: 0;
        flex-shrink: 0;
    }

    .linkedin__icon {
        width: 36px;
        height: 36px;
    }

    .profile__role {
        display: none;
        /* Ocultamos el rol si no entra bien */
    }


    .subtitle__price {
        margin-top: -10px;
    }

    .price__element {
        width: 500px;
        height: 300px;
        margin-top: 70px;
    }

    .subtitle__questions {
        margin-top: 60px;
        left: 60px;
    }

    .form {
        width: 100%;
        margin: 0 auto;
        align-items: center;
        justify-content: center;
    }

    .form__container {
        margin-top: 100px;
        align-items: center;
        width: 80%;
    }

    .form__input {
        width: 100%;
    }

    .input__questions {
        width: 100%;
        text-align: center;
    }


    .footer__container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.2rem;
    }

    .logo__footer {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: -30px;
        margin-bottom: 0.5em;
    }

    .logo__footer img {
        width: 180px;
        margin-bottom: 0.8rem;
    }

    .footer__form {
        margin-left: 25px;
    }

    .footer__social {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        margin-bottom: 0.5rem;
        margin-left: 1rem;
    }

    .footer__inputs {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        margin-bottom: 0.8rem;
    }

    .footer__input,
    .footer__submit {
        width: 100%;
        max-width: 220px;
        height: 45px;
        font-size: 0.95rem;
    }

    .footer__copy {
        padding: 1rem 0;
        border-top: 1px solid #fff;
        width: 100%;
    }

    .footer__copyright {
        font-size: 0.8rem;
        margin-top: 0.5rem;
    }

    .footer__title,
    .footer__newsletter {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .footer__icons {
        margin: 0.5rem 0;
    }

    .footer__social img {
        width: 26px;
        height: 26px;
    }

}

@media (min-width: 400px) and (max-width: 440px) {
    .nav__menu {
        display: block;
    }

    .nav__link--menu {
        position: fixed;
        background-color: #000;
        top: 0;
        left: 0;
        height: 100%;
        width: 250px;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        z-index: 100;
        opacity: 0;
        pointer-events: none;
        transition: .7s opacity;
    }

    .nav__link--show {
        --show: block;
        opacity: 1;
        pointer-events: unset;
    }

    .nav__close {
        position: absolute;
        top: 30px;
        right: 30px;
        width: 30px;
        cursor: pointer;
    }

    .nav__logo img{
        width: 175px;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__paragraph {
        font-size: 2.2rem;
        margin-left: -50px;
    }

    .about {
        width: 200px;
        padding-top: 150px;
        margin-left: -20px;
    }

    .about__main {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 30px;
        justify-items: center;
    }

    .about__icons {
        width: 120px;
        height: 120px;
        font-size: 9px;
    }

    .about__subtitle {
        margin-top: -100px;
    }

    .about__icon {
        width: 40px;
    }

    .about__cards {
        justify-content: center;
        margin-right: -10px;
        padding: 10px;
        padding-top: 40px;
    }

    .about__text,
    .about__list {
        font-size: 10px;
    }

    .knowledge {
        padding: 15px;
    }

    .knowledge__container {
        grid-template-columns: 1fr;
        grid-template-rows: max-content 1fr;
        text-align: center;
        margin-top: -50px;
    }

    .knowledge__paragraph {
        font-size: 12px;
    }

    .knowledge__paragraph2 {
        font-size: 12px;
    }


    .knowledge__picture {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding-top: 30px;
    }

    .profile {
        width: 85vw;
        max-width: 260px;
        height: auto;
        padding: 0.8rem;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .profile__img {
        width: 60px;
        height: 60px;
        margin: 0;
        flex-shrink: 0;
    }

    .profile__name {
        font-size: 15px;
        text-align: center;
        font-weight: 700;
        flex-grow: 1;
    }

    .profile__linkedin {
        margin: 0;
        flex-shrink: 0;
    }

    .linkedin__icon {
        width: 36px;
        height: 36px;
    }

    .profile__role {
        display: none;
        /* Ocultamos el rol si no entra bien */
    }


    .subtitle__price {
        margin-top: -10px;
    }

    .price__element {
        width: 500px;
        height: 300px;
        margin-top: 70px;
    }

    .subtitle__questions {
        margin-top: 60px;
        left: 60px;
    }

    .form {
        width: 100%;
        margin: 0 auto;
        align-items: center;
        justify-content: center;
    }

    .form__container {
        margin-top: 100px;
        align-items: center;
        width: 80%;
    }

    .form__input {
        width: 100%;
    }

    .input__questions {
        width: 100%;
        text-align: center;
    }


    .footer__container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.2rem;
    }

    .logo__footer {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: -30px;
        margin-bottom: 0.5em;
    }

    .logo__footer img {
        width: 180px;
        margin-bottom: 0.8rem;
    }

    .footer__form {
        margin-left: 25px;
    }

    .footer__social {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        margin-bottom: 0.5rem;
        margin-left: 1rem;
    }

    .footer__inputs {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        margin-bottom: 0.8rem;
    }

    .footer__input,
    .footer__submit {
        width: 100%;
        max-width: 220px;
        height: 45px;
        font-size: 0.95rem;
    }

    .footer__copy {
        padding: 1rem 0;
        border-top: 1px solid #fff;
        width: 100%;
    }

    .footer__copyright {
        font-size: 0.8rem;
        margin-top: 0.5rem;
    }

    .footer__title,
    .footer__newsletter {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .footer__icons {
        margin: 0.5rem 0;
    }

    .footer__social img {
        width: 26px;
        height: 26px;
    }
}
