*, *::before, *::after {
  box-sizing: border-box;
}

html{
    box-sizing: border-box;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}


body{
    background-color: #FFFFFF;
    font-family: sans-serif;
    margin: 0;    
}


/* DISEÑO NAVBAR */

.Navbar {
  width: 100%;
  height: 10dvh;
  display: flex;
  flex-direction: row;
  position: relative; 
}

.Navbar-Izquierda{
    width: 35%;
    height: 10dvh;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.Navbar-Izquierda ul{
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
}
.Navbar-Izquierda li{
    list-style: none;
    margin: 15px;
    display: flex;
}

.Navbar-Izquierda a{
    text-decoration: none;
    color: black;
    font-size: 20px;
}

.Navbar-Centro{
    width: 30%;
    height: 10dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; 
}

.Navbar-Centro h2{
    font-family: "Jolly Lodger", system-ui;
    font-weight: 400;
    font-style: normal;
    color: #00C76F;
    font-size: 60px;
}

.Navbar-Derecha{
    width: 35%;
    height: 10dvh;
    display: flex;
    justify-content: center;
    align-items: center;
}


.Navbar-Derecha .Boton {
    display: inline-block;
    padding: 12px 28px;
    background-color: #00C76F;
    color: #FFFFFF;
    border-radius: 7px;
    text-decoration: none;
    font-size: 18px;
}


.menu-toggle {
    display: none; 
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 2000;
}

.menu-toggle span {
    display: block;
    height: 3px;
    background-color: black; 
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}



.Navbar-Izquierda a {
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  color: black;
  font-size: 20px;
}

.Navbar-Izquierda a:hover {
  transform: translateY(-3px);
}

.Navbar-Izquierda a::before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -3px; 
  left: 0;
  right: 0;
  height: 2px;
  background-color: #00c76f;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}

.Navbar-Izquierda a:hover::before {
  transform: scaleY(1);
}


/* DISEÑO SECCION PRINCIPAL */

.Seccion-Principal{
    width: 100%;
    min-height: 70dvh;
    background-color: #F1FDEB;
}


.Contenedor-SeccionPrincipal{
    width: 100%;
    min-height: 70dvh;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}


.SeccionPrincipal-Izquierda{
    width: 50%;
    height: 70dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px;
    animation: slide-in-fwd-left 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes slide-in-fwd-left {
  0% {
    transform: translateZ(-1400px) translateX(-1000px);
    opacity: 0;
  }
  100% {
    transform: translateZ(0) translateX(0);
    opacity: 1;
  }
}

.SeccionPrincipal-Izquierda h1{
    color: #00C76F;
    font-size: 50px;
}

.SeccionPrincipal-Izquierda h2{
    color: #2F4858;
    font-size: 28px;
    padding: 0;
    margin: 0;
}

.SeccionPrincipal-Izquierda p{
    color: #2F4858;
    font-size: 20px;
    padding: 0;
    margin: 0;
    margin-top: 12px;
}


.SeccionPrincipal-Derecha{
    width: 50%;
    height: 70dvh;
    display: flex;
    justify-content: center;
    animation: bounce-in-right 0.9s both;
}


@keyframes bounce-in-right {
  0% {
    transform: translateX(600px);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    transform: translateX(0);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    transform: translateX(68px);
    animation-timing-function: ease-in;
  }
  72% {
    transform: translateX(0);
    animation-timing-function: ease-out;
  }
  81% {
    transform: translateX(32px);
    animation-timing-function: ease-in;
  }
  90% {
    transform: translateX(0);
    animation-timing-function: ease-out;
  }
  95% {
    transform: translateX(8px);
    animation-timing-function: ease-in;
  }
  100% {
    transform: translateX(0);
    animation-timing-function: ease-out;
  }
}

.SeccionPrincipal-Derecha img{
    width: 450px;
    height: 647px;
    object-fit: contain;
}



/* DISEÑO SEPARADO SECCION PRINCIPAL */

.Separador-SeccionPrincipal{
    width: 100%;
    height: 10dvh;
    background-color: #00C76F;
}

.Separador-SeccionPrincipal ul{
    display: flex;
    flex-direction: row;
    margin: 0;
    padding: 0;
    justify-content: space-evenly;
    align-items: center;
    height: 100%;
    
}

.Separador-SeccionPrincipal li{
    color: #FFFFFF;
    font-family: "Jolly Lodger", system-ui;
    font-weight: 400;
    font-style: normal;
    font-size: 45px;
    list-style: none; 
}



/* DISEÑO SECCION PROMOCIONES */

.Seccion-Promociones{
    width: 100%;
    height: 90dvh;
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.Seccion-Promociones h2{
    color: #00C76F;
    font-size: 30px;
    text-align: center;
}


.Contenedor-SeccionPromociones{
    width: 85%;
    height: 65dvh;
    margin-top: 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    gap: 30px;
}

.Promocion1, .Promocion2, .Promocion3{
    width: 20%;
    height: 60dvh;    
}


.Imagen-Promocion{
    width: 100%;
    height: 40dvh;
    display: flex;
    justify-content: center;
    align-items: center;
}


.Imagen-Promocion img{
    width: 281px;
    height: 350px;
    object-fit: contain;
}


.Texto-Promocion{
    width: 100%;
    height: 25dvh;
    background-color: #f7f4f4;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    padding: 8px;
    text-align: center;
}

.Texto-Promocion h3{
    margin: 0;
    text-align: center;
    color: #00c76f;
}

.Texto-Promocion ul{
    margin: 0;
    padding: 0;
}

.Texto-Promocion li{
    list-style: none;
    color: #2F4858;
}

/* DISEÑO SECCION PRODUCTOS */
.Seccion-Productos{
    width: 90%;
    height: 95dvh;
    margin: auto;
    margin-top: 80px;
}


.Seccion-Productos h2{
    color: #00C76F;
    font-size: 30px;
    text-align: center;
}

.Contenedor-SeccionProductos{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
}


.Productos-Superior{
    width: 100%;
    height: 45dvh;
    display: flex;
    flex-direction: row;
    gap: 50px;
    justify-content: space-evenly;
    align-items: center;
}

.Productos-Inferior{
    width: 100%;
    height: 45dvh;
    display: flex;
    flex-direction: row;
    gap: 50px;
    justify-content: space-evenly;
    align-items: center;
}


.Producto1, .Producto2, .Producto3, .Producto4, .Producto5, .Producto6, .Producto7, .Producto8{
    width: 15%;
    height: 45dvh;
    display: flex;
    flex-direction: column;

}

.Imagen-Producto{
    width: 100%;
    height: 25dvh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Imagen-Producto img{
    width: 223px;
    height: 231px;
    object-fit: contain;
}

.Informacion-Producto{
    width: 100%;
    height: 20dvh;
    background-color: #f7f4f4;
    text-align: center;
    border-radius: 8px;
}

.Informacion-Producto h4{
    margin: 0;
    padding: 5px;
    color: #00c76f;
}

.Informacion-Producto ul{
    padding: 0;
    margin: 0;
}

.Informacion-Producto li{
    list-style: none;
}

.Informacion-Producto li p{
    padding: 3px;
}

.Informacion-Producto p span{
    color: #00A67F;
    font-weight: bold;
    font-size: 20px;
}

/* DISEÑO SECCION SOBRE NOSOTROS */

.Seccion-SobreNosotros{
    width: 100%;
    height: 72dvh;
    background-color: #00C76F;
    margin-top: 200px;
}

.Seccion-SobreNosotros h2{
    color: #FFFFFF;
    font-size: 35px;
    padding: 30px;
    text-align: center;
    margin: 0;
}


.Contenedor-SobreNosotros{
    width: 100%;
    height: 60dvh;
    display: flex;
    flex-direction: row;
}

.SobreNosotros-Derecha{
    width: 55%;
    height: 60dvh;
    padding: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.SobreNosotros-Derecha h3{
    font-size: 32px;
    color: #FFFFFF;

}

.SobreNosotros-Derecha ul{
    margin: 0;
    padding: 0;
}


.SobreNosotros-Derecha li{
    list-style: none;
    color: white;
    font-size: 24px;
    width: 100%;
}


.SobreNosotros-Izquierda{
    width: 45%;
    height: 60dvh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.SobreNosotros-Imagen{
    width: 50%;
    height: 55dvh;
    background-color: #F1FDEB;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}

.SobreNosotros-Imagen img{
    width: 350px;
    height: 500px;
    margin: auto;
}


/* DISEÑO SECCION RESEÑAS */

.Seccion-Reseñas{
    width: 100%;
    height: auto;
    margin-top: 100px;
}

.Seccion-Reseñas h2{
    color: #00C76F;
    font-size: 30px;
    text-align: center;
    padding: 30px;
}

.Contenedor-Reseñas{
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 150px;
    justify-content: center;
    flex-wrap: wrap;  
}

.Reseña1, .Reseña2, .Reseña3 {
    width: 400px;
    height: 400px;
    background-color: #00A67F;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    border-radius: 8px;
}

.Reseña1 img, .Reseña2 img{
    width: 180px;
    height: 120px;
    margin: 10px;
}

.Reseña3 img{
    width: 120px;
    height: 110px;
    margin: 10px;

}


.Reseña1 p, .Reseña2 p, .Reseña3 p{
    color: #FFFFFF;
    text-align: center;
    margin: 20px;
    font-size: 20px;
}


.Reseña1 h3, .Reseña2 h3, .Reseña3 h3{
    color: #FFFFFF;
    font-size: 25px;
}


/* DISEÑO SECCION FORMULARIO */

.Seccion-Formulario{
    width: 100%;
    height: 70dvh;
    margin-top: 100px;
}

.Seccion-Formulario h2{
    color: #00c76f;
    font-size: 30px;
    text-align: center;
}


.Formulario{
    width: 35%;
    display: grid;
    grid-template-columns: repeat(4, 1fr) 0;
    grid-template-rows: repeat(5, 1fr);
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    align-content: center;
    margin: auto;
    margin-top: 50px;

}

.Formulario input {
    width: 100%;
    height: 100%;
    padding: 15px;
    font-size: 1rem;
    border-radius: 5px;
    box-sizing: border-box;
    border: none;
    background-color: #eeeeee;
    
}

.Formulario :focus{
    outline: none;
    border: none;
}

.NombreFormulario { grid-area: 1 / 1 / 2 / 3; }
.CorreoFormulario { grid-area: 1 / 3 / 2 / 5; }
.NumeroFormulario { grid-area: 2 / 1 / 3 / 3; }
.AsuntoFormulario { grid-area: 2 / 3 / 3 / 5; }
.MensajeFormulario { grid-area: 3 / 1 / 5 / 5; }



.BotonFormulario {
    grid-area: 5 / 1 / 6 / 5; /* Cambié 6 por 5 */
    display: flex;
    justify-content: center;
    align-items: center;
}

.BotonFormulario button {
    padding: 15px 30px;
    font-size: 1rem;
    background-color: #00A67F;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease;
}

.BotonFormulario button:hover {
    background-color: #02e4af;
}




/* DISEÑO SECCION FOOTER */

.Seccion-Footer{
    width: 100%;
    background-color: #026176;
    display: flex;
    flex-direction: column;
}

.Contenedor-Footer{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    gap: 50px;
    flex-wrap: wrap;
    padding: 20px 0; 
}

.Footer-Informacion, .Footer-Items, .Footer-Redes{
    width: 28%;
}

.Footer-Informacion{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.Footer-Informacion h3{
    font-family: "Jolly Lodger", system-ui;
    font-weight: 400;
    font-style: normal;
    font-size: 50px;
    margin: 0;
    color: #FFFFFF;
}


.Footer-Informacion h4{
    color: #FFFFFF;
    margin: 0;
    padding: 5px;
}

.Footer-Items{
    display: flex;
    justify-content: center;
    align-items: center;
}

.Footer-Items ul{
    margin: 0;
    padding: 0;
    
    
}

.Footer-Items li{
    color: #FFFFFF;
    margin: 12px;
    
}

.Footer-Items a{
    color: #FFFFFF;
    font-size: 22px;
    text-decoration: none;
}

.Footer-Items a:hover{
    text-decoration: underline;
}

.Footer-Redes{
    display: flex;
    justify-content: center;
    align-items: center;
}

.Footer-Redes ul{
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
}

.Footer-Redes li{
    list-style: none;
}



.Footer-Redes .fa-instagram, .Footer-Redes .fa-tiktok, .Footer-Redes .fa-facebook{
    font-size: 40px;
    color: #FFFFFF;
    padding: 10px;
    transition: transform 0.3s ease;
}

.Footer-Redes .fa-instagram:hover, .Footer-Redes .fa-facebook:hover, .Footer-Redes .fa-tiktok:hover{
  transform: translateY(-5px);
}


.Footer-Copyright{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 0; 
}


.Footer-Copyright h5{
    color: #FFFFFF;
}


/* DISEÑO BTN WSP */
.wsp-flotante{
    position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    transform: inherit;
    transition: all 0.8s ease;
    border: 2px solid #25d366;
    z-index: 999; 
}

.wsp-flotante:hover{
    background-color: #FFF;
    border: 2px solid #25d366;
    color: #25d366;
}




/* MEDIA QUERIES */

/* MEDIA QUERIES NAVBAR */

@media screen and (max-width: 1024px) {
    .Navbar-Izquierda ul {
        display: none;
        flex-direction: column;
        align-items: center;
        position: absolute;
        top: 100px; 
        left: 0;
        width: 100%;
        background-color: #ffffff;
        padding: 0;
        margin: 0;
        z-index: 1000;
    }

    .Navbar-Izquierda.active ul {
        display: flex;
    }

    .Navbar-Izquierda li {
        margin: 15px 0;
    }

    .menu-toggle {
        display: flex;
    }

    .Navbar-Centro h2 {
        font-size: 50px;
    }

    .Navbar-Derecha {
        display: none; /* Oculta botón Contactanos en móviles */
    }

    .menu-toggle {
        display: flex; /* se muestra en móviles y tablets */
    }
}

@media screen and (max-width: 480px) {
    .Navbar-Centro h2 {
        font-size: 40px;
    }

    .Navbar-Izquierda.active ul {
        top: 8dvh;
    }

    .menu-toggle {
        display: flex;
    }
}



/* MEDIA QUERIES SECCION PRINCIPAL */

@media screen and (max-width: 1024px) {
    .Contenedor-SeccionPrincipal {
        flex-direction: column;
        height: auto;
        align-items: center;
        padding: 20px;
    }

    .SeccionPrincipal-Izquierda, 
    .SeccionPrincipal-Derecha {
        width: 100%;
        height: auto;
        padding: 40px 20px;
        text-align: center;
    }

    .SeccionPrincipal-Derecha img {
        width: 350px;
        height: auto;
        object-fit: contain;
    }
}


@media screen and (max-width: 768px) {
    .SeccionPrincipal-Izquierda h1 {
        font-size: 36px;
    }

    .SeccionPrincipal-Izquierda h2 {
        font-size: 22px;
    }

    .SeccionPrincipal-Izquierda p {
        font-size: 18px;
    }

    .SeccionPrincipal-Derecha img {
        width: 280px;
        object-fit: contain;
    }
}


@media screen and (max-width: 480px) {
    .SeccionPrincipal-Izquierda h1 {
        font-size: 28px;
    }

    .SeccionPrincipal-Izquierda h2 {
        font-size: 18px;
    }

    .SeccionPrincipal-Izquierda p {
        font-size: 16px;
    }

    .SeccionPrincipal-Derecha img {
        width: 220px;
        object-fit: contain;
    }
}


/* MEDIA QUERIES SEPARADOR SECCION PRINCIPAL */

@media screen and (max-width: 1024px) {
    .Separador-SeccionPrincipal {
        height: auto;
        padding: 10px 0;
    }

    .Separador-SeccionPrincipal li {
        font-size: 36px;
    }
}


@media screen and (max-width: 768px) {
    .Separador-SeccionPrincipal ul {
        flex-wrap: wrap;
        gap: 10px;
    }

    .Separador-SeccionPrincipal li {
        font-size: 28px;
    }
}


@media screen and (max-width: 480px) {
    .Separador-SeccionPrincipal li {
        font-size: 24px;
    }
}


/* MEDIA QUERIES SECCION PROMOCIONES */

@media screen and (max-width: 1024px) {
    .Seccion-Promociones {
        height: auto;
        margin-top: 60px;
    }

    .Contenedor-SeccionPromociones {
        flex-wrap: wrap;
        height: auto;
    }

    .Promocion1, .Promocion2, .Promocion3 {
        width: 45%;
        height: auto;
        text-align: center; /* Centra el texto horizontalmente */
        display: flex;
        flex-direction: column;
        align-items: center; /* Centra horizontal en flex */
    }

    .Imagen-Promocion img {
        width: 220px;
        height: auto;
    }

    .Promocion1 h3,
    .Promocion2 h3,
    .Promocion3 h3 {
        font-size: 1.6rem;
        text-align: center;
        margin-top: 10px;
    }

    .Promocion1 p,
    .Promocion2 p,
    .Promocion3 p {
        font-size: 1.4rem; /* Tamaño más grande */
        text-align: center;
        margin-top: 10px;
    }
}


@media screen and (max-width: 768px) {
    .Contenedor-SeccionPromociones {
        flex-direction: column;
        gap: 20px;
    }

    .Promocion1, .Promocion2, .Promocion3 {
        width: 100%;
    }

    .Imagen-Promocion img {
        width: 180px;
    }

    .Texto-Promocion {
        height: auto;
    }
}


@media screen and (max-width: 480px) {
    .Imagen-Promocion img {
        width: 150px;
    }
}


/* MEDIA QUERIES SECCION PRODUCTO */

@media screen and (max-width: 1024px) {
    .Seccion-Productos {
        height: auto;
    }

    .Productos-Superior,
    .Productos-Inferior {
        flex-wrap: wrap;
        height: auto;
        gap: 20px;
    }

    .Producto1, .Producto2, .Producto3, .Producto4,
    .Producto5, .Producto6, .Producto7, .Producto8 {
        width: 40%;
        height: auto;
    }

    .Imagen-Producto img {
        width: 180px;
        height: auto;
    }

    .Informacion-Producto {
        height: auto;
        padding-bottom: 10px;
    }

     .Informacion-Producto h4 {
        font-size: 1.4rem;
        text-align: center;
    }

    .Informacion-Producto li p {
        font-size: 1.3rem; 
        text-align: center;
    }
    .Informacion-Producto li p span{
        font-size: 1.4rem;
    }
}


@media screen and (max-width: 768px) {
    .Productos-Superior,
    .Productos-Inferior {
        flex-direction: column;
        align-items: center;
    }

    .Producto1, .Producto2, .Producto3, .Producto4,
    .Producto5, .Producto6, .Producto7, .Producto8 {
        width: 90%;
    }

    .Imagen-Producto img {
        width: 160px;
    }
}


@media screen and (max-width: 480px) {
    .Imagen-Producto img {
        width: 140px;
    }
}


/* MEDIA QUERIES SECCION SOBRE NOSOTROS */

@media screen and (max-width: 1024px) {
    .Seccion-SobreNosotros {
        height: auto;
        margin-top: 120px;
    }

    .Contenedor-SobreNosotros {
        flex-direction: column;
        height: auto;
        align-items: center;
        text-align: center;
    }

    .SobreNosotros-Derecha {
        width: 90%;
        height: auto;
        padding: 40px 20px;
    }

    .SobreNosotros-Izquierda {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }

    .SobreNosotros-Imagen {
        width: 70%;
        height: auto;
        padding: 20px;
    }

    .SobreNosotros-Imagen img {
        width: 280px;
        height: auto;
    }
}


@media screen and (max-width: 768px) {
    .SobreNosotros-Imagen {
        width: 90%;
    }

    .SobreNosotros-Imagen img {
        width: 220px;
    }

    .SobreNosotros-Derecha h3 {
        font-size: 26px;
    }

    .SobreNosotros-Derecha li {
        font-size: 18px;
    }
}


@media screen and (max-width: 480px) {
    .SobreNosotros-Imagen img {
        width: 180px;
    }

    .SobreNosotros-Derecha h3 {
        font-size: 22px;
    }

    .SobreNosotros-Derecha li {
        font-size: 16px;
    }
}


/* MEDIA QUERES SECCION RESEÑA */

@media screen and (max-width: 1024px) {
    .Seccion-Reseñas {
        height: auto; /* se adapta al contenido */
    }

    .Contenedor-Reseñas {
        flex-wrap: wrap;
        gap: 50px;
        height: auto;
        justify-content: center;
    }

    .Reseña1, .Reseña2, .Reseña3 {
        width: 300px;
        height: auto;
        padding: 20px 0;
    }

    .Reseña1 img, .Reseña2 img {
        width: 150px;
        height: 100px;
    }

    .Reseña3 img {
        width: 110px;
        height: 110px;
    }

    .Reseña1 p, .Reseña2 p, .Reseña3 p {
        font-size: 18px;
        margin: 15px;
    }

    .Reseña1 h3, .Reseña2 h3, .Reseña3 h3 {
        font-size: 22px;
    }
}


@media screen and (max-width: 768px) {
    .Contenedor-Reseñas {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .Reseña1, .Reseña2, .Reseña3 {
        width: 80%;
        height: auto;
        padding: 15px 0;
    }

    .Reseña1 img, .Reseña2 img {
        width: 120px;
        height: auto; /* Mantiene proporción */
    }

    .Reseña3 img {
        width: 100px;
        height: auto;
    }

    .Reseña1 p, .Reseña2 p, .Reseña3 p {
        font-size: 14px;
        margin: 10px;
    }

    .Reseña1 h3, .Reseña2 h3, .Reseña3 h3 {
        font-size: 18px;
    }
}


@media screen and (max-width: 480px) {
    .Reseña1, .Reseña2, .Reseña3 {
        width: 90%;
    }

    .Reseña1 img, .Reseña2 img {
        width: 120px;
    }

    .Reseña3 img {
        width: 80px;
    }

    .Reseña1 h3, .Reseña2 h3, .Reseña3 h3 {
        font-size: 16px;
    }

    .Reseña1 p, .Reseña2 p, .Reseña3 p {
        font-size: 12px;
    }
}



/* MEDIA QUERIES SECCION FORMULARIO */

@media screen and (max-width: 1024px) {
    .Seccion-Formulario {
        height: 50dvh; /* Ajusta el valor a lo que quieras */
    }

    .Formulario {
        display: flex;
        flex-direction: column;
        width: 60%;
        gap: 20px;
        height: auto;
    }

    .NombreFormulario, .CorreoFormulario,
    .NumeroFormulario, .AsuntoFormulario, .MensajeFormulario,
    .BotonFormulario {
        grid-area: auto; 
    }

    .Formulario input,
    .Formulario textarea,
    .BotonFormulario button {
        width: 100%;
    }
}


@media screen and (max-width: 768px) {
    .Formulario {
        width: 90%;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 15px;
    }

    .Formulario input {
        padding: 10px;
        font-size: 0.9rem;
    }

    .BotonFormulario button {
        font-size: 0.95rem;
        padding: 12px 20px;
    }
}


@media screen and (max-width: 480px) {
    .Seccion-Formulario {
        height: auto;          /* que se ajuste al contenido */
        padding-bottom: 60px;  /* espacio extra antes del footer */
        margin-bottom: 0;      /* opcional */
    }

    .Formulario {
        width: 90%;            /* ya lo tenías, pero aseguramos que quede centrado */
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 15px;
    }

    .Formulario input {
        font-size: 0.85rem;
        padding: 8px;
    }

    .BotonFormulario button {
        width: 100%;           /* ocupa todo el ancho del input */
        margin-top: 10px;
    }
}



/* MEDIA QUERIES SECCION FOOTER */

@media screen and (max-width: 1024px) {
    .Contenedor-Footer {
        flex-direction: column;
        align-items: center;
        height: auto;
        gap: 20px;
        padding: 20px 0;
    }

    .Footer-Informacion, .Footer-Items, .Footer-Redes {
        width: 80%;
        height: auto;
        text-align: center;
    }

    .Footer-Informacion h3 {
        font-size: 40px;
    }

    .Footer-Items a {
        font-size: 20px;
    }

    .Footer-Redes .fa-instagram, .Footer-Redes .fa-tiktok, .Footer-Redes .fa-facebook{
        font-size: 35px;
    }
    .Footer-Items li{
        list-style: none;

    }
}


@media screen and (max-width: 768px) {
    .Footer-Informacion h3 {
        font-size: 32px;
    }

    .Footer-Items a {
        font-size: 18px;
    }

    .Footer-Redes .fa-instagram, .Footer-Redes .fa-tiktok, .Footer-Redes .fa-facebook{
        font-size: 28px;
        padding: 8px;
    }
    .Footer-Items li{
        list-style: none;

    }
}


@media screen and (max-width: 480px) {
    .Footer-Informacion h3 {
        font-size: 28px;
    }

    .Footer-Items a {
        font-size: 16px;
    }

    .Footer-Redes .fa-instagram, .Footer-Redes .fa-tiktok, .Footer-Redes .fa-facebook{
        font-size: 24px;
        padding: 6px;
    }
    .Footer-Items li{
        list-style: none;

    }
}



@media screen and (max-width: 540px) and (max-height: 900px) {
    .Seccion-Formulario {
        height: auto;          
        padding-bottom: 80px;  /* más espacio antes del footer */
        margin-bottom: 0;
    }

    .Formulario {
        width: 90%;            
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 15px;
    }

    .BotonFormulario button {
        width: 100%;           
        margin-top: 10px;
    }
}



/* Ajuste SOLO para Surface Duo */
@media screen and (width: 540px) {
    .Navbar-Izquierda.active ul {
        top: 60px; /* menú pegado al navbar */
    }
}


/* MEDIA QUERIES BTN WSP */
@media screen and (max-width: 1024px){
    .wsp-flotante {
        width: 100px;
        height: 100px;
        bottom: 30px;
        right: 30px;
        font-size: 55px;
    }
}

@media (max-width: 768px) {
    .wsp-flotante {
        width: 80px;
        height: 80px;
        bottom: 30px;
        right: 30px;
        font-size: 45px;
    }
}

/* Ajuste para pantallas pequeñas (móviles) */
@media (max-width: 480px) {
    .wsp-flotante {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
        font-size: 32px;
    }
}


/* MEDIA QUERIES NEST HUB */
@media screen and (max-width: 1024px) and (max-height: 600px){
    .Navbar-Izquierda ul {
        display: none;
        flex-direction: column;
        align-items: center;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        padding: 0;
        margin: 0;
        z-index: 1000;
    }

    .Seccion-Promociones, .Contenedor-SeccionPromociones, .Promocion1, .Promocion2, .Promocion3, .Imagen-Promocion, .Texto-Promocion{
        height: auto;
    }

    .Promocion1 img, .Promocion2 img, .Promocion3 img{
        width: 220px;
        height: 280px;
    }

    .Seccion-Productos, .Contenedor-SeccionPromociones, .Productos-Superior, .Productos-Inferior{
        height: auto;
    }

    .Producto1, .Producto2, .Producto3, .Producto4, .Producto5, .Producto6, .Producto7, .Producto8{
        height: auto;
    }

    .Imagen-Producto{
        height: auto;
    }
    .Imagen-Producto img{
        width: 180px;
        height: 225px;
    }

    .Seccion-Formulario, .Contenedor-Formulario{
        height: auto;
    }

    .Seccion-Formulario{
        padding-bottom: 50px;
    }
}




@media screen and (max-width: 1280px) and (max-height: 800px){
    .SeccionPrincipal-Derecha img{
        height: auto;
    }

    .Seccion-Promociones, .Contenedor-SeccionPromociones, .Promocion1, .Promocion2, .Promocion3, .Imagen-Promocion,.Texto-Promocion{
        height: auto;
    }

    .Promocion1 img, .Promocion2 img, .Promocion3 img{
        width: 215px;
        height: 250px;
    }

    .Seccion-Productos, .Contenedor-SeccionProductos, .Productos-Superior, .Productos-Inferior, .Producto1, .Producto2, .Producto3, .Producto4, .Producto5, .Producto6, .Producto7, .Producto8, .Imagen-Producto, .Informacion-Producto{
        height: auto;
    }
    

    .Producto1 img, .Producto2 img, .Producto3 img, .Producto4 img, .Producto5 img, .Producto6 img, .Producto7 img, .Producto8 img{
        width: 170px;
        height: 270px;
    }

    .Seccion-SobreNosotros, .Contenedor-SobreNosotros, .SobreNosotros-Derecha, .SobreNosotros-Izquierda{
        height: auto;
    }

    .SobreNosotros-Derecha{
        padding: 80px;
    }

    .SobreNosotros-Imagen{
        height: auto;
    }
}