  /* Fuente para todo el cuerpo (Open Sans) */
  body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #333;
  }

  /* Fuente para Títulos, Navbar y el Buscador (Montserrat) */
  h1, h2, h3, .navbar-brand, .nav-link, #btn-search {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase; /* Opcional: le da un toque más formal */
    letter-spacing: 0.5px;
  }

  .navbar-custom .nav-link {
    font-size: 14px; /* Un poco más pequeña para el menú */
    font-weight: 500;
  }

  /* Fondo del Navbar y texto de botones principales en Blanco */
  .navbar-custom {
    background-color: #4570B4 !important;
  }

  /* Enlaces principales del Navbar en BLANCO */
  .navbar-custom .nav-link, 
  .navbar-custom .navbar-brand {
    color: #FFFFFF !important;
    font-weight: 500;
  }

  /* MENÚ DESPLEGABLE: Fondo blanco y letras NEGRAS */
  .navbar-custom .dropdown-menu {
    background-color: #ffffff !important;
    border: none;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.1);
  }

  .navbar-custom .dropdown-item {
    color: #000000 !important; /* Texto negro en el desplegable */
  }

  .navbar-custom .dropdown-item:hover {
    background-color: #f8f9fa !important;
    color: #4570B4 !important; /* Color institucional al pasar el mouse */
  }

  /* Efecto OnMouseOver (Hover) */
  @media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
      display: block;
      margin-top: 0;
    }
  }

  /* Buscador Retráctil con texto blanco */
  .search-box {
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
    border-radius: 20px;
  }

  .search-input {
    width: 0;
    border: none;
    background: none;
    outline: none;
    transition: all 0.4s ease;
    padding: 0;
    color: #FFFFFF !important; /* Texto del buscador en blanco */
  }

  .search-input::placeholder {
    color: rgba(255,255,255,0.7);
  }

  .search-box.active {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 10px;
  }

  .search-box.active .search-input {
    width: 180px;
    padding: 0 5px;
  }

  #btn-search {
    color: #FFFFFF !important;
    cursor: pointer;
    font-size: 1.1rem;
  }

  /* Quitamos el subrayado de los links y mejoramos el hover */
  .link { text-decoration: none; }
  .card { transition: transform 0.3s ease; border: none; }
  .card:hover { transform: scale(1.05); }
  /* Color institucional para las cards */
  .text-bg-success { background-color: #4570B4 !important; } 

  .tituloSeccion {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 50px;
    color: #000;
    text-align: center;
    padding: 30px 0px 50px;
  }

  .tituloDona {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 50px;
    color: #fff;
    text-align: center;
    padding: 30px 0px;
  }

  .tituloPagina {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 30px;
    color: #000;
    padding: 30px 0px;
  }

  .tituloPaginaIn {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 30px;
    color: #4570B4;
    padding: 30px 0px 0px 0px;
  }

  .cardPlomo{
    background-color: #dedede; 
    color:#000;
    padding: 30px 0px 50px;
  }  

  .cardBlanco{
    background-color: #fff; 
    color:#000;
  }
  
  .cardNegro{
    background-color: #000; 
    color:#fff;
    padding: 30px 0px 50px;
  }
/*
  .cuadroNegroTrans{
    background-color: rgba(0, 0, 0, 0.5); 
    border-radius: 15px; 
    padding: 20px;
    border-radius: 0;
  }*/