
/* File: static/css/css.css */
html,body{
      font-family:'Inter',sans-serif;
      overflow-x:hidden;        /* <-- evita que la página sea más ancha que la pantalla */
    }
    .stat-card:hover {
      transform: translateY(-5px);
    }
    .team-member {
      transition: all 0.3s ease;
    }
    .team-member:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    }
    .publication-card {
      transition: all 0.3s ease;
    }
    .publication-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    }
    .gallery-overlay {
      position: absolute;
      bottom: 0;
      background: rgba(0, 0, 0, 0.7);
      color: white;
      width: 100%;
      transition: height 0.3s ease;
      height: 0;
      overflow: hidden;
    }
    .gallery-item:hover .gallery-overlay {
      height: 100%;
    }

  html {
    scroll-padding-top: 6rem; /* Altura del header */
  }