.hero {
  text-align: center;
  background: #0b2a4a;
  color: white;
  padding: 40px 20px;
}

.hero {
  position: relative;
  z-index: 1;
}

.logo-principal {
  max-width: 220px;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: 22px;
  margin: 10px 0;
}

.lema {
  font-size: 14px;
  opacity: 0.9;
}

/* ===== PEDIDO PAGE ===== */

body.pedido-page {
  background: #0b2a4a;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Logo */
.pedido-page .logo {
  display: block;
  margin: 30px auto 10px;
  max-width: 500px;
}

/* Card */
.pedido-page .section {
  background: white;
  width: 90%;
  max-width: 400px;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  text-align: left;
}

.pedido-page .pedido-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pedido-page .pedido-form label {
  font-weight: bold;
  font-size: 14px;
}

.pedido-page .pedido-form input,
.pedido-page .pedido-form select {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
}

/* CAROUSEL */
.carousel {
  position: relative;
  max-width: 600px;
  margin: 30px auto;
}

.slide {
  display: none;
  width: 100%;
  border-radius: 15px;
}

/* IMAGEN COMPARATIVO */
.section .comparativo-img {
  width: 100%;
  max-width: 900px;
  display: block;
  margin: 20px auto;
  border-radius: 12px;
}

/* GALERÍA HORIZONTAL */
/* IMÁGENES */
.galeria-proceso img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
  scroll-snap-align: center;
  transition: 0.3s;
}

/* CONTENEDOR */
.galeria-proceso {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: visible;
  padding: 20px;
}

/* CARD */
.img-card {
  flex-shrink: 0;
  text-align: center;
  position: relative;
}

/* IMAGEN BASE */
.img-card img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* EFECTO ZOOM GRANDE 🔥 */
.img-card:hover img {
  transform: scale(3); /* 👈 200px → ~600px visual */
  z-index: 10;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

/* TEXTO */
.img-text {
  margin-top: 10px;
  font-size: 13px;
}

.img-card:hover img {
  transform: scale(1.5);
  z-index: 10;
  position: relative;
}

/* COBERTURA */
.cobertura {
  max-width: 700px;
  margin: auto;
  text-align: center;
}

.zonas {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.zonas li {
  margin: 10px 0;
  font-size: 16px;
}

.expansion {
  margin-top: 20px;
  padding: 15px;
  background: #f2f6fa;
  border-radius: 10px;
}

.mapa {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  display: block;
  margin: auto;
}

/* BOTONES CTA */
.btn-cta {
  display: inline-block;
  background: #25D366;
  color: white;
  padding: 15px 25px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: 0.3s;
}

.btn-cta:hover {
  transform: scale(1.05);
}

.btn-sec {
  display: inline-block;
  background: #0b2a4a;
  color: white;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
}

.disabled {
  background: #ccc !important;
  pointer-events: none;
  opacity: 0.6;
}

/* ===== COBERTURA PAGE ===== */

#mensaje-cp {
  margin-top: 10px;
  font-size: 14px;
  text-align: center;
}

#cp {
  width: 100%;
  max-width: 300px;
  padding: 12px;
  margin: 10px auto;
  display: block;
  border-radius: 8px;
  border: 1px solid #ccc;
  text-align: center;
}

.disabled {
  background: #ccc !important;
  pointer-events: none;
  opacity: 0.6;
}

.producto-item {
  display: flex;
  gap: 10px;
}

.producto-item select,
.producto-item input {
  flex: 1;
}

.btn-secundario {
  margin-top: 10px;
  padding: 10px;
  background: #e0e0e0;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
