/* Reset y fuente */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  min-height: 100vh;
  background: linear-gradient(135deg, none 0%, #0074D9 100%);
  color: none;
  font-family: 'Lora', serif;
}

/* Header y navegación */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background:  #107eeb;
  color: #ffffff;
  box-shadow: 0 2px 8px rgb(7, 16, 31);
  padding: 0.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header > div {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-left: 2rem;
}
header img {
  background: transparent;
  border-radius: 50%;
  border: 2px solid #002fff9a;
  padding: 2px;
}
header strong {
  color:  #ffffff;
  font-size: 1.2rem;
  letter-spacing: 1px;
  font-weight: 700;
}

/* Menú */
nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-right: 2rem;
}
nav .fa-solid {
  color: #ffffff;
  font-size: 1.7rem;
  cursor: pointer;
  display: none;
}
nav .nav-link {
  color: #ffffff;
  background: transparent;
  font-weight: 500;
  text-decoration: none;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
nav .nav-link:hover {
  background: #0074D9;
  color: #ffffff;
}

/* Responsive menú */
@media (max-width: 768px) {
  header > div {

    padding-left: 1rem;
  }
  nav {
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
    padding-right: 1rem;
  }
  nav .fa-solid {
    display: inline-block;
    margin-bottom: 0.5rem;
  }
  nav .nav-link {
    display: none;
    width: 160px;
    text-align: right;
    background: #ff8000;
    color: #ffffff;
    margin: 0;
    border-bottom: 1px solid #0074D9;
    border-radius: 0;
    box-shadow: none;
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
  }
  nav.show-menu .nav-link {
    display: block;
  }
}
.fent{
  color: black;
}

/* Carrusel */
.carousel-inner img {
  width: 100%;
  height: 600px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}

/* Bloque imagen + texto */
.imagen-texto {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: rgba(17,24,39,0.7);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin: 2rem auto;
  max-width: 900px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}
.img-lado {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  background: #fff;
}
.texto-lado h3 {
  margin-top: 0;
  color: #0074D9;
  font-size: 1.4rem;
  font-family: 'Lora', serif;
}
.texto-lado p {
  color: #fff;
  font-size: 1.05rem;
  font-family: 'Lora', serif;
}
@media (max-width: 700px) {
  .imagen-texto {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1rem;
  }
  .img-lado {
    width: 120px;
    height: 120px;
  }
}

/* Bloque imagen + formulario (matrícula) */
/* ahora la imagen y el formulario están en columnas separadas dentro de .row-container */
.row-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem auto;
  max-width: 1800px;
  width: 100%;
}

.imagen-col {
  flex: 0 0 auto;
}

.form-col {
  flex: 1;
}

