body {
    scroll-behavior: smooth;
}
header{background-color:#7d7d7d;}
.hero {
    padding: 5rem 1rem;
    background: #f8f9fa;
}
.phone-header {
    font-weight: 600;
    text-decoration: none;
}
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 14px rgba(0,0,0,0.35);
}

/* MENÚ PRINCIPAL */
.navbar-nav > .nav-item > .nav-link {
  text-transform: uppercase;
  color: #ffffff !important;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Hover y activo del menú principal */
.navbar-nav > .nav-item > .nav-link:hover,
.navbar-nav > .nav-item > .nav-link:focus {
  color: #eaeaea !important;
}

/* BOTÓN DROPDOWN (Servicios) */
.navbar-nav > .nav-item.dropdown > .nav-link {
  color: #ffffff !important;
}

/* =========================
   SUBMENÚ (NO TOCAR COLOR)
   ========================= */

/* Texto normal del dropdown */
.dropdown-menu .dropdown-item {
  text-transform: none;
  color: #212529;
  font-weight: 400;
}

/* Hover del dropdown */
.dropdown-menu .dropdown-item:hover {
  background-color: #f5f5f5;
  color: #000;
}

/* BOTÓN HAMBURGUESA EN BLANCO */
.navbar-toggler {
  border-color: rgba(255,255,255,0.6);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 768px) {
  .logo {
    max-width: 145px;
  }
  .navbar{padding-left:1rem;padding-right:1rem;}
}