.colorFont {
    color: #000000 ;
    font-weight: bolder;
    text-align: justify;
}

.juastifyText {
    text-align: justify;
}

.colorFontWhite {
    color: #ffffff ;
    font-weight: bolder;
    text-align: justify;
}

.menu-transparent {
  background-color: #ffffff !important; /* o cualquier color que desees */
  opacity: 1 !important;
  backdrop-filter: none !important; /* en caso de usar blur */
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 15px; /* Espacio entre elementos */
}

.navbar-nav li {
  list-style: none;
}

.navbar-nav li img {
  width: 20px;
  cursor: pointer;
}

.custom-file-wrapper {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin: auto;
}

.custom-file-input {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  cursor: pointer;
}

.custom-file-label {
  display: block;
  padding: 10px 15px;
  background-color: #000000;
  color: white;
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
  z-index: 1;
  position: relative;
}

.custom-file-label:hover {
  background-color: #0056b3;
}

.logo-navbar {
  width: 70px;
  height: auto;
}

@media (min-width: 768px) {
  .logo-navbar {
    margin-top: 15px;
  }
}

@media (max-width: 767px) {
  .logo-navbar {
    margin-top: 0;
  }
}

.quote-image {
  width: 100%;           /* Ocupará todo el ancho disponible */
  max-width: 100px;      /* Pero no se pasará de 700px */
  height: auto;          /* Mantiene la proporción original */
  display: block;        /* Quita espacios alrededor */
  margin: 0 auto;        /* La centra horizontalmente */
}

.cert-img {
  width: 100%;
  height: 200px;
  object-fit: contain; /* o cover, según prefieras */
  display: block;
  margin: 0 auto;
}

.footer-pequeno {
  padding-top: 40px;
  padding-bottom: 150px;
  font-size: 1.3rem; /* opcional: más compacto */
}

 nav {
      background-color: #f8f9fa;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 20px;
      position: relative;
    }

    .logo img {
      height: 40px;
    }

    .nav-links {
      display: flex;
      list-style: none;
      gap: 15px;
    }

    .nav-links li {
      display: flex;
      align-items: center;
    }

    .nav-links a, .nav-links img {
      text-decoration: none;
      color: #333;
      cursor: pointer;
    }

    /* Botón hamburguesa */
    .hamburger {
      display: none;
      font-size: 28px;
      background: none;
      border: none;
      cursor: pointer;
    }

    /* Responsive: solo se muestra la hamburguesa en móviles */
    @media (max-width: 768px) {
      .hamburger {
        display: block;
      }

      .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background-color: #f8f9fa;
        width: 200px;
        padding: 10px;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
        z-index: 999;
      }

      .nav-links.active {
        display: flex;
      }
    }

    .img-uniform {
  width: 100%;
  max-width: 300px;
  height: 200px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}