/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  background-color: #fff;
  color: #fff;
}

/* HERO */
.hero {
  position: relative;
  width: 100%;
  height: 80vh; /*ALTURA DEL VIDEO*/
  overflow: hidden;
}

.hero video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: -1;
}

#videoMovil {
  display: none;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background: rgba(0, 0, 0, 0.4);
}

.logo-hero {
  width: 300px;
  margin-bottom: 30px;
}

.hero-overlay h1 {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.2;
  max-width: 600px;
  margin-bottom: 10px;
}

.hero-overlay p {
  font-size: 2rem;
  max-width: 500px;
}
.scroll-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.5rem;
  color: white;
  animation: bounce 2s infinite;
  cursor: pointer;
  z-index: 10;
  opacity: 0.7;
}

@keyframes bounce {
  0%, 100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -10px);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  #videoPC {
    display: none;
  }

  #videoMovil {
    display: block;
  }

  .hero-overlay {
    align-items: center;
    text-align: center;
  }
}html {
  scroll-behavior: smooth;
}


/*css seccion card*/
/* BENEFICIOS */
.beneficios {
  background-color: #2d4964;
  padding: 60px 20px;
  text-align: center;
  color: #ffffff;
}

.titulo-beneficios {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.cards-beneficios {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.card {
  background-color: rgb(255,255,255); /*color de las card*/
  border-radius: 12px;
  padding: 30px 20px;
  width: 280px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #265aa6;
}

.card p {
  font-size: 0.95rem;
  color: #333;
}

.card:hover {
  transform: translateY(-5px);
}
/*CSS DE SECCION NUESTROS SERVICIOS*/
/* SECCIÓN SERVICIOS - CARRUSEL SWIPEABLE */
.servicios-nawi {
  background-color: #f5f5f5;
  padding: 60px 20px;
  text-align: center;
  position: relative;
}

.titulo-servicios {
  font-size: 2.5rem;
  color: #2d4964;
  margin-bottom: 20px;
}

.indicador-puntos {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 25px;
}

.punto {
  width: 10px;
  height: 10px;
  background-color: #c0c0c0;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.punto.activo {
  background-color: #2d4964;
}

.swiper-servicios {
  overflow: hidden;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.swiper-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  flex-shrink: 0;
  width: 100%;
  gap: 20px;
  padding: 0 20px;
}

.card-servicio {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 20px;
  flex: 1;
  max-width: 400px;
  transition: transform 0.3s ease;
}

.card-servicio:hover {
  transform: translateY(-5px);
}

.icono-servicio {
  width: 100px;
  height: 100px;
  margin-bottom: 15px;
}

.card-servicio h3 {
  color: #2d4964;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.card-servicio p {
  font-size: 0.95rem;
  color: #333;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .swiper-slide {
    flex-direction: column;
    align-items: center;
  }

  .card-servicio {
    max-width: 90%;
  }
}
/* ===== COBERTURA: Sección Buscador + Mapa ===== */
.zona-cobertura {
  background-color: #2d4964;
  padding: 60px 20px;
  text-align: center;
}

.titulo-seccion {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 20px;
}

.filtros-cobertura {
  margin-bottom: 20px;
}

.filtros-cobertura select {
  padding: 10px;
  font-size: 1rem;
  border: 2px solid #2d4964;
  border-radius: 5px;
  width: 250px;
  max-width: 100%;
}

.mapa-peru {
  max-width: 800px;
  margin: 0 auto;
}

.mapa-peru svg {
  width: 150%;
  height: auto;
}

.mapa-peru path {
  fill: #d3d3d3;
  transition: fill 0.4s ease;
}

path.cubierto {
  fill: #38b000 !important; /* Verde */
}

path.descubierto {
  fill: #e63946 !important; /* Rojo */
}
.mensaje-cobertura {
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
  margin-top: 15px;
  transition: color 0.3s ease;
}

.cubierto-msg {
  color: #38b000;
}

.descubierto-msg {
  color: #e63946;
}

/* Ajuste del tamaño del mapa */
.mapa-peru svg {
  max-width: 600px;
  height: auto;
  display: block;
  margin: 0 auto;
}
/* SECCIÓN APRENDE CON NAWI */
.aprende-nawi {
  background-color: #f5f5f5;
  padding: 60px 20px;
  text-align: center;
}

.titulo-aprende {
  font-size: 2.5rem;
  color: #2d4964;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.titulo-aprende .logo-titulo {
  height: 40px;
  vertical-align: middle;
}

.texto-aprende {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}

.contenedor-cards-aprende {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.card-aprende {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-decoration: none;
  color: #333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-aprende:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.card-aprende img {
  width: 100%;
  height: auto;
  display: block;
}

.card-aprende h3 {
  font-size: 1rem;
  font-weight: 600;
  padding: 15px;
  color: #2d4964;
  text-align: center;
  font-style: bold;
}

/*formulario y encuentranos*/
.zona-formulario {
  background-color: #2d4964;
  color: white;
  padding: 60px 20px;
}

.formulario-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
}

.formulario {
  flex: 3;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-family: 'BricolageGrotesque48pt-Bold', sans-serif;
}

.form-title {
  font-size: 28px;
  margin-bottom: 10px;
  text-align: center;
}

.formulario input {
  padding: 12px;
  background-color: #F5F5F5;
  border: none;
  font-size: 14px;
  border-radius: 6px;
}

.formulario button {
  background-color: #7f743f;
  color: white;
  padding: 12px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  border-radius: 6px;
}

.separador {
  width: 3px;
  background-color: #F5F5F5;
  height: auto;
  min-height: 400px;
}

.redes-contacto {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  font-family: 'NowAlt-Black', sans-serif;
  padding-bottom: 30px;
}

.redes-titulo {
  font-size: 28px;
  margin-bottom: 15px;
}

.icono-red {
  width: 50px;
  height: 50px;
  margin: 10px 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .formulario-container {
    flex-direction: column;
    align-items: center;
  }

  .separador {
    display: none;
  }

  .formulario {
    width: 100%;
    max-width: 100%;
  }

  .redes-contacto {
    margin-top: 30px;
  }
}

