/* FUENTE ANTON */
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

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

html {
  font-size: 16px;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #ffffff;
  color: #182b4b;
  margin: 0;
  padding: 0;
  
}

/* COLORES CORPORATIVOS */
.azul {
  color: #182b4b;
}

.amarillo {
  color: #f8c51e;
}

.menu-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
}
/* HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  height: 6.25rem; /* o 6.25rem como tope */
  align-items: center;
  background-color: #182b4b;
  padding: 0 2.5rem;
  flex-wrap: wrap;
  gap: 1.875rem;
}

header.menu-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #182b4b;
  padding: 1.5rem 2.5rem;  
  flex-wrap: nowrap; /* 🚫 Evita que se bajen a segunda línea */
}

.header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.header-left {
  display: flex;
  align-items: center;
  height: 100%;
}
.logo-header {
  height: 37.5rem;
  width: auto;
  object-fit: contain;
  display: block;
  margin-top: 4.375rem;
  margin-left: -6.25rem;
  pointer-events: none; /* allow interactions with underlying elements */
}
.logo-img {
  height: auto;
  max-height: 3.75rem;    /* o prueba con 4.375rem si lo quieres más grande */
  width: auto;
  object-fit: contain;

}
.header-right {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: nowrap;
}

.header-nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.header-nav a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
}
.header-nav a:hover {
  color: #f8c51e;
}
.header-buttons {
  display: flex;
  gap: 0.75rem;
}

.btn {
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  font-weight: bold;
  text-decoration: none;
  font-size: 0.875rem;
}

.btn.portal {
  background-color: #f8c51e;
  color: #182b4b;
  border: none;
}

.btn.portal:hover {
  background-color: #ffd84b;
}

.btn.seguimiento {
  background-color: white;
  color: #f8c51e;
  border: 0.125rem solid #f8c51e;
}

.btn.seguimiento:hover {
  background-color: #f8c51e;
  color: #182b4b;
}

.banner-breaking {
  background-color: #182b4b; /* Azul Bluvy */
  color: white;
  overflow: hidden;
  padding: 0.875rem 0;
  font-family: 'Anton', sans-serif;
  font-size: 1rem;
  position: relative;
  z-index: 998;
  width: 100%;
}

.ticker-wrap {
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}

.ticker-move {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: tickerScroll 25s linear infinite;
}

.ticker-move span {
  display: inline-block;
  margin-right: 5rem;
}

/* Animación */
@keyframes tickerScroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}


/* === SECCIÓN INICIO === */
/* === CONTENEDOR GENERAL === */
/* === CONTENEDOR PRINCIPAL === */
.inicio-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 3rem;
  padding: 3rem 1rem;
  margin-top: -15rem;
}

/* === BLOQUE DE TEXTO === */
.inicio-texto {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 37.5rem;
  margin-top: 4rem;
}

/* Título */
.titulo-inicio {
  font-family: 'Anton', sans-serif;
  font-size: 5rem;
  color: #182b4b;
  margin: 0 0 1.25rem 0;
  animation: entrarDesdeIzquierda 1.5s ease-out forwards;
}

/* Subtítulo */
.subtitulo-inicio {
  font-size: 1.375rem;
  color: #182b4b;
  margin: 0 0 1.5rem 0;
  animation: entrarDesdeIzquierda 2.5s ease-out forwards;
}

/* === BADGES === */
.badges-hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1.25rem 0 0 0;
  font-size: 1.375rem; /* 1.375rem */
}

.badges-hero span {
  opacity: 0;
  transform: translateY(0.625rem);
  animation: badgeFadeIn 2.6s ease forwards;
}

.badges-hero span:nth-child(1) { animation-delay: 0.2s; }
.badges-hero span:nth-child(2) { animation-delay: 0.4s; }
.badges-hero span:nth-child(3) { animation-delay: 0.6s; }
.badges-hero span:nth-child(4) { animation-delay: 0.8s; }



