.nav-link {
      border-radius: 50px;
      transition: all 0.3s;
    }
    .nav-link:hover, .nav-link.active {
      background-color: #dc3545 !important;
      color: white !important;
    }
    .footer_logo img {
      max-width: 150px;
      height: auto;
      display: block;
      margin: 0 auto;
    }
    .footer_logo { text-align: center; margin-bottom: 1rem; }
    .footer {
      width: 100%;
    }
    .footer-item {
      color: white;
      cursor: pointer;
      transition: color 0.3s;
    }
    .footer-item:hover {
      color: #dc3545 !important;
      text-decoration: none;
    }
    /* Estilo para las imágenes del grid */
    .grid-img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 1rem;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    /* Estilo para la sección de misión */
    .mision-section {
      background-color: #f8f9fa;
      padding: 3rem 0;
      border-radius: 8px;
      margin-top: 3rem;
    }


    

.footer .text-center {
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer .text-center:hover {
  color: #dc3545 !important; /* Rojo Bootstrap */
  text-shadow: 0 0 8px rgba(220, 53, 69, 0.7); /* brillo rojo */
  cursor: pointer;
}


.footer-item {
  display: inline-block;
  color: #bbb;            /* color normal */
  cursor: default;         /* evita la manita de link */
  transition: color 0.3s;  /* suaviza el cambio */
}

.footer-item:hover {
  color: #fff;             /* color al pasar el cursor */
}