/* General Body Styles */
body {
  background-image: url(https://storage.googleapis.com/pdc_coceplad/imagenes%20core/fondo.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #333333;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1; /* Se expande para ocupar el espacio restante entre el header y el footer */
  width: 100%; /* Asegura que el main siempre tenga el ancho completo */
}

.main-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* NAVBAR PROFESIONAL CON PALETA GRIS OSCURO/BLANCO TIZA Y TIPOGRAFÍA ROBOTO */

.navbar {
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #2c2c2c 0%, #1e1e1e 100%) !important; /* Gris oscuro */
  border-bottom: 3px solid #f5f5f5; /* Blanco tiza */
  font-family: 'Roboto', sans-serif; /* NUEVO: Tipografía Roboto para todo el navbar */
}

/* Logo y marca corregidos */
.navbar-brand {
  display: flex;
  align-items: center;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.navbar-brand:hover {
  transform: translateY(-2px);
}

.logo-img {
  width: 45px;
  height: 45px;
  margin-right: 12px;
  border-radius: 50%;
  border: 2px solid #f5f5f5; /* Blanco tiza */
  transition: all 0.4s ease;
  background: rgba(255, 255, 255, 0.1);
  padding: 4px;
}

.navbar-brand:hover .logo-img {
  transform: rotate(360deg) scale(1.1);
  border-color: #f5f5f5;
  box-shadow: 0 0 20px rgba(245, 245, 245, 0.4); /* Resplandor blanco tiza */
}

/* CORREGIDO: Marca "PdC" con Chelsea Market (EXCEPCIÓN) */
.brand-text {
  font-family: 'Chelsea Market', cursive !important; /* Mantener Chelsea Market solo para PdC */
  font-size: 1.4rem; /* Ligeramente más grande para compensar menos texto */
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px; /* Más espaciado para las siglas */
  transition: color 0.3s ease;
}

.navbar-brand:hover .brand-text {
  color: #f5f5f5; /* Blanco tiza en hover */
}

/* NUEVO: Alineación de nav-items en pantallas grandes */
@media (min-width: 992px) {
  .navbar-nav .nav-item {
    display: flex;
    align-items: center;
  }
}

/* NUEVO: Navegación principal con tipografía Roboto */
.navbar-nav .nav-link {
  font-family: 'Roboto', sans-serif !important; /* Roboto para enlaces de navegación */
  color: #e8e8e8 !important; /* Texto gris claro */
  font-weight: 500;
  font-size: 0.95rem; /* Tamaño optimizado para Roboto */
  padding: 0.75rem 1rem !important;
  border-radius: 6px;
  margin: 0 0.25rem;
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
  letter-spacing: 0.3px; /* Espaciado sutil para mejor legibilidad */
}

.navbar-nav .nav-link:hover {
  color: #ffffff !important;
  background: rgba(245, 245, 245, 0.15); /* Blanco tiza con transparencia */
  transform: translateY(-1px);
}

.navbar-nav .nav-link:active,
.navbar-nav .nav-link.active {
  color: #f5f5f5 !important; /* Blanco tiza */
  background: rgba(245, 245, 245, 0.1);
  border-bottom: 2px solid #f5f5f5;
}

/* Efecto hover con línea inferior */
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #f5f5f5; /* Blanco tiza */
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
  width: 80%;
}

/* NUEVO: Dropdown con tipografía Roboto */
.dropdown-menu {
  font-family: 'Roboto', sans-serif !important; /* Roboto para dropdown */
  background: #2c2c2c !important; /* Gris oscuro */
  border: 1px solid #444444 !important; /* Borde gris medio */
  border-radius: 8px !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4) !important;
  margin-top: 0.5rem !important;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* NUEVO: Headers del dropdown con Roboto */
.dropdown-header {
  font-family: 'Roboto', sans-serif !important; /* Roboto para headers */
  color: #f5f5f5 !important; /* Blanco tiza */
  font-weight: 600 !important;
  font-size: 0.75rem !important;
  text-transform: uppercase !important;
  letter-spacing: 1.2px !important; /* Espaciado aumentado para headers */
  padding: 0.5rem 1rem !important;
}

/* NUEVO: Items del dropdown con Roboto */
.dropdown-item {
  font-family: 'Roboto', sans-serif !important; /* Roboto para items */
  color: #e8e8e8 !important; /* Texto gris claro */
  font-weight: 400; /* Peso normal para items */
  font-size: 0.9rem; /* Tamaño ligeramente menor */
  padding: 0.75rem 1rem !important;
  transition: all 0.3s ease !important;
  border-radius: 4px !important;
  margin: 0.25rem 0.5rem !important;
  letter-spacing: 0.2px; /* Espaciado sutil */
}

.dropdown-item:hover {
  background: rgba(245, 245, 245, 0.15) !important; /* Blanco tiza con transparencia */
  color: #ffffff !important;
  font-weight: 500; /* Peso mayor en hover */
  transform: translateX(5px);
}

.dropdown-item.disabled {
  color: #888888 !important; /* Gris medio */
  background: none !important;
  cursor: not-allowed !important;
  font-weight: 400;
}

.dropdown-item i {
  width: 20px;
  text-align: center;
}

.dropdown-divider {
  border-color: #444444 !important; /* Borde gris medio */
  margin: 0.5rem 0 !important;
}

/* NUEVO: Botones con tipografía Roboto */
.btn-outline-primary {
  font-family: 'Roboto', sans-serif !important; /* Roboto para botones */
  border-color: #f5f5f5 !important; /* Blanco tiza */
  color: #f5f5f5 !important;
  font-weight: 500 !important;
  font-size: 0.875rem; /* Tamaño optimizado */
  letter-spacing: 0.3px;
}

.btn-outline-primary:hover {
  background-color: #f5f5f5 !important;
  border-color: #f5f5f5 !important;
  color: #2c2c2c !important; /* Texto gris oscuro sobre fondo claro */
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245, 245, 245, 0.3);
  font-weight: 600; /* Peso mayor en hover */
}