.imagen-col .img-lado {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.form-col iframe {
  width: 100%;
  /* altura ajustada al contenido del formulario para evitar espacio extra */
  height: 1100px;
  border: none;
}

/* responsive stacking */
@media (max-width: 800px) {
  .row-container {
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
    gap: 1rem;
  }
  .imagen-col,
  .form-col {
    width: 100%;
  }
  .imagen-col .img-lado {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .form-col iframe {
    width: 100%;
    /* altura para móviles, puede ajustarse si es muy larga */
    height: 1400px;
  }
}

/* Estilos para el manual de convivencia (formal/educativo) */
#manualconvive {
  background: #f9f9f9;
  color: #333;
  padding-bottom: 2rem;
}
.contenido-manual {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  margin: 2rem auto;
}
.contenido-manual .info {
  flex: 1 1 400px;
}
.contenido-manual .preview {
  flex: 1 1 300px;
  min-width: 300px;
}
.contenido-manual .preview iframe {
  width: 100%;
  height: 500px;
  border: 1px solid #ccc;
  border-radius: 8px;
}
.contenido-manual h1 {
  font-family: 'Merriweather', serif;
  color: #050c13;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.contenido-manual h3 {
  color: #050c13;
  margin-top: 1.5rem;
  font-weight: 600;
}
.contenido-manual p,
.contenido-manual li {
  line-height: 1.6;
  font-size: 1.05rem;
}
.contenido-manual ul {
  margin-left: 1.2rem;
}
.btn-descargar {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  background: #2d8fff;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}
.btn-descargar:hover {
  background: #003366;
}
#holaperron {
    text-align: center;
}
#holamundo145 {
  color: #000000;
}
.img-lado {
  width: 50%;
  min-width: 250px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
  height: 100%;
  display: block;
}
.matricul {
  width: 50%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.caja {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.caja input,
.caja select,
.caja button {
  font-size: 1rem;
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  width: 100%;
  box-sizing: border-box;
}
.caja button {
  background: #007bff;
  color: #fff;
  border: none;
  transition: background 0.2s;
  cursor: pointer;
}
.caja button:hover {
  background: #0056b3;
}
@media (max-width: 900px) {
  .imagenmatri {
    flex-direction: column;
    max-width: 100vw;
  }
  .img-lado,
  .matricul {
    width: 100%;
    min-width: 0;
    padding: 1rem;
    height: auto;
  }
  .img-lado {
    max-height: 300px;
    object-fit: cover;
    border: none !important;
    box-shadow: none !important;
    border-radius: 600px !important;
    outline: none !important;
  }
}

/* Carrusel con texto al lado */
.carrusel-con-texto {
  display: flex;
  align-items: stretch;
  gap: 4rem;
  max-width: 1100px;
  margin: 2rem auto;
}
.carrusel-lado {
  flex: 1 1 50%;
  min-width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.texto-lado {
  flex: 1 1 50%;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: justify;
  min-width: 320px;
}
@media (max-width: 900px) {
  .carrusel-con-texto {
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
  }
  .carrusel-lado,
  .texto-lado {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
  .texto-lado {
    padding: 1.5rem 0.5rem;
  }
}

/* Footer */
footer {
  background: #1b1f3b;
  color: white;
  text-align: center;
  padding: 1.5rem 1rem;
}

/* Animación para menú */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px);}
  to { opacity: 1; transform: translateY(0);}
}
.info-card {
  background: #fff(255, 255, 255, 0.7);
  margin: 1rem auto;
  color: #fff;
  box-shadow: 0 2px 8px #fff(255, 255, 255);
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: block;
  max-width: 500px;
  width: 100%;
}
.hola123{
  color: #fff;
  background: rgba(0, 116, 217, 0.92);
  padding: 0.7rem 2.2rem;
  border-radius: 10px;
  font-size: 2rem;
  font-weight: bold;
  text-align: left;
  letter-spacing: 1px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  margin: 0 auto 18px auto;
  display: inline-block;
  white-space: nowrap;      
  position: relative;
  top: -390px;
  left: 0;      
  max-width: 95vw;      
}
.hola98{
  text-shadow: 6px 6px 8px rgb(0, 0, 0);

}
.subtitulo-bloque {
  text-align: center;
  margin: 2rem auto 1.5rem auto;
  max-width: 700px;
}
.subtitulo {
  font-size: 2rem;
  color: #0074D9;
  margin-bottom: 0.5rem;
  font-family: 'Lora', serif;
}
.texto-subtitulo {
  color: #000000;
  font-size: 1.1rem;
  font-family: 'Lora', serif;
  text-align: justify;
}

.galeria-imagenes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  max-width: 1100px;
  margin: 2rem auto;
  padding: 0 1rem;
}
.galeria-item img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  transition: transform 0.2s;
}

/* hide heading on carousel slides when viewport small */
@media (max-width: 768px) {
  .carousel-caption h3 {
    display: none;
  }
}

.galeria-item:hover img {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(0,116,217,0.18);
}










.imagenmatri {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 3rem;
  max-width: 1200px;
  width: 100%;
  background: #f8f9fa;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  padding: 2rem;
  margin: 2rem auto;
  overflow: hidden;
}

.img-lado-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 45%;
  min-width: 260px;
}

