
/* Tipografía Montserrat */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&display=swap');

:root {
  --semujeres-red: #5a2a83;
}

/* ==========================================================================
   1. Smooth Scroll / para que se vea bonito cuando baja
   ========================================================================== */
html {
  scroll-behavior: smooth;
}

/* ==========================================================================
   2. Hero Banner
   ========================================================================== */
/* Hero principal */


.hero {
  position: relative;
  overflow: hidden;
  height: 60vh;
  display: flex;
  align-items: center;
  color: #fff;
}

/* Capas de fondo */
.hero-bg,
.hero-bg-next {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 1.5s ease-in-out;
  z-index: 1;
}

.hero-bg {
  opacity: 1;
}

.hero-bg-next {
  opacity: 0;
}

/* Capa oscura encima del fondo */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* Contenedor del contenido */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  text-align: center;
}

/* Texto con sombra */
.text-shadow {
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}


/* Título responsivo */

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}

/* Parte "MUJER" */
.mujer {
  color: #ffffff;
  font-weight: 500;
}

/* Parte "ES" */
.es {
  color: #ffffff;
  font-weight: 900;
  margin-left: 4px;
  font-style: italic;

}

/* Parte "EMPRENDER" */
.emprender {
  color: #ffffff;
  font-weight: 900;
  margin-left: 6px;
}

/* Párrafo responsivo dentro de hero */
.hero-content p {
  font-size: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.5;
  max-width: 700px;
}

/* Colores */
.morado {
  color: #7B2CBF; 
}

.blanco {
  color: #ffffff;
}

/* Responsive height por dispositivo */
@media (max-width: 768px) {
  .hero {
    min-height: 50vh;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 50vh;
  }
}

.text-purple {
  color: #5a2a83 !important;
}

/*
PARTE NUEVA DEL CSS
*/

  /* barra morada */
  .navbar-purple{
    background:#2f1347 !important;     /* tu morado */
    border-bottom: 4px solid #efe9ff;   /* línea clarita como el mockup */
  }

  /* enlaces dentro del nav */
  .navbar-purple .nav-link{
    color:#ffffff !important;
    font-weight:600;
  }
  .navbar-purple .nav-link:hover,
  .navbar-purple .nav-link:focus{
    opacity:.9;
  }

  /* tus botones con icono dentro del nav en modo "ghost" */
  .navbar-purple .btn-custom-icon{
    background:transparent;
    border:2px solid rgba(255,255,255,.7);
    color:#fff !important;
    border-radius:999px;
    padding:.6rem 1.2rem;
    display:inline-flex; align-items:center; gap:.5rem;
  }
  .navbar-purple .btn-custom-icon .icon-img{
    filter: invert(1) brightness(2);  /* icono morado->blanco; quítalo si tu png ya es blanco */
  }
  .navbar-purple .btn-custom-icon:hover{
    background:#fff; color:#5a2a83 !important; border-color:#fff;
  }


  /* texto grande del brand en la barra morada */
.navbar-purple .brand-title{
  font-family: Montserrat, system-ui, sans-serif;
  font-weight: 800;
  color:#fff;
  line-height: 1;
  letter-spacing:.02em;
  font-size: clamp(28px, 3.5vw, 56px); /* ajusta el 56px al tamaño que quieras */
}

/* opcional: un poco más de alto a la barra si lo necesitas */
.navbar-purple{
  padding-top: .9rem !important;
  padding-bottom: .9rem !important;
}




/* ==========================================================================
   3. Sección: Sobre Nosotras (#nosotras)
   ========================================================================== */
#nosotras {
  padding: 3rem 0;
  background-color: #f8f9fa;
}
#nosotras img {
  width: 100%;
  border-radius: 0.5rem;
}
#nosotras h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #333333;
}
#nosotras p {
  color: #555555;
  line-height: 1.6;
}

.btn-primary {
  background-color: #5a2a83 !important;
  border-color:    #5a2a83 !important;
  color:           #fff !important;
  border-radius: 50px;
  padding: 0.75rem 2rem;
}
.btn-morado {
  background-color: #6f42c1;
  border-color: #6f42c1;
  color: white;
}

.btn-morado:hover {
  background-color: #5a32a3;
  border-color: #502b92;
}
footer .fab {
  color: #fff;
  margin-right: 10px;
  transition: color 0.3s;
}

footer .fab:hover {
  color: #b98fe9;
}

/* ==========================================================================
   4. Sección: Eventos (#eventos)
   ========================================================================== */
#eventos {
  padding: 3rem 0;
  background-color: #ffffff;
}
#eventos .card {
  border: none;
  border-radius: 0.75rem;
  overflow: hidden;
}
#eventos .card-img-top {
  object-fit: cover;
  height: 200px;
}

