/* ==========================================
   ESTILOS NAVBAR - NAVEGACIÓN
   ========================================== */

.header-custom {
  color: #000;
  font-family: 'texto', serif;
  background-color: #ffffff !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.logo-icon {
  width: 55px;
  height: auto;
  margin-left: 10px;
}

.logo-text {
  font-size: 2rem;
  font-weight: bold;
  float: left;
  color: #6FBE4A;
  font-family: 'titulo', serif;
}

.icono-salir {
  width: 35px;
}

nav ul li {
  font-size: 19px;
}

.navbar-dark .navbar-toggler-icon {
  filter: invert(60%) brightness(80%);
}

nav ul li a:hover,
nav ul li a:focus {
  color: #6FBE4A !important;
  outline: none;
}

 



/* Separador visual en navbar */
.nav-divider {
  opacity: 0.2;
}

/* Botones de login y registro - estilo limpio como links */
.nav-auth-btn {
  text-decoration: none !important;
  padding: 0 !important;
  margin: 0 8px !important;
}

.nav-auth-btn:hover {
  color: #6FBE4A !important;
}

/* ==========================================
   ESTILOS DE DROPDOWNS (Perfil usuario)
   ========================================== */

.profile-dropdown {
  min-width: 240px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 25px 40px -12px rgba(111, 190, 74, 0.15);
  overflow: hidden;
  padding: 8px;
  position: absolute;
  top: calc(100% + 15px);
  right: 0;
  transform-origin: top right;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1200;
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  pointer-events: none;
  display: block;
}

.profile-dropdown.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.profile-dropdown .dropdown-item {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  color: #1e293b;
  text-decoration: none !important;
  border-radius: 12px;
  font-weight: 500;
  font-size: 1.05rem;
  transition: all 0.2s ease;
  margin-bottom: 2px;
}

.profile-dropdown .dropdown-item:last-child {
  margin-bottom: 0;
}

.profile-dropdown .dropdown-item:hover {
  background: rgba(111, 190, 74, 0.1);
  color: #6FBE4A;
  transform: translateX(4px);
}