.img-lado {
  width: 100%;
  max-width: 340px;
  object-fit: cover;
  border: none;
  box-shadow: none;
  border-radius: 12px;
  display: block;
}

.texto-bajo-img {
  margin-top: 1rem;
  text-align: center;
  font-size: 1.1rem;
  color: #333;
  background: #eaf4fb;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  width: 100%;
  max-width: 340px;
}

.matricul {
  width: 55%;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Responsive */
@media (max-width: 900px) {
  .imagenmatri {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem;
    max-width: 98vw;
  }
  .img-lado-col,
  .matricul {
    width: 100%;
    min-width: 0;
    padding: 0;
    max-width: 100%;
  }
  .img-lado, .texto-bajo-img {
    max-width: 100%;
  }
}
.matricula-flex {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  max-width: 1200px;
  margin: 2rem auto;
  background: #f8f9fa;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  padding: 2rem;
}

.matricula-img-texto {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 45%;
  min-width: 260px;
}

.img-lado {
  width: 100%;
  max-width: 340px;
  object-fit: cover;
  border: none;
  box-shadow: none;
  border-radius: 12px;
  display: block;
}

.texto-bajo-img {
  margin-top: 1rem;
  text-align: center;
  font-size: 1.1rem;
  color: #333;
  background: #eaf4fb;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  width: 100%;
  max-width: 340px;
}

.matricul {
  width: 55%;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 900px) {
  .matricula-flex {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem;
    max-width: 98vw;
  }
  .matricula-img-texto,
  .matricul {
    width: 100%;
    min-width: 0;
    padding: 0;
    max-width: 100%;
  }
  .img-lado, .texto-bajo-img {
    max-width: 100%;
  }
}
.footer-comfenalco {
  background-color: #003366;
  color: white;
  padding: 30px 0 0;
  font-family: 'Arial', sans-serif;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  margin-bottom: 20px;
  padding: 0 15px;
}

.footer-section h3 {
  color: #FFCC00;
  margin-bottom: 15px;
  font-size: 18px;
}

.social-icons {
  display: flex;
  flex-direction: column;
}

.social-link {
  color: white;
  margin-bottom: 10px;
  text-decoration: none;
  transition: color 0.3s;
}

.social-link:hover {
  color: #FFCC00;
}

.social-link i {
  margin-right: 8px;
  width: 20px;
  text-align: center;
}

.contact-info p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.contact-info i {
  margin-right: 10px;
  width: 20px;
}

.btn-map {
  display: inline-block;
  background-color: #FFCC00;
  color: #003366;
  padding: 8px 15px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 10px;
}

.btn-map:hover {
  background-color: #e6b800;
}

.footer-bottom {
  background-color: #002244;
  padding: 15px 0;
  text-align: center;
  font-size: 14px;
}

.footer-legal {
  margin-bottom: 10px;
}

.footer-legal a {
  color: white;
  text-decoration: none;
  margin: 0 5px;
}

.footer-legal a:hover {
  text-decoration: underline;
}

.copyright {
  margin: 5px 0;
}

.credits {
  font-size: 12px;
  color: #AAAAAA;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .footer-section {
    flex: 100%;
    text-align: center;
  }
  
  .social-icons {
    align-items: center;
  }
  }

.mision-vision {
  background-color: #f8f9fa;
  padding: 60px 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.titulo-seccion {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 50px;
  font-size: 2.2rem;
  position: relative;
}

.titulo-seccion::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #3498db;
  margin: 15px auto 0;
}

