@charset "UTF-8";
/* Estilos base - Barra menú: color teal, compacta. menu-responsive.css define detalle. */
.linea {
  position: fixed;
  top: 46px;
  left: 0;
  right: 0;
  height: 72px;
  background-color: #5ACDD1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0.6rem;
  z-index: 9998;
  box-shadow: none;
}

.logo {
  height: 110px;
  width: auto;
  margin-top: 0;
  z-index: 10001;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}

.navegacion {
  display: flex;
  background-color: transparent;
}

.navegacion ul {
  list-style: none;
  display: flex;
  gap: 0.3rem;
  padding: 0;
  margin: 0;
}

.navegacion li a {
  text-decoration: none;
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  font-family: Arial, sans-serif;
}

.navegacion li a:hover {
  color: rgba(255, 255, 255, 0.85);
}

.navegacion li.nav-activo > a,
.navegacion .dropdown.nav-activo > a {
  color: #fff;
  font-weight: 600;
  border-bottom: none;
  padding-bottom: 0.4rem;
}
.navegacion .submenu li.nav-activo a {
  color: #fff;
  font-weight: 500;
  border-bottom: none;
  padding-bottom: 0;
}

.navegacion .dropdown {
  position: relative;
}

.navegacion .dropdown .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 10px;
  background-color: #5ACDD1;
  padding: 0.5rem 0;
  z-index: 1000;
}

.navegacion .dropdown:hover .submenu {
  display: block;
}

.navegacion .submenu li {
  display: block;
  white-space: nowrap;
}

.navegacion .submenu a {
  display: block;
  padding: 0.5rem 1rem;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-family: Arial, sans-serif;
}

/* RESPONSIVE DESIGN */
/* Tablets y móviles (<=1024px) */
@media (max-width: 1024px) {
  .menu-toggle {
    display: block;
  }
  .navegacion {
    display: none;
    position: absolute;
    top: 80px;
    right: 0;
    background-color: var(--azulprincipal);
    width: 100vw;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  .navegacion.active {
    display: flex;
  }
  .navegacion ul {
    flex-direction: column;
    gap: 1rem;
  }
}
/* Móviles medianos (<=768px) */
@media (max-width: 768px) {
  .linea {
    padding: 0 1rem;
  }
  .logo {
    width: 8rem;
  }
  .menu-toggle {
    font-size: 2rem;
  }
}
/* Móviles pequeños (<=480px) */
@media (max-width: 480px) {
  .linea {
    flex-direction: row;
    justify-content: space-between;
    padding: 0 2rem;
  }
  .logo {
    width: 7rem;
  }
  .menu-toggle {
    font-size: 2rem;
  }
}
.video-container {
  position: relative;
  top: 60px;
  width: 100%;
  height: calc(100vh - 60px);
  overflow: hidden;
  z-index: 1;
}

.video-container video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.video-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
  z-index: 2;
}

.video-container .texto-encima {
  font-family: "Poetsen One", sans-serif;
  font-weight: 400;
  font-size: 4rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--blanco);
  z-index: 3;
  padding: 0 1rem;
  text-align: center;
  width: 100%;
  max-width: 90%;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  animation: textoEntrada 1.2s ease-out forwards;
  opacity: 1;
  transition: opacity 1s ease-in-out;
}

.texto-encima .subtexto {
  background-color: rgba(247, 113, 3, 0.84);
  padding: 1rem 2rem;
  border-radius: 10px;
  margin-top: 1rem;
  color: var(--blanco);
  font-size: 2rem;
  display: inline-block;
  font-weight: 300;
}

/* Botón flotante */
.boton-descubre {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  background: #f77103;
  color: white;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 30px;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease;
}

.boton-descubre:hover {
  background: #e45c00;
}

/* ANIMACIONES */
@keyframes textoEntrada {
  0% {
    opacity: 0;
    transform: translate(-50%, -70%) scale(0.8);
    filter: blur(5px);
  }
  60% {
    opacity: 1;
    transform: translate(-50%, -52%) scale(1.05);
    filter: blur(1px);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    filter: blur(0);
  }
}
@keyframes textoSalida {
  0% {
    opacity: 1;
    filter: blur(0px);
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    filter: blur(8px);
    transform: translate(-50%, -60%) scale(0.9);
  }
}
.video-container .texto-encima.oculto {
  animation: textoSalida 1.2s ease-in-out forwards;
  pointer-events: none;
}