/* ==========================================================================
   5. Sección: Testimonios
   ========================================================================== */
.blockquote {
  background-color: #f7f3fc;
  border-left: 0.25rem solid #5a2a83;
  padding: 1rem;
  margin-bottom: 1.5rem;
}
.blockquote p {
  font-style: italic;
  color: #333333;
}
.blockquote-footer {
  font-size: 0.875rem;
  text-align: right;
  color: #777777;
}

/* ==========================================================================
   6. Sección: Preguntas Frecuentes (#faq)
   ========================================================================== */
#faq .card {
  border-radius: 10px;
  border: none;
  overflow: hidden;
}
#faq .card-header {
  background-color: #f1f1f1;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
#faq .card-header:hover {
  background-color: #e2e6ea;
}
#faq .btn-link {
  font-weight: bold;
  font-size: 1.1rem;
  text-decoration: none;
  color: #333333;
}
#faq .card-body {
  background-color: #ffffff;
  border-top: 1px solid #e9ecef;
  font-size: 0.95rem;
  line-height: 1.6;
}
#faq .btn[aria-expanded="true"]::after {
  transform: translateY(-50%) rotate(180deg);
}
#faq .card-header button {
  position: relative;
  padding-right: 30px;
}
#faq .card-header button::after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
#faq .card-header {
  background-color: #5a2a83 !important; 
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#faq .card-header:hover {
  background-color: #4a216c !important; 
}

#faq .btn-link {
  font-weight: bold;
  font-size: 1.1rem;
  text-decoration: none;
  color: #ffffff !important; 
}

#faq .btn-link:hover {
  color: #e0c9f7 !important;
}
#faq .card-header button:focus {
  outline: none;
  box-shadow: none;
}
/* ==========================================================================
   7. Sección: Mini-mapa SEMUJERES (#mapa)
   ========================================================================== */
#mapa {
  padding: 4rem 1rem;
  background-color: #f9f9f9;
  text-align: center;
}

#mapa h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #333;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

#mapa .embed-responsive {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding-bottom: 56.25%;
  height: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: transform 0.3s ease;
}

#mapa .embed-responsive:hover {
  transform: scale(1.01);
}

#mapa .embed-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

#mapa p {
  color: #666666;
  margin-top: 1rem;
  font-size: clamp(0.9rem, 2vw, 1rem);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   8. Títulos de sección decorativos
   ========================================================================== */
.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
  color: #333333;
}
.section-title::after {
  content: '';
  position: absolute;
  width: 50%;
  height: 4px;
  bottom: -10px;
  left: 0;
  border-radius: 2px;
}

/* ==========================================================================
   9. Tarjetas con efecto hover
   ========================================================================== */
.card-hover {
  transition: transform .3s, box-shadow .3s;
}
.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   10. Tipografía y espaciado global
   ========================================================================== */
body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #444444;
}
h1, .display-4 {
  font-weight: 700;
  margin-bottom: 1rem;
}
.lead {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   11. Botones personalizados
   ========================================================================== */
.btn-primary {
  background-color: #5a2a83 !important;
  border-color:    #5a2a83 !important;
  color:           #fff !important;
  transition: background-color .3s, border-color .3s;
}
.btn-primary:hover,
.btn-primary:focus {
  background-color:#401566 !important;
  border-color:   #5a2a83 !important;
}

/* ==========================================================================
   12. Footer
   ========================================================================== */
footer {
  background-color: #343A40;
  color: #CCC;
  padding: 1rem 0;
}
footer small {
  font-size: 0.875rem;
}


/* ==========================================================================
   14. Estilos para dropdown-menu
   ========================================================================== */
.dropdown-menu {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  border: none;
}
.dropdown-item {
  transition: background-color .2s, color .2s;
}
.dropdown-item i {
  width: 20px;
}
.dropdown-item:hover {
  background-color: rgba(210, 34, 48, 0.15);
  color: #5a2a83;
}

/* ==========================================================================
   15. Botón “Inscríbete” destacado
   ========================================================================== */



  .btn-morado {
  background-color: #6f42c1; /* Morado Bootstrap */
  border-color: #6f42c1;
}

.btn-morado:hover {
  background-color: #5a32a3;
  border-color: #502b92;


}
/* ==========================================================================
   16. Separadores decorativos entre ítems
   ========================================================================== */
.navbar-nav .nav-item + .nav-item {
  border-left: 1px solid rgba(255,255,255,0.3);
  margin-left: 1rem;
  padding-left: 1rem;
}

/* ==========================================================================
   17.Al pasar el ratón: fondo rojo, texto blanco
   ========================================================================== */
.btn-outline-light:hover,
.btn-outline-light:focus {
  background-color: var(--semujeres-red) !important;
  color: #fff !important;
}

/* ==========================================================================
   18. Animación para dropdown
   ========================================================================== */
.dropdown-menu {
  display: none;
  opacity: 0;
  transition: all 0.3s ease;
  transform: translateY(10px);
}

.dropdown.show .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}



