*, *::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;
    padding-top: 15dvh;

}



/* DISEÑO NAVBAR */

.Navbar {
    width: 100%;
    height: 15dvh;
    display: flex;
    flex-direction: row;
    position: fixed;
    top: 0;
    z-index: 1000;
    background-color: rgb(255, 255, 255, 0.7);
}


.Navbar-Izquierda{
    width: 14%;
    height: 15dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(255, 255, 255, 0.7);
}

.Navbar-Izquierda img{
    width: 200px;
    height: 200px;
    object-fit: contain;
}

.Navbar-Derecha{
    width: 100%;
    height: 15dvh;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background-color: rgb(255, 255, 255, 0.7)
}


.Navbar-Derecha ul{
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;

}

.Navbar-Derecha li{
    display: flex;
    align-items: center;
    list-style: none;
}



.Navbar-Derecha li a{
    margin: 20px;
    text-decoration: none;
    color: #6A86AA;
    font-size: 18px;
    position: relative;
    transition: color 0.5s ease;
    background-color: rgb(255, 255, 255, 0.7);
}


.Navbar-Derecha li a::after {
    content: '';
    position: absolute;
    bottom: -3px; 
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #6A86AA, transparent);
    background-size: 300% 100%;
    opacity: 0;
    transition: opacity 0.5s;
    
}

.Navbar-Derecha li a:hover {
    color: #6A86AA;
}

.Navbar-Derecha li a:hover::after {
    opacity: 1;
    animation: shimmer111 2s linear infinite;
}

@keyframes shimmer111 {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}


.Navbar-Derecha .Contactenos{
    background-color: #6A86AA;
    color: white;
    padding: 8px;
    border-radius: 5px;
}

.Navbar-Derecha .Contactenos:hover{
    background-color: rgb(181, 198, 219);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  height: 25px;
  justify-content: space-between;
}

.menu-toggle span {
  display: block;
  height: 4px;
  width: 100%;
  background: #003E7B; 
  border-radius: 3px;
  transition: 0.3s ease;
}


.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8.5px, -9px);
}


.Navbar-Derecha ul {
  display: flex;
  list-style: none;
  gap: 25px;
  background-color: rgb(255, 255, 255, 0);
}


.Navbar-Derecha ul li a {
  text-decoration: none;
  color: #003E7B;
  font-weight: 600;
  background-color: rgb(255, 255, 255, 0);
  
}


/* DISEÑO SECCION PRINCIPAL */

.Seccion-Principal{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row; 
}

.SeccionPrincipal-Izquierda{
    width: 60%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 100px;
    animation: slide-in-fwd-center 1.5s 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;
  }
}

.SeccionPrincipal-Izquierda h1{
    color: #003E7B;
    margin: 0;
    font-size: 40px;
}

.SeccionPrincipal-Izquierda h2{
    color: #6A86AA;
    font-weight: 500;
    margin: 0;
    margin-top: 10px;
}

.SeccionPrincipal-Izquierda p{
    color: #6A86AA;
    margin: 0;
    margin-top: 5px;
}

.SeccionPrincipal-Derecha{
    width: 40%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 100px;
    animation: bounce-in-top 1.5s both;
}

@keyframes bounce-in-top {
  0% {
    transform: translateY(-500px);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    transform: translateY(0);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    transform: translateY(-65px);
    animation-timing-function: ease-in;
  }
  72% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  81% {
    transform: translateY(-28px);
    animation-timing-function: ease-in;
  }
  90% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  95% {
    transform: translateY(-8px);
    animation-timing-function: ease-in;
  }
  100% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
}


.SeccionPrincipal-Derecha img{
    width: 500px;
    height: 500px;
    object-fit: contain;
}



/* DISEÑO SECCION BENEFICIOS */

.Seccion-Beneficios{
    width: 100%;
    height: auto; 
    min-height: 65dvh; 
    background-color: #6A86AA;
    margin-top: 80px;
}

.Seccion-Beneficios h2{
    color: #FFFFFF;
    font-size: 30px;
    text-align: center;
    margin: 0;
    padding-top: 50px;
}

.Seccion-Beneficios p{
    color: #FFFFFF;
    font-size: 20px;
    text-align: center;
    margin: 0;
    margin-top: 15px;
    padding-bottom: 20px;
}

.Contenedor-Beneficios{
    width: 100%;
    height: auto;
    display: flex;
    margin-top: 30px;
    flex-direction: row;
    gap: 80px;
    justify-content: space-evenly;
    align-items: center;

}

