*{
      margin:0;
      padding:0;
      box-sizing:border-box;
      scroll-behavior:smooth;
    }

    body{
      font-family:'Montserrat',sans-serif;
      background:#f5f5f5;
      color:#333;
      overflow-x:hidden;
    }

    a{
      text-decoration:none;
      color:inherit;
    }

    ul{
      list-style:none;
    }

    img{
      max-width:100%;
      display:block;
    }

    .container{
      width:90%;
      max-width:1200px;
      margin:auto;
    }

    /* =========================
       HEADER
    ========================== */

    header{
      width:100%;
      position:sticky;
      top:0;
      z-index:999;
      background:#fff;
      box-shadow:0 2px 10px rgba(0,0,0,.08);
    }

    .topbar{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:14px 5%;
      background:#fff;
    }

    .logo img{
      width:160px;
      transition:.3s;
    }

    .logo img:hover{
      transform:scale(1.03);
    }

    .menu-toggle{
      display:none;
      font-size:28px;
      color:#f28b00;
      cursor:pointer;
    }

    nav{
      background:#f28b00;
    }

    .menu{
      display:flex;
      justify-content:center;
      align-items:center;
      gap:5px;
    }

    .menu > li{
      position:relative;
    }

    .menu > li > a{
      display:block;
      color:#fff;
      padding:18px 20px;
      font-weight:600;
      transition:.3s;
    }

    .menu > li:hover > a{
      background:#db7700;
    }

    /* SUBMENU */

    .submenu{
      position:absolute;
      top:100%;
      left:0;
      min-width:260px;
      background:#fff;
      opacity:0;
      visibility:hidden;
      transform:translateY(15px);
      transition:.35s ease;
      box-shadow:0 10px 25px rgba(0,0,0,.15);
      border-radius:0 0 10px 10px;
      overflow:hidden;
    }

    .submenu li a{
      display:block;
      padding:14px 18px;
      color:#333;
      border-bottom:1px solid #eee;
      transition:.3s;
      font-size:14px;
    }

    .submenu li a:hover{
      background:#f28b00;
      color:#fff;
      padding-left:24px;
    }

    .menu li:hover .submenu{
      opacity:1;
      visibility:visible;
      transform:translateY(0);
    }

    /* =========================
       HERO
    ========================== */

    .hero{
      height:90vh;
      background:
      linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
      url('img/g2.JPG') center/cover no-repeat;
      display:flex;
      align-items:center;
      justify-content:center;
      text-align:center;
      color:#fff;
      position:relative;
    }

    .hero-content{
      animation:fadeUp 1s ease;
    }

    .hero h1{
      font-size:60px;
      margin-bottom:20px;
      font-weight:800;
    }

    .hero p{
      font-size:20px;
      margin-bottom:30px;
    }

    .btn{
      display:inline-block;
      padding:16px 40px;
      background:#00a651;
      color:#fff;
      border-radius:50px;
      font-weight:700;
      transition:.3s;
      box-shadow:0 10px 20px rgba(0,0,0,.2);
    }

    .btn:hover{
      transform:translateY(-5px);
      background:#008f45;
    }

    /* =========================
       SECTION GENERAL
    ========================== */

    section{
      padding:90px 0;
    }

    .section-title{
      text-align:center;
      margin-bottom:60px;
    }

    .section-title h2{
      color:#0e9a4f;
      font-size:40px;
      margin-bottom:10px;
    }

    .section-title p{
      color:#666;
    }

    /* =========================
       ABOUT
    ========================== */

    .about{
      background:#fff;
    }

    .about-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:60px;
      align-items:center;
    }

    .about-img img{
      border-radius:20px;
      box-shadow:0 10px 30px rgba(0,0,0,.15);
    }

    .about-text h3{
      color:#0e9a4f;
      font-size:38px;
      margin-bottom:20px;
    }

    .about-text p{
      line-height:1.9;
      color:#555;
    }

    /* =========================
       SERVICIOS
    ========================== */

    .services{
      background:#f5f5f5;
    }

    .service-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:25px;
    }

    .service-card{
      background:#fff;
      padding:40px 25px;
      text-align:center;
      border-radius:18px;
      transition:.4s;
      box-shadow:0 5px 20px rgba(0,0,0,.08);
    }

    .service-card:hover{
      transform:translateY(-10px);
      box-shadow:0 15px 30px rgba(0,0,0,.12);
    }

    .service-card i{
      font-size:45px;
      color:#f28b00;
      margin-bottom:20px;
    }

    .service-card h4{
      margin-bottom:10px;
      font-size:22px;
    }

    .service-card p{
      color:#666;
      font-size:15px;
      line-height:1.7;
    }

    /* =========================
       HORARIO
    ========================== */

    .schedule{
      background:#fff;
    }

    .schedule-wrapper{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:40px;
      align-items:center;
    }

    .schedule-box{
      background:#0e9a4f;
      color:#fff;
      padding:50px;
      border-radius:20px;
      box-shadow:0 10px 25px rgba(0,0,0,.12);
    }

    .schedule-box h3{
      font-size:35px;
      margin-bottom:30px;
    }

    .schedule-item{
      display:flex;
      justify-content:space-between;
      border-bottom:1px solid rgba(255,255,255,.2);
      padding:15px 0;
      font-size:18px;
    }

    .schedule-img img{
      border-radius:20px;
      height:100%;
      object-fit:cover;
      box-shadow:0 10px 25px rgba(0,0,0,.15);
    }

    /* =========================
       REGLAMENTO
    ========================== */

    .rules{
      background:#f5f5f5;
    }

    .rules-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:50px;
      align-items:center;
    }

    .rules-list li{
      margin-bottom:22px;
      font-size:17px;
      line-height:1.8;
    }

    .rules-list i{
      color:#f28b00;
      margin-right:10px;
    }

    .rules img{
      border-radius:20px;
      box-shadow:0 10px 30px rgba(0,0,0,.15);
    }

    /* =========================
       CTA
    ========================== */

    .cta{
      background:
      linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),
      url('img/slider.JPG') center/cover fixed;
      color:#fff;
      text-align:center;
    }

    .cta h2{
      font-size:45px;
      margin-bottom:20px;
    }

    .cta p{
      max-width:700px;
      margin:auto;
      line-height:1.8;
      margin-bottom:35px;
    }

    /* =========================
   RECURSOS EXTERNOS
========================== */