/* ==========================================================================
   19. Login  
   ========================================================================== */
 body {
        background: #f8f9fa;
    }
    .login-card {
        border-radius: 16px;
        border: none;
    }
    .login-title {
        font-weight: 800;
        color: #5a2a83;
    }
    .form-control:focus {
        box-shadow: 0 0 0 0.2rem rgba(90, 42, 131, 0.25);
        border-color: #5a2a83;
    }
    .btn-login {
        background-color: #5a2a83;
        color: white;
        font-weight: bold;
    }
    .btn-login:hover {
        background-color: #452166;
    }



    /* ==========================================================================  
   20. Estilos Responsivos Generales  
   ========================================================================== */

/* Ajuste de secciones con padding más compacto en móviles */
@media (max-width: 576px) {
  section,
  #nosotras,
  #eventos,
  #faq,
  #mapa {
    padding: 2rem 1rem;
  }

  .hero-content {
    text-align: center;
    padding: 0 1rem;
  }

  .login-card {
    margin: 1rem;
  }
}


/* ==========================================================================  
   21. Ajustes para laptops (pantallas medianas: 992px a 1366px)  
   ========================================================================== */
@media (min-width: 992px) and (max-width: 1366px) {
  .navbar-nav .nav-link {
    font-size: 0.95rem;
    padding: 0.5rem 0.75rem;
  }

  .navbar-nav .nav-item + .nav-item {
    margin-left: 0.75rem;
    padding-left: 0.75rem;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
  }

  .navbar-brand {
    font-size: 1.25rem;
    padding-right: 1rem;
  }

  .btn {
    font-size: 0.9rem;
    padding: 0.4rem 0.9rem;
  }

  .btn-morado, .btn-primary {
    font-size: 0.9rem;
  }
}


/* ==========================================================================  
   22. Tipografía responsiva  
   ========================================================================== */

body {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem); /* tamaño base adaptable */
  line-height: 1.6;
}

h1, .display-4 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 2rem);
}

h4 {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
}

.lead {
  font-size: clamp(1rem, 1.5vw, 1.3rem);
}


/* ==========================================================================  
   23. video responsivo   
   ========================================================================== */



.ratio {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}

.ratio iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.75rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}


/* admin */

 .btn-purple {
        background-color: #6f42c1;
        color: white;
        border: none;
    }

    .btn-purple:hover {
        background-color: #5a32a3;
        color: white;
    }

    .card-title {
        color: #6f42c1;
        font-weight: 600;
    }

    .card {
        border: 1px solid #e5e5e5;
        border-radius: 1rem;
        transition: transform 0.2s ease;
    }

    .card:hover {
        transform: translateY(-5px);
    }

    .card-text {
        font-size: 0.95rem;
        color: #555;
    }

    .custom-gutter {
        margin-bottom: 2rem;
    }

    


body {
    background-color: #f8f9fc;
    font-family: 'Inter', sans-serif;
}

.sidebar {
    width: 260px;
    height: 100vh;
    background: #5f2dab;
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    padding: 2rem 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1000;
    transition: left 0.3s ease;
}

.sidebar .profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    text-align: center;
}

.sidebar .profile img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
}

.sidebar .profile span {
    font-weight: 600;
    font-size: 1.1rem;
}