.Beneficio1, .Beneficio2, .Beneficio3, .Beneficio4{
    width: 13%;
    height: 36dvh;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.Beneficio1 h3, .Beneficio2 h3, .Beneficio3 h3, .Beneficio4 h3{
    color: #003E7B;
    text-align: center;
    font-size: 24px;
    margin: 0;
    padding: 25px;
}

.Beneficio1 p, .Beneficio2 p, .Beneficio3 p, .Beneficio4 p{
    color: #6A86AA;
    text-align: center;
    font-size: 20px;
    margin: 0;
    padding: 5px;
}



/* DISEÑO SECCION CARACTERISTICAS */

.Seccion-Caracteristicas{
    width: 100%;
    height: auto;
    min-height: 70dvh;
    margin-top: 80px;
}

.Seccion-Caracteristicas h2{
    color: #003E7B;
    font-size: 30px;
    text-align: center;
    margin: 0;
}

.Seccion-Caracteristicas p{
    color: #6A86AA;
    font-size: 20px;
    text-align: center;
    margin: 0;
    margin-top: 15px;
}

.Contenedor-Caracterisiticas{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap; 
    margin-top: 80px;
}

.Caracteristica1, .Caracteristica2, .Caracteristica3, .Caracteristica4{
    width: 16%;
    height: auto;
}


.Imagen-Caracteristica{
    width: 100%;
    height: 15dvh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Imagen-Caracteristica img{
    width: 120px;
    height: 120px;
}

.Texto-Caracteristica{
    width: 100%;
    height: 25dvh;
}

.Texto-Caracteristica h3{
    color: #003E7B;
    text-align: center;
}

.Texto-Caracteristica p{
    color: #003E7B;
    text-align: center;
}



/* DISEÑO SECCION PLANES */

.Seccion-Planes{
    width: 100%;
    height: auto;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

.Seccion-Planes h2{
    color: #003E7B;
    font-size: 30px;
    text-align: center;
    margin: 0;
    padding-top: 10px;
}

.Seccion-Planes p{
    color: #6A86AA;
    font-size: 20px;
    text-align: center;
    margin: 0;
    margin-top: 15px;
}

.Contenedor-Planes{
    width: 100%;
    height: auto;
    margin-top: 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.Plan1, .Plan2{
    width: 20%;
    height: auto;
    background-color: #F5F5F5;
    border-radius: 7px;
}

.Plan1 h3, .Plan2 h3{
    color: #03AFF0;
    text-align: center;
    font-size: 20px;
}

.Plan1 p, .Plan2 p{
    color: #6A86AA;
    font-size: 18px;
    padding: 8px;
}

.Plan1 p span, .Plan2 p span{
    color: #003E7B;
    font-size: 24px;
    font-weight: 600;
}

.Plan1 ul, .Plan2 ul{
    margin: 0;
    padding: 0px 10px;
}

.Plan1 li, .Plan2 li{
    color: #6A86AA;
    font-size: 17px;
    padding: 9px;
    list-style: none;
    border-bottom: 1px solid #03AFF0;
    text-align: left;
}

#ultimo-li {
    border-bottom: none;
}


.Plan2 .Requisitos{
    margin: 0;
    margin-top: 40px;
}

.Plan2 .Requisitos-Explicacion{
    margin: 0;
    padding: 0;
    margin-top: 5px;
}

.Seccion-Planes .Explicacion{
    width: 50%;
    margin: auto;
    color: #6A86AA;
    font-size: 18px;
}



/* DISEÑO SECCION PROCESO */

.Seccion-Proceso{
    width: 80%;
    min-height: 80dvh;
    height: auto;
    margin: auto;
}

.Contenedor-Proceso{
    width: 80%;
    height: auto;
    display: flex;
    flex-direction: row;
    margin: auto;
    gap: 125px;

}

.Proceso-Izquierda{
    width: 50%;
    height: 80dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.Proceso-Izquierda h2{
    color: #003E7B;
    font-size: 30px;
    margin: 0;
}

.Proceso-Izquierda p{
    color: #6A86AA;
    font-size: 20px;
    margin: 0;
    margin-top: 9px;
}

.Proceso-Derecha{
    width: 50%;
    height: 80dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
}

.Proceso1, .Proceso2, .Proceso3, .Proceso4{
    width: 100%;
    min-height: 15dvh;
    height: auto;
    background-color: #F5F5F5;
    border-radius: 7px;
    display: flex;
    flex-direction: row;
    box-sizing: border-box;
}

.Icono-Proceso{
    width: 25%;
    height: 15dvh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Icono-Proceso img{
    width: 120px;
    height: 120px;
}


.Texto-Proceso{
    width: 75%;
    height: 15dvh;
    padding-left: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.Texto-Proceso h3{
    color: #03AFF0;
    font-size: 20px;
    margin: 0;
}

.Texto-Proceso p{
    color: #6A86AA;
    font-size: 18px;
    margin: 0;
    margin-top: 5px;
}

.Icono-Proceso,
.Texto-Proceso {
    height: auto;      /* que crezcan según su contenido */
}

/* DISEÑO SECCION INFORMACION */

.Seccion-Informacion{
    width: 100%;
    height: 95dvh;
    margin-top: 100px;
    
}

.Seccion-Informacion h2{
    color: #003E7B;
    font-size: 30px;
    margin: 0;
    text-align: center;
}


.Seccion-Informacion p{
    color: #6A86AA;
    font-size: 20px;
    margin: 0;
    margin-top: 9px;
    text-align: center;
}

.Contenedor-Informacion{
    width: 100%;
    height: 50dvh;
    display: flex;
    flex-direction: row;
    gap: 100px;
    justify-content: space-evenly;
    align-items: center;
}

.Informacion-Izquierda{
    width: 27%;
    height: 28dvh;
    background-color: #F5F5F5;
}

.Informacion-Derecha{
    width: 27%;
    height: 28dvh;
    background-color: #F5F5F5;
}


.Informacion-Izquierda h3, .Informacion-Derecha h3, .Informacion-Abajo h3{
    color: #03AFF0;
    font-size: 20px;
    text-align: center;
}

.Informacion-Abajo h3{
    padding-top: 20px;
}

.Informacion-Izquierda ul, .Informacion-Derecha ul, .Informacion-Abajo ul{
    margin: 0;
    padding: 0 15px;
}

.Informacion-Izquierda li, .Informacion-Derecha li, .Informacion-Abajo li{
    color: #6A86AA;
    font-size: 18px;
    margin: 15px;
}

.Informacion-Abajo{
    width: 50%;
    height: 25dvh;
    background-color: #F5F5F5;
    margin: auto;
}

.Seccion-Informacion h4{
    color: #03AFF0;
    font-size: 20px;
    text-align: center;
    margin: 0;
    margin-top: 40px;
}

.Seccion-Informacion p.Texto-Informacion {
    color: #6A86AA;
    font-size: 18px;
    align-items: center;
    font-style: italic;
}



/* DISEÑO SECCION NUESTROS TRABAJOS */

.Seccion-NuestrosTrabajos{
    width: 100%;
    height: 80dvh;
    margin-top: 100px;
}

.Seccion-NuestrosTrabajos h2{
    color: #003E7B;
    font-size: 30px;
    margin: 0;
    text-align: center;
}

.Seccion-NuestrosTrabajos p{
    color: #6A86AA;
    font-size: 20px;
    margin: 0;
    margin-top: 9px;
    text-align: center;
}

.Contenedor-NuestrosTrabajos{
    width: 100%;
    height: 70dvh;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}


.Trabajo1, .Trabajo2, .Trabajo3{
    width: 20%;
    height: 50dvh;
}


.Trabajo1 img, .Trabajo2 img, .Trabajo3 img{
    width: 382px;
    height: 465px;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.4s ease-in-out;
}


.Trabajo1 img:hover, .Trabajo2 img:hover, .Trabajo3 img:hover{
    transform: scale(1.15);
}


/* DISEÑO SECCION PREGUNTAS FRECUENTES */

.Seccion-PreguntasFrecuentes{
    width: 100%;
    height: auto;
}

.Contenedor-PreguntasFrecuentes{
    width: 90%;
    height: auto;
    margin: auto;
    margin-top: 15px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 50px;
}

.Seccion-PreguntasFrecuentes h2{
    color: #003E7B;
    font-size: 30px;
    margin: 0;
    text-align: center;
}

.Seccion-PreguntasFrecuentes p{
    color: #6A86AA;
    font-size: 20px;
    margin: 0;
    margin-top: 9px;
    text-align: center;
    

}

.Preguntas-Izquierda, .Preguntas-Derecha{
    width: 40%;
    height: auto;
    display: flex;
    justify-content: center;
}


.acordeon {
  width: 100%;
  max-width: 500px;
  margin-top: 20px;
  padding-bottom: 50px;
}

.acordeon .item {
  width: 100%;
  border-left: 2px solid #6D86AC;
  margin-bottom: 20px;
  padding-left: 15px;
}

.acordeon .pregunta {
  background-color: transparent;
  color: #003E7B;
  font-weight: bold;
  font-size: 1.125rem;
  padding: 10px 0;
  cursor: pointer;
  transition: color 0.3s;
}

.acordeon .pregunta:hover {
  color: #0053a8;
}

.acordeon .respuesta {
  max-height: 0;
  overflow: hidden;
  background-color: #F5F5F5;
  transition: max-height 0.5s ease, padding 0.3s ease;
  padding: 0 0;
  opacity: 0;
}

.acordeon .item.activa .respuesta {
  max-height: 200px;
  padding: 10px 0;
  opacity: 1;
  transition: max-height 0.6s ease, padding 0.3s ease, opacity 0.4s ease;
}

.acordeon .respuesta p {
  margin: 0;
  padding: 10px 10px;
  font-size: 18px;
  color: #6D86AC;
  text-align: start;

}


/* DISEÑO SECCION FORMULARIO */

.Caja-Fomulario{
    width: 80%;
    height: 65dvh;
    margin: auto;
    margin-top: 100px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    
}


.Caja-Fomulario h2{
    color: #003E7B;
    font-size: 30px;
    margin: 0;
    text-align: center;
}

.Caja-Fomulario p{
    color: #6A86AA;
    font-size: 20px;
    margin: 0;
    margin-top: 9px;
    text-align: center;
}

.Formulario{
    margin-top: 40px;
    width: 45%;
    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;
}

.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; }


.MensajeFormulario textarea {
    width: 100%;
    max-width: 100%;  
    font-family: sans-serif;
}

.Formulario textarea {
    width: 100%;
    height: 100%;
    padding: 15px;
    font-size: 1rem;
    border-radius: 5px;
    box-sizing: border-box;
    border: none;
    background-color: #eeeeee;
    resize: none; 
}


.BotonFormulario {
    grid-area: 5 / 1 / 6 / 5; /* en lugar de 6 */
    display: flex;
    justify-content: center;
    align-items: center;
}


.BotonFormulario button {
    padding: 15px 30px;
    font-size: 1rem;
    background-color: #006aa3;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease;
}

.BotonFormulario button:hover {
    background-color: #028bd4;
}


.Parrafo-Formulario{
    width: 100%;
    height: auto;
}

.Parrafo-Formulario p{
    width: 30%;
    color: #6D86AC;
    font-size: 18px;
    text-align: center;
    margin: auto;
    margin-top: 25px;
}



/* DISEÑO FOOTER */

.Footer{
    width: 100%;
    min-height: 30dvh;
    height: auto;
    background-color: #00275F;

}

.Contenedor-Footer{
    width: 100%;
    height: 25dvh;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap; 
}

.Footer-Informacion, .Footer-Items, .Footer-Redes{
    width: 25%;
    min-width: 250px;
    height: 25dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.Footer-Informacion h3{
    color: #FFFFFF;
    font-size: 28px;
    margin: 0;
    padding: 0;
    text-align: center;
}

.Footer-Informacion p{
    color: #FFFFFF;
    font-size: 20px;
    margin: 0;
    padding: 0;
    margin-top: 10px;
}

.Footer-Items ul{
    padding: 0;
    margin: 0;
    color: #FFFFFF;
    text-align: center;
}

.Footer-Items li{
    margin: 10px;
    list-style: none;
}

.Footer-Items a{
    color: #FFFFFF;
    text-decoration: none;
    font-size: 20px;

}

.Footer-Items a:hover{
    text-decoration: underline;
}


.Footer-Redes ul{
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.Footer-Redes li{
    margin: 15px;
    list-style: none;
}


.fa-instagram, .fa-tiktok, .fa-envelope, .fa-whatsapp{
    color: #FFFFFF;
    font-size: 40px;
    transition: transform 0.3s ease;
}

.fa-instagram:hover, .fa-tiktok:hover, .fa-envelope:hover, .fa-whatsapp:hover{
    transform: translateY(-5px)
}


.Footer-Copyright{
    width: 100%;
    min-height: 5dvh;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.Footer-Copyright h5{
    margin: 0;
    padding: 0;
    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; /* Asegura que quede encima de otros elementos */
}

.wsp-flotante:hover{
    background-color: #FFF;
    border: 2px solid #25d366;
    color: #25d366;
}



/* MEDIA QUERIES */

/* MEDIA QUERIES NAVBAR */
@media screen and (max-width: 1024px) {


  .Navbar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    z-index: 1000;
    background-color: #FFFFFF;
    
  }

  .Navbar-Izquierda img {
    width: 120px;
    height: auto;
  }



  .menu-toggle {
    display: flex;
    cursor: pointer;
    z-index: 1003; 
  }


  .Navbar-Derecha {
    display: none; 
    position: absolute;
    top: 514px; 
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: center;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
    z-index: 1003;
    background-color: #FFFFFF;
  }


  .Navbar-Derecha.active {
    display: flex;
  }


  .Navbar-Derecha ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding: 0;
    margin: 0;
    background-color: #FFFFFF;
  }

  .Navbar-Derecha ul li {
    width: 100%;
    background-color: #FFFFFF;
  }

  .Navbar-Derecha ul li a {
    display: block;
    padding: 12px 0;
    width: 100%;
    text-align: center;
    color: #003E7B;
    font-weight: 600;
    border-bottom: 1px solid #ddd;
    background-color: #FFFFFF;
  }

  .Navbar-Derecha ul li:last-child a {
    border-bottom: none;
  }


  .Navbar-Derecha .Contactenos {
    margin: 10px auto;
    width: 90%;
    background-color: #6A86AA;
    color: white;
    border-radius: 5px;
    text-align: center;
    padding: 8px 0;
  }

  .Navbar-Derecha .Contactenos:hover {
    background-color: rgb(181, 198, 219);
  }
}





/* MEDIA QUERIES SECCION PRINCIPAL */

@media screen and (max-width: 1200px) {
    .SeccionPrincipal-Izquierda {
        padding-left: 50px;
    }

    .SeccionPrincipal-Derecha {
        padding-right: 50px;
    }

    .SeccionPrincipal-Derecha img {
        width: 400px;
        height: 400px;
    }
}


@media screen and (max-width: 1024px) {
    .Seccion-Principal {
        flex-direction: column; 
        align-items: center;
        text-align: center;
    }

    .SeccionPrincipal-Izquierda {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .SeccionPrincipal-Izquierda h1{
        font-size: 40px;
    }

    .SeccionPrincipal-Izquierda h2{
        font-size: 30px;
    }

    .SeccionPrincipal-Izquierda p{
        font-size: 20px;
    }

    .SeccionPrincipal-Derecha {
        width: 100%;
        padding-right: 0;
        margin-top: 20px;
    }

    .SeccionPrincipal-Derecha img {
        width: 350px;
        height: auto;
    }
}


@media screen and (max-width: 768px) {
    .SeccionPrincipal-Izquierda h1 {
        font-size: 28px;
    }

    .SeccionPrincipal-Izquierda h2 {
        font-size: 20px;
    }

    .SeccionPrincipal-Derecha img {
        width: 280px;
    }
}


@media screen and (max-width: 480px) {
    .SeccionPrincipal-Izquierda h1 {
        font-size: 24px;
    }

    .SeccionPrincipal-Izquierda h2 {
        font-size: 18px;
    }

    .SeccionPrincipal-Izquierda p {
        font-size: 14px;
    }

    .SeccionPrincipal-Derecha img {
        width: 220px;
    }
}



/* MEDIA QUERIES SECCION BENEFICIOS */

@media screen and (max-width: 1200px) {
    .Contenedor-Beneficios {
        gap: 40px;
    }

    .Beneficio1, .Beneficio2, .Beneficio3, .Beneficio4 {
        width: 18%;
    }
}


@media screen and (max-width: 1024px) {
    .Seccion-Beneficios h2{
        font-size: 35px;
    }

    .Seccion-Beneficios p{
        font-size: 25px;
    }

    .Contenedor-Beneficios {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        padding-bottom: 30px;
    }

    .Beneficio1, .Beneficio2, .Beneficio3, .Beneficio4 {
        width: 80%;
        height: auto;
        padding: 20px;
    }
}


@media screen and (max-width: 480px) {
    .Seccion-Beneficios h2 {
        font-size: 25px;
    }

    .Seccion-Beneficios p {
        font-size: 19px;
    }

    .Beneficio1, .Beneficio2, .Beneficio3, .Beneficio4 {
        width: 90%;
    }

    .Beneficio1 h3, .Beneficio2 h3, .Beneficio3 h3, .Beneficio4 h3 {
        font-size: 17px;
    }

    .Beneficio1 p, .Beneficio2 p, .Beneficio3 p, .Beneficio4 p {
        font-size: 15px;
    }
}

@media screen and (max-width: 430px) {
    .Seccion-Beneficios h2{
        padding: 5px;
    }
    .Seccion-Beneficios p{
        padding: 8px;
    }
}


@media screen and (max-width: 414px) {
    .Seccion-Beneficios h2{
        padding: 5px;
    }
}


@media screen and (max-width: 390px) {
    .Seccion-Beneficios p{
        padding: 5px;
    }
}

@media screen and (max-width: 375px) {
    .Seccion-Beneficios h2{
        font-size: 25px !important;
    }

    .Seccion-Beneficios p{
        font-size: 19px !important;
    }
}

@media screen and (max-width: 360px) {
    .Seccion-Beneficios h2{
        padding: 12px;
    }
}



/* MEDIA QUERIES SECCION CARACTERISTICAS */

@media screen and (max-width: 1200px) {
    .Caracteristica1, .Caracteristica2, .Caracteristica3, .Caracteristica4 {
        width: 20%;
    }

    .Imagen-Caracteristica img {
        width: 100px;
        height: 100px;
    }

    .Texto-Caracteristica h3 {
        font-size: 23px;
    }

    .Texto-Caracteristica p {
        font-size: 19px;
    }
}


@media screen and (max-width: 1024px) {
    .Contenedor-Caracterisiticas {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .Seccion-Caracteristicas h2{
        font-size: 35px;
    }

    .Seccion-Caracteristicas p{
        font-size: 25px;
    }

    .Caracteristica1, .Caracteristica2, .Caracteristica3, .Caracteristica4 {
        width: 80%;
    }

    .Imagen-Caracteristica img {
        width: 130px;
        height: 130px;
    }

    .Texto-Caracteristica {
        height: auto;
        padding: 10px 0;
    }

    .Texto-Caracteristica h3 {
        font-size: 28px;
    }

    .Texto-Caracteristica p {
        font-size: 23px;
    }
}

@media screen and (max-width: 820px) {
    .Imagen-Caracteristica img{
        width: 100px;
        height: 100px;
    }

    .Texto-Caracteristica h3{
        font-size: 24px;
    }

    .Texto-Caracteristica p{
        font-size: 20px;
    }
    
}


@media screen and (max-width: 768px) {
    .Contenedor-Caracterisiticas{
        padding-bottom: 120px;
    }


    .Caracteristica1, .Caracteristica2, .Caracteristica3, .Caracteristica4 {
        width: 90%;
    }

    .Imagen-Caracteristica img {
        width: 100px;
        height: 100px;
    }

    .Texto-Caracteristica h3 {
        font-size: 22px;
    }

    .Texto-Caracteristica p {
        font-size: 18px;
    }

    .Texto-Caracteristica {
        height: auto;
        padding: 8px 0;
    }
}


@media screen and (max-width: 480px) {
    .Contenedor-Caracterisiticas{
        padding-bottom: 0px;
    }

    .Seccion-Caracteristicas h2 {
        font-size: 25px;
    }

    .Seccion-Caracteristicas p {
        font-size: 19px;
    }

    .Caracteristica1, .Caracteristica2, .Caracteristica3, .Caracteristica4 {
        width: 95%;
    }

    .Imagen-Caracteristica img {
        width: 80px;
        height: 80px;
    }

    .Texto-Caracteristica h3 {
        font-size: 17px;
    }

    .Texto-Caracteristica p {
        font-size: 15px;
    }

    .Texto-Caracteristica {
        height: auto;
        padding: 5px 0;
    }
}

@media screen and (max-width: 375px) {
    .Seccion-Caracteristicas p{
        padding: 10px;
    }
}


/* MEDIA QUERIES SECCION PLANES */

@media screen and (max-width: 1200px) {
    .Plan1, .Plan2 {
        width: 25%;
    }

    .Plan1 h3, .Plan2 h3 {
        font-size: 21px;
    }

    .Plan1 p, .Plan2 p {
        font-size: 19px;
    }

    .Plan1 p span, .Plan2 p span {
        font-size: 25px;
    }

    .Plan1 li, .Plan2 li {
        font-size: 19px;
        padding: 7px;
    }
}


@media screen and (max-width: 1024px) {
    .Seccion-Planes{
        margin-top: 70px;
    }

    .Seccion-Planes h2{
        font-size: 35px;
    }

    .Seccion-Planes p{
        font-size: 25px;
    }

    .Contenedor-Planes {
        flex-direction: column; 
        align-items: center;
        gap: 20px;
        margin-bottom: 30px;
    }

    .Plan1, .Plan2 {
        width: 80%; 
        padding: 15px;
    }

    .Plan1 h3, .Plan2 h3{
        font-size: 28px;
    }

    .Plan1 li, .Plan2 li{
        font-size: 22px;
    }

     .Seccion-Planes .Explicacion {
        font-size: 22px;
    }
}


@media screen and (max-width: 820px) {
    .Seccion-Planes{
        margin-top: 80px;
    }
    
}


@media screen and (max-width: 768px) {
    .Plan1, .Plan2 {
        width: 90%;
        padding-bottom: 15px;
    }

    .Plan1 h3, .Plan2 h3 {
        font-size: 19px;
    }

    .Plan1 p, .Plan2 p {
        font-size: 17px;
    }

    .Plan1 p span, .Plan2 p span {
        font-size: 23px;
    }

    .Plan1 li, .Plan2 li {
        font-size: 17px;
        padding: 9px;
    }

    .Seccion-Planes .Explicacion {
        width: 90%;
        font-size: 19px;
    }
    .Contenedor-Planes{
        margin-bottom: 30px;
    }
}


@media screen and (max-width: 480px) {
    .Plan1, .Plan2 {
        width: 95%;
        padding-bottom: 15px;
    }

    .Plan1 h3, .Plan2 h3 {
        font-size: 17px;
    }

    .Plan1 p, .Plan2 p {
        font-size: 15px;
    }

    .Plan1 p span, .Plan2 p span {
        font-size: 21px;
    }

    .Plan1 li, .Plan2 li {
        font-size: 15px;
        padding: 8px;
    }

    .Seccion-Planes .Explicacion {
        width: 95%;
        font-size: 17px;
    }

    .Contenedor-Planes{
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 430px) {
    .Seccion-Planes h2{
        font-size: 25px;
    }
    .Seccion-Planes p{
        font-size: 19px;
    }
}

@media screen and (max-width: 414px) {
    .Seccion-Planes h2{
        font-size: 25px;
    }
    .Seccion-Planes p{
        font-size: 19px;
    }
}

@media screen and (max-width: 375px) {
    .Seccion-Planes h2{
        font-size: 25px !important;
    }

    .Seccion-Planes p{
        font-size: 19px !important;
    }

    .Plan1 h3, .Plan2 h3{
        font-size: 24px !important;
    }

    .Plan1 li, .Plan2 li{
        font-size: 19px !important;
    }
}

@media screen and (max-width: 360px) {
    .Seccion-Planes p{
        padding: 5px;
    }
}


/* MEDIA QUERIES SECCION PROCESO */

@media screen and (max-width: 1200px) {
    .Contenedor-Proceso {
        gap: 60px;
    }

    .Icono-Proceso img {
        width: 100px;
        height: 100px;
    }

    .Texto-Proceso h3 {
        font-size: 21px;
    }

    .Texto-Proceso p {
        font-size: 19px;
    }
}


@media screen and (max-width: 1024px) {
    .Seccion-Proceso{
        margin-top: 150px;
    }

    .Seccion-Proceso h2{
        text-align: center;
        font-size: 35px;

    }

    .Seccion-Proceso p{
        text-align: center;
        font-size: 25px;
    }

    .Contenedor-Proceso {
        flex-direction: column; 
        align-items: center;
        gap: 30px;
    }

    .Proceso-Izquierda {
        height: auto; 

    }


    .Proceso-Izquierda, .Proceso-Derecha {
        width: 100%;
    }

    .Proceso1, .Proceso2, .Proceso3, .Proceso4 {
        flex-direction: column; 
        align-items: center;
        gap: 30px;
        padding: 15px;
    }

    .Icono-Proceso, .Texto-Proceso {
        width: 100%;
        text-align: center;
        padding-left: 0;
    }

    .Icono-Proceso img {
        width: 100px;
        height: 100px;
    }

    .Texto-Proceso h3 {
        font-size: 24px;
    }

    .Texto-Proceso p {
        font-size: 22px;
    }
}


@media screen and (max-width: 820px) {
    .Seccion-Proceso, .Contenedor-Proceso{
        margin-top: 120px;
        height: auto;
    }
    
    .Seccion-Proceso h2, .Seccion-Proceso p{
        text-align: center;
    }

    .Proceso-Izquierda{
        padding: 0;
    }

    .Proceso-Derecha{
        height: auto;
    }
}

@media screen and (max-width: 768px) {
    .Seccion-Proceso{
        margin-top: 50px;
    }
    .Contenedor-Proceso {
        gap: 20px;
    }

    .Icono-Proceso img {
        width: 70px;
        height: 70px;
    }

    .Texto-Proceso h3 {
        font-size: 18px;
    }

    .Texto-Proceso p {
        font-size: 16px;
    }

    .Proceso-Izquierda h2, .Proceso-Izquierda p{
        text-align: center;
    }
}


@media screen and (max-width: 540px){
    .Proceso-Derecha{
        gap: 80px;
        height: auto;
    }
    .Proceso1, .Proceso2, .Proceso3, .Proceso4{
        padding: 10px;
    }
}
    


@media screen and (max-width: 480px) {
    .Seccion-Proceso {
        width: 90%;
        margin-top: 0;
    }

    .Contenedor-Proceso{
        margin-top: 0;
    }

    .Proceso-Izquierda {
        height: auto; 
        padding-top: 120px;
    }

    .Proceso-Izquierda h2, .Proceso-Izquierda p{
        text-align: center;
    }

    .Icono-Proceso img {
        width: 60px;
        height: 60px;
    }

    .Texto-Proceso h3 {
        font-size: 17px;
    }

    .Texto-Proceso p {
        font-size: 15px;
        word-wrap: break-word;
    }

    .Proceso1, .Proceso2, .Proceso3, .Proceso4 {
        flex-direction: column;   /* apila icono y texto */
        align-items: center;
        gap: 10px;
        height: auto;             /* que crezca con contenido */
        padding: 15px;  
    }
}

@media screen and (max-width: 430px) {
    .Seccion-Proceso h2{
        font-size: 25px;
    }
    .Seccion-Proceso p{
        font-size: 19px;
    }
}

@media screen and (max-width: 414px) {
    .Seccion-Proceso h2{
        font-size: 25px;
    }
    .Seccion-Proceso p{
        font-size: 19px;
    }
}

@media screen and (max-width: 390px) {
    .Proceso-Derecha{
        gap: 70px;
        height: auto;
    }
}

@media screen and (max-width: 375px) {
    .Seccion-Proceso{
        margin-top: 0 !important;
    }

    .Contenedor-Proceso h2{
        font-size: 25px !important;
    }

    .Contenedor-Proceso p{
        font-size: 19px !important;
    }


    .Contenedor-Proceso {
        gap: 15px;
        width: 95%;
    }

    .Proceso-Derecha{
        gap: 70px;
        height: auto;
    }

    .Proceso1, .Proceso2, .Proceso3, .Proceso4 {
        padding: 10px;
    }

    .Proceso1 h3, .Proceso2 h3, .Proceso3 h3, .Proceso4 h3{
        font-size: 21px !important;
    }

    .Texto-Proceso{
        width: 100%;
    }

    .Texto-Proceso p {
        font-size: 14px;
    }
}






/* MEDIA QUERIES SECCION INFORMACION */

@media screen and (max-width: 1024px) {
    .Seccion-Informacion{
        height: auto;
    }

    .Seccion-Informacion h2{
        text-align: center;
        font-size: 35px;
    }

    .Seccion-Informacion p{
        text-align: center;
        font-size: 25px;
    }

    .Contenedor-Informacion {
        flex-direction: column; 
        gap: 40px;
        height: auto; 
        margin-top: 30px;
    }

    .Informacion-Izquierda,
    .Informacion-Derecha {
        width: 80%;   
        height: auto; 
    }

    .Informacion-Izquierda h3, .Informacion-Derecha h3, .Informacion-Abajo h3{
        font-size: 24px;
    }

    .Informacion-Izquierda li, .Informacion-Derecha li, .Informacion-Abajo li{
        font-size: 24px;
    }

    .Informacion-Abajo {
        width: 90%;
        height: auto;
        padding-bottom: 20px;
    }

    .Informacion-Abajo{
        margin-top: 30px;
    }

    .Seccion-Informacion .Texto-Informacion{
        padding: 10px;
    }

    .Seccion-Informacion h4{
        font-size: 22px;
    }

    .Seccion-Informacion .Texto-Informacion {
        font-size: 20px !important;
    }



}

@media screen and (max-width: 820px){
    .Seccion-Informacion{
        height: auto;
    }
    .Contenedor-Informacion{
        margin-top: 50px;
    }

}


@media screen and (max-width: 768px) {
    .Seccion-Informacion {
        height: auto; 
        margin-top: 80px;
    }

    .Seccion-Informacion h2{
        font-size: 35px !important;
    }

    .Seccion-Informacion p{
        font-size: 25px !important;
        padding: 15px;
    }

    .Contenedor-Informacion {
        gap: 30px;
    }

    .Informacion-Izquierda,
    .Informacion-Derecha,
    .Informacion-Abajo {
        width: 95%;
        height: auto;
        padding: 15px 0;
    }

    .Seccion-Informacion h2 {
        font-size: 29px;
    }

    .Seccion-Informacion p {
        font-size: 21px;
    }

    .Informacion-Abajo{
        margin-top: 30px;
    }

    .Seccion-Informacion .Texto-Informacion{
        padding: 10px;
    }
}


@media screen and (max-width: 480px) {
    .Seccion-Informacion {
        margin-top: 100px;
    }

    .Seccion-Informacion h2 {
        font-size: 25px;
    }

    .Seccion-Informacion p {
        font-size: 19px;
        padding: 10px;
    }

    .Informacion-Izquierda ul,
    .Informacion-Derecha ul,
    .Informacion-Abajo ul{
        margin-left: 10px;
    }

    .Informacion-Izquierda li,
    .Informacion-Derecha li,
    .Informacion-Abajo li {
        font-size: 19px;
        margin: 10px 0;
    }

    .Informacion-Abajo{
        margin-top: 30px;
    }

    .Seccion-Informacion .Texto-Informacion{
        padding: 10px;
    }
}

@media screen and (max-width: 435px) {
    .Seccion-Informacion h2{
        padding: 5px;
        font-size: 25px !important;
    }

    .Seccion-Informacion p{
        padding: 5px;
        font-size: 19px !important;
    }
    
}

@media screen and (max-width: 414px) {
    .Seccion-Informacion h2{
        padding: 5px;
        font-size: 25px !important;
    }

    .Seccion-Informacion p{
        padding: 5px;
        font-size: 19px !important;
    }
    
}

@media screen and (max-width: 412px) {
    .Seccion-Informacion h2{
        font-size: 25px !important;
    }

    .Seccion-Informacion p{
        font-size: 19px !important;
    }
    
}

@media screen and (max-width: 375px){
    .Seccion-Informacion h2{
        font-size: 25px !important;
    }

    .Seccion-Informacion p{
        font-size: 19px !important;
    }

    .Informacion-Izquierda li, .Informacion-Derecha li, .Informacion-Abajo li{
        font-size: 18px !important;
    }
}


/* MEDIA QUERIES SECCION NUESTROS TRABAJOS */

@media screen and (max-width: 1024px) {
    .Seccion-NuestrosTrabajos{
        height: auto;
        margin-top: 150px;
    }

    .Seccion-NuestrosTrabajos h2{
        text-align: center;
        font-size: 35px;

    }

    .Seccion-NuestrosTrabajos p{
        text-align: center;
        font-size: 25px;

    }

    .Contenedor-NuestrosTrabajos{
        flex-direction: column;
        height: auto;
        gap: 60px;
        margin-top: 50px;
    }

    .Trabajo1, .Trabajo2, .Trabajo3{
        width: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .Trabajo1 img, .Trabajo2 img, .Trabajo3 img{
        width: 500px;
        height: 680px;
    }
}

@media screen and (max-width: 853px){
    .Seccion-NuestrosTrabajos p{
        padding: 8px;
    }

    .Trabajo1, .Trabajo2, .Trabajo3{
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .Trabajo1 img, .Trabajo2 img, .Trabajo3 img{
        width: 415px;
        height: 635px;
        object-fit: contain;
    }
}

@media screen and (max-width: 820px){
    .Seccion-NuestrosTrabajos{
        height: auto;
    }

    .Contenedor-NuestrosTrabajos{
        height: auto;
        flex-direction: column;
        margin-top: 50px;
        justify-content: center;
        align-items: center;
        
    }
    .Trabajo1 img, .Trabajo2 img, .Trabajo3 img{
        object-fit: contain;
        width: 320px;
        height: 580px;
    }
}


@media screen and (max-width: 768px) {
    .Seccion-NuestrosTrabajos{
        height: auto;
    }

    .Seccion-NuestrosTrabajos h2, .Seccion-NuestrosTrabajos p{
        padding: 9px;
    }

    .Contenedor-NuestrosTrabajos{
        flex-direction: column;
        height: auto;
        gap: 30px;
        margin-top: 30px;
    }

    .Trabajo1, .Trabajo2, .Trabajo3{
        width: 80%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .Trabajo1 img, .Trabajo2 img, .Trabajo3 img{
        width: 100%;
        max-width: 320px;
        height: auto;
    }
}

@media screen and (max-width: 540px){
    .Contenedor-NuestrosTrabajos{
        gap: 40px;
    }

    .Trabajo1 img, .Trabajo2 img, .Trabajo3 img{
        height: 350px;
    }
}


@media screen and (max-width: 480px) {
    .Seccion-NuestrosTrabajos h2, .Seccion-NuestrosTrabajos p{
        padding: 9px;
    }

    .Trabajo1, .Trabajo2, .Trabajo3{
        width: 95%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .Trabajo1 img, .Trabajo2 img, .Trabajo3 img{
        max-width: 280px;
    }
}

@media screen and (max-width: 430px) {
    .Seccion-NuestrosTrabajos h2{
        font-size: 25px;
    }
    .Seccion-NuestrosTrabajos p{
        font-size: 19px;
    }
}

@media screen and (max-width: 414px) {
    .Seccion-NuestrosTrabajos h2{
        font-size: 25px;
    }
    .Seccion-NuestrosTrabajos p{
        font-size: 19px;
    }
}

@media screen and (max-width: 375px) {
    .Contenedor-NuestrosTrabajos{
        gap: 40px;
    }

    .Trabajo1 img, .Trabajo2 img, .Trabajo3 img{
        object-fit: contain;
        height: 330px !important;
    }
}


/* MEDIA QUERIES SECCION PREGUNTAS FRECUENTES */

@media screen and (max-width: 1024px) {
    .Seccion-PreguntasFrecuentes{
        margin-top: 100px;
    }

    .Seccion-PreguntasFrecuentes h2{
        text-align: center;
        font-size: 35px;
    }

    .Seccion-PreguntasFrecuentes p{
        text-align: center;
        font-size: 25px;
    }

    .Contenedor-PreguntasFrecuentes {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .Preguntas-Izquierda,
    .Preguntas-Derecha {
        width: 80%;
    }

    .item .pregunta{
        font-size: 22px;
    }

    .item .respuesta p{
        font-size: 22px;
    }

    .acordeon {
        max-width: 100%;
    }
}

@media screen and (max-width: 853px){
    .Seccion-PreguntasFrecuentes p{
        padding: 8px;
    }
}

@media screen and (max-width: 820px){
    .Seccion-PreguntasFrecuentes h2{
        margin-top: 50px;
    }
}


@media screen and (max-width: 768px) {
  .Preguntas-Izquierda,
  .Preguntas-Derecha {
    width: 100%;
  }

  .Seccion-PreguntasFrecuentes h2 {
    margin-top: 80px;
  }

  .acordeon {
    padding-bottom: 30px;
  }

  .acordeon .pregunta {
    font-size: 1rem;
  }

  .acordeon .respuesta p {
    font-size: 16px;
  }
}


@media screen and (max-width: 480px) {
  .Seccion-PreguntasFrecuentes h2 {
    font-size: 24px;
    margin-top: 80px;
  }

  .Seccion-PreguntasFrecuentes p {
    font-size: 16px;
  }

  .acordeon .pregunta {
    font-size: 0.95rem;
  }

  .acordeon .respuesta p {
    font-size: 15px;
  }
}


@media screen and (max-width: 435px) {
    .Seccion-PreguntasFrecuentes h2{
        padding: 5px;
        font-size: 25px !important;
    }

    .Seccion-PreguntasFrecuentes p{
        padding: 5px;
        font-size: 19px !important;
    }
    
}


@media screen and (max-width: 390px) {
    .Seccion-PreguntasFrecuentes p{
        padding: 9px;
    }
}

/* MEDIA QUERIES SECCION FORMULARIO */

@media screen and (max-width: 1024px) {
    .Caja-Fomulario {
        width: 85%;
        height: auto; 
        margin-top: 50px;
        padding-bottom: 80px;
    }

    .Caja-Fomulario h2 {
        text-align: center;
        font-size: 35px;
    }

    .Caja-Fomulario p {
        font-size: 25px;
    }

    .Formulario {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .Formulario input,
    .Formulario textarea {
        width: 100%;
        font-size: 18px;
        padding: 12px;
    }

    .BotonFormulario button {
        width: 100%; 
    }

    .Parrafo-Formulario p{
        width: 80%;
    }
}

@media screen and (max-width: 820px){
    .Caja-Fomulario {
        width: 85%;
        height: auto; 
        margin-top: 50px;
        padding-bottom: 80px;
    }

    .Formulario {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .Formulario input,
    .Formulario textarea {
        width: 100%;
        font-size: 0.9rem;
        padding: 12px;
    }

    .BotonFormulario button {
        width: 100%; 
    }

    .Parrafo-Formulario p {
        width: 90%;
        font-size: 15px;
    }
}


@media screen and (max-width: 768px) {
    .Caja-Fomulario {
        width: 95%;
        height: auto; 
        margin-top: 50px;
        padding-bottom: 80px;
    }

    .Formulario {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .Formulario input,
    .Formulario textarea {
        width: 100%;
        font-size: 0.9rem;
        padding: 12px;
    }

    .BotonFormulario button {
        width: 100%; 
    }

    .Parrafo-Formulario p {
        width: 90%;
        font-size: 15px;
    }
}

@media screen and (max-width: 430px) {
    .Caja-Fomulario h2{
        font-size: 25px;
    }
    .Caja-Fomulario p{
        font-size: 19px;
    }
}

@media screen and (max-width: 414px) {
    .Caja-Fomulario h2{
        font-size: 25px;
    }
    .Caja-Fomulario p{
        font-size: 19px;
    }
}

@media screen and (max-width: 375px){
    .Caja-Fomulario h2{
        font-size: 24px !important;
    }

    .Caja-Fomulario p{
        font-size: 19px !important;
    }
}


/* MEDIA QUERIES FOOTER */

@media screen and (max-width: 1024px) {
    .Contenedor-Footer {
        flex-direction: column; /* Cambiado a columna */
        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-Informacion p{
        font-size: 28px;
    }

    .Footer-Items a {
        font-size: 25px;
    }

    .Footer-Redes .fa-instagram, 
    .Footer-Redes .fa-tiktok, 
    .Footer-Redes .fa-facebook {
        font-size: 40px;
    }

    .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: 28px;
        padding: 6px;
    }

    .Footer-Items li {
        list-style: none;
    }
}


@media screen and (max-width: 435px) {
    .Footer-Informacion h3{
        font-size: 28px;
    }

    .Footer-Informacion p{
        font-size: 20px;
    }
    
}

@media screen and (max-width: 414px) {
    .Footer-Informacion h3 {
        font-size: 25px;
    }

    .Footer-Informacion p {
        font-size: 20px;
    }

    .Footer-Items a {
        font-size: 16px;
    }

    .Footer-Redes .fa-instagram, 
    .Footer-Redes .fa-tiktok, 
    .Footer-Redes .fa-facebook {
        font-size: 28px;
        padding: 6px;
    }

    .Footer-Items li {
        list-style: none;
    }
}



/* MEDIA QUERIES NEST HUB */
@media screen and (max-width: 1024px) and (max-height: 600px) {
    .Caracteristica1, .Caracteristica2, .Caracteristica3, .Caracteristica4{
        height: auto;
    }

    .Imagen-Caracteristica img{
        width: 90px;
        height: 90px;
        object-fit: contain;
    }


    .Proceso-Derecha{
        height: auto;
    }

    .Seccion-NuestrosTrabajos, .Contenedor-NuestrosTrabajos{
        height: auto;
    }

    .Trabajo1, .Trabajo2, .Trabajo3{
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .Trabajo1 img, .Trabajo2 img, .Trabajo3 img{
        width: 400px;
        height: 400px;
    }

}


/* MEDIA QUERIES NEST HUB MAX */
@media screen and (max-width: 1280px) and (max-height: 800px){
    .Seccion-Beneficios h2{
        font-size: 35px;
    }

    .Seccion-Beneficios p{
        font-size: 25px;
    }

    .Contenedor-Beneficios {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        padding-bottom: 30px;
    }

    .Beneficio1, .Beneficio2, .Beneficio3, .Beneficio4 {
        width: 80%;
        height: auto;
        padding: 20px;
    }

    /* SECCION NUESTROS PLANES*/

    .Seccion-Planes{
        margin-top: 80px;
    }


    .Seccion-Planes h2{
        font-size: 35px;
    }

    .Seccion-Planes p{
        font-size: 25px;
    }

    .Contenedor-Planes {
        flex-direction: column; 
        align-items: center;
        gap: 20px;
        margin-bottom: 30px;
    }

    .Plan1, .Plan2 {
        width: 80%; 
        padding: 15px;
    }

    .Plan1 h3, .Plan2 h3{
        font-size: 28px;
    }

    .Plan1 li, .Plan2 li{
        font-size: 22px;
    }

     .Seccion-Planes .Explicacion {
        font-size: 22px;
    }

    /* SECCION PROCESO */
    .Seccion-Proceso{
        margin-top: 150px;
        height: auto;
    }

    .Seccion-Proceso h2{
        text-align: center;
        font-size: 35px;

    }

    .Seccion-Proceso p{
        text-align: center;
        font-size: 25px;
    }

    .Contenedor-Proceso {
        flex-direction: column; 
        align-items: center;
        gap: 30px;
        height: auto;
    }

    .Proceso-Izquierda {
        height: auto; 

    }


    .Proceso-Izquierda, .Proceso-Derecha {
        width: 100%;
    }

    .Proceso-Derecha{
        height: auto;
    }

    .Proceso1, .Proceso2, .Proceso3, .Proceso4 {
        flex-direction: column; 
        align-items: center;
        gap: 30px;
        padding: 15px;
    }

    .Icono-Proceso, .Texto-Proceso {
        width: 100%;
        text-align: center;
        padding-left: 0;
    }

    .Icono-Proceso img {
        width: 100px;
        height: 100px;
    }

    .Texto-Proceso h3 {
        font-size: 24px;
    }

    .Texto-Proceso p {
        font-size: 22px;
    }

    /* SECCION INFORMACION */
    .Seccion-Informacion{
        height: auto;
    }

    .Seccion-Informacion h2{
        text-align: center;
        font-size: 35px;
    }

    .Seccion-Informacion p{
        text-align: center;
        font-size: 25px;
    }

    .Contenedor-Informacion {
        flex-direction: column; 
        gap: 40px;
        height: auto; 
        margin-top: 30px;
    }

    .Informacion-Izquierda,
    .Informacion-Derecha {
        width: 80%;   
        height: auto; 
    }

    .Informacion-Izquierda h3, .Informacion-Derecha h3, .Informacion-Abajo h3{
        font-size: 24px;
    }

    .Informacion-Izquierda li, .Informacion-Derecha li, .Informacion-Abajo li{
        font-size: 24px;
    }

    .Informacion-Abajo {
        width: 90%;
        height: auto;
        padding-bottom: 20px;
    }

    .Informacion-Abajo{
        margin-top: 30px;
    }

    .Seccion-Informacion .Texto-Informacion{
        padding: 10px;
    }

    .Seccion-Informacion h4{
        font-size: 22px;
    }

    .Seccion-Informacion .Texto-Informacion {
        font-size: 20px !important;
    }

    /* SECION NUESTROS TRABAJOS */
    .Contenedor-NuestrosTrabajos{
        display: flex;
        justify-content: space-evenly;
    }

    .Trabajo1 img, .Trabajo2 img, .Trabajo3 img{
        width: 250px;
        height: 400px;
    }

    /* SECION FORMULARIO */
    .Caja-Fomulario {
        width: 75%;
        height: auto; 
        margin-top: 50px;
        padding-bottom: 80px;
    }

    .Caja-Fomulario h2 {
        text-align: center;
        font-size: 35px;
    }

    .Caja-Fomulario p {
        font-size: 25px; 
    }

    .Formulario {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .Formulario input,
    .Formulario textarea {
        width: 100%;
        font-size: 18px;
        padding: 12px;
    }

    .BotonFormulario button {
        width: 100%; 
    }

    .Parrafo-Formulario p{
        width: 80%;
    }

    /* FOOTER */
    .Footer{
        padding: 20px;
    }

    .Footer-Items li{
        list-style: none;
    }


}



/* 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;
    }
}