body {
  font-family: 'Poppins', sans-serif;
  background-color: #f8f9fa;
}

.hero {
  background-color: #004080;
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
  transition: 0.3s;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease-in-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 100;
}

.whatsapp-icon {
  width: 60px;   /* Ajusta el tamaño a lo que necesites */
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.whatsapp-icon:hover {
  transform: scale(1.1); /* Agranda un poco al pasar el ratón */
}

.btn-llamame {
  border: 2px solid #28a745;
  color: #28a745;
  padding: 6px 15px;
  border-radius: 25px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.btn-llamame:hover {
  background-color: #28a745;
  color: white;
}

.anydesk {
  transition: background-color 0.3s ease;
}

.anydesk:hover {
  background-color: #832e2e; /* rojo más oscuro */
  cursor: pointer;
}

#banner-web {
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1350&q=80');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 5rem 1rem;
}

#banner-web::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* capa negra semitransparente para mejor lectura */
  z-index: 0;
}

#banner-web .container {
  position: relative;
  z-index: 1;
}

#banner-web h1,
#banner-web p {
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

#banner-informatica {
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1517433456452-f9633a875f6f?auto=format&fit=crop&w=1350&q=80');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 5rem 1rem;
}

#banner-informatica::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* capa negra semitransparente */
  z-index: 0;
}

#banner-informatica .container {
  position: relative;
  z-index: 1;
}

#banner-informatica h1,
#banner-informatica p {
  text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
}

.card.service-card .card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.card.service-card .btn {
  margin-top: 1rem; /* para que no quede pegado al texto */
  align-self: center; /* opcional, para centrar el botón */
}

#banner-anydesk {
  position: relative;
  background-image: url('https://anydesk.com/_static/img/devices/anydesk-device-windows-dff587.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 5rem 1rem;
  text-align: center;
}

#banner-anydesk::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* overlay oscuro */
  z-index: 0;
}

#banner-anydesk .container {
  position: relative;
  z-index: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-image: none; /* Quitamos la imagen por defecto */
  width: 3rem;
  height: 3rem;
  background-color: gray; /* Color gris */
  mask-size: contain;
  mask-repeat: no-repeat;
}

.carousel-control-prev-icon {
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23ffffff" viewBox="0 0 8 8"><path d="M5.5 0l-4 4 4 4 .5-.5-3.5-3.5 3.5-3.5z"/></svg>');
}

.carousel-control-next-icon {
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23ffffff" viewBox="0 0 8 8"><path d="M2.5 0l-.5.5 3.5 3.5-3.5 3.5.5.5 4-4-4-4z"/></svg>');
}

#banner-diagnostico {
  position: relative;
  background-image: url('img/reparacion-hardware.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 300px; /* Altura máxima */
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#banner-diagnostico::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

#banner-diagnostico .container {
  position: relative;
  z-index: 1;
}

/* Mostrar dropdown al pasar el ratón */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

/* Opcional: Quitar retraso de Bootstrap para que se vea inmediato */
.nav-item.dropdown .dropdown-toggle::after {
  margin-left: .255em;
}

#banner-mantenimiento {
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('https://images.unsplash.com/photo-1605379399642-870262d3d051?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
      color: #fff;
      padding: 120px 0;
    }

    #banner-mantenimiento h1 {
      font-weight: 700;
    }