/* ===== Estilos generales ===== */
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #333;
}

/* ===== Encabezado ===== */
.encabezado {
  background-color: #1362AD; /* Azul CIAME */
  color: white;
  text-align: center;
  padding: 1.2rem 0;
}

/* ===== Contenedor principal ===== */
.contenedor-detalle {
  padding: 2rem 0; /* espacio superior e inferior */
}

.contenedor-principal {
  width: min(1100px, 95%);
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center; /* alinea al centro la descripción e imagen */
  justify-content: center;
  gap: 40px; /* separación entre columnas */
  flex-wrap: nowrap;
}

/* ===== Galería ===== */
.galeria {
  flex: 0 0 520px; /* ancho base fijo */
  max-width: 52%;
  text-align: left;
}

.imagen-principal-container {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.imagen-principal {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  display: block;
  cursor: crosshair;
  transition: transform 0.3s ease;
  transform-origin: center center;
}

.miniaturas {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.thumb {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.6;
  transition: 0.3s;
}

.thumb.active,
.thumb:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* ===== Descripción ===== */
.descripcion {
  flex: 1 1 420px;
  max-width: 48%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.descripcion h2 {
  color: #ED7455; /* Naranja CIAME */
  margin-top: 0;
  margin-bottom: 12px;
}

.descripcion ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  line-height: 1.8;
}

/* ===== Botones ===== */
.botones {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between; /* mantiene botones separados */
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.8rem 1.4rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  transition: 0.3s ease;
  flex: 1; /* permite que ambos botones se adapten en móvil */
  min-width: 120px;
}

.btn.volver {
  background-color: #ED7455; /* Naranja CIAME */
  color: white;
}

.btn.volver:hover {
  background-color: #d26246;
}

.btn.whatsapp {
  background-color: #ED7455; /* Naranja CIAME */
  color: white;
}

.btn.whatsapp:hover {
  background-color: #d26246;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .contenedor-principal {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .galeria,
  .descripcion {
    max-width: 100%;
    flex: 1 1 100%;
  }

  /* Los botones se mantienen lado a lado */
  .botones {
    justify-content: center;
    gap: 1rem;
  }

  .btn {
    flex: none;
    width: auto; /* mantiene tamaño ajustado al contenido */
  }
}