.btn-outline-light {
  font-family: 'Roboto', sans-serif !important; /* Roboto para botones */
  border-color: #e8e8e8 !important;
  color: #e8e8e8 !important;
  font-weight: 500 !important;
  font-size: 0.875rem;
  letter-spacing: 0.3px;
}

.btn-outline-light:hover {
  background-color: #e8e8e8 !important;
  border-color: #e8e8e8 !important;
  color: #2c2c2c !important; /* Texto gris oscuro */
  transform: translateY(-1px);
  font-weight: 600;
}

.btn-outline-danger {
  font-family: 'Roboto', sans-serif !important; /* Roboto para botones */
  border-color: #ff4757 !important; /* Rojo más suave */
  color: #ff4757 !important;
  font-weight: 500 !important;
  font-size: 0.875rem;
  letter-spacing: 0.3px;
}

.btn-outline-danger:hover {
  background-color: #ff4757 !important;
  border-color: #ff4757 !important;
  color: white !important;
  transform: translateY(-1px);
  font-weight: 600;
}

/* Navbar toggler con paleta corregida */
.navbar-toggler {
  border: 2px solid #f5f5f5 !important; /* Blanco tiza */
  border-radius: 6px !important;
  padding: 0.5rem !important;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(245, 245, 245, 0.25) !important;
}

.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%28245, 245, 245, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* BOTÓN PWA MEJORADO con tipografía Roboto */
#install-button {
  font-family: 'Roboto', sans-serif !important; /* Roboto para botón PWA */
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* NUEVO: Alineación del botón PWA dentro de nav-item en pantallas grandes */
@media (min-width: 992px) {
  .navbar-nav .nav-item #install-button {
    margin: 0 0.25rem; /* Mismo margen que los nav-link */
  }
}

#install-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245, 245, 245, 0.3);
  font-weight: 600;
}

#install-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

#install-button:hover::before {
  left: 100%;
}

/* Animación de entrada */
@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

#install-button[style*="inline-block"] {
  animation: fadeInSlide 0.5s ease;
}

