*, *::before, *::after {
  box-sizing: border-box;
}

html{
    box-sizing: border-box;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body{
    background-color: #f9f0fa;
    font-family: sans-serif;
    margin: 0;
}



/* DISEÑO NAVBAR */

.navbar {
  background-color: #ffffff;
  position: relative;
  height: 65px;
}

.navbar ul {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  padding: 15px;
  margin: 0;
}

.navbar li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.navbar h2 {
  font-family: "Dancing Script", cursive;
  color: #CA6ADD;
  font-size: 35px;
  margin: 0;
}

.navbar a {
  text-decoration: none;
  color: black;
  position: relative;
  padding-bottom: 5px;
}

.navbar a::before,
.navbar a::after {
  content: "";
  position: absolute;
  background-color: #CA6ADD;
  width: 0%;
  height: 2px;
  bottom: 0;
  transition: width 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.navbar a::before {
  left: 0;
}

.navbar a::after {
  right: 0;
}

.navbar a:hover::before,
.navbar a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  cursor: pointer;
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 20;
}

.menu-toggle span {
  display: block;
  height: 3px;
  background-color: #374049;
  border-radius: 2px;
  transition: all 0.3s ease;
}



/* DISEÑO SECCION PRINCIPAL */

.Seccion-Principal {
    width: 90%;
    height: 66dvh;
    display: flex;
    flex-direction: row;
    margin: auto;
}

.SeccionPrincipal-Izquierda {
    width: 55%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: scale-in-center 0.9s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes scale-in-center {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.SeccionPrincipal-Izquierda h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #64336E;
}

.SeccionPrincipal-Izquierda h2 {
    color: #CA6ADD;
    font-weight: normal;
    margin: 0;
}

.SeccionPrincipal-Izquierda p {
    margin-top: 8px;
}

.SeccionPrincipal-Derecha {
    width: 45%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.SeccionPrincipal-Derecha img {
    width: 400px;
    height: auto;
    object-fit: cover;
    animation: slide-in-fwd-center 0.9s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes slide-in-fwd-center {
  0% {
    transform: translateZ(-1400px);
    opacity: 0;
  }
  100% {
    transform: translateZ(0);
    opacity: 1;
  }
}

/* DISEÑO NUESTROS SERVICIOS */

.Seccion-NuestrosServicios {
    width: 100%;
    height: 70dvh;
    margin-top: 150px;
    text-align: center;
}

.Seccion-NuestrosServicios h2 {
    color: #64336E;
    font-size: 1.75rem;
    padding-top: 30px;
}

.Contenedor-NuestrosServicios {
    display: flex;
    flex-direction: row;
    margin: auto;
    gap: 40px;
    justify-content: center;
    padding-bottom: 100px;
    flex-wrap: wrap;
}

.NuestrosServicios1,
.NuestrosServicios2,
.NuestrosServicios3,
.NuestrosServicios4 {
    width: 15%;
    height: 40dvh;
    margin: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.NuestrosServicios1 img,
.NuestrosServicios2 img,
.NuestrosServicios3 img,
.NuestrosServicios4 img {
    width: 120px;
    height: 120px;
}

.NuestrosServicios1 h3,
.NuestrosServicios2 h3,
.NuestrosServicios3 h3,
.NuestrosServicios4 h3 {
    color: #64336E;
    font-size: 1.375rem;
}

.NuestrosServicios1 p,
.NuestrosServicios2 p,
.NuestrosServicios3 p,
.NuestrosServicios4 p {
    color: #64336E;
    text-align: center;
    margin: 0;
    font-size: 1.125rem;
}

/* DISEÑO NUESTROS PLANES */

.Secciones-NuestrosPlanes {
    width: 100%;
    height: 80dvh;
}

.Secciones-NuestrosPlanes h2 {
    color: #64336E;
    font-size: 1.75rem;
    padding-bottom: 50px;
    text-align: center;
}

.Contenedor-Planes {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(6, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    height: 100%;
}

.div1 {
    grid-area: 1 / 2 / 3 / 4;
    background-color: #DCA3E5;
}

.div2 {
    grid-area: 1 / 5 / 3 / 7;
    background-color: #DCA3E5;
}

.div3 {
    grid-area: 4 / 2 / 6 / 4;
    background-color: #DCA3E5;
}

.div4 {
    grid-area: 4 / 5 / 6 / 7;
    background-color: #DCA3E5;
}

.div1 h3,
.div2 h3,
.div3 h3,
.div4 h3 {
    color: white;
    margin: 0;
    padding: 8px;
    text-align: center;
}

.div1 ul,
.div2 ul,
.div3 ul,
.div4 ul {
    margin: 0;
    padding: 0;
}

.div1 li,
.div2 li,
.div3 li,
.div4 li {
    text-align: left;
    color: white;
    list-style: none;
    padding: 12px 20px;
    border-bottom: 1px solid #fff7ff;
}

.div1 p,
.div2 p,
.div3 p,
.div4 p {
    margin: 0;
    color: white;
    text-align: left;
    margin-top: 10px;
    margin-left: 15px;
}

.fa-circle-check {
    color: #FFFFFF;
    font-size: 1.125rem;
    padding-right: 10px;
}

#ultimo-li {
    border-bottom: none;
}

/* DISEÑO TRABAJOS REALIZADOS */

.Seccion-TrabajosRealizados {
    width: 100%;
    height: auto;
    margin-top: 150px;
    display: flex;
    flex-direction: column;
}

.Seccion-TrabajosRealizados h2 {
    color: #64336E;
    font-size: 1.75rem;
    text-align: center;
}

.Contenedor-TrabajosRealizados {
    padding-top: 50px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
}

.TrabajoRealizado2,
.TrabajoRealizado3 {
    width: 35%;
    height: 55dvh;
    background-color: #FFFFFF;
    overflow: hidden; 
    border-radius: 8px; 
}

.TrabajoRealizado2 img, 
.TrabajoRealizado3 img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

/* DISEÑO SECCION RESEÑAS */

.Seccion-Reseñas {
    width: 100%;
    height: 90dvh;
    padding-top: 100px;
}

.Contenedor-Reseñas {
    height: 90dvh;
    width: 100%;
    display: flex;
    flex-direction: row;
}

.Reseñas-Izquierda {
    width: 45%;
    height: 90dvh;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    padding: 150px;
}


[data-aos="custom-animation"] {
  opacity: 0;
  transform: translateZ(300px);
  filter: blur(12px);
}

[data-aos="custom-animation"].aos-animate {
  animation: focus-in-contract-bck 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.Reseñas-Izquierda h2 {
    color: #6D3B76;
    font-size: 2.188rem;
}

.Reseñas-Izquierda p {
    color: black;
    font-size: 1.375rem;
}

.Reseñas-Derecha {
    width: 55%;
    height: 90dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.Reseña1,
.Reseña2,
.Reseña3 {
    width: 50%;
    height: 26dvh;
    background-color: #FFFFFF;
}

.Reseña-Superior {
    width: 100%;
    height: 10dvh;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.Imagen-Reseña {
    width: 25%;
    height: 10dvh;
    padding-right: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Datos-Reseña {
    width: 75%;
    height: 10dvh;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
}

.Imagen-Reseña img {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    object-fit: contain;
}

.Datos-Reseña h3 {
    text-align: left;
    margin: 0;
}

.Datos-Reseña p {
    text-align: left;
    margin: 0;
    color: #818181;
}

.Reseña-Inferior {
    width: 100%;
    height: 16dvh;
    display: flex;
    align-items: center;
}

.Reseña-Inferior p {
    margin: 0;
    padding: 25px;
    font-size: 1.125rem;
    text-align: left;
}



/* DISEÑO SECCION CONTACTO */

.Seccion-Contacto {
    width: 100%;
    height: 75dvh;
    margin-top: 150px;
    margin-bottom: 200px;
}

.Seccion-Contacto h2 {
    color: #64336E;
    font-size: 1.75rem;
    text-align: center;
}

.Contenedor-Contacto {
    width: 100%;
    display: flex;
    flex-direction: row;
}

.Contacto-Izquierda {
    width: 50%;
    height: 75dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.Contacto-Izquierda h3 {
    color: #64336E;
    font-size: 1.5rem;
}

#Map {
    width: 50%;
    height: 50dvh;
    background-color: white;
}

.Contacto-Derecha {
    width: 50%;
    height: 75dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.Contacto-Derecha h3 {
    color: #64336E;
    font-size: 1.5rem;
}

.Formulario-Contacto {
    width: 50%;
    height: 50dvh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Formulario-Contacto form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.Formulario-Contacto input {
    width: 96%;
    height: 4dvh;
    margin-top: 25px;
    border: none;
    outline: none;
    border-radius: 5px;
    padding: 0 5px;
    font-size: 0.938rem;
}

.Formulario-Contacto textarea {
    width: 96%;
    height: 10dvh;
    margin-top: 25px;
    padding: 5px;
    border: none;
    outline: none;
    border-radius: 5px;
    resize: none;
    font-family: inherit;
    font-size: 0.938rem;
}

.Formulario-Contacto button {
    width: 40%;
    height: 4dvh;
    background-color: #CA6ADD;
    color: #FFFFFF;
    border: none;
    font-size: 0.938rem;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
}

.Formulario-Contacto button:hover {
    background-color: #d07cdd;
}



/* DISEÑO SECCION FOOTER */

.Seccion-Footer {
    width: 100%;
    height: 35dvh;
    background-color: #582862;
    display: flex;
    flex-direction: column;
}

.Contenedor-Footer {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.Footer-Informacion,
.Footer-Navbar,
.Footer-Redes {
    width: 20%;
    height: 28dvh;
}

.Footer-Informacion {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.Footer-Informacion h3 {
    color: white;
    font-family: "Dancing Script";
    font-size: 1.875rem;
}

.Footer-Navbar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.Footer-Navbar li {
    color: #d07cdd;
    margin: 20px;
}

.Footer-Navbar a {
    color: white;
    text-decoration: none;
    font-size: 1.125rem;
}

.Footer-Redes {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.Footer-Redes ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.Footer-Redes li {
    list-style: none;
}

.Footer-Redes .fa-instagram,
.Footer-Redes .fa-x-twitter,
.Footer-Redes .fa-square-facebook,
.Footer-Redes .fa-whatsapp {
    font-size: 1.75rem;
    color: white;
    margin: 20px;
    transition: transform 0.3s ease;
}

.Footer-Redes .fa-instagram:hover,
.Footer-Redes .fa-x-twitter:hover,
.Footer-Redes .fa-square-facebook:hover,
.Footer-Redes .fa-whatsapp:hover {
    transform: translateY(-5px);
}

.Copyright-Footer {
    width: 100%;
    height: 7dvh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Copyright-Footer h5 {
    color: white;
}


/* 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: 768px) {
  .menu-toggle {
    display: flex;
  }


  
  .navbar ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 60px;
    display: none;
    background-color: #ffffff;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 10;
  }

  #navbar-menu h2{
    padding-bottom: 20px;
  }

  .navbar ul.active {
    display: flex;
  }

  .navbar li {
    margin: 15px 0;
  }



  .navbar .logo {
    display: block;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
  }

  .navbar ul:not(.active) li:not(.logo) {
    display: none;
  }
}

/*MEDIA QUERIES SECCION PRINCIPAL*/

@media (max-width: 768px) {
    .Seccion-Principal {
        flex-direction: column;
        height: auto;
    }

    .SeccionPrincipal-Izquierda,
    .SeccionPrincipal-Derecha {
        width: 100%;
        height: auto;
        padding: 20px 0;
    }

    .SeccionPrincipal-Derecha img {
        width: 90%;
        max-width: 300px;
    }

    .SeccionPrincipal-Izquierda h1 {
        font-size: 2rem;
        text-align: center;
    }

    .SeccionPrincipal-Izquierda h2,
    .SeccionPrincipal-Izquierda p {
        text-align: center;
    }
}


/* MEDIA QUERIES NUESTROS SERVICIOS */

@media (max-width: 768px) {
    .Seccion-NuestrosServicios {
        height: auto;
        margin-top: 100px;
    }

    .Contenedor-NuestrosServicios {
        flex-direction: column;
        align-items: center;
        gap: 60px;
        padding-bottom: 50px;
    }

    .NuestrosServicios1,
    .NuestrosServicios2,
    .NuestrosServicios3,
    .NuestrosServicios4 {
        width: 80%;
        height: auto;
        margin: 0;
    }

    .NuestrosServicios1 img,
    .NuestrosServicios2 img,
    .NuestrosServicios3 img,
    .NuestrosServicios4 img {
        width: 100px;
        height: 100px;
    }

    .NuestrosServicios1 h3,
    .NuestrosServicios2 h3,
    .NuestrosServicios3 h3,
    .NuestrosServicios4 h3 {
        font-size: 1.25rem;
    }

    .NuestrosServicios1 p,
    .NuestrosServicios2 p,
    .NuestrosServicios3 p,
    .NuestrosServicios4 p {
        font-size: 1rem;
    }
}


/* MEDIA QUERIES NUESTROS PLANES */

@media (max-width: 768px) {
    .Secciones-NuestrosPlanes {
        height: auto;
        padding-bottom: 40px;
    }

    .Contenedor-Planes {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 0 20px;
    }

    .div1,
    .div2,
    .div3,
    .div4 {
        width: 100%;
        max-width: 400px;
        height: auto;
        padding: 15px 0;
    }

    .div1 h3,
    .div2 h3,
    .div3 h3,
    .div4 h3 {
        font-size: 1.25rem;
    }

    .div1 li,
    .div2 li,
    .div3 li,
    .div4 li {
        font-size: 1rem;
    }

    .div1 p,
    .div2 p,
    .div3 p,
    .div4 p {
        font-size: 1rem;
    }
}


/* MEDIA QUERIES TRABAJOS REALIZADOS */

@media (max-width: 1024px) {
    .Contenedor-TrabajosRealizados {
        gap: 30px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .TrabajoRealizado1,
    .TrabajoRealizado2,
    .TrabajoRealizado3 {
        width: 45%;
        height: 30dvh;
        min-height: 200px;
    }
}

@media (max-width: 768px) {
    .Seccion-TrabajosRealizados {
        height: auto;
        margin-top: 100px;
    }

    .Contenedor-TrabajosRealizados {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding-top: 30px;
    }

    .TrabajoRealizado2,
    .TrabajoRealizado3 {
        width: 90%;
        height: auto;
        min-height: 200px;
    }

    .TrabajoRealizado2 img, 
    .TrabajoRealizado3 img {
        height: auto;
        max-height: 400px; 
    }
}


@media (max-width: 480px){
    .TrabajoRealizado2 img, 
    .TrabajoRealizado3 img {
        height: auto;
        max-height: 300px; 
        min-height: 300px;

    }
}

/* MEDIA QUERIES RESEÑAS */

@media (max-width: 768px) {
    .Seccion-Reseñas {
        height: auto;
        padding-top: 50px;
    }

    .Contenedor-Reseñas {
        flex-direction: column;
        height: auto;
    }

    .Reseñas-Izquierda {
        width: 90%;
        padding: 20px;
        text-align: center;
        margin: 0 auto 40px auto;
    }

    .Reseñas-Izquierda h2 {
        font-size: 1.75rem;
    }

    .Reseñas-Izquierda p {
        font-size: 1.1rem;
    }

    .Reseñas-Derecha {
        width: 100%;
        height: auto;
        align-items: center;
        justify-content: center;
        gap: 30px;
    }

    .Reseña1,
    .Reseña2,
    .Reseña3 {
        width: 90%;
        height: auto;
        padding: 15px;
        margin-bottom: 20px;
    }

    .Reseña-Superior {
        height: auto;
        flex-direction: row;
        padding-bottom: 10px;
    }

    .Imagen-Reseña {
        width: 30%;
        height: auto;
        padding-right: 15px;
        justify-content: flex-start;
    }

    .Imagen-Reseña img {
        width: 80px;
        height: 80px;
    }

    .Datos-Reseña {
        width: 70%;
        height: auto;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .Datos-Reseña h3 {
        font-size: 1.1rem;
    }

    .Datos-Reseña p {
        font-size: 0.9rem;
    }

    .Reseña-Inferior {
        height: auto;
        padding: 15px 0;
    }

    .Reseña-Inferior p {
        padding: 0;
        font-size: 1rem;
    }
}


/* MEDIA QUERIES CONTACTO */
@media (max-width: 768px) {
    .Seccion-Contacto {
        height: auto;
        margin-top: 80px;
        margin-bottom: 100px;
    }

    .Contenedor-Contacto {
        flex-direction: column;
        align-items: center;
        height: auto;
        gap: 40px;
    }

    .Contacto-Izquierda,
    .Contacto-Derecha {
        width: 100%;
        height: auto;
        padding: 0;
    }

    .Contacto-Izquierda {
        padding: 0 10px;
        text-align: center;
    }

    #Map {
        width: 90%;
        height: 40dvh;
        margin: 0 auto;
    }

    .Formulario-Contacto {
        width: 90%;
        height: auto;
        padding: 0;
    }

    .Formulario-Contacto input,
    .Formulario-Contacto textarea {
        width: 100%;
        height: auto;
        min-height: 40px;
        font-size: 1rem;
        margin-top: 15px;
        padding: 8px;
    }

    .Formulario-Contacto textarea {
        min-height: 80px;
    }

    .Formulario-Contacto button {
        width: 60%;
        height: 40px;
        font-size: 1rem;
        margin-top: 20px;
    }
}


/* MEDIA QUERIES FOOTER */

@media (max-width: 768px) {
    .Seccion-Footer {
        height: auto;
    }

    .Contenedor-Footer {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .Footer-Informacion,
    .Footer-Navbar,
    .Footer-Redes {
        width: 100%;
        height: auto;
        text-align: center;
    }

    .Footer-Navbar ul{
        padding: 0;
    }

    .Footer-Navbar li {
        list-style: none;
    }

    .Footer-Redes {
        justify-content: center;
    }

    .Footer-Redes ul {
        flex-wrap: wrap;
        gap: 15px;
    }

    .Footer-Redes .fa-instagram,
    .Footer-Redes .fa-x-twitter,
    .Footer-Redes .fa-square-facebook,
    .Footer-Redes .fa-whatsapp {
        font-size: 1.5rem;
        margin: 10px;
    }

    .Copyright-Footer {
        height: auto;
        padding: 10px 0;
    }
}




/*MEDIA QUERIES PARA PANTALLAS MEDIANAS*/


@media screen and (min-width: 769px) and (max-width: 1280px) {
  /* SECCION PRINCIPAL */

  .Seccion-Principal {
    flex-direction: column;
    height: auto;
    padding-top: 40px;
    align-items: center;
  }

  .SeccionPrincipal-Izquierda,
  .SeccionPrincipal-Derecha {
    width: 100%;
    text-align: center;
    align-items: center;
  }

  .SeccionPrincipal-Izquierda h1 {
    font-size: 2rem;
  }

  .SeccionPrincipal-Derecha img {
    width: 70%;
    max-width: 300px;
  }


  /* SECCION NUESTROS SERVICIOS */

  
  .Contenedor-NuestrosServicios {
    gap: 20px;
    padding: 0;
    padding-top: 50px;
  }

  .NuestrosServicios1,
  .NuestrosServicios2,
  .NuestrosServicios3,
  .NuestrosServicios4 {
    width: 35%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px;

  }


  /* SECCION NUESTROS PLANES*/

  .Contenedor-Planes {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, auto);
    gap: 20px;
    padding: 20px;
  }

  .div1,
  .div2,
  .div3,
  .div4 {
    grid-area: auto;
  }


  /* SECCIONES NUESTROS TRABAJOS */

  .Seccion-TrabajosRealizados{
    margin-top: 0;
  }

  .Contenedor-TrabajosRealizados {
    flex-direction: column;
    align-items: center;
  }

  .TrabajoRealizado2,
  .TrabajoRealizado3 {
    width: 80%;
    margin-bottom: 20px;
  }


  /* SECCIONES RESEÑAS */
  .Contenedor-Reseñas {
    flex-direction: column;
    align-items: center;
  }

  .Reseñas-Izquierda,
  .Reseñas-Derecha {
    width: 100%;
    padding: 20px;
  }

  .Reseñas-Izquierda h2, .Reseñas-Izquierda p{
    text-align: center;
  }

  .Reseñas-Izquierda{
    margin-top: 80px;
  }

  .Reseñas-Derecha {
    gap: 20px;
  }

  .Reseña1,
  .Reseña2,
  .Reseña3 {
    width: 80%;
  }

  /* SECCION CONTACTO */

  .Seccion-Contacto{
    margin-top: 400px;
  }

  .Contenedor-Contacto {
    flex-direction: column;
  }

  .Contacto-Izquierda,
  .Contacto-Derecha {
    width: 100%;
    height: auto;
    padding: 20px;
  }

  #Map {
    width: 90%;
  }

  .Formulario-Contacto {
    width: 80%;
  }


  /* SECCION FOOTER */

    .Seccion-Footer {
    position: relative;
    background-color: #582862;
    margin-top: 580px; 
    padding-top: 60px;
    padding-bottom: 500px;
    z-index: 1;
    }

    .Contenedor-Footer {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    }

    .Footer-Informacion,
    .Footer-Navbar,
    .Footer-Redes {
    width: 100%;
    height: auto; 
    padding: 10px 0;
    text-align: center;
    }

    .Footer-Navbar ul {
    padding: 0;
    margin: 0;
    }

    .Footer-Navbar li {
    margin: 10px 0;
    list-style: none;
    }

    .Footer-Redes ul {
    justify-content: center;
    gap: 15px;
    }

    .Footer-Redes i {
    font-size: 1.5rem;
    }
    }


/* MEDIA QUERIES NEST HUB */

@media screen and (min-width: 1024px) and (max-height: 600px){
    .Secciones-NuestrosPlanes ,.Contenedor-Planes{
        height: auto;
    }

    .Contenedor-Planes .div1{
        padding: 12px;
    }


    .Seccion-Reseñas{
        padding: 50px;
        height: auto;
    }

    .Contenedor-Reseñas, .Reseñas-Derecha{
        height: auto;
    }

    .Reseñas-Izquierda{
        margin-top: 20px;
    }

    .Seccion-Contacto{
        margin: 0;
        height: auto;

    }

    .Seccion-Contacto h2{
        margin-top: 20px !important;
    }

    .Seccion-Footer{
        margin-top: 0;
    }
}



/* MEDIA QUERIES NEST HUB MAX*/

@media screen and (min-width: 1024px) and (max-height: 800px) {
    .Seccion-NuestrosServicios, .Contenedor-NuestrosServicios{
        height: auto;
    }

    .Seccion-NuestrosServicios{
        margin-top: 80px;
    }

    .Secciones-NuestrosPlanes{
        margin-top: 80px;
    }

    .Secciones-NuestrosPlanes h2{
        padding: 0;
    }

    .Seccion-Reseñas, .Contenedor-Reseñas, .Reseñas-Derecha{
        height: auto;
    }
  
    .Seccion-Reseñas{
        padding: 0;
    }

    .Reseña1,
    .Reseña2,
    .Reseña3 {
        height: 34dvh; 
    }

    .Reseña-Inferior {
        height: 20dvh;
    }

    .Reseña-Superior {
        height: 14dvh;
    }

    .Imagen-Reseña img {
        width: 80px;
        height: 80px;
        object-fit: cover;
    }

    .Seccion-Contacto{
        margin-top: 80px;
    }
}


/* 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 screen and (max-width: 344px) and (max-height: 882px){
    .navbar h2{
        font-size: 28px;
    }
}



@media screen and (min-width: 768px) and (max-width: 768px)
  and (min-height: 1024px) and (max-height: 1024px) {

    .Imagen-Reseña{
        width: 15%;
    }

    .Imagen-Reseña img {
        width: 80px;
        height: 80px;
    }
}


@media screen and (min-width: 820px) and (max-width: 820px)
  and (min-height: 1180px) and (max-height: 1180px) {

    .Secciones-NuestrosPlanes {
        margin-top: 80px;
    }
}