 * {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }

 .body-frame6-cintensivosportemp {
   font-family: 'Arial', sans-serif;
   background-color: #ffffff;
   display: flex;
   align-items: center;
   justify-content: center;
   min-height: 70vh;
 }

 .main-section-cintensivosportemp {
   width: 100%;
   display: flex;
   justify-content: center;
   padding: 0rem 0;
 }


 .container-cintensivosportemp {
   .container {
     padding: 3rem;
     background: #ffffff;
     border-radius: 12px;
     width: 100%;
     max-width: 900px;
     margin-left: 40px;
     /* mueve todo a la derecha */
   }
 }

 .content-cintensivosportemp {
   display: flex;
   align-items: flex-start;
   justify-content: flex-start;
   gap: 3rem;
   /* más separación entre texto y botones */
   max-width: 700px;
 }

 .text-cintensivosportemp p {
   font-size: 2.5rem;
   color: #000;
   line-height: 1.1;
   /* menos espacio vertical */
   margin-bottom: 0;
   /* elimina margen abajo */
 }

 .text-cintensivosportemp .highlight-cintensivosportemp {
   background: #fff200;
   color: #e6007e;
   font-weight: bold;
   padding: 0 0.4rem;
   line-height: 1.1;
   /* igual que el resto para ajustar */
   display: inline-block;
   /* para controlar mejor */
 }

 .season-cintensivosportemp {
   font-size: 1.4rem;
   color: #000;
   margin-top: 0.2rem;
   /* reduce espacio arriba */
 }


 .buttons-cintensivosportemp {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }

 

 button.winter-cintensivosportemp {
   background: #00bff3;
   color: white;
   padding: 0.8rem 1.6rem;
   /* botones más grandes */
   font-size: 1.2rem;
   border: none;
   border-radius: 25px;
   cursor: pointer;
   transition: 0.3s;
   white-space: nowrap;
   min-width: 180px;
 }

 button.summer-cintensivosportemp {
   background: white;
   color: #ff7f00;
   border: 2px solid #ff7f00;
    padding: 0.8rem 1.6rem;
   /* botones más grandes */
   font-size: 1.2rem;
 
   border-radius: 25px;
   cursor: pointer;
   transition: 0.3s;
   white-space: nowrap;
   min-width: 180px;
 }

 /* -------- RESPONSIve -------- */

/* Hasta 480px - móviles pequeños (portrait) */
@media (max-width: 480px) and (orientation: portrait) {

  .body-frame6-cintensivosportemp{
     min-height: 44vh;
  }
  .main-section-cintensivosportemp{
    padding: 0;
  }
  .container-cintensivosportemp {
    margin-left: 0;
    padding: 1rem;
    max-width: 100%;
  }

  .content-cintensivosportemp {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    max-width: 100%;
  }

  .text-cintensivosportemp p {
    font-size: 1.6rem;
  }

  .season-cintensivosportemp {
    font-size: 1rem;
  }

  .buttons-cintensivosportemp {
    flex-direction: column;
    width: 100%;
    gap: 0.8rem;
  }

  button.winter-cintensivosportemp,
  button.summer-cintensivosportemp {
    min-width: 100%;
    font-size: 1rem;
    padding: 0.7rem;
  }
}

/* Hasta 768px - tablets */
@media (min-width: 481px) and (max-width: 768px) {

  .body-frame6-cintensivosportemp{
     min-height: 40vh;
  }
  .main-section-cintensivosportemp{
    padding: 0;
  }
  .container-cintensivosportemp {
    margin-left: 20px;
    padding: 2rem;
    max-width: 95%;
  }

  .content-cintensivosportemp {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }

  .text-cintensivosportemp p {
    font-size: 2rem;
  }

  .season-cintensivosportemp {
    font-size: 1.2rem;
  }

  .buttons-cintensivosportemp {
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
    width: 100%;
  }

  button.winter-cintensivosportemp,
  button.summer-cintensivosportemp {
    min-width: 140px;
    font-size: 1.1rem;
    padding: 0.7rem 1rem;
  }
}

/* Hasta 912px - tablets grandes o PC pequeños */
@media (min-width: 769px) and (max-width: 912px) {

  .body-frame6-cintensivosportemp{
     min-height: 35vh;
  }
  .main-section-cintensivosportemp{
    padding: 0;
  }
  .container-cintensivosportemp {
    margin-left: 20px;
    max-width: 85%;
  }

  .content-cintensivosportemp {
    max-width: 700px;
  }
}

/* Hasta 1024px - laptops */
@media (min-width: 912px) and (max-width: 1024px) {
  .container-cintensivosportemp {
    margin-left: 20px;
    max-width: 80%;
  }
}

/* 1024px Landscape */
@media (min-width: 912px) and (max-width: 1024px) and (orientation: landscape) {
  .content-cintensivosportemp {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* 1024px Portrait */
@media (min-width: 912px) and (max-width: 1024px) and (orientation: portrait) {
  .content-cintensivosportemp {
    flex-direction: column;
    align-items: center;
  }
}

/* Escritorio grande (min-width 1440px) */
@media (min-width: 1440px) {
  .container-cintensivosportemp {
    max-width: 1200px;
    margin-left: 60px;
    padding: 4rem 3rem;
  }

  .text-cintensivosportemp p {
    font-size: 3rem;
  }

  .season-cintensivosportemp {
    font-size: 1.6rem;
  }

  button.winter-cintensivosportemp,
  button.summer-cintensivosportemp {
    font-size: 1.4rem;
    min-width: 220px;
    padding: 1rem 2rem;
  }
}