/* === IMAGEN DERECHA === */
.inicio-imagen {
  flex: 1 1 45%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.img-bluvy-derecha {
  border-radius: 1rem;
  width: 150%;
  max-width: 62.5rem;
  height: auto;
  margin-right: -10rem;
  margin-top: 9rem;
  margin-left: 5rem;
  pointer-events: none; /* avoid blocking interactions on the page */
}

/* === ANIMACIONES === */
.aparecer-derecha {
  opacity: 0;
  animation: aparecerDesdeDerecha 2.2s ease-out forwards;
}

@keyframes aparecerDesdeDerecha {
  from {
    opacity: 0;
    transform: translateX(6.25rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes badgeFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === ANIMACIÓN GENERAL === */
.aparecer {
  opacity: 0;
  animation: aparecerDesdeAbajo 1s ease forwards;
}

/* === EFECTO APARECER DESDE ABAJO === */
@keyframes aparecerDesdeAbajo {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.como-bluvy {
  padding: 5rem 2.5rem;
  background-color: #182b4b; /* Azul Bluvy */
  color: white;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  margin-top: -10rem;
}

.como-bluvy h2 {
  font-family: 'Anton', sans-serif;
  font-size: 3.25rem;
  margin-bottom: 1.25rem;
  color: #f8c51e;
}

.como-bluvy p {
  font-size: 1.375rem;
  margin-bottom: 3.125rem;
  max-width: 50rem;
  margin-inline: auto;
  color: #ffffff;
}

.pasos-bluvy {
  display: flex;
  justify-content: space-between;
  gap: 1.875rem; /* más espacio entre los pasos */
  flex-wrap: wrap; /* para que se acomode en responsive */
  margin-top: 2.5rem;
}

.paso img,
.paso video,
.paso .gif-bluvy {
  margin-bottom: 0.5rem;
  max-width: 10rem;
}
.paso {
  text-align: center;
  flex: 1;
  padding: 0 0.625rem; /* solo horizontal */
}
.gif-bluvy {
  max-width: 13.75rem;
  height: auto;
  display: block;
  margin: 0 auto;
}


.paso h3 {
  font-size: 1.375rem;
  color: #ffffff;
  margin: 0.625rem 0 0.3125rem;
  font-weight: bold;
}

.paso p {
  font-size: 1.125rem;
  color: #eeeeee;
  line-height: 1.4;
}

.beneficios-bluvy {
  display: flex;
  justify-content: center;
  gap: 3.75rem;
  flex-wrap: wrap;
  font-size: 1rem;
  font-weight: bold;
  margin-top: 1.875rem;
  color: #f8c51e;
}

/* ✨ Animación scroll */
.fade-in {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: all 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.aparecer {
  opacity: 0;
  animation: aparecerDesdeAbajo 1s ease forwards;
}

@keyframes aparecerDesdeAbajo {
  from {
    opacity: 0;
    transform: translateY(1.875rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.modelos-envio {
  background-color: #ffffff;
  padding: 5rem 2rem;
  text-align: center;
}

.titulo-modelos {
  font-family: 'Anton', sans-serif;
  font-size: 3.5rem;
  color: #182b4b;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.titulo-modelos .amarillo {
  color: #f8c51e;
}

.subtitulo-modelos {
  font-size: 1.25rem;
  color: #182b4b;
  max-width: 800px;
  margin: 0 auto 3rem auto;
  line-height: 1.6;
  font-weight: 400;
}

/* Tarjetas lado a lado */
.contenedor-modelos {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap; /* permite que se ajusten si no caben */
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 2rem;
}

/* Tarjeta individual */
.modelo-tarjeta {
  background-color: #f8f8f8;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  flex: 1 1 calc(25% - 2rem); /* 4 por fila con espacio */
  min-width: 250px;
  max-width: 280px;
}


.modelo-tarjeta:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.12);
}


.modelo-tarjeta h3 {
  font-size: 1.5rem;
  color: #182b4b;
  margin-bottom: 0.75rem;
}

.modelo-tarjeta p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}



.contenedor-cobertura {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5rem;
  padding: 2.5rem;
  margin-bottom: -12rem; /* o incluso 1rem si lo querés bien pegado */
  margin-top: 7rem;
}

/* 🎥 Video alineado a la izquierda */
.video-cobertura {
  flex: 1;
  min-width: 18.75rem;
  max-width: 45%;
  position: relative;
  top: -10rem; /* 👈 Ajusta este valor para subir más o menos */
}

.video-cobertura video {
  width: 100%;
  border-radius: 1rem;
 
}

/* 📦 Caja de texto con fondo vidrio */
.efecto-vidrio {
  flex: 1;
  min-width: 20rem;
  max-width: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(0.625rem);
  -webkit-backdrop-filter: blur(0.625rem);
  border-radius: 1.25rem;
  padding: 1.875rem;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.2);
  color: #182b4b;
  align-self: flex-start;
  margin-top: -6.25rem;
}

/* Tipografías */
.titulo-cobertura {
  font-size: 4rem;
  font-family: 'Anton', sans-serif;
  color: #182b4b;
  margin-bottom: 1.25rem;
}

.texto-cobertura,
.lista-beneficios {
  font-size: 1.375rem;
  font-family: 'Arial', sans-serif;
  color: #182b4b;
}

.lista-beneficios {
  list-style: none;
  padding-left: 0;
  margin-top: 1.25rem;
}

.lista-beneficios li {
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
  transform-origin: left;
  cursor: default;
}
.lista-beneficios li:hover {
  transform: scale(1.05);
  color: #f8c51e;
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 0.75rem;
  border-radius: 0.75rem;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
}

/* Tooltip comunas */
.tooltip-comunas {
  position: relative;
  cursor: pointer;
  color: #f8c51e;
  font-weight: bold;
  text-decoration: underline;
  display: inline-block;
}
.tooltip-lista {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 110%;
  background-color: rgba(255, 255, 255, 0.95);
  color: #182b4b;
  padding: 0.9375rem;
  border-radius: 0.75rem;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.2);
  width: 20rem;
  font-size: 1.25rem;
  line-height: 1.6;
  white-space: normal;
  z-index: 999;
  transform: translateX(-0.625rem);
  transition: all 0.3s ease;
}

.tooltip-comunas:hover .tooltip-lista {
  visibility: visible;
  opacity: 1;
  transform: translateX(0); /* se mueve suavemente hacia su lugar */
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(2.5rem);
  transition: all 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 📱 Responsive */
@media screen and (max-width: 48rem) {
  .contenedor-cobertura {
    flex-direction: column;
    align-items: center;
  }

  .efecto-vidrio,
  .video-cobertura {
    max-width: 100%;
  }

  .titulo-cobertura {
    font-size: 3.5rem;
  }

  .texto-cobertura,
  .lista-beneficios {
    font-size: 2.8rem;
  }
}


/* POR QUÉ ELEGIR BLUVY */
/* 🔵 Fondo azul solo para esta sección */
.porque-renovado {
  background-color: #182b4b;
  color: white;
  text-align: center;
  padding: 3rem 2rem; /* antes era 5rem */
  font-family: 'Segoe UI', sans-serif;
 
}


/* 🧱 Estructura tipo dos columnas */
.pq-wrapper {
  display: flex;
  flex-wrap: nowrap; /* ❗️No permitir salto de línea */
  flex-direction: row-reverse; /* video a la derecha */
  align-items: flex-start;
  justify-content: space-between;
  gap: 3.75rem;
  max-width: 75rem;
  margin: 0 auto;
   margin-top: -25rem;

}

/* 📄 Texto a la izquierda */
.pq-texto {
  flex: 1 1 calc(55% - 1.875rem); /* deja espacio para el gap */
  min-width: 0;
  text-align: left;
  background-color: #182b4b;
  padding: 2.5rem;
  border-radius: 1.25rem;
  margin-left: -7.5rem;
  margin-top: 3.125rem;
}

/* 🟨 Título principal */
.titulo-porque-renovado {
  font-family: 'Anton', sans-serif;
  font-size: 3.5rem;
  color: white;
  margin-bottom: 1.25rem;
}

/* Subtítulo */
.subtitulo-porque-renovado {
  font-size: 1.375rem;
  margin-bottom: 3rem;
  max-width: 50rem;
  margin-inline: auto;
}

/* ✅ Lista de beneficios */
.beneficios-renovado {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2rem;
}

.beneficio {
  width: 15rem;
  text-align: center;
  animation: fadeIn 1s ease-in-out;
}
.beneficio img {
  width: 100%;
  max-width: 10rem; /* Aumenta este valor si lo quieres más grande, ej. 9rem */
  height: auto;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.beneficio p {
  font-size: 1.125rem;
  line-height: 1.4;
}

.beneficio img:hover {
  transform: scale(1.1);
}


/* Animación suave */
.fade-in {
  opacity: 0;
  transform: translateY(1.25rem);
  animation: aparecerDesdeAbajo 1s ease forwards;

}

/* ✨ Animaciones personalizadas */
.animar-izquierda {
  animation: fadeLeft 1s ease-out forwards;
}

.animar-derecha {
  animation: fadeRight 1s ease-out forwards;
}

.animar-mapa {
  animation: fadeUpZoom 1.2s ease-out forwards;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(1.875rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animar-entrada {
  opacity: 0;
  animation: fadeUp 1s ease-out forwards;
}

.integraciones-section {
  background-color: #ffffff;
  padding: 3rem 1rem;
}
.integraciones-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  
}
.integraciones-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  max-width: 75rem;
  margin: 0 auto;
}
.integraciones-content .slider-wrapper {
  flex: 1 1 60%;
}
.icono-integraciones {
  width: 100%;
  max-width: 37.5rem;
  height: auto;
  border-radius: 2rem;
  object-fit: cover;
  display: block;
  margin-top: 6rem; /* Ajusta este valor según cuánto espacio quieras */
}
.integraciones-video img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 1rem;
  object-fit: contain;
  transform: scale(1.2); /* Aumenta un 10% */
  transition: transform 0.3s ease-in-out;
 
}
.integraciones-video {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(-3rem); /* Ajusta el valor según cuánto quieras mover */
  margin-right: -3rem; /* Puedes ajustar el valor */
  
}

.integraciones-titulo-texto {
  max-width: 50rem;

}
.integraciones-texto {
  flex: 1 1 45%;
  background-color: #f7f7f7;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}


.titulo-integraciones {
  font-family: 'Anton', sans-serif;
  font-size: 4rem;
  color: #182b4b;
  margin-bottom: 1rem;
}

.subtexto-integraciones {
  font-size: 1.5rem;
  color: #182b4b;
  line-height: 1.6;
}
.titulo-integraciones-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-left: 0rem; /* ← AJUSTA ESTE VALOR A TU GUSTO */
  animation: fadeInRight 4s ease-out;
}


.slider-container {
  max-width: 75rem;
  margin: 0 auto;
  overflow: hidden;
  padding: 1.25rem 0;
  margin-top: -1.5rem; /* antes estaba en -3.75rem */
}


.slider-track {
  display: flex;
  gap: 3.75rem;
  animation: scrollCarrusel 15s linear infinite;
  align-items: center;
}

.slider-track img {
  height: 7.5rem;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  transform: translateY(-0.5rem); /* 🔥 sube solo los íconos */
}

.slider-track img:hover {
  transform: scale(1.1);
}

/* Animación del carrusel */
@keyframes scrollCarrusel {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Estilo para la nueva sección "Lo que nos mueve" */
.lo-que-nos-mueve {
    background-color: #182b4b;  
    padding: 2.5rem 1.25rem;  /* Espaciado interno */
    text-align: center;  /* Centra el texto */
    margin-top: 2.5rem;  /* Reducimos el espacio superior */
    margin-bottom: 6.25rem;
}

/* Estilo para el título "Lo que nos mueve" */
.lo-que-nos-mueve h2 {
    font-family: 'Anton', sans-serif;  /* Usamos la fuente 'Anton' */
    font-size: 2.8125rem;
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 1.25rem;  /* Espacio debajo del título */
    text-transform: uppercase;  /* Convierte el texto a mayúsculas */
}

/* Estilo para el párrafo de la sección */
.lo-que-nos-mueve p {
    font-size: 1.25rem;
    color: #ffffff;  /* Color del texto */
    max-width: 50rem;  /* Ancho máximo del texto */
    margin: 0 auto;  /* Centra el párrafo */
    line-height: 1.5;  /* Espaciado entre líneas */
}
.fondo-azul-bluvy {
  background-color: #182b4b;
  padding: 0;
  margin: 0;
}

.fondo-azul-bluvy section {
  margin: 0 auto;
  padding: 4rem 2rem;
  max-width: 1200px;
  color: #182b4b;
}

.seccion-cotiza {
  padding: 0rem;
  font-family: sans-serif;
}

.left {
  float: left;
  margin-left: 0;
}

.formulario-cotizacion {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  margin-left: 0;
}

.titulo-cotiza {
  font-family: 'Anton', sans-serif;
  font-size: 3rem;
  color: #182b4b;
  text-transform: uppercase;
  margin-bottom: 1rem;
  margin-top: 0;
  white-space: nowrap;           /* 🚀 Evita saltos de línea */
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out;
  margin-left: 0;
}

/* ✅ Formulario vertical */
#cotizacion-form-main {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  margin-top: 0;
}

#cotizacion-form-main input,
#cotizacion-form-main textarea {
  max-width: 30rem;     /* ✅ Más corto horizontalmente */
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.375rem;
  font-size: 1rem;
  box-sizing: border-box;
  margin-left: 0;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#cotizacion-form-main input:focus,
#cotizacion-form-main textarea:focus {
  border-color: #f8c51e;
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(248, 197, 30, 0.4);
}

#cotizacion-form-main textarea {
  resize: vertical;
  min-height: 7.5rem;
}

.btn.enviar {
  background-color: #f8c51e;
  color: #182b4b;
  border: none;
  padding: 0.875rem 1.5rem;
  font-weight: bold;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
  align-self: flex-start;
  margin-left: 0;
}

.btn.enviar:hover {
  background-color: #ffd940;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  transform: translateY(-0.125rem);
}

#respuesta-emailjs {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  color: #333;
}

.seccion-cotiza {
  position: relative; /* Esto es CLAVE para que el fondo quede dentro */
  padding: 7.5rem 5rem 3.75rem;
  font-family: sans-serif;
  z-index: 1;
}


.cotiza-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  max-width: 75rem;
  margin: 0 auto;
  flex-wrap: wrap;
}
.formulario-contacto {
  flex: 1 1 55%;
  position: relative; /* ensure form sits above overlapping elements */
  z-index: 10;
}
.contacto-imagen {
  flex: 1 1 30%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding-right: 1rem;
  margin-top: -50rem;
  margin-left: -50rem; /* acerca la imagen hacia la izquierda */
}

.contacto-imagen img {
  max-width: 100%;
  width: 650px;
  height: auto;
  border-radius: 1rem;
  pointer-events: none; /* image should not intercept mouse/keyboard events */
}

/* Nueva sección de contacto */
.seccion-contacto {
  background: #ffffff;
  padding: 60px 20px;
  font-family: 'Arial', sans-serif;
}

.contenedor-contacto {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.formulario-contacto {
  flex: 1 1 480px;
  background: #f9f9f9;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 10;
}

.formulario-contacto h2 {
  font-family: 'Anton', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #182b4b;
}

.formulario-contacto .amarillo {
  color: #f8c51e;
}

.subtexto-contacto {
  font-size: 16px;
  margin-bottom: 25px;
  color: #333;
}

.formulario-contacto form input,
.formulario-contacto form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.formulario-contacto form button {
  background-color: #f8c51e;
  color: #182b4b;
  padding: 12px 20px;
  font-weight: bold;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
}

.formulario-contacto form button:hover {
  background-color: #ffd740;
}

.sellos-confianza {
  margin-top: 15px;
  font-size: 14px;
  color: #444;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.imagen-contacto {
  flex: 1 1 500px;
  display: flex;
  justify-content: center;
}

.imagen-contacto img {
  max-width: 110%;
  height: auto;
}
/* Footer completo a todo el ancho */
.footer-bluvy {
  width: 100vw; /* 100% del ancho de la ventana */
  background-color: #182b4b;
  padding: 3rem 0;
  color: #ffffff;
  margin: 0;
  box-sizing: border-box;
}

.footer-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding: 0;
}


.footer-copy {
  flex: 1;
  text-align: left;
  font-size: 0.75rem;
  margin-top: 1rem;
}

.footer-contacto {
  flex: 1;
  text-align: right;
  font-family: sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.footer-info p {
  margin: 0.25rem 0;
}

.footer-copy {
  flex: 1 1 100%;
  text-align: center;
  font-size: 0.75rem;
  margin-top: 1rem;
}

/* CSS BASE PARA TODAS LAS SECCIONES EN VERSIÓN MÓVIL */
@media (max-width: 48rem) {

  header, .menu-header, .header-left, .header-nav, .header-buttons {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .header-nav ul {
    flex-direction: column;
    gap: 0.625rem;
  }

  .inicio-wrapper,
  .servicios-layout,
  .cobertura-layout,
  .pq-wrapper,
  .cotiza-wrapper,
  .contenedor-contacto {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

  .inicio-imagen {
    order: -1;
    margin-bottom: 1rem;
  }

  .inicio-imagen img {
    max-width: 90%;
    height: auto;
  }

  .imagen-apuntar img,
  .pq-imagen img,
  .cobertura-mapa img {
    max-width: 90%;
    height: auto;
  }

  .titulo-inicio,
  .titulo-servicios,
  .titulo-cobertura,
  .titulo-pq,
  .titulo-cotiza {
    font-size: 1.75rem;
  }

  .servicio-cards {
    flex-direction: column;
    gap: 1.25rem;
  }

  .subtitulo-inicio,
  .sub-servicios,
  .subtitulo-cobertura,
  .subtitulo-pq {
    font-size: 1rem;
    padding: 0 1.25rem;
  }

  .formulario-contacto,
  #cotizacion-form-main,
  #formulario-cotiza {
    width: 100%;
    padding: 0 1.25rem;
  }

  #cotizacion-form-main input,
  #cotizacion-form-main textarea,
  #formulario-cotiza input,
  #formulario-cotiza textarea {
    max-width: 100%;
    margin-bottom: 0.75rem;
  }

  .imagen-contacto {
    order: -1;
    margin-bottom: 1rem;
  }
  .social-icons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.social-icons img {
  width: 2rem;
  height: 2rem;
}

.contacto-derecha {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: #182b4b;
}

  .integraciones-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .integraciones-content .slider-wrapper {
    flex-basis: 100%;
  }


  .slider-track img {
    height: 2.5rem;
  }
  .footer-wrapper {
    flex-direction: row;
    justify-content: space-between;
    padding: 1.25rem;
    gap: 1rem;
  }
  .footer-contacto {
    text-align: left;
  }
  .footer-copy {
    text-align: right;
  }
   }

/* ================================ */
/*  Estilos para la sección Misión */
/* ================================ */
.seccion-mision {
  background-color: #182b4b;
  color: white;
  padding: 80px 30px;
  text-align: center;
  overflow: hidden;
}

.contenido-mision {
  max-width: 850px;
  margin: 0 auto;
  animation: fadeIn 1.5s ease;
}

.titulo-mision {
  font-family: 'Anton', sans-serif;
  font-size: 48px;
  color: #f8c51e;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0;
  transform: translateY(-20px);
  animation: slideUp 1s ease-out forwards;
}

.parrafo-mision {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 300;
  opacity: 0;
  transform: translateY(20px);
  animation: slideFade 1.2s ease forwards;
  animation-delay: 0.5s;
}

.firma-mision {
  font-size: 20px;
  font-style: italic;
  color: #f8c51e;
  margin-top: 30px;
  opacity: 0;
  transform: scale(0.95);
  animation: fadeIn 2s ease forwards;
  animation-delay: 1s;
}

.iconos-mision,
.iconos-secundarios {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.icono img,
.iconos-secundarios img {
  width: 60px;
  height: 60px;
  filter: brightness(0) invert(1);
  opacity: 0;
  transform: scale(0.8);
  animation: popIn 1s ease forwards;
  animation-delay: 0.7s;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes popIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

