/* Estilos base para Golfito Prospera Con Propósito */
body {
    margin: 0;
    font-family: 'Helvetica Neue', sans-serif;
    background-color: #ffffff;
    color: #002b5c;
  }
  
  .hero-gpp {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
  }
  
  .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  
  
  
  .hero-gpp .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 43, 92, 0.6);
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 2rem;
  }
  
  .hero-content h1 {
    font-size: 3rem;
    font-family: "space-bold";
    margin-bottom: 1rem;
  }
  
  .hero-content p {
    font-size: 1.2rem;
    font-family: "noto-light";
  }
  
  .cta-button {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    background-color: #00bfff;
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #009acc;
  }
  
  main {
    padding: 4rem 2rem;
  }
  
  h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-family: "space-normal";
  }
  
  /* Ranking Grid */
  .ranking-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
    justify-content: center;
  }
  
  .top-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .medio {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .resto {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    text-align: center;
  }
  
  .empresa {
    background: #eef5ff;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 43, 92, 0.1);
  }
  
  .destacada img, .mediana img, .mini img {
    width: 100px;
    height: auto;
  }
  
  .empresa h3, .empresa h4 {
    margin-top: 0.5rem;
    font-family: "space-bold";
  }
  
  .mini {
    padding: 1rem;
    background-color: #f5faff;
    border-radius: 8px;
  }
  
  /* Secciones explicativas */
  #reglas ul {
    max-width: 800px;
    margin: 0 auto;
    padding-left: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  #sobre, #inscripcion {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
  }
  
  footer {
    background-color: #002b5c;
    color: white;
    text-align: center;
    padding: 2rem 1rem;
    font-size: 0.9rem;
  }
  
  @media (max-width: 768px) {
    .hero-content h1 {
      font-size: 2rem;
    }
    .ranking-grid {
      grid-template-columns: 1fr;
    }
    .cta-button {
      width: 100%;
      max-width: 280px;
    }
  }
  