.external-resources{
  background:#f5f5f5;
}

.resources-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.resources-img img{
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,.15);
  width:100%;
  height:100%;
  object-fit:cover;
}

.resources-text{
  color:#555;
  line-height:1.9;
  margin-bottom:25px;
  font-size:16px;
}

.resources-list{
  padding:0;
  margin:0;
}

.resources-list li{
  margin-bottom:20px;
  font-size:17px;
  display:flex;
  align-items:center;
  gap:12px;
  line-height:1.7;
}

.resources-list i{
  color:#f28b00;
  font-size:12px;
}

/* LINKS */

.resources-list a{
  color:#333;
  text-decoration:none;
  transition:.3s;
}

.resources-list a:hover{
  color:#0e9a4f;
  padding-left:5px;
}

/* RESPONSIVE */

@media(max-width:991px){

  .resources-grid{
    grid-template-columns:1fr;
  }

}

    /* =========================
       GALERIA
    ========================== */

    .gallery{
      background:#fff;
    }

    .gallery-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:20px;
    }

    .gallery-item{
      overflow:hidden;
      border-radius:18px;
      position:relative;
    }

    .gallery-item img{
      width:100%;
      height:100%;
      object-fit:cover;
      transition:.5s;
    }

    .gallery-item:hover img{
      transform:scale(1.1);
    }

    /* =========================
       FOOTER
    ========================== */

    footer{
      background:linear-gradient(180deg,#f28b00,#ea5a14);
      color:#fff;
      padding:70px 0 20px;
    }

    .footer-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:40px;
    }

    .footer-col h4{
      margin-bottom:20px;
      font-size:22px;
    }

    .footer-col p{
      line-height:1.8;
      font-size:15px;
    }

    .socials{
      display:flex;
      gap:15px;
      margin-top:20px;
    }

    .socials a{
      width:45px;
      height:45px;
      border-radius:50%;
      background:#fff;
      color:#f28b00;
      display:flex;
      align-items:center;
      justify-content:center;
      transition:.3s;
      font-size:18px;
    }

    .socials a:hover{
      transform:translateY(-5px);
    }

    .copy{
      text-align:center;
      margin-top:50px;
      border-top:1px solid rgba(255,255,255,.2);
      padding-top:20px;
      font-size:14px;
    }

    /* =========================
       ANIMACIONES
    ========================== */

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

    .animate{
      opacity:0;
      transform:translateY(40px);
      transition:all .9s ease;
    }

    .animate.show{
      opacity:1;
      transform:translateY(0);
    }

    /* =========================
       RESPONSIVE
    ========================== */

    @media(max-width:991px){

      .menu-toggle{
        display:block;
      }

      nav{
        max-height:0;
        overflow:hidden;
        transition:.5s;
      }

      nav.active{
        max-height:1000px;
      }

      .menu{
        flex-direction:column;
        align-items:flex-start;
      }

      .menu > li{
        width:100%;
      }

      .menu > li > a{
        width:100%;
      }

      .submenu{
        position:static;
        opacity:1;
        visibility:visible;
        transform:none;
        display:none;
        width:100%;
        box-shadow:none;
        border-radius:0;
      }

      .menu li.active .submenu{
        display:block;
      }

      .hero h1{
        font-size:42px;
      }

      .about-grid,
      .rules-grid,
      .schedule-wrapper{
        grid-template-columns:1fr;
      }

      .service-grid{
        grid-template-columns:repeat(2,1fr);
      }

      .gallery-grid{
        grid-template-columns:1fr 1fr;
      }

      .footer-grid{
        grid-template-columns:1fr;
      }
    }

    @media(max-width:600px){

      .hero{
        height:75vh;
      }

      .hero h1{
        font-size:32px;
      }

      .hero p{
        font-size:16px;
      }

      .section-title h2{
        font-size:30px;
      }

      .service-grid{
        grid-template-columns:1fr;
      }

      .gallery-grid{
        grid-template-columns:1fr;
      }

      .about-text h3{
        font-size:28px;
      }

      .schedule-box{
        padding:30px;
      }

      .cta h2{
        font-size:30px;
      }
    }