/* Media Queries para Móviles */
@media (max-width: 768px) {
  .navbar-nav {
    flex-direction: column; /* Alinea los enlaces verticalmente */
    gap: 10px;
  }

  .nav-item {
    text-align: center; /* Centra los enlaces */
  }

  .share-container {
    flex-wrap: wrap; /* Permite que los elementos se apilen */
    justify-content: center; /* Centra los elementos */
    gap: 10px;
  }

  .logos-finale {
      margin-top: 1rem; /* Ajusta la distancia superior */
    }

  .img-cafecito {
    width: 30px; /* Reduce el tamaño de los íconos */
    height: 30px;
  }

  .img-cocep, .img-inta {
    width: 30px; /* Ajusta los logos */
    height: 30px;
    margin-left: 5px;
  }

  #install-button {
    font-size: 14px; /* Texto más pequeño */
    padding: 8px 16px; /* Reduce el tamaño del botón */
    width: 100%; /* Ocupa todo el ancho del contenedor */
    text-align: center;
    margin: 10px 0;
  }

  a.btn.nav-auth-btn{
    padding: 0.2rem 0.2rem;
  }
  
  .nav-auth-btn {
    font-size: 0.9rem; /* Tamaño de fuente más peequño */
    margin-left: 0; /* Eliminar margen izquierdo */
    margin-top: 0.5rem; /* Añadir margen superior */
    width: 100%; /* Botón ocupa todo el ancho */
    text-align: center; /* Texto centrado */
  }

}

@media (max-width: 991.98px) {
  .navbar-nav {
    padding-top: 1rem;
    border-top: 1px solid #444444; /* Borde gris medio */
    margin-top: 1rem;
  }
  
  .navbar-nav .nav-link {
    margin: 0.25rem 0;
    text-align: center;
    font-size: 1rem; /* Tamaño mayor en móvil */
  }
  
  .btn-outline-primary,
  .btn-outline-light,
  .btn-outline-danger {
    margin: 0.5rem 0;
    width: 100%;
    font-size: 0.9rem; /* Tamaño ajustado para móvil */
  }
  
  .dropdown-menu {
    background: #444444 !important; /* Gris medio para móvil */
    border: none !important;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2) !important;
  }
  
  .dropdown-item {
    font-size: 0.95rem; /* Tamaño mayor en móvil */
  }
}

@media (max-width: 576px) {
  .brand-text {
    font-size: 1.2rem; /* Tamaño adecuado en móvil para PdC */
  }
  
  .logo-img {
    width: 40px;
    height: 40px;
  }
  
  .navbar {
    padding: 0.75rem 0;
  }
  
  .navbar-nav .nav-link {
    font-size: 0.95rem; /* Tamaño optimizado para móvil */
  }
  
  .dropdown-item {
    font-size: 0.9rem;
  }
  
  .btn-outline-primary,
  .btn-outline-light,
  .btn-outline-danger {
    font-size: 0.85rem;
  }
}

/* Eliminar estilos antiguos conflictivos */
.nav-auth-btn,
.share-container,
.logos-finale {
  display: none !important;
}

/* Contenedor de Compartir */
.share-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.share-text {
  margin: 0;
  color: #cbd5db;
}

.img-cafecito {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.img-cafecito:hover {
  filter: brightness(120%);
  transform: scale(1.2);
}

.img-cocep, .img-inta {
  width: 40px;
  height: 40px;
  margin-left: 10px;
}

/* Botones de Login y Logout */
a.btn.nav-auth-btn {
  background-color: #007bff; /* Azul para el botón por defecto */
  color: white; /* Texto blanco */
  border: none; /* Sin bordes */
  padding: 0.3rem 0.3rem; /* Espaciado interno */
  font-size: 1rem; /* Tamaño de fuente */
  border-radius: 5px; /* Bordes redondeados */
  text-decoration: none; /* Sin subrayado */
  transition: background-color 0.3s ease, transform 0.2s ease; /* Animación */
  margin-left: 1rem; /* Espaciado respecto a los otros elementos */
}

.nav-auth-btn:hover {
  background-color: #0056b3; /* Azul más oscuro en hover */
  transform: scale(1.05); /* Ligero zoom al pasar el mouse */
}

.nav-auth-btn.logout {
  background-color: #dc3545; /* Rojo para logout */
}

.nav-auth-btn.logout:hover {
  background-color: #a71d2a; /* Rojo más oscuro en hover */
}

/* Oculta el badge de reCAPTCHA v3 */
.grecaptcha-badge { 
  visibility: hidden;   /* o opacity:0; */
}

/* Estilo adicional para secciones de contenido */
.content-section {
  background: #ffffff;
  padding: 10px;
  border: 1px solid #dddddd;
  border-radius: 3px;
  margin-bottom: 20px;
}

.article-title {
  color: #444444;
}

a.article-title:hover {
  color: #35bc54;
  text-decoration: none;
}

.article-content {
  white-space: pre-line;
}

.article-img {
  height: 65px;
  width: 65px;
  margin-right: 16px;
}

.article-metadata {
  padding-bottom: 1px;
  margin-bottom: 4px;
  border-bottom: 1px solid #e3e3e3;
}

.article-metadata a:hover {
  color: #333;
  text-decoration: none;
}

.article-svg {
  width: 25px;
  height: 25px;
  vertical-align: middle;
}

.mapa-container {
  width: 100%;
  height: 300px;
}

#map {
  height: 300px;
  width: 90%;
  margin: 0 auto;
}