.sidebar .nav-links {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar .nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.sidebar .nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.sidebar form {
    text-align: center;
}

.sidebar button {
    background: #e3342f;
    border: none;
    padding: 0.5rem 1rem;
    color: #fff;
    border-radius: 6px;
    font-weight: 500;
}

.main-content {
    margin-left: 260px;
    padding: 3rem 2rem;
    transition: margin-left 0.3s ease;
}

.dashboard-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.dashboard-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dashboard-card h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.dashboard-card p {
    color: #666;
    font-size: 0.95rem;
}

.btn-purple {
    background: #5f2dab;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 8px;
    border: none;
    font-weight: 500;
    margin-top: 1rem;
    text-decoration: none;
    display: inline-block;
}

.btn-purple:hover {
    background: #4e2192;
}

/* Botón hamburguesa */
.toggle-sidebar {
    position: fixed;
    top: 1rem;
    left: 1rem;
    background: #5f2dab;
    color: white;
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    z-index: 1100;
    font-size: 1.2rem;
    cursor: pointer;
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .sidebar {
        left: -260px;
    }

    .sidebar.open {
        left: 0;
    }

    .main-content {
        margin-left: 0;
        padding: 2rem 1rem;
    }

    .dashboard-title {
        text-align: center;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .toggle-sidebar {
        display: block;
    }
}

@media (min-width: 769px) {
    .toggle-sidebar {
        display: none;
    }
}


/* nuevo diseño */



.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: -1px;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
}

.hero-title .mujer {
  font-weight: 500;
  color: #ffffff;
  margin-right: 0.2rem;
}

.hero-title .es {
  font-weight: 900;
  color: #ffffff;
  margin-right: 0.4rem;
}

.hero-title .emprender {
  font-weight: 900;
  color: #ffffff;
}

.hero-title-stack {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  text-transform: uppercase;
  text-align: center;
  color: white;
  text-shadow:
    0 5px 8px rgba(0, 0, 0, 0.6),
    0 0 6px rgba(255, 255, 255, 0.25);
  line-height: 1.1;
}

.hero-title-stack .line-top,
.hero-title-stack .line-bottom {
  display: block;
  width: 100%;
}

.hero-title-stack .mujer {
  font-weight: 400;
  margin-right: 0.25rem;
}

.hero-title-stack .es {
  font-weight: 900;
}

.hero-title-stack .emprender {
  font-weight: 900;
}
.hero-title-stack {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  text-transform: uppercase;
  text-align: center;
  color: white;

  line-height: 1.1;
  text-shadow:
    0 4px 8px rgba(90, 42, 131, 0.8),
    0 0 12px rgba(90, 42, 131, 0.5);
}

.hero-title-stack .line-top,
.hero-title-stack .line-bottom {
  display: block;
  width: 100%;
}

.hero-title-stack .mujer {
  font-weight: 400;
  margin-right: 0.25rem;
}

.hero-title-stack .es {
  font-weight: 900;
}

.hero-title-stack .emprender {
  font-weight: 900;
}

.shadow-purple {
  box-shadow: 0 6px 16px rgba(90, 42, 131, 0.3);
  transition: box-shadow 0.3s ease;
}

.shadow-purple:hover {
  box-shadow: 0 8px 24px rgba(90, 42, 131, 0.45);
}
/* Hero con fondo morado transparente encima */
.hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

/* Capa morada con transparencia */
.hero-overlay-purple {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(90, 42, 131, 0.5), 
    rgba(90, 42, 131, 0.5)
  );
  z-index: 1;
}

/* Contenido por encima de la capa */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 1rem;
}

/* Botón con imagen personalizada */
.btn-custom-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background-color: #452166;
  color: #ffffff;
  border: 2px solid #5a2a83;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 2rem;
  padding: 0.6rem 1.5rem;

  /* Tamaño uniforme */
  height: 48px;
  min-width: 180px;

  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-custom-icon:hover {
  background-color: #f3eaff;
  color: #452166;
  border-color: #452166;
}

.btn-custom-icon .icon-img {
  height: 40px;
  width: 40px;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
}

/* Íconos del navbar */
.icon-img-navbar {
  height: 35px;
  width: 35px;
  object-fit: contain;
  margin-right: 0.5rem;
  vertical-align: middle;
}

/* Menú desplegable */
.custom-dropdown {
  border-radius: 10px;
  padding: 0.5rem 0;
  min-width: 220px;
}

.custom-dropdown .dropdown-item {
  padding: 0.5rem 1.2rem;
  color: #333333;
  font-weight: 500;
  transition: background-color 0.2s, color 0.2s;
}

.custom-dropdown .dropdown-item:hover {
  background-color: rgba(90, 42, 131, 0.1);
  color: #5a2a83;
}

.dropdown-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.logo-separado {
  margin-right: 2rem; 
}
.gap-navbar > li {
  margin-left: 1rem;
}

/* Espaciado uniforme entre botones del nav */
.gap-navbar > li {
  margin: 0.3rem 0.5rem;
}

/* Que los botones no se estiren ni achiquen demasiado */
.btn-custom-icon {
  width: auto;
  min-width: 180px;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}

/* Íconos en navbar visibles también en móvil */
.icon-img-navbar,
.dropdown-icon,
.icon-img {
  height: 22px;
  width: 22px;
  object-fit: contain;
}

/* Mejor visibilidad en pantallas pequeñas */
@media (max-width: 768px) {
  .navbar-nav {
    padding-top: 1rem;
  }

  .btn-custom-icon {
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    min-width: 160px;
  }

  .icon-img {
    height: 20px;
    width: 20px;
  }

  .dropdown-menu {
    text-align: left;
  }
}
/* Estilo base del sidebar móvil */
.sidebar-mobile {
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  height: 100%;
  z-index: 1050;
  background-color: #fff;
  overflow-y: auto;
  transition: left 0.3s ease;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

.sidebar-mobile.active {
  left: 0;
}
