:root {
    --main-color: #fbdf19;
    --secondary-color: #020304;
    --text-light: rgba(255, 255, 255, 0.9);
    --text-muted: rgba(255, 255, 255, 0.7);
  }
  body {
    font-family: "Arial", sans-serif;
    background-color: var(--secondary-color);
    color: var(--text-light);
  }
  h2 {
    font-size: 1.8rem !important;
    color: #d3c00e !important;
  }
  .nav-link {
    position: relative;
    display: inline-block;
    color: rgba(255, 255, 255, 0.87);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  }
  .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background-color: #fbdf19;
    transition: width 0.3s ease;
  }
  .nav-link:hover::after {
    width: 100%;
  }
  .nav-link:hover {
    color: #fbdf19;
  }
  .nav-link.active {
    color: #fbdf19;
    font-weight: bold;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  }
  .nav-link.active::after {
    width: 100%;
  }
  .nav-link.active:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.4);
  }
  .hero {
    background-color: #fbdf19;
    color: #020304;
    text-align: center;
    padding: 50px 0;
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
  }
  .hero h1 {
    font-size: 3rem;
    font-weight: bold;
  }
  .about-us,
  .mission-vision {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
  }
  .about-us p {
    font-size: 1.2rem;
    text-align: center;
  }
  .mission-vision h3 {
    color: #fbdf19;
  }
  footer {
    background-color: #020304;
    color: rgba(255, 255, 255, 0.87);
    padding: 20px;
    text-align: center;
  }
  footer a {
    color: #fbdf19;
    text-decoration: none;
  }
  footer a:hover {
    text-decoration: underline;
  }

  .valores-seccion {
    text-align: center;
    margin: 40px auto;
    padding: 20px;
    max-width: 1200px;
  }

  .titulo-seccion {
    font-size: 28px;
    font-weight: bold;
    color: #fbdf19;
    margin-bottom: 30px;
  }

  .valores {
    display: grid;
    grid-template-columns: repeat(
      auto-fit,
      minmax(250px, 1fr)
    );
    gap: 40px;
    padding: 0 20px;
  }

  .valor {
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: left;
    position: relative;
  }

  .icono-valor {
    width: 50px;
    height: 50px;
    position: absolute;
    top: -25px;
    left: 20px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
  }

  .valor p {
    margin: 0;
    margin-top: 20px;
    font-size: 16px;
    color: #333;
  }

  .valor p strong {
    color: #d3c00e;
  }
  .desarrollado-por {
    text-align: center;
  }

  .desarrollado-por p,
  .desarrollado-por img {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
  }

  .desarrollado-por img {
    width: 80px;
    height: auto;
    margin-left: 10px;
  }