/* ==== CONTENIDO PRINCIPAL ==== */
main {
  flex: 1;
  padding: 30px 15px 40px;
}

.seccion-principal {
  max-width: 1200px;
  margin: 0 auto;
}

/* ==== AVISO LEGAL ==== */
.aviso-legal {
  background: rgba(15, 23, 42, 0.98);
  color: #e5e7eb;
  padding: 8px 10px;
  text-align: center;
  font-size: 13px;
  border-top: 1px solid #f97316;
}

/* ==== ICONOS DE REDES SOCIALES ==== */
.redes-flotantes {
  position: fixed;
  bottom: 15px;
  right: 15px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.redes-flotantes a {
  width: 42px;
  height: 42px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  transition: transform 0.25s ease;
}

.redes-flotantes a:hover {
  transform: scale(1.12);
}

.redes-flotantes img {
  width: 26px !important;
  height: 26px !important;
  object-fit: contain;
}

/* ==== INFO CONSUMO DE ALCOHOL ==== */
.info-alcohol-icon {
  position: fixed;
  bottom: 90px;
  left: 20px;
  width: 45px;
  height: 45px;
  cursor: pointer;
  z-index: 1000;
}

.info-alcohol-tooltip {
  display: none;
  position: fixed;
  bottom: 140px;
  left: 20px;
  background-color: #ff6b6b;
  color: white;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  max-width: 260px;
  font-size: 13px;
  z-index: 1001;
  font-weight: bold;
}

.info-alcohol-icon:hover + .info-alcohol-tooltip,
.info-alcohol-tooltip:hover {
  display: block;
}

@media (max-width: 600px) {
  .info-alcohol-icon {
    bottom: 120px;
    left: 20px;
  }
  .info-alcohol-tooltip {
    bottom: 175px;
    left: 20px;
  }
}
/* ==== TOOLTIP DESCRIPCION_2 DE PRODUCTOS ==== */
.descripcion2-tooltip {
  position: fixed;
  bottom: 160px;        /* Ajusta según donde quieres verlo */
  right: 20px;          /* Lado derecho, como las redes */
  max-width: 260px;
  background: rgba(15, 23, 42, 0.96);
  color: #e5e7eb;
  padding: 10px 14px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  font-size: 13px;
  z-index: 1001;
  display: none;        /* Oculto por defecto */
  border: 1px solid rgba(249, 115, 22, 0.6);  /* Borde naranja GEKO */
}

.descripcion2-tooltip strong {
  color: #f97316;
  font-size: 13px;
}

.descripcion2-tooltip #descripcion2Texto {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.4;
}

/* Responsive: mover un poco más arriba para móviles */
@media (max-width: 600px) {
  .descripcion2-tooltip {
    bottom: 210px;
    right: 16px;
    max-width: 230px;
  }
}