 :root {
      --azul: #004B8D;
      --dorado: #E6B800;
      --gris: #f7f7f7;
      --texto: #2a2a2a;
    }


    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Montserrat', sans-serif;
    }

    body {
      background: var(--gris);
      color: var(--texto);
      line-height: 1.6;
    }

    header {
      background-color: #fff;
      border-bottom: 4px solid var(--dorado);
      text-align: center;
      padding: 1rem;
      box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    }

    .logos {
      display: flex;
      justify-content: center;
      gap: 2rem;
      align-items: center;
      flex-wrap: wrap;
      margin-bottom: 0.5rem;
    }

    .logos img {
      height: 70px;
      object-fit: contain;
    }
header h1 {
      color: var(--azul);
      font-size: 2.3rem;
      font-weight: 700;
    }

    header p {
      color: var(--texto);
      font-size: 0.01rem;
      margin-top: 0.3rem;
    }

    .hero {
      text-align: center;
      padding: 4rem 3rem;
      #background: linear-gradient(to bottom right, var(--azul), #002d5b);
      background-image: url('../img/banner.jpg');
      background-size: cover;             
      background-position: center;         
      height: 585px;                       
      color: #fff;
    }
    @media (max-width: 768px) {
  .hero {
    height: 685px;
    background-image: url("../img/banner_movile.jpg");
  }
}

 	

    .hero h2 {
      font-size: 1.5rem;
      font-weight: 500;
      margin-bottom: 1.5rem;
    }

    .hero p {
      font-size: 1.5rem;
      max-width: 800px;
      margin: 0.2rem auto 0.5rem;
    }
.btn {
      background-color: #fff;
      color: #000;
      font-weight: 700;
      padding: 0.8rem 1.5rem;
      border-radius: 8px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.3s ease;
    }

    .btn:hover {
      background-color: #773606;
      transform: translateY(-2px);
    }

    section {
      max-width: 1100px;
      margin: 2rem auto;
      background: #fff;
      border-radius: 12px;
      padding: 2rem;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }

    h3 {
      color: #773606;
      margin-bottom: 1rem;
      font-weight: 700;
    }

    .info-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
    }

    .info-item {
      background: var(--gris);
      border-left: 5px solid var(--dorado);
      border-radius: 8px;
      padding: 1rem;
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }
 .info-item i {
      color: var(--azul);
      width: 28px;
      height: 28px;
      flex-shrink: 0;
    }

    .info-item p {
      margin: 0;
      font-weight: 500;
    }

    .modulos {
      margin-top: 1.5rem;
    }

    .modulos ul {
      list-style: none;
      padding: 0;
    }

    .modulos li {
      margin: 0.6rem 0;
      padding: 0.5rem 0.8rem;
      border-radius: 8px;
      background: var(--gris);
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .modulos i {
      color: var(--dorado);
      width: 24px;
      height: 24px;
    }

    footer {
      text-align: center;
      background: #282b34;
      color: #fff;
      padding: 2rem 1rem;
      margin-top: 3rem;
    }

    footer a {
      color: var(--dorado);
      text-decoration: none;
      font-weight: 600;
    }
footer a:hover {
      text-decoration: underline;
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    section, header, .hero, footer {
      animation: fadeInUp 0.7s ease both;
    }
.titulo {
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  font-weight: 700;
}
