/* Íconos Sociales */
.social-icons {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  padding: 10px 20px;
}

.social-icons a {
  color: #ffffff;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #f7931e; /* Color personalizado al pasar el mouse */
}

/* Botón Celular */
.telefono-btn {
  background-color: #f7931e;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.telefono-btn:hover {
  background-color: #e67e22;
}

.telefono-btn i {
  font-size: 16px;
}

/* Slider Principal */
.slider {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.slider-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

/* Capa Oscura del Slider */
.overlay {
  position: absolute;
  bottom: 50px;
  left: 50px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  max-width: 600px;
}

.overlay h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

/* Botones de Navegación del Slider */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  border: none;
  padding: 12px;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 3;
  transition: background-color 0.3s ease;
}

.slider-btn:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.slider-btn.left {
  left: 10px;
}

.slider-btn.right {
  right: 10px;
}


#scrollTopBtn {
  transition: opacity 0.3s ease-in-out;
}

/* PARA WHATSAPP*/
.whatsapp-float {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding: 5px;
  z-index: 9999;
}