.russo-one-regular {
  font-family: "Russo One", sans-serif;
  
  font-style: normal;
}

 body {
      font-family: "Russo One", sans-serif;
          /*overflow-x: hidden;*/
      }
      * {
        box-sizing: border-box;
      }
      html, body {
        margin: 0;
        padding: 0;
      }

      .titulo-linea {
        display: flex;
        align-items: center;
        text-align: center;
        font-weight: bold;
        font-size: 2rem;
        color: #333;
      }

      .titulo-linea::before,
      .titulo-linea::after {
        content: "";
        flex: 1;
        border-bottom: 2px solid #ccc;
        margin: 0 10px;
      }
      .footer-fijo {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: #212529; /* fondo oscuro estilo Bootstrap */
        color: white;
        text-align: center;
        padding: 10px 0;        
        z-index: 1000;
      }
      .logo-fijo-centrado {
        position: fixed;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: 9990;
        width: 130px; /* ajustá el tamaño si querés */
        pointer-events: none; /* opcional: deja pasar clics al contenido debajo */
      }
      .btn-success{
        background-color: #b773a6 !important;
        border-color:  #b773a6 !important;
      }

      .nav-link:hover, .nav-link.active{
        color: #b773a6 !important;
      }

      @media (max-width: 768px) {
        .logo-letras {
          display: none;
        }
      }
      
      .offcanvas {
        z-index: 10050 !important;
      }
      .modal{
        z-index: 10000 !important;
      }

      h5{
        font-size: 18px;
      }


 