/* RESPONSIVE */
@media (max-height: 768px) {
  .video-container .texto-encima {
    font-size: 2.5rem;
  }
  .texto-encima .subtexto {
    font-size: 2rem;
    padding: 1rem;
  }
}
@media (max-width: 480px) {
  .video-container .texto-encima {
    font-size: 2.4rem;
  }
  .texto-encima .subtexto {
    font-size: 1.8rem;
    padding: 0.5rem 1rem;
  }
  .boton-descubre {
    font-size: 1rem;
    padding: 0.6rem 1.5rem;
    bottom: 40px;
  }
}
@media (max-width: 300px) {
  .video-container .texto-encima {
    font-size: 2.1rem;
  }
  .texto-encima .subtexto {
    font-size: 1.2rem;
  }
}
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: var(--azulprincipal);
  padding: 40px 60px;
  color: white;
  font-family: Georgia, "Times New Roman", Times, serif;
}

.footer-box {
  flex: 1 1 22%;
  margin: 10px;
  min-width: 200px;
}

.footer-box i {
  margin-right: 5px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 15px;
}

.footer-box h4 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #fff;
}

.footer-box p,
.footer-box a {
  font-size: 16px;
  color: #ffffff;
  text-decoration: none;
  margin: 6px 0;
  display: block;
}

.footer-box a:hover {
  color: #a0a0a0;
}

.footer-bottom {
  text-align: center;
  background-color: #0b3a63;
  color: white;
  padding: 15px;
  font-size: 16px;
}

.footer-bottom i {
  color: white;
}

/* Quitar estilo de lista si usas ul/li */
.footer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-box li {
  margin: 6px 0;
}

@media (max-width: 1200px) {
  .footer {
    margin: 30rem auto 0;
    padding: auto;
  }
  .footer-box {
    flex: 1 1 45%;
  }
}
/* Hasta 800px */
@media (max-width: 800px) {
  .footer {
    margin: auto;
  }
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-box {
    flex: 1 1 100%;
    max-width: 500px;
  }
  .footer-logo {
    margin: 0 auto 20px;
  }
}
/* Hasta 450px */
@media (max-width: 450px) {
  .footer-container {
    padding: 30px 15px;
  }
  .footer-box h4 {
    font-size: 17px;
  }
  .footer-box p,
  .footer-box a {
    font-size: 15px;
  }
  .footer-bottom {
    font-size: 14px;
    padding: 12px;
  }
}
.hero-imagen {
  background-image: url("../img/portada-montala.jpg"); /* Cambia esta ruta por la correcta */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.hero-imagen .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-imagen .texto-encima,
.hero-imagen .boton-descubre {
  position: relative;
  z-index: 2;
}

.hero-imagen .texto-encima p {
  font-family: "Poetsen One", sans-serif;
  font-size: 2.5rem;
  margin: 0.5rem 0;
}

.hero-imagen .subtexto {
  font-size: 1.4rem;
}

.hero-imagen .boton-descubre {
  margin-top: 1.5rem;
  padding: 0.8rem 1.6rem;
  background-color: #0056b3;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.hero-imagen .boton-descubre:hover {
  background-color: #003f87;
}

.cabecera h1 {
  margin-top: 30px;
  margin-bottom: 50px;
  font-size: px;
  font-family: "Poetsen One", sans-serif;
  text-align: center;
  color: rgb(6, 73, 95);
}

.paquetes-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 24px;
}

.paquete {
  background: white;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 300px;
}

.paquete img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.paquete h3 {
  margin: 1rem 0 0.5rem;
}

.precio {
  color: green;
  font-weight: bold;
  margin-bottom: 1rem;
}

