/* Tipografía y comportamiento */
body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
  }
  
  /* Portada azul con altura reducida */
  .hero-azul {
    background: linear-gradient(to right, #0056b3, #007bff);
    padding: 60px 20px;
    color: white;
    text-align: center;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
  }
  
  .hero-azul h1 {
    font-size: 2.5rem;
    font-weight: 700;
  }
  
  .hero-azul p {
    font-size: 1.2rem;
    margin-top: 10px;
  }
  
  /* Cards */
  .card {
    border-radius: 12px;
    transition: transform 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-5px);
  }
  
  /* Modales */
  .modal-info .modal-header {
    background-color: #0d6efd;
    color: white;
    border-bottom: none;
  }
  
  .modal-info .modal-footer {
    border-top: none;
  }
  
  .modal-body img {
    max-height: 250px;
    object-fit: cover;
  }
  
  /* Footer */
  footer {
    background-color: #111;
    color: #fff;
    padding: 20px;
    font-size: 0.95rem;
  }
  