.iconos-contacto {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 20px;
}

.iconos-contacto a {
  font-size: 40px;
  transition: transform 0.3s;
}

/* Estilos individuales de color */
.iconos-contacto a.whatsapp i {
  color: #25D366;
}

.iconos-contacto a.correo i {
  color: #0072C6;
}

.iconos-contacto a.llamada i {
  color: #1E90FF; /* Azul para llamada */
}

/* Efecto Hover */
.iconos-contacto a:hover {
  transform: scale(1.2);
}



.botones-mayorista {
  display: flex;
  justify-content: space-around;
  gap: 10px;
  flex-wrap: wrap;
}

.grupo-boton {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease;
  padding: 5px; /* Reducir el espacio interno */
}

.grupo-boton:hover {
  transform: translateY(-5px);
}

.icono-circle {
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  margin-bottom: 10px;
  transition: background 0.3s ease;
  margin-bottom: 5px; /* Espacio entre icono y texto reducido */
}

.icono-circle img {
  width: 40px;
  height: 40px;
}

.grupo-boton span {
  font-weight: bold;
  color: #333;
}

.texto-descriptivo {
  background: #ffffff;
  border-radius: 10px;
  padding: 15px;
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  font-size: 15px;
  color: #000;
  animation: fadeSlideUp 0.5s ease forwards;
}

.oculto {
  display: none;
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Media Query para Tablets (<= 768px) */
@media (max-width: 768px) {
  .botones-mayorista {
    gap: 10px;
    flex-wrap: nowrap; /* Mantenerlos en línea */
    justify-content: center;
  }

  .grupo-boton {
    width: auto;
  }

  .boton-info {
    width: 100px; /* Reduce el ancho del botón */
    padding: 10px 15px;
    font-size: 14px;
  }

  .icono-externo {
    width: 40px;
    height: 40px;
  }
}

/* Media Query para Móviles (<= 480px) */
@media (max-width: 480px) {
  .botones-mayorista {
    gap: 5px;
    flex-wrap: nowrap;
    justify-content: space-around;
  }

  .grupo-boton {
    width: auto;
  }

  .boton-info {
    width: 90px; /* Aún más reducido para móviles */
    padding: 8px 10px;
    font-size: 12px;
  }

  .icono-externo {
    width: 35px;
    height: 35px;
  }
}