/* Estilo general del footer */
.footer {
  background-color: #343a40;
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  border-top: 1px solid #444;
}

/* Estilo específico para los enlaces dentro del footer */
.footer a {
  text-decoration: none; /* Elimina el subrayado */
  color: inherit; /* Usa el color blanco del texto del footer */
  transition: color 0.3s ease; /* Transición suave en color */
}

.footer a:hover {
  color: #ccc; /* Cambia a un gris claro al pasar el mouse */
}

/* Ajuste específico para los íconos del footer */
.footer .social-icon {
  width: 30px; /* Tamaño reducido */
  height: 30px; /* Tamaño reducido */
  vertical-align: middle; /* Alineación vertical con el texto */
  transition: transform 0.3s ease, filter 0.3s ease; /* Animación suave */
}

.footer .social-icon:hover {
  filter: brightness(120%); /* Aumenta el brillo al pasar el mouse */
  transform: scale(1.1); /* Incremento leve del tamaño */
}

/* Responsive improvements con paleta corregida */
@media (max-width: 991.98px) {
  .navbar-nav {
    padding-top: 1rem;
    border-top: 1px solid #444444; /* Borde gris medio */
    margin-top: 1rem;
  }
  
  .navbar-nav .nav-link {
    margin: 0.25rem 0;
    text-align: center;
    font-size: 1rem; /* Tamaño mayor en móvil */
  }
  
  .btn-outline-primary,
  .btn-outline-light,
  .btn-outline-danger {
    margin: 0.5rem 0;
    width: 100%;
    font-size: 0.9rem; /* Tamaño ajustado para móvil */
  }
  
  .dropdown-menu {
    background: #444444 !important; /* Gris medio para móvil */
    border: none !important;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2) !important;
  }
  
  .dropdown-item {
    font-size: 0.95rem; /* Tamaño mayor en móvil */
  }
}

@media (max-width: 576px) {
  .brand-text {
    font-size: 1.2rem; /* Tamaño adecuado en móvil para PdC */
  }
  
  .logo-img {
    width: 40px;
    height: 40px;
  }
  
  .navbar {
    padding: 0.75rem 0;
  }
  
  .navbar-nav .nav-link {
    font-size: 0.95rem; /* Tamaño optimizado para móvil */
  }
  
  .dropdown-item {
    font-size: 0.9rem;
  }
  
  .btn-outline-primary,
  .btn-outline-light,
  .btn-outline-danger {
    font-size: 0.85rem;
  }
}

/* ESTILOS ESPECÍFICOS PARA REDES SOCIALES EN NAVBAR */

/* WhatsApp - Verde característico */
.nav-link .fa-whatsapp {
  color: #25d366; /* Verde WhatsApp */
  transition: color 0.3s ease;
}

.nav-link:hover .fa-whatsapp {
  color: #128c7e; /* Verde más oscuro en hover */
}

/* Instagram - Gradiente característico simulado */
.nav-link .fa-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
}

.nav-link:hover .fa-instagram {
  transform: scale(1.1);
  filter: brightness(1.2);
}

