.producto-encabezado {
  position: relative;
  width: 100%;
  height: 60vh; /* alto del hero */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
  margin-bottom: 250px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.site-inner {
  margin-top: 0px !important;
}

.producto-encabezado__overlay {
  position: relative;
  z-index: 2;
  background: #0a3d91;
  color: #fff;
  padding: 3.5rem;
  max-width: 600px;
  margin-left: 8%;
  top: 50%;
}

.producto-titulo {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  font-family: 'Mulish';
  font-weight: 800;
  letter-spacing: 5px;
  color : #62c9d9;
}

.producto-funcion {
  font-size: 1.15rem;
  line-height: 1.5;
  font-family: 'Mulish';
  margin: 0 0 0px !important;
}

.producto-descripcion {
  display: grid;
  grid-template-columns: 1fr 1fr; /* texto | video */
  gap: 40px;
  align-items: center;
  padding: 10% 8%;
}

.producto-descripcion__texto p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

.producto-descripcion__video iframe {
  width: 100%;
  height: 315px;
  border: none;
}

.producto-galeria img {
  height: auto; /* Ajusta la altura que quieras */
  width: 100%;
  object-fit: cover; /* Recorta sin deformar */
  display: block;
}

.producto-galeria .swiper {
  width: 100%;
}

.producto-galeria .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 350px; /* puedes ajustar */
}

.producto-galeria .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.swiper-button-next,
.swiper-button-prev {
  color: #ffffff !important; 
}

.swiper-pagination-bullet {
  background: #fffefe00 !important;
}

.grid-repeater {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.item {
  background: #fff;
  padding: 8% 8%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;               
  flex-direction: column;      
  align-items: center;        
  text-align: center; 
}

.item:nth-child(4n+1),
.item:nth-child(4n+4) {
  background-color: #edeeed;
}

/* Fila 2 → azul rojo */
.item:nth-child(4n+2),
.item:nth-child(4n+3) {
  background-color: #dedfdf;
}

.cuadros-info .icono svg {
  width: 80px;   /* Ajusta a lo que necesites */
  height: 80px;  /* Mantiene proporción */
  display: block;
  margin: 0 auto 10px; /* Centrado y con espacio abajo */
  fill: #728bda; /* Aplica el mismo color del .cls-1 si quieres forzar */
}

.item .icono {
  font-size: 40px;
  margin-bottom: 10px;
  color: #3f6ecf;
}

.item h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #21438a;
  font-family: 'Mulish', sans-serif;
  font-weight: 500;
}

.item ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;   
}

.item ul li {
  margin: 0;
  padding: 12px 20px;
  position: relative;
  font-size: 15px;
  border-bottom: 1px solid #0f5ab6; /* línea separadora */
  cursor: pointer;
  transition: all 0.3s ease;
}

.item ul li:hover {
  transform: translateX(5px); /* se mueve un poco a la derecha */
}

.item ul li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #3f6ecf;
  font-weight: bold;
}

.hotspot-container {
  position: relative;
  width: 100%;
  height: 50vh; /* fija la altura */
  overflow: hidden; /* evita desbordes */
}

.hotspot-container img {
  width: 100%;
  height: 100%; /* ocupa el alto del contenedor */
  object-fit: cover; /* recorta la imagen manteniendo proporción */
  display: block;
}

  .prefooter-form .gkit-block__inner {
    display: block !important;
  }


@media (max-width: 768px) {

  .producto-encabezado {
    height: auto;
    padding: 1rem 1rem;
    height: 40vh;
    margin-bottom: 10rem;
  }

  .producto-encabezado__overlay {
    margin: 0 auto;
    max-width: 80%;
    padding: 2.5rem;
    text-align: flex-start;
  }

  .producto-titulo {
    font-size: 1.5rem;
  }

  .producto-funcion {
    font-size: 1rem;
  }

  .producto-descripcion {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .producto-descripcion__video {
    margin-top: 20px;
  }

  .producto-descripcion__video iframe {
    height: 240px;
  }

  .cuadros-info {
  background: #f9f9f9;
  }

  .grid-repeater {
    grid-template-columns: 1fr;
  }

  .gkit-map-image.text-center img {
  width: 100%;
  height: 50vh !important;      
  object-fit: cover; 
  object-position: center; 
  display: block; 
  }



}