.mv-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.mv-card {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.mision {
  border-top: 5px solid #3498db;
}

.vision {
  border-top: 5px solid #e74c3c;
}

.mv-icon {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #2c3e50;
}

.mv-card h3 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.mv-text p {
  color: #555;
  line-height: 1.6;
  text-align: justify;
}

@media (max-width: 768px) {
  .mv-container {
    flex-direction: column;
    align-items: center;
  }
  
  .mv-card {
    width: 100%;
  }
} 

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.whatsapp-link {
  display: flex;
  align-items: center;
  background: #25D366;
  color: white;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-link:hover {
  background: #128C7E;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
  position: relative;
  font-size: 28px;
  margin-right: 10px;
}

.notification-bubble {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #FF3B30;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.whatsapp-text {
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 16px;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Efecto para móviles */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-text {
    display: none; /* Oculta el texto en móviles pequeños */
  }
  
  .whatsapp-link {
    padding: 15px;
    border-radius: 50%;
  }
  
  .whatsapp-icon {
    margin-right: 0;
    font-size: 32px;
  }
}
.noticias-container {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
  font-family: 'Open Sans', sans-serif;
}

.noticias-header {
  text-align: center;
  margin-bottom: 40px;
}

.noticias-header h2 {
  color: #2c3e50;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.header-line {
  width: 100px;
  height: 3px;
  background-color: #e74c3c;
  margin: 0 auto;
}

/* GRID DE NOTICIAS */
.noticias-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.noticia-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  background: white;
}

.noticia-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.noticia-img {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.noticia-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.noticia-card:hover .noticia-img img {
  transform: scale(1.05);
}

.noticia-date {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #e74c3c;
  color: white;
  padding: 8px 15px;
  font-size: 14px;
  font-weight: 600;
}

.noticia-content {
  padding: 25px;
}

.noticia-content h3 {
  color: #2c3e50;
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 700;
}

.noticia-content p {
  color: #7f8c8d;
  line-height: 1.6;
  margin-bottom: 20px;
}

.noticia-link {
  color: #e74c3c;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s;
}

.noticia-link i {
  margin-left: 5px;
  transition: transform 0.3s;
}

.noticia-link:hover {
  color: #c0392b;
}

.noticia-link:hover i {
  transform: translateX(5px);
}

/* BOTÓN VER TODAS */
.noticias-footer {
  text-align: center;
}

.ver-todas-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #e74c3c;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.3s, transform 0.3s;
}

.ver-todas-btn:hover {
  background: #c0392b;
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .noticias-grid {
    grid-template-columns: 1fr;
  }
  
  .noticias-header h2 {
    font-size: 28px;
  }
}
.text-slider-container {
    width: 100%;
    overflow: hidden;
    background-color: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    margin: 0; /* no extra space above or below */
    padding: 6px 0; /* menguar espacio interior para quedar más pegado */
}

.text-slider-track {
    display: flex;
    animation: text-slide 25s linear infinite;
    align-items: center;
}

.text-slide {
    flex: 0 0 auto;
    padding: 0 40px;
    font-size: 1.1rem;
    color: #2c3e50;
    position: relative;
    white-space: nowrap;
    font-weight: 500;
}

.text-slide:not(:last-child)::after {
    content: "•";
    position: absolute;
    right: 10px;
    color: #95a5a6;
}

@keyframes text-slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Efecto de pausa al interactuar */
.text-slider-container:hover .text-slider-track {
    animation-play-state: paused;
}

/* Versión responsive */
@media (max-width: 768px) {
    .text-slide {
        font-size: 0.9rem;
        padding: 0 25px;
    }
}
.imagen-texto-container {
    display: flex;
    max-width: 1200px;
    margin: 40px auto;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Estilos para la sección de imagen */
.imagen-container {
    flex: 1;
    min-width: 50%;
}

.imagen-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Estilos para la sección de texto */
.texto-container {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.texto-container h2 {
    color: #003366;
    font-size: 32px;
    margin-bottom: 15px;
}

.separador {
    width: 60px;
    height: 4px;
    background: #FFCC00;
    margin-bottom: 25px;
}

.texto-container p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 16px;
}

.lista-destacada {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.lista-destacada li {
    margin-bottom: 10px;
    color: #333;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.lista-destacada i {
    color: #FFCC00;
    margin-right: 10px;
    font-size: 18px;
}

.boton-saber-mas {
    display: inline-block;
    background: #003366;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s;
    align-self: flex-start;
}

.boton-saber-mas:hover {
    background: #002244;
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .imagen-texto-container {
        flex-direction: column;
    }
    
    .imagen-container {
        min-height: 250px;
    }
    
    .texto-container {
        padding: 30px;
    }
    
    .texto-container h2 {
        font-size: 26px;
    }
}
 .linea-separadora {
    height: 1px;
    background-color: #e0e0e0;
    margin: 20px 0;
    width: 100%;
  }

  /* Línea con más espacio */
  .linea-separadora-espaciada {
    height: 1px;
    background-color: #ddd;
    margin: 40px 0;
    width: 100%;
  }

  /* Línea decorativa con color */
  .linea-decorativa {
    height: 2px;
    background-color: #f0f0f0;
    margin: 30px 0;
    position: relative;
    width: 100%;
  }

  .linea-interior {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 100px;
    background-color: #3498db;
  }

  /* Línea con texto en el centro */
  .linea-con-texto {
    display: flex;
    align-items: center;
    margin: 30px 0;
    color: #95a5a6;
  }

  .linea-con-texto::before,
  .linea-con-texto::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e0e0e0;
  }

  .texto-separador {
    padding: 0 15px;
    font-size: 14px;
  }

.personeria-container {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Encabezado decorativo */
.titulo-seccion {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

.titulo-seccion h2 {
  color: #2c3e50;
  font-size: 2.2rem;
  margin: 0 25px;
  text-align: center;
}

.linea-decorativa {
  height: 2px;
  background: linear-gradient(to right, transparent, #e74c3c, transparent);
  flex: 1;
  max-width: 150px;
}

/* Tarjeta de personero */
.personero-card {
  display: flex;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Contenedor de foto */
.personero-foto-container {
  flex: 1;
  min-width: 350px;
  position: relative;
}

.personero-foto {
  width: 100%;
  height: 100%;
  min-height: 450px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.personero-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(231, 76, 60, 0.9);
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.personero-badge i {
  margin-right: 8px;
}

/* Información del personero */
.personero-info {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.personero-info h3 {
  color: #2c3e50;
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.personero-info .curso {
  color: #7f8c8d;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.personero-propuestas h4, 
.personero-contacto h4 {
  color: #e74c3c;
  margin: 25px 0 15px;
  font-size: 1.3rem;
  position: relative;
  padding-left: 15px;
}

.personero-propuestas h4::before,
.personero-contacto h4::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 20px;
  width: 5px;
  background: #e74c3c;
  border-radius: 5px;
}

.personero-propuestas ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.personero-propuestas li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  color: #555;
}

.personero-propuestas i {
  color: #e74c3c;
  margin-right: 10px;
  margin-top: 3px;
  font-size: 1.1rem;
}

.personero-contacto p {
  color: #555;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.personero-contacto i {
  color: #e74c3c;
  margin-right: 12px;
  width: 20px;
  text-align: center;
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 900px) {
  .personero-card {
    flex-direction: column;
  }
  
  .personero-foto-container {
    min-width: 100%;
    min-height: 300px;
  }
  
  .personero-foto {
    min-height: 300px;
  }
  
  .personero-info {
    padding: 30px;
  }
}

@media (max-width: 500px) {
  .titulo-seccion h2 {
    font-size: 1.8rem;
  }
  
  .linea-decorativa {
    max-width: 80px;
  }
  
  .personero-info {
    padding: 25px 20px;
  }
  
  .personero-info h3 {
    font-size: 1.5rem;
  }
}

.innovacion-container {
  display: flex;
  max-width: 900px;
  margin: 30px auto;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Contenedor de video */
.video-innovacion {
  flex: 0 0 300px;
  position: relative;
}

.video-innovacion iframe {
  width: 100%;
  height: 100%;
  min-height: 476px;
  display: block;
}

.tecnologia-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(0, 150, 200, 0.9);
  color: white;
  padding: 6px 15px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
  text-transform: uppercase;
}

/* Contenido informativo */
.innovacion-info {
  flex: 1;
  padding: 25px;
}

.innovacion-info h2 {
  color: #2c3e50;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.innovacion-highlight {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: #f0f8ff;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.innovacion-highlight i {
  color: #0096c8;
  font-size: 1.5rem;
  margin-top: 3px;
}

.innovacion-highlight p {
  color: #333;
  font-weight: 500;
  margin: 0;
  font-size: 1.05rem;
}

.innovacion-text {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.innovacion-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.innovacion-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  color: #333;
}

.innovacion-list i {
  color: #0096c8;
  margin-right: 10px;
  font-size: 1.1rem;
}

.innovacion-callout {
  font-style: italic;
  color: #006080;
  font-weight: 500;
  text-align: center;
  padding: 15px;
  background: #f0f8ff;
  border-radius: 8px;
}

.innovacion-cta {
  margin-top: 25px;
  text-align: center;
}

.innovacion-btn {
  display: inline-flex;
  align-items: center;
  background: #0096c8;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.innovacion-btn:hover {
  background: #007aa3;
  transform: translateY(-2px);
}

.innovacion-btn i {
  margin-left: 8px;
  transition: transform 0.3s;
}

.innovacion-btn:hover i {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
  .innovacion-container {
    flex-direction: column;
  }
  
  .video-innovacion {
    flex: 0 0 auto;
  }
  
  .video-innovacion iframe {
    min-height: 400px;
  }
  
  .innovacion-info {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .video-innovacion iframe {
    min-height: 350px;
  }
  
  .innovacion-info h2 {
    font-size: 1.5rem;
  }
}
.reportaje-container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

/* Encabezado */
.encabezado-seccion {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  text-align: center;
}

.encabezado-seccion h2 {
  color: #2c3e50;
  font-size: 2rem;
  margin: 0 20px;
  font-weight: 600;
}

.linea-decorativa {
  height: 2px;
  background: linear-gradient(to right, transparent, #e74c3c, transparent);
  flex: 1;
  max-width: 150px;
}

/* Contenido principal */
.contenido-principal {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}

/* Video */
.video-contenedor {
  flex: 1;
  position: relative;
  min-height: 350px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.fb-video, 
.fb-video > span, 
.fb-video iframe {
  width: 100% !important;
  height: 100% !important;
  min-height: 350px !important;
}

.video-etiqueta {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(231, 76, 60, 0.9);
  color: white;
  padding: 6px 15px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 10;
}

/* Texto destacado */
.texto-destacado {
  flex: 1;
  display: flex;
  flex-direction: column;
}

blockquote {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  border-left: 4px solid #e74c3c;
  padding-left: 20px;
  margin: 0 0 30px 0;
}

.valores-equipo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.valor-item {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s;
}

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

.valor-item i {
  font-size: 2rem;
  color: #e74c3c;
  margin-bottom: 15px;
}

.valor-item h3 {
  color: #2c3e50;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.valor-item p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Llamado a acción */
.llamado-accion {
  text-align: center;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 8px;
}

.llamado-accion p {
  font-size: 1.2rem;
  color: #2c3e50;
  margin-bottom: 20px;
}

.boton-inscripcion {
  display: inline-flex;
  align-items: center;
  background: #e74c3c;
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.boton-inscripcion:hover {
  background: #c0392b;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(231,76,60,0.3);
}

.boton-inscripcion i {
  margin-left: 10px;
  transition: transform 0.3s;
}

.boton-inscripcion:hover i {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 850px) {
  .contenido-principal {
    flex-direction: column;
  }
  
  .video-contenedor {
    min-height: 300px;
  }
  
  .fb-video, 
  .fb-video > span, 
  .fb-video iframe {
    min-height: 300px !important;
  }
}

@media (max-width: 500px) {
  .encabezado-seccion h2 {
    font-size: 1.6rem;
  }
  
  blockquote {
    font-size: 1rem;
  }
  
  .valor-item {
    padding: 15px;
  }
}

.prom-container {
  max-width: 1000px;
  margin: 30px auto;
  padding: 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

/* Contenedor video + título */
.video-titulo-container {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

/* Video */
.video-prom {
  flex: 1;
  position: relative;
  min-width: 300px;
}

.video-prom iframe {
  width: 100%;
  height: 315px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.fecha-evento {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
}

/* Título y mensaje */
.titulo-prom {
  flex: 1;
  min-width: 250px;
}

.titulo-prom h2 {
  color: #2c3e50;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.separador-prom {
  width: 60px;
  height: 3px;
  background: #e74c3c;
  margin: 15px 0;
}

.mensaje-bendicion {
  color: #555;
  line-height: 1.6;
  font-size: 1.05rem;
  font-style: italic;
}

/* Lista de estudiantes */
.estudiantes-container {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.estudiantes-container h3 {
  color: #2c3e50;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.lista-estudiantes {
  display: flex;
  gap: 30px;
}

.columna-estudiantes {
  flex: 1;
}

.columna-estudiantes p {
  margin: 12px 0;
  display: flex;
  align-items: center;
  color: #444;
}

.columna-estudiantes i {
  color: #e74c3c;
  margin-right: 10px;
  font-size: 1.1rem;
}

/* Galería */
.galeria-prom h3 {
  color: #2c3e50;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.grid-galeria {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}

.miniatura {
  background: #eee;
  height: 80px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  font-size: 0.9rem;
}

.ver-mas {
  display: inline-flex;
  align-items: center;
  color: #e74c3c;
  text-decoration: none;
  font-weight: 600;
}

.ver-mas i {
  margin-left: 8px;
  transition: transform 0.3s;
}

.ver-mas:hover i {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 800px) {
  .video-titulo-container {
    flex-direction: column;
  }
  
  .video-prom iframe {
    height: 280px;
  }
  
  .lista-estudiantes {
    flex-direction: column;
    gap: 5px;
  }
  
  .grid-galeria {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .video-prom iframe {
    height: 220px;
  }
  
  .titulo-prom h2 {
    font-size: 1.5rem;
  }
}



   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body, html {
            height: 100%;
            overflow-x: hidden;
        }
        
        /* Contenedor de video de fondo - MODIFICADO */
        .video-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
        }
        
        .video-background video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translateX(-50%) translateY(-50%);
            object-fit: cover;
        }
        
        /* Overlay para mejorar legibilidad del contenido */
        .overlay {
            position: fixed; /* Cambiado a fixed */
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(13, 24, 41, 0.7);
            z-index: -1; /* Aseguramos que esté detrás del contenido */
        }
        
        /* Contenido principal - MODIFICADO */
        .content {
            position: relative;
            z-index: 1;
            color: white;
            text-align: center;
            padding: 30px;
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        
        .logo {
            margin-bottom: 30px;
        }
        
        .logo h1 {
            font-size: 3.5rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 10px;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
        }
        
        .logo p {
            font-size: 1.2rem;
            font-weight: 300;
            letter-spacing: 1px;
        }
        
        .main-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .main-content h2 {
            font-size: 2.2rem;
            margin-bottom: 25px;
            color: #e6b220;
            text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
        }
        
        .main-content p {
            font-size: 1.2rem;
            line-height: 1.6;
            margin-bottom: 30px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }
        
        .buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-top: 40px;
        }
        
        .btn {
            padding: 15px 30px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .btn-primary {
            background-color: #e6b220;
            color: #0d1829;
            border: 2px solid #e6b220;
        }
        
        .btn-primary:hover {
            background-color: transparent;
            color: #e6b220;
        }
        
        .btn-secondary {
            background-color: transparent;
            color: white;
            border: 2px solid white;
        }
        
        .btn-secondary:hover {
            background-color: white;
            color: #0d1829;
        }
        
        /* Secciones adicionales */
        .section {
            position: relative; /* Aseguramos que esté sobre el video */
            z-index: 2; /* Mayor que el video y overlay */
            padding: 80px 30px;
            background-color: #f5f5f5;
            color: #333;
        }
        
        .section h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 50px;
            color: #1a3c6e;
        }
        
        .features {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .feature {
            flex: 1;
            min-width: 250px;
            max-width: 350px;
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            text-align: center;
        }
        
        .feature h3 {
            font-size: 1.5rem;
            margin: 20px 0;
            color: #1a3c6e;
        }
        
        .feature p {
            line-height: 1.6;
        }
        
        /* Footer */
        footer {
            position: relative; /* Aseguramos que esté sobre el video */
            z-index: 2; /* Mayor que el video y overlay */
            background-color: #0d1829;
            color: white;
            padding: 40px 30px;
            text-align: center;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .logo h1 {
                font-size: 2.5rem;
            }
            
            .main-content h2 {
                font-size: 1.8rem;
            }
            
            .buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 250px;
                text-align: center;
            }
        }

.video-background {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100vw;
  min-height: 100vh;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.video-background .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.3);
  z-index: 2;
}

.video-background .content {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  color: #fff;
  text-align: center;
  width: 90%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.galeria-prom .grid-galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  align-items: stretch;
}

.galeria-prom .miniatura {
  width: 100%;
  height: 120px; /* ajusta la altura a tu diseño */
  overflow: hidden;
  border-radius: 6px;
  background: #f6f6f6;
}

.galeria-prom .miniatura img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* recorta centrado sin deformar */
  display: block;
}

/* tambien asegurar que las galerias externas no rompan el layout */
.galeria-imagenes .galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* modal for expanding images */
.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.image-modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.image-modal #close-modal {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}

.video-contenedor {
  flex: 0 0 360px;      /* ancho ocupado en desktop (ajusta a 320/420 según prefieras) */
  max-width: 360px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  margin: 0; /* controla separación con la columna derecha */
}

/* Wrapper responsivo en modo vertical: padding-top = (16/9)*100% = 177.78% */
.fb-video-wrapper {
  width: 100%;
  padding-top: 177.78%; /* altura relativa para video vertical 9:16 */
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #000;
}

.fb-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Ajustar distribución: columna derecha ocupa resto del espacio */
.texto-destacado {
  flex: 1 1 auto;
  padding-left: 1.5rem;
}
@media (max-width: 900px) {
  .contenido-principal {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .video-contenedor {
    flex: none;
    width: 92%;
    max-width: 420px; /* controla ancho del video en móvil */
    margin: 0 auto;
  }

  .fb-video-wrapper {
    width: 100%;
    padding-top: 177.78%; /* mantiene proporción vertical 9:16 */
    position: relative;
  }

  .fb-video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .video-etiqueta {
    position: relative;
    top: auto;
    left: auto;
    display: inline-block;
    margin: 0.6rem 0;
  }

  .texto-destacado {
    width: 95%;
    max-width: 900px;
    padding: 0 1rem;
  }
}

/* Pequeñas pantallas */
@media (max-width: 480px) {
  .video-contenedor { max-width: 360px; }
  .texto-destacado { padding: 0 0.8rem; font-size: 0.95rem; }
  .valor-item h3 { font-size: 1rem; }
  .fb-video-wrapper { padding-top: 177.78%; }
}
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  cursor: pointer;
  padding: 0.5rem 0.75rem !important;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 200px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 1000;
  padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-item {
  display: block;
  padding: 0.75rem 1.2rem;
  color: #003366;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background: #f5f5f5;
  color: #0056b3;
  padding-left: 1.5rem;
}

/* Responsive dropdown en móvil */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    border: none;
    border-top: 1px solid #f0f0f0;
    box-shadow: none;
    padding: 0;
  }
  
  .dropdown:hover .dropdown-menu,
  .dropdown.active .dropdown-menu {
    display: block;
  }
  
  .dropdown-item {
    border-bottom: 1px solid #f0f0f0;
    padding: 1rem;
  }
  
  .dropdown-item:last-child {
    border-bottom: none;
  }
}


