*{
      margin:0;
      padding:0;
      box-sizing:border-box;
      font-family:'Poppins', sans-serif;
  }

    html{
      scroll-behavior:smooth;
    }

    body{
      background:#fafdff;
      color:#01579b;
      overflow-x:hidden;
    }

    /* =========================
       HEADER
    ========================= */

    header{
      width:100%;
      position:fixed;
      top:0;
      left:0;
      z-index:1000;
/*      background:rgba(255,255,255,0.80);*/
      background:rgba(1,87,155,0.80);
      backdrop-filter:blur(10px);
      box-shadow:0 2px 15px rgba(0,0,0,0.05);
    }

    .navbar{
      max-width:1200px;
      margin:auto;
      padding:10px;
      display:flex;
      justify-content:space-between;
      align-items:center;
      position:relative;
    }

    .logo{
    /*  font-size:2rem;
      font-weight:700;*/
      color:#01579b;
    }

    .logo img{
      height: 70px;
    }

    .menu{
      display:flex;
      align-items:center;
      gap:30px;
    }

    .menu a{
      text-decoration:none;
      color:#ffffff;
      font-weight:500;
      transition:0.3s;
    }

    .menu a:hover{
      color:#ffd700;
    }

    .btn{
      background:#ffd700;
      color: #01579b;
      padding:14px 28px;
      border-radius:30px;
      text-decoration:none;
      font-weight:600;
      border:none;
      cursor:pointer;
      transition:0.3s;
      display:inline-block;
    }

    .btn:hover{
      color: #01579b;
      background-color:#ffffff;
      transform:translateY(-3px);
    }

    /* =========================
       MENU HAMBURGUESA
    ========================= */

    .menu-toggle{
      display:none;
      font-size:2rem;
      cursor:pointer;
      color:#ffffff;
    }

    /* =========================
       HERO
    ========================= */

    .hero{
      min-height:100vh;
/*      background:linear-gradient(145deg,#01579b,#0288d1,#03a9f4,#4fc3f7,#b3e5fc,#e1f5fe);*/
      background:linear-gradient(145deg,#01579b,#0288d1,#03a9f4);

      display:flex;
      align-items:center;
      padding:140px 20px 80px;
    }

    .hero-content{
      max-width:1200px;
      margin:auto;
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:60px;
      align-items:center;
    }

    .hero-text h1{
      font-size:4.5rem;
      line-height:1.1;
      color:white;
      margin-bottom:25px;
    }

    .hero-text span{
      color:#ffd700;
    }

    .hero-text p{
      color:white;
      font-size:1.1rem;
      line-height:1.8;
      margin-bottom:40px;
    }

    .hero-buttons{
      display:flex;
      gap:20px;
      flex-wrap:wrap;
    }


    .btn_2{
/*      background:#00DFC3;*/
      background-color: #ffd700;
      color:#01579b;
      padding:14px 28px;
      border-radius:30px;
      text-decoration:none;
      font-weight:600;
      border:none;
      cursor:pointer;
      transition:0.3s;
      display:inline-block;
    }

    .btn_2:hover{
      background:#ffffff;
      color: #01579b;
      transform:translateY(-3px);
    }




    .btn-outline{
      border:2px solid white;
      color:white;
      padding:12px 24px;
      border-radius:30px;
      text-decoration:none;
      transition:0.3s;
      font-weight:600;
    }

    .btn-outline:hover{
      background:white;
      color:#01579b;
    }

    .hero-image{
      display:flex;
      justify-content:center;
    }

    .card{
      width:380px;
      background:white;
      border-radius:35px;
      padding:25px;
      box-shadow:0 25px 60px rgba(0,0,0,0.15);
    }

    .card-inner{
      height:550px;
      border-radius:30px;
      background:linear-gradient(145deg,#01579b,#0288d1);
      display:flex;
      flex-direction:column;
      justify-content:center;
      align-items:center;
      text-align:center;
      color:white;
      padding:20px;
    }

    .emoji{
      font-size:6rem;
      margin-bottom:0px;
    }

    .emoji img{
    /*  height: 200px;*/
    width: 75%;
    }

    .card-inner h2{
      font-size:2.3rem;
      margin-bottom:20px;
      color: #ffd700;
    }

    .card-inner h3{
      font-size:1.5rem;
      margin-bottom:10px;
    }

    .card-inner p{
      line-height:1.8;
    }

    /* =========================
       SECCIONES
    ========================= */

    section{
      padding:100px 20px;
    }

    .container{
      max-width:1200px;
      margin:auto;
    }

    .section-title{
      text-align:center;
      margin-bottom:70px;
    }

    .section-title h2{
      font-size:3rem;
      color:#01579b;
      margin-bottom:15px;
    }

    .section-title p{
      max-width:700px;
      margin:auto;
      color:#666;
      line-height:1.8;
    }

    /* =========================
       RITMOS
    ========================= */

 
    .cards{
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
      gap:30px;
    }

    .dance-card{
      background:white;
      padding:40px 30px;
      border-radius:30px;
      text-align:center;
      box-shadow:0 10px 30px rgba(0,0,0,0.08);
      transition:0.4s;
      border:1px solid #e8ffff;
    }

    .dance-card:hover{
      transform:translateY(-10px);
    }

    .icon{
      width:120px;
      height:120px;
      background:#dcfffe;
      margin:auto;
      border-radius:25px;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:2.5rem;
      margin-bottom:25px;
    }

    .icon img{
      width: 100%;
    }

    .dance-card h3{
      margin-bottom:15px;
      font-size:1.6rem;
    }

    .dance-card p{
      color:#666;
      line-height:1.7;
    }


    /* =========================
       CLASES
    ========================= */
    
    .sect_cursos{
/*      background:linear-gradient(145deg,#01579b,#0288d1,#03a9f4,#4fc3f7,#b3e5fc,#e1f5fe);*/
      background:linear-gradient(145deg,#01579b,#0288d1,#03a9f4);


    }

    .curso_container{
      max-width:1200px;
      margin:auto;
    }

    .curso_cards{
      display:flex;
      flex-direction: column;
/*      gap:30px;*/
    }

    .curso-card{
      background:white;
      padding:40px 30px;
      border-radius:30px;
      text-align:center;
      box-shadow:0 10px 30px rgba(0,0,0,0.08);
      transition:0.4s;
      border:1px solid #e8ffff;
      margin-bottom: 10px;
    }

    .curso-card:hover{
      transform:translateY(-10px);
    }

    .aparece{
      visibility: visible;
    }



    /* =========================
       CURSOS
    ========================= */

    .horario-container{
      max-width:1200px;
      margin:auto;
      display: flex;
      flex-direction: column;
      align-items:center;
      justify-content:center;
    }

    .horario-container h2{
      font-size:3rem;
      color:#01579b;
      margin-bottom:15px;
    }


    table{
        width:100%;
        border-collapse:collapse;
        background:white;
        border-radius:10px;
        overflow:hidden;
        box-shadow:0 10px 25px rgba(0,0,0,0.1);
    }

    th{
  /*      background:linear-gradient(135deg,#7be7e4,#14c9c3,#7be7e4);
        background:linear-gradient(45deg,#1565c0,#1e88e5);*/
        background-color: #0288d1;
        color:white;
        padding:10px 5px;
    }

    td{
        padding:10px 5px;
        text-align:center;
        color: black;
    }

    tr:nth-child(even){
        background:#e1f5ff;
    }

    .desktop-horario{
      background:#ffd700;
      color: #01579b;
      padding:14px 28px;
      border-radius:30px;
      text-decoration:none;
      font-weight:600;
      border:none;
      cursor:pointer;
      transition:0.3s;
      display:inline-block;

    }

    .desktop-horario:hover{
      background:#01579b;
      color:#ffffff;
      transform:translateY(-3px);
    }



    /* =========================
       VIDEOS
    ========================= */

    .sect_videos{
/*      background:linear-gradient(145deg,#01579b,#0288d1,#03a9f4,#4fc3f7,#b3e5fc,#e1f5fe);*/
      background:linear-gradient(145deg,#01579b,#0288d1,#03a9f4);

      width: 100%;

    }

    .videos_container{
/*      max-width:1200px; */
/*      margin:auto;*/
      display: flex;
      flex-direction: column;
      align-items:center;
      justify-content:center;
      width: 100%;

    }

    .videos_container h2{
      font-size:3rem;
      color:#14c9c3;
      margin-bottom:15px;
    }

    .videos_container p{
      color: #ffffff;
    }

    .video-grid {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 20px;
    }

    .card-video{
        background:white;
        border-radius:15px;
        overflow:hidden;
        box-shadow:0 5px 20px rgba(0,0,0,.08);
        transition:.3s;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 400px;
      }



    video {
        background-color: black;
        width: 350px;
        height: 250px;
        border-radius: 15px;
        margin: 15px;

    }


    .card:hover{
        transform:translateY(-8px);
    }      
    

    .card-content{
        padding:10px;
    }

    .card-content h3{
        color:#019391;
        margin-bottom:5px;
    }

    /* =========================
       FORMULARIO
    ========================= */

    .contact-section{
      background:#f7ffff;
    }

    .contact-box{
      max-width:700px;
      margin:auto;
      background:white;
      padding:50px;
      border-radius:35px;
      box-shadow:0 15px 40px rgba(0,0,0,0.08);
    }

    .section-title h2{
      color: #01579b;
    }

    .contact-form{
      display:flex;
      flex-direction:column;
      gap:20px;
    }

    .form-group input{
      width:100%;
      padding:18px 20px;
      border:1px solid #dff7f6;
      border-radius:18px;
      outline:none;
      font-size:1rem;
      transition:0.3s;
      margin-bottom: 15px;
    }

    .form-group input:focus{
      border-color:#14c9c3;
      box-shadow:0 0 10px rgba(20,201,195,0.2);
    }



    form{
    display:grid;
    gap:12px;
    max-width:700px
    }

    input,textarea{
        padding:12px;
        border:1px solid #ccc;
        border-radius:8px
    }

    form button{
        padding:14px;
        background: #01579b;
        color:#ffffff;
        border:0;
        border-radius:8px;
        cursor: pointer;
    }

    form button:hover{
      background:#ffd700;
      color: #01579b;
      transform:translateY(-3px)
    }

/*UBICACIÓN*/

    .sect_ubicacion{
/*      background:linear-gradient(145deg,#01579b,#0288d1,#03a9f4,#4fc3f7,#b3e5fc,#e1f5fe);*/
      background:linear-gradient(145deg,#01579b,#0288d1,#03a9f4);

      display: flex;
      flex-direction: row;
      justify-content:center;
      align-items:flex-start;
      margin: 0;
      padding:15px;
      padding-top: 100px;
      padding-bottom: 60px;
    }

    .ubicacion_container{
/*      max-width:1200px;*/
/*      margin:auto;*/
      width: 49%;
      display: flex;
      flex-direction: column;
      align-items:center;
      justify-content:space-between;
    }

    .mapa{
      width:100%;
      height:450px;
      border:none;
    }


    .ubicacion_container h2{
      font-size: 2rem;
      color: white;
    }

    .ubicacion_container h3{
      color: black;
      margin-top: 20px;
    }

    .ubicacion_container p{
      color: black;
      margin-top: 10px;
      margin-bottom: 20px;
    }


    .btn-waze{
      display:inline-block;
      background:#ffd700;
      color:#01579b;
      text-decoration:none;
      padding:15px 30px;
      border-radius:30px;
      font-size:18px;
      transition:0.3s;
    }

    .btn-waze:hover{
      background:#ffffff;
      color:#01579b;
      transform:translateY(-3px)
    }



    .ubicacion_container iframe{
          margin-top: 20px;
    }


    /* Redes */

    .ubicacion_container2{
      width: 49%;
      display: flex;
      flex-direction: column;
      align-items:center;
      justify-content:space-between;
    }

    .ubicacion_container2 h2{
      font-size: 2rem;
      color: white;
    }    

    .redes{
      margin-top: 30px;
      width: 49%;
      display: flex;
      flex-direction: column;
      align-items:center;
      justify-content:center;

    }

    .redes img{
      width: 100px;
      margin-bottom: 8px;
    }
    




    /* =========================
       FOOTER
    ========================= */

    footer{
      padding:60px 20px;
      text-align:center;
      border-top:1px solid #eee;
      color:#777;
    }

    footer img{
      height: 75px;
    }

    footer h3{
      color:#14c9c3;
      margin-bottom:15px;
      font-size:2rem;
    }

    /* whatsapp */
    .wa{
    position:fixed;
    right:20px;
    bottom:20px;
    background:#25D366;
    color:#fff;
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    text-decoration:none
    }

    /* =========================
       RESPONSIVE
    ========================= */

    @media(max-width:900px){

      .hero-content{
        grid-template-columns:1fr;
        text-align:center;
      }

     .emoji img{
      /*  height: 30%; */
      width: 90%;
      }


      .hero-buttons{
        justify-content:center;
      }

      .hero-text h1{
        font-size:3.2rem;
      }

      .card{
        margin:auto;
      }


      .sect_ubicacion{
        flex-direction: column;
      }

      .ubicacion_container{
        width: 96%;
      }

      .ubicacion_container h2{
        margin-top: 50px;
      }

      .mapa{
        height:250px;
      }

      .ubicacion_container2{
        width: 96%;
        align-items: flex-start;
        flex-direction: row;
      }

      .ubicacion_container2 h2{
        margin-top: 50px;
      }

      .redes img{
        width: 75px;
      }

    }

    @media(max-width:768px){




      header{
        background:rgba(1,87,155,0.80);

/*        background:rgba(255,255,255,0.60);*/
      }


      .menu-toggle{
        display:block;
      }

      .menu{
        position:absolute;
        top:90px;
        left:0;
        width:100%;
        background:#01579b;
        flex-direction:column;
        padding:30px 0;
        gap:25px;
        box-shadow:0 15px 35px rgba(0,0,0,0.08);

        opacity:0;
        visibility:hidden;
        transform:translateY(-20px);

        transition:0.3s;
      }

      .menu.active{
        opacity:1;
        visibility:visible;
        transform:translateY(0);
      }

      .desktop-btn{
        display:none;
      }

      .hero{
        padding-top:150px;
      }

      .hero-text h1{
        font-size:2.5rem;
      }

      .section-title h2{
        font-size:2.2rem;
      }

      .horario-container h2{
        font-size:2.2rem;
      }

      .videos_container h2{
        font-size:2.2rem;
      }


      .card{
        width:100%;
      }

      .card-inner{
        height:500px;
      }

      .emoji img{
      /* height: 30%; */
      width: 45%;
      }

      .contact-box{
        padding:35px 25px;
      }

      .sect_ubicacion{
        flex-direction: column;
      }

      .ubicacion_container{
        width: 96%;
      }

      .ubicacion_container h2{
        margin-top: 50px;
      }

      .mapa{
        height:250px;
      }

      .ubicacion_container2{
        width: 96%;
        align-items: flex-start;
        flex-direction: row;
      }

      .ubicacion_container2 h2{
        margin-top: 50px;
      }

      .redes img{
        width: 75px;
      }

      .aparece{
        display: none;


    }

    @media(min-width:769px){

      header{
        background:rgba(1,87,155,0.80);
/*        background:rgba(255,255,255,0.60);*/
      }

      .emoji img{
        /* height: 30%; */
        width: 60%;
      }      
      .mobile-btn{
        display:none;
      }

    }

    @media(max-width:480px){

      header{
        background:rgba(1,87,155,0.80);
/*        background:rgba(255,255,255,0.60);*/
      }

      .hero-text h1{
        font-size:2rem;
      }
      .emoji img{
        /* height: 30%; */
        width: 55%;
      }

      .logo{
        font-size:1.7rem;
      }

      .section-title h2{
        font-size:1.8rem;
      }

      .horario-container h2{
        font-size:1.8rem;
      }

      .videos_container h2{
        font-size:1.8rem;
      }

    }
  }