/* Fallback para navegadores que no soporten background-clip */
@supports not (-webkit-background-clip: text) {
  .nav-link .fa-instagram {
    color: #e1306c; /* Rosa Instagram como fallback */
    -webkit-text-fill-color: initial;
  }
  
  .nav-link:hover .fa-instagram {
    color: #c13584; /* Rosa más oscuro en hover */
  }
}

/* Responsive - Ajustar iconos en móvil */
@media (max-width: 991.98px) {
  .nav-link .fa-whatsapp,
  .nav-link .fa-instagram {
    font-size: 1.1rem; /* Iconos ligeramente más grandes en móvil */
  }
}

@media (max-width: 576px) {
  .nav-link .fa-whatsapp,
  .nav-link .fa-instagram {
    font-size: 1rem; /* Tamaño estándar en móviles pequeños */
  }
}

/* ================================
   AVATAR MODERNO CON INICIALES
   ================================ */

.user-avatar {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 600;
  color: white;
  text-decoration: none !important;
  margin-right: 8px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.user-avatar:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
}

.user-avatar.avatar-small {
  width: 32px;
  height: 32px;
  font-size: 12px;
}

.user-avatar.avatar-large {
  width: 48px;
  height: 48px;
  font-size: 18px;
}

/* Avatar en dropdown del navbar */
.dropdown-toggle.has-avatar {
  display: flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white !important;
  text-decoration: none !important;
  transition: all 0.3s ease;
  gap: 8px;
}

/* NUEVO: Alineación del dropdown de usuario dentro de nav-item en pantallas grandes */
@media (min-width: 992px) {
  .navbar-nav .nav-item .dropdown {
    display: flex;
    align-items: center;
  }
  
  .navbar-nav .nav-item .dropdown-toggle.has-avatar {
    margin: 0 0.25rem; /* Mismo margen que los nav-link */
  }
}

.dropdown-toggle.has-avatar:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.dropdown-toggle.has-avatar:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
  outline: none;
}

.dropdown-toggle.has-avatar .user-name {
  font-size: 14px;
  font-weight: 500;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Ocultar la flecha por defecto de Bootstrap */
.dropdown-toggle.has-avatar::after {
  display: none;
}

/* Responsive para avatar */
@media (max-width: 768px) {
  .dropdown-toggle.has-avatar .user-name {
    display: none; /* Ocultar nombre en móviles, solo mostrar avatar */
  }
  
  .dropdown-toggle.has-avatar {
    padding: 4px;
    gap: 0;
    min-width: 40px; /* Tamaño mínimo para touch en móviles */
    justify-content: center;
    border-radius: 50%;
    background: transparent; /* Sin fondo en móviles */
    border: none; /* Sin borde en móviles */
    box-shadow: none; /* Sin sombra en móviles */
  }
  
  .dropdown-toggle.has-avatar:hover {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    transform: none; /* Sin animación en móviles */
    box-shadow: none;
  }
  
  .user-avatar {
    width: 32px;
    height: 32px;
    font-size: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2); /* Sombra más sutil en móviles */
    border: 1px solid rgba(255, 255, 255, 0.1); /* Borde más sutil */
  }
  
  .user-avatar:hover {
    transform: none; /* Sin animación hover en móviles */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2); /* Mantener sombra sutil */
    border-color: rgba(255, 255, 255, 0.1);
  }
}

/* Para tablets */
@media (max-width: 992px) and (min-width: 769px) {
  .dropdown-toggle.has-avatar .user-name {
    font-size: 13px;
    max-width: 100px;
  }
  
  .dropdown-toggle.has-avatar {
    padding: 5px 10px;
  }
  
  .user-avatar {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }
}

/* Estados de avatar para accesibilidad */
.user-avatar:focus {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 2px;
}

/* Animación sutil al cargar */
.user-avatar {
  animation: fadeInScale 0.3s ease-out;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ================================
   AVATAR MÓVIL COMO BOTÓN HAMBURGUESA
   ================================ */

.user-avatar-mobile {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 600;
  color: white;
  text-decoration: none !important;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.user-avatar-mobile:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.user-avatar-mobile:active {
  transform: scale(0.95);
}

/* Responsivo: Ocultar avatar móvil en pantallas grandes */
@media (min-width: 992px) {
  .user-avatar-mobile {
    display: none;
  }
}