button {
  background-color: var(--azulprincipal);
  color: white;
  padding: 0.7rem 1.2rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Máximo 1200px */
@media (max-width: 1200px) {
  .hero-imagen .texto-encima p {
    font-size: 2.2rem;
  }
  .hero-imagen .subtexto {
    font-size: 1.2rem;
  }
}
/* Máximo 800px */
@media (max-width: 800px) {
  .hero-imagen {
    padding: 0 2rem;
  }
  .hero-imagen .texto-encima p {
    font-size: 2rem;
  }
  .hero-imagen .subtexto {
    font-size: 1.1rem;
  }
  .hero-imagen .boton-descubre {
    padding: 0.7rem 1.4rem;
    font-size: 1rem;
  }
}
/* Máximo 400px */
@media (max-width: 400px) {
  .hero-imagen {
    padding: 0 1rem;
  }
  .hero-imagen .texto-encima p {
    font-size: 1.6rem;
  }
  .hero-imagen .subtexto {
    font-size: 1rem;
  }
  .hero-imagen .boton-descubre {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
  }
}
@media (max-width: 400px) {
  .cabecera h1 {
    font-size: 30px;
  }
}
.agregar {
  background-color: #ffffff;
  margin: 10rem auto 5rem;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 500px;
}

.agregar h2 {
  color: #0077b6;
  text-align: center;
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

input[type=text],
input[type=email],
input[type=file] {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  transition: border-color 0.3s ease;
}

input:focus {
  border-color: #0077b6;
  outline: none;
}

button[type=submit] {
  background-color: #0077b6;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
}

button[type=submit]:hover {
  background-color: #005f86;
}

:root {
  --blanco: #ffffff;
  --negro: #000000;
  --azulprincipal: hsl(184, 74%, 45%);
  --gris: #ccc;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: white;
}

.siguenos {
  color: white;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 15px;
}

.linea-superior {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  background-color: var(--negro);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
  z-index: 9999;
  gap: 1rem;
}

@keyframes burbuja-rebote {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.3);
  }
  50% {
    transform: scale(0.9);
  }
  75% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.contador-burbuja {
  background-color: #d93025;
  color: #fff;
  margin-bottom: 14px;
  font-weight: 600;
  font-size: 12px;
  padding: 2px 7px;
  border-radius: 12px;
  margin-left: -3px;
  line-height: 1;
  display: inline-block;
  min-width: 20px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(217, 48, 37, 0.4);
  vertical-align: middle;
  transition: all 0.3s ease;
}

.contador-burbuja.oculto {
  opacity: 0;
  transform: scale(0);
}

.contador-burbuja.rebote {
  animation: burbuja-rebote 0.4s ease;
}

.text {
  font-family: Georgia, "Times New Roman", Times, serif;
  color: var(--blanco);
  opacity: 0.6;
  font-size: 16px;
  white-space: nowrap;
}

.contenedor-derecho {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: nowrap;
  overflow: hidden;
}

.nombre-usuario,
.linea-superior a {
  font-family: Georgia, "Times New Roman", Times, serif;
  color: rgba(255, 255, 255, 0.745);
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.logo {
  height: 120px;
  margin-top: 10px;
  width: auto;
}

.contenido-box2 {
  background: linear-gradient(135deg, #f5f5f5, #ffffff);
  padding: 60px 20px;
  text-align: center;
  max-width: 1000px;
  margin: 150px auto 150px auto;
  border-radius: 15px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contenido-box2 .imagen {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.contenido-box2 h1 {
  font-family: "Poetsen One", sans-serif;
  font-size: 2.2em;
  color: #ff7a00;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.contenido-box2 p {
  font-family: "Krub", sans-serif;
  font-size: 1.1em;
  color: #333;
  line-height: 1.6;
  max-width: 800px;
  margin: auto;
}

.fondo-texto .contenido button {
  padding: 20px;
  border-radius: 5px;
  background-color: rgb(5, 71, 96);
  color: white;
  font-family: Georgia, "Times New Roman", Times, serif;
}

.fondo-texto {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 20px;
  position: relative;
  text-align: center;
  color: white;
  overflow: hidden;
}

.fondo-texto::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  /* oscurece un poco para legibilidad, sin apagar tanto la imagen */
  z-index: 1;
}

.fondo-texto .contenido {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.fondo-texto h2 {
  font-family: "Poetsen One", sans-serif;
  font-size: 2em;
  margin-bottom: 20px;
  color: #ffcc70;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.fondo-texto p {
  font-family: "Krub", sans-serif;
  font-size: 1.1em;
  line-height: 1.7;
  color: #f1f1f1;
}

.fondo-texto .botones {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  justify-content: center; /* Centra los botones */
}

.fondo-texto .botones .boton {
  background-color: #ff7a00;
  color: white;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1em;
  display: inline-block;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.fondo-texto .botones .boton:hover {
  background-color: #e66a00;
  box-shadow: 0 4px 15px rgba(255, 122, 0, 0.4);
}

.info-seccion {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  text-align: center;
  background-color: #f9f9f9;
  padding: 4rem 2rem;
  gap: 2rem;
}
.info-seccion .info-bloque {
  flex: 1 1 200px;
  padding: 2rem 1rem;
  position: relative;
  border-left: 1px solid #ddd;
  background: white;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.info-seccion .info-bloque:first-child {
  border-left: none;
}
.info-seccion .info-bloque i {
  font-size: 2.5rem;
  color: var(--azulprincipal);
  margin-bottom: 1rem;
}
.info-seccion .info-bloque h3 {
  font-size: 1.4rem;
  color: var(--azulprincipal);
  margin-bottom: 0.5rem;
}
.info-seccion .info-bloque p {
  font-size: 1rem;
  color: #555;
}
.info-seccion .info-bloque:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.checkout-container h1 {
  color: lightblue;
}

.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  text-align: center;
  font-size: 32px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1ebe57;
}

@media (max-width: 576px) {
  .whatsapp-float {
    width: 48px;
    height: 48px;
    font-size: 26px;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    right: calc(16px + env(safe-area-inset-right, 0px));
  }
}
@media (max-width: 480px) {
  .whatsapp-float {
    width: 44px;
    height: 44px;
    font-size: 22px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    right: calc(12px + env(safe-area-inset-right, 0px));
  }
}

/* Sección Quiénes Somos */
.quienes-somos {
  padding: 10rem 20px 100px 20px;
  font-family: "Arial", sans-serif;
  background-color: #f5f9ff;
}

.quienes-somos h2 {
  font-family: "Poetsen One", sans-serif;
  font-size: 50px;
}

.quienes-somos .container {
  max-width: 1000px;
  margin: auto;
}

.titulo-seccion {
  text-align: center;
  color: var(--azulprincipal);
  font-size: 36px;
  margin-bottom: 40px;
}

.quienes-somos .contenido {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.quienes-somos .texto {
  flex: 1 1 50%;
  font-size: 18px;
  color: #333;
  line-height: 1.6;
}

.quienes-somos p {
  font-size: 23PX;
}

.quienes-somos .imagen {
  flex: 1;
  text-align: center;
}

.quienes-somos .imagen img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.mision-vision .overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 60px 20px;
  border-radius: 10px;
}

.contenido-box {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1000px;
  margin: auto;
}

.box {
  flex: 1 1 400px;
  background-color: rgba(255, 255, 255, 0.858);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}

.box:hover {
  transform: scale(1.03);
}

.box h3 {
  font-family: "Poetsen One", sans-serif;
  font-size: 40px;
  color: #c36d21;
  margin-bottom: 15px;
}

.box p {
  font-size: 18px;
  line-height: 1.6;
  color: #000000;
  font-family: Georgia, "Times New Roman", Times, serif;
}

.valores {
  margin-top: 15px;
  margin-bottom: 20px;
}

.cotizacion-container {
  background-color: #fdf9f6;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cotizacion-form-box {
  background-color: #fff;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.cotizacion-form-box h2 {
  margin-bottom: 20px;
  color: #3e3e3e;
  font-family: "Segoe UI", sans-serif;
  text-align: center;
}

.cotizacion-form input,
.cotizacion-form select,
.cotizacion-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 16px;
  font-family: "Segoe UI", sans-serif;
}

.cotizacion-form textarea {
  resize: none;
}

.cotizacion-form button {
  background-color: #0099cc;
  color: white;
  padding: 14px;
  width: 100%;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cotizacion-form button:hover {
  background-color: #0077aa;
}

.carrito-container {
  max-width: 900px;
  margin: 150px auto;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
}

.carrito-item {
  display: flex;
  gap: 20px;
  border-bottom: 1px solid #ccc;
  padding: 20px 0;
}

.carrito-item img {
  width: 120px;
  height: auto;
  border-radius: 6px;
}

.carrito-item-info {
  flex-grow: 1;
}

.btn-checkout {
  background-color: var(--azulprincipal);
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
  display: inline-block;
  text-decoration: none;
}

.btn-checkout:hover {
  background: rgb(16, 115, 116);
}

.btn-volver {
  text-decoration: none;
  color: var(--azulprincipal);
  font-weight: 600;
  margin-left: 10px;
  display: inline-block;
  padding: 8px 16px;
  border-radius: 6px;
  border: 1px solid var(--azulprincipal);
}

.btn-volver:hover {
  background: var(--azulprincipal);
  color: white;
}

.total {
  font-size: 1.2rem;
  text-align: right;
  margin-top: 20px;
  font-weight: 700;
}

.carrito-item p {
  margin-top: 5px;
}

.tipo-producto {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-icons {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #444;
}

.social-icons span {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.social-icons a {
  display: inline-block;
  margin: 0 10px;
  color: #004e92;
  font-size: 18px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  color: #000428;
  transform: scale(1.2);
}

/* === 1200px o menos === */
@media (max-width: 1200px) {
  .text,
  .nombre-usuario,
  .linea-superior a,
  .access {
    font-size: 16px;
  }
}
/* Media Query: Pantallas hasta 800px */
@media (max-width: 800px) {
  .linea-superior {
    padding: 0 1vw;
  }
  .text,
  .nombre-usuario,
  .linea-superior a,
  .access {
    font-size: 14px;
  }
  .contenedor-derecho {
    gap: 0.5rem;
  }
}
@media (max-width: 300px) {
  .linea-superior {
    flex-direction: unset;
    align-items: normal;
    height: 5px;
    padding: 100px;
    gap: 5px;
  }
  .linea-superior a {
    margin-left: 100rem;
    font-size: 15px;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .text,
  .nombre-usuario,
  .access {
    font-size: 15px;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .contenedor-derecho {
    gap: 0.2rem;
    max-width: 75%;
    overflow-x: auto;
    scrollbar-width: none;
    /* Firefox */
  }
  .contenedor-derecho::-webkit-scrollbar {
    display: none;
    /* Chrome */
  }
}
/* Para pantallas medianas (hasta 800px) */
@media (max-width: 800px) {
  .carrito-container {
    margin: 200px 20px;
    padding: 20px;
    max-width: 100%;
  }
  .carrito-item {
    flex-direction: row;
    gap: 15px;
    padding: 15px 0;
  }
  .carrito-item img {
    width: 100px;
    height: auto;
  }
  .carrito-item-info h3 {
    font-size: 1.2rem;
  }
  .carrito-item-info p,
  .carrito-item-info label {
    font-size: 1rem;
  }
  .carrito-item-info form label input[type=number] {
    width: 60px;
  }
  .btn-checkout {
    width: auto;
    padding: 8px 16px;
  }
  .btn-volver {
    margin-left: 10px;
  }
  .total {
    font-size: 1.3rem;
  }
}
@media (max-width: 600px) {
  .cotizacion-form-box {
    padding: 25px;
  }
}
/* Para móviles pequeños (400px) */
@media (max-width: 400px) {
  .carrito-container {
    margin-top: 100rem;
    margin: 80px 10px;
    padding: 15px;
    max-width: 100%;
  }
  .carrito-item {
    flex-direction: column;
    gap: 12px;
    padding: 15px 0;
  }
  .carrito-item img {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin: 0 auto;
  }
  .carrito-item-info {
    flex-grow: 0;
  }
  .carrito-item-info h3 {
    font-size: 1.1rem;
  }
  .carrito-item-info p,
  .carrito-item-info label {
    font-size: 0.9rem;
  }
  .carrito-item-info form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
  }
  .carrito-item-info form label input[type=number] {
    width: 50px;
  }
  .btn-checkout {
    width: 100%;
    padding: 10px 0;
    font-size: 1rem;
  }
  .btn-volver {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 10px;
    padding: 10px 0;
  }
  .total {
    font-size: 1.4rem;
  }
}
/* Responsive para quienes somos */
@media (max-width: 1200px) {
  .quienes-somos {
    padding: 10rem 20px 100px 20px;
  }
  .quienes-somos .contenido {
    flex-direction: column-reverse;
    text-align: center;
  }
  .quienes-somos .imagen img {
    max-width: 90%;
  }
  .mision-vision {
    flex-direction: row;
    padding: 3rem 2rem;
  }
  .mision-vision .bloque {
    flex: 1 1 45%;
  }
}
@media (max-width: 800px) {
  .quienes-somos {
    padding: 10rem 20px 100px 20px;
  }
  .quienes-somos .contenido {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }
  .quienes-somos .texto {
    text-align: center;
  }
  .quienes-somos .texto h2,
  .quienes-somos .texto h3,
  .quienes-somos .texto p {
    margin-left: auto;
    margin-right: auto;
  }
  .quienes-somos .imagen img {
    max-width: 90%;
  }
  .mision-vision {
    flex-direction: column;
    align-items: center;
  }
  .mision-vision .bloque {
    width: 90%;
    text-align: center;
  }
  .mision-vision h2 {
    font-size: 1.8rem;
  }
  .mision-vision p {
    font-size: 1.1rem;
  }
  .box {
    flex: 1 1 50px;
    padding: 10px;
  }
}
@media (max-width: 800px) {
  .contenido-box {
    flex-direction: column;
    align-items: center;
  }
  .box {
    width: 100%;
  }
}
/* Responsive para móviles */
@media (max-width: 500px) {
  .quienes-somos {
    padding: 12rem 1rem;
  }
  .quienes-somos h2 {
    font-size: 37px;
  }
  .quienes-somos .texto h2 {
    font-size: 1.8rem;
  }
  .quienes-somos .imagen img {
    max-width: 100%;
  }
  .mision-vision {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
  }
  .box {
    flex: 1 1 40px;
  }
}/*# sourceMappingURL=main.css.map */