@media (min-width: 1000px) and ( max-width: 1440px) /* LAPTOP */ {
  html{
    scroll-behavior: smooth; /* Habilita el scroll suave */
    color: #fff;
    background-color: #050505;
  }
  
  *{
      padding: 0;
      margin: 0;
      font-family: 'Poppins', sans-serif;
  }
  
  .scroll-container{
    width: 100%;
  }
  
  body::-webkit-scrollbar{
    width: 8px;
    background-color: #050505;
  
  }
  
  
  body::-webkit-scrollbar-thumb{
    background-color: #fff;
    border-radius: 30px;
  }
  
  .invisible{
    visibility: hidden;
  }
  
  a{
    color: black;
    text-decoration: none;
  }

  /* Estilos para el contenedor principal */
.hero.background-video {
  position: relative;
  overflow: hidden;
}

.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* Proporción 16:9 */
  overflow: hidden;
}

.videoFondo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0; /* Valor menor para que el video esté detrás del menú */
}
  
  /* NAVBAR */
  
  .navbar-mobile{
    display: none;
  }
  
  .navbar-mobile{
    display: none;
  }
  
  .open-menu{
    display: none;
  }
  
  .close-menu{
    display: none;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 0;
  
  }
  
  nav ul {
    display: flex;
    list-style: none;
  }
  
  nav ul li {
    margin-right: 100px;
  }
  
  .navbar-logo{
    margin-left: 60px;
  }
  
  
  .navbar-logo img{
    width: 80px;
    padding-bottom: 30px;
    padding-top: 20px;
  
  }
  
  .navbar ul {
    font-size: 17px;
    display: flex;
    gap: 10px;
    list-style-type: none;
    padding: 0;
    align-items: center;
  }
  
  .navbar ul li {
      border-bottom: 1px solid transparent;
  }
  
  .navbar ul li a {
    text-decoration: none;
    color: #fff;
    border-bottom: 1px transparent #fff;
  }
  
  .navbar ul li a:hover{
    
    border-bottom: 2  px solid #fff;
  }
  
  
  
  li {
      margin: 0 10px;
  }
  /* HERO */
  
  
  .hero{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    height: 70vh;
  }
  
  
  .container-hero {
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 80px;
    margin-left: 0; /* Cambia el margen izquierdo a 0 */
  }
  
  .container-subtitle-hero{
  
  }
  
  .subtitle-hero{
    font-weight: 300;
    font-size: 30px;
  }
  
  .container.title-hero{
  
  }
  
  .title-hero{
    font-size: 85px;
  }
  
  .container-paragraph-hero{
  
  }
  
  .paragraph-hero{
    font-size: 25px;
  }
  
  .container-button-hero{
    padding-top: 40px;
    padding-left: 20px;
  }
  
  .button-hero{
    font-size: 12px;
    font-weight: 600;
    background-image: linear-gradient(19deg, #21D4FD 0%, #B721FF 59%, #9a9a9a 100%);
    border-radius: 20px;
    border: none;
    height: 50px;
    width: 200px;
  }
  
  .blob-btn {
    display: inline-block;
    z-index: 1;
    position: relative;
    padding: 20px 40px;
    margin-bottom: 30px;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    background-color: transparent;
    outline: none;
    border: none;
    transition: color 0.5s;
    cursor: pointer;
    border-radius: 30px;
    text-decoration: none;
  }
  
  .blob-btn:hover {
    color: #fff;
    border-radius: 30px;
  }
  .blob-btn:hover:after {
    transition: all 0.3s;
    left: 0;
    top: 0;
    border-radius: 30px;
  }
  .blob-btn__inner {
    z-index: -1;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background: #fff;
  }
  .blob-btn__blobs {
    position: relative;
    display: block;
    height: 100%;
    filter: url('#goo');
  }
  
  .blob-btn__blob {
    position: absolute;
    top: 2px;
    width: 25%;
    height: 100%;
    background: #8B2E92;
    border-radius: 100%;
    transform: translate3d(0, 150%, 0) scale(1.7);
    transition: transform 0.45s;
  }
  
  .blob-btn__blob:nth-child(1) {
    left: 0%;
    transition-delay: 0s;
  }
  .blob-btn__blob:nth-child(2) {
    left: 30%;
    transition-delay: 0.08s;
  }
  .blob-btn__blob:nth-child(3) {
    left: 60%;
    transition-delay: 0.16s;
  }
  .blob-btn__blob:nth-child(4) {
    left: 90%;
    transition-delay: 0.24s;
  }
  .blob-btn:hover .blob-btn__blob {
    transform: translateZ(0) scale(1.7);
  }
  @supports (filter: url('#goo')) {
    transform: translateZ(0) scale(1.4);
  }
  
  
  .container-image-hero{
    padding-top: 30px;
  }
  
  .image-hero{
    width: 350px;
  }
  
  
  /* SECTION SERVICES */

  
  .container-information{
    display: flex;
    justify-content: space-around;
    gap: 130px;
    align-items: center;
    padding-bottom: 150px;
    padding-top: 90px
  }
  
  
  .image-information{
    width: 300px;
  }
  
  .container-information-information{
    width: 500px;
    padding-right: 50px;
  }
  
  .container-title-information{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 20px;
  }
  
  
  .title-information{
    font-size: 35px;
    background: linear-gradient(19deg, #21D4FD 20%, #B721FF 59%, #9a9a9a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .container-paragraph-information{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .paragraph-information{
    font-size: 23px;
    font-weight: 300;
    text-align: center;
  }
  
  
  
  /* SECTION BENEFICES */
  
  .container-benefices{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    text-align: center;
    margin-top: 50px; 
  }
  
  .container-paragraph-benefices{
    margin: 50px 200px 70px 200px;
  }
  
  .paragraph-benefices{
    font-size: 30px;
  }
  
  
  .container-elements-benefices{
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 70px;
  }
  
  .benefices{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 280px;
  }
  

  
  .benefices h3 {
    text-align: center;
    font-size: 35px;
    background: linear-gradient(19deg, #21D4FD 20%, #B721FF 59%, #9a9a9a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
  }
  
  .benefices p {
    text-align: center;
    font-size: 20px;
  }
  
  .container-button-benefices{
    display: flex;
    justify-content: center;
  }
  
  .container-button-benefices button{
    font-weight: 600;
    padding: 16px;
    font-size: 15px;
    width: 250px;
    border-radius: 20px;
    border: none;
  }


  /* CONTAINER ABOUT US */

  .container-about-us {
    font-size: 23px;
    padding: 30px 0px;
  }
  
  .container-about-us{
    margin-bottom: 80px;
  }
  
  /* SECTION SERVICES */
  
  .container-services{
    padding-top: 10px;
  }
  
  .title-services{
    text-align: center;
    font-size: 70px;
    background: linear-gradient(19deg, #21D4FD 20%, #B721FF 59%, #9a9a9a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 50px;
  }
  
  .container-packs{
    display: flex;
    justify-content: center;
    gap: 200px;
    padding-top: 10px;
  }
  
  .pack{
    min-width: 100px;
    max-width: 350px;
    background-color: rgb(10, 10, 10);
    border-radius:  20px;
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-shadow: 1px 3px 3px 1px #0000004c;        
  }


  
  .title-pack{
    text-align: center;
    font-size: 35px;
    background: linear-gradient(19deg, #21D4FD 20%, #B721FF 59%, #9a9a9a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 30px;
  }
  
  .information-pack{
    text-align: center;
    font-size: 15px;
  }
  
  .extra-pack{
    padding-top: 20px;
    text-align: center;
    font-size: 16px;
    color: #C281E1;
    text-shadow: 0 0 7px #fff, 0 0  ;
  }
  
  /* SECTION CONTACT */
  
  .container-title-contact{
    margin-top: 50px;
    display: flex;
    justify-content: center;
  }
  
  .title-contact{
    font-size: 70px;
    background: linear-gradient(19deg, #21D4FD 20%, #B721FF 59%, #9a9a9a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-top: 30px;
  }
  
  /* FOOTER */
  
  footer{
    background-color: #090909e9;
    padding-left: 20px;
    padding: 30px 20px 30px 20px;
  }
  
  .footer-sections{
    display: flex;
    justify-content: center;
  }
  
  .footer-part1{
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #ffff;
  }
  
  .footer-part1 h5 {
    font-size: 30px;
    padding-bottom: 20px;
  }
  
  .footer-part1 span {
    font-size: 15px;
  }
  
  
  .footer-cophyright{
    display: flex;
    justify-content: center;
    text-align: center;
    padding-top: 20px;
  }


t
}

@media (min-width: 1400px) and ( max-width: 1600px) {
  html{
    scroll-behavior: smooth; /* Habilita el scroll suave */
    color: #fff;
    background-color: #050505;
  }
  
  *{
      padding: 0;
      margin: 0;
      font-family: 'Poppins', sans-serif;
  }
  
  .scroll-container{
    width: 100%;
  }
  
  body::-webkit-scrollbar{
    width: 8px;
    background-color: #050505;
  
  }
  
  
  body::-webkit-scrollbar-thumb{
    background-color: #fff;
    border-radius: 30px;
  }
  
  .invisible{
    visibility: hidden;
  }
  
  a{
    color: black;
    text-decoration: none;
  }
  
  /* NAVBAR */
  
  .navbar-mobile{
    display: none;
  }
  
  .navbar-mobile{
    display: none;
  }
  
  .open-menu{
    display: none;
  }
  
  .close-menu{
    display: none;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 0;
  
  }
  
  nav ul {
    display: flex;
    list-style: none;
  }
  
  nav ul li {
    margin-right: 100px;
  }
  
  .navbar-logo{
    margin-left: 60px;
  }
  
  
  .navbar-logo img{
    width: 80px;
    padding-bottom: 30px;
    padding-top: 20px;
  
  }
  
  .navbar ul {
    font-size: 17px;
    display: flex;
    gap: 90px;
    list-style-type: none;
    padding: 0;
    align-items: center;
  }
  
  .navbar ul li {
      border-bottom: 1px solid transparent;
  }
  
  .navbar ul li a {
    text-decoration: none;
    color: #fff;
    border-bottom: 1px transparent #fff;
  }
  
  .navbar ul li a:hover{
    
    border-bottom: 2  px solid #fff;
  }
  
  
  
  li {
      margin: 0 10px;
  }
  
  /* HERO */
  
  
  .hero{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 250px;
    height: 70vh;
  }
  
  
  .container-hero {
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 80px;
    margin-left: 0; /* Cambia el margen izquierdo a 0 */
  }
  
  .container-subtitle-hero{
  
  }
  
  .subtitle-hero{
    font-weight: 300;
    font-size: 40px;
  }
  
  .hero.background-video {
    position: relative;
    overflow: hidden;
  }
  
  .video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* Proporción 16:9 */
    overflow: hidden;
  }
  
  .videoFondo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0; /* Valor menor para que el video esté detrás del menú */
  }
  
  .title-hero{
    font-size: 100px;
  }
  
  .container-paragraph-hero{
  
  }
  
  .paragraph-hero{
    font-size: 25px;
  }
  
  .container-button-hero{
    padding-top: 35px;
    padding-left: 20px;
  }
  
  .button-hero{
    font-size: 12px;
    font-weight: 600;
    background-image: linear-gradient(19deg, #21D4FD 0%, #B721FF 59%, #9a9a9a 100%);
    border-radius: 20px;
    border: none;
    height: 50px;
    width: 200px;
  }
  
  .blob-btn {
    display: inline-block;
    z-index: 1;
    position: relative;
    padding: 20px 40px;
    margin-bottom: 30px;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    background-color: transparent;
    outline: none;
    border: none;
    transition: color 0.5s;
    cursor: pointer;
    border-radius: 30px;
    text-decoration: none;
  }
  
  .blob-btn:hover {
    color: #fff;
    border-radius: 30px;
  }
  .blob-btn:hover:after {
    transition: all 0.3s;
    left: 0;
    top: 0;
    border-radius: 30px;
  }
  .blob-btn__inner {
    z-index: -1;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background: #fff;
  }
  .blob-btn__blobs {
    position: relative;
    display: block;
    height: 100%;
    filter: url('#goo');
  }
  
  .blob-btn__blob {
    position: absolute;
    top: 2px;
    width: 25%;
    height: 100%;
    background: #8B2E92;
    border-radius: 100%;
    transform: translate3d(0, 150%, 0) scale(1.7);
    transition: transform 0.45s;
  }
  
  .blob-btn__blob:nth-child(1) {
    left: 0%;
    transition-delay: 0s;
  }
  .blob-btn__blob:nth-child(2) {
    left: 30%;
    transition-delay: 0.08s;
  }
  .blob-btn__blob:nth-child(3) {
    left: 60%;
    transition-delay: 0.16s;
  }
  .blob-btn__blob:nth-child(4) {
    left: 90%;
    transition-delay: 0.24s;
  }
  .blob-btn:hover .blob-btn__blob {
    transform: translateZ(0) scale(1.7);
  }
  @supports (filter: url('#goo')) {
    transform: translateZ(0) scale(1.4);
  }
  
  
  .container-image-hero{
    padding-top: 30px;
  }
  
  .image-hero{
    width: 350px;
  }
  
  .container-about-us {
    font-size: 23px;
    padding: 40px 0px;
  }
  
  
  /* SECTION SERVICES */
  
  .container-information{
    display: flex;
    justify-content: space-around;
    gap: 130px;
    align-items: center;
    padding-bottom: 150px;
    padding-top: 90px
  }
  
  
  .image-information{
    width: 300px;
  }
  
  .container-information-information{
    width: 500px;
    padding-right: 50px;
  }
  
  .container-title-information{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 20px;
  }
  
  
  .title-information{
    font-size: 35px;
    background: linear-gradient(19deg, #21D4FD 20%, #B721FF 59%, #9a9a9a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .container-paragraph-information{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .paragraph-information{
    font-size: 23px;
    font-weight: 300;
    text-align: center;
  }
  
  
  
  /* SECTION BENEFICES */
  
  .container-benefices{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    padding-bottom: 100px; 
  }
  
  .container-paragraph-benefices{
    margin: 70px 200px 60px 200px;
  }
  
  .paragraph-benefices{
    font-size: 34px;
  }
  
  
  .container-elements-benefices{
    display: flex;
    justify-content: center;
    gap: 200px;
    margin-bottom: 70px;
  }
  
  .benefices{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
  }
  
  .container-relax-benefices:hover {
    transform: scale(1.1); /* Escala el contenedor al 110% del tamaño original */
  
  }
  
  .container-money-benefices:hover {
    transform: scale(1.1); /* Escala el contenedor al 110% del tamaño original */
  
  }
  
  .container-time-benefices:hover {
    transform: scale(1.1); /* Escala el contenedor al 110% del tamaño original */
  
  }
  
  .benefices h3 {
    text-align: center;
    font-size: 35px;
    background: linear-gradient(19deg, #21D4FD 20%, #B721FF 59%, #9a9a9a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
  }
  
  .benefices p {
    text-align: center;
    font-size: 25px;
  }
  
  .container-button-benefices{
    display: flex;
    justify-content: center;
  }
  
  .container-button-benefices button{
    font-weight: 600;
    padding: 16px;
    font-size: 15px;
    width: 300px;
    border-radius: 20px;
    border: none;
  }
  
  
  /* SECTION SERVICES */
  
  
  
  .title-services{
    text-align: center;
    font-size: 70px;
    background: linear-gradient(19deg, #21D4FD 20%, #B721FF 59%, #9a9a9a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .container-packs{
    display: flex;
    justify-content: center;
    gap: 130px;
    padding-top: 60px;
  }
  
  .pack{
    min-width: 100px;
    max-width: 500px;
    background-color: rgb(10, 10, 10);
    border-radius:  20px;
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-shadow: 1px 3px 3px 1px #0000004c;        
  }
  
  .title-pack{
    text-align: center;
    font-size: 30px !important;
    background: linear-gradient(19deg, #21D4FD 20%, #B721FF 59%, #9a9a9a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 30px;
  }
  
  .information-pack{
    text-align: center;
    font-size: 20px;
  }
  
  .extra-pack{
    padding-top: 20px;
    text-align: center;
    font-size: 16px;
    color: #C281E1;
    text-shadow: 0 0 7px #fff, 0 0  ;
  }
  .container-text-services{
    
  }
  
  .container-text-services span{
    font-size: 50px;
    font-weight: 400;
    padding-bottom: 200px;
  }
  
  /* SECTION CONTACT */
  
  .container-title-contact{
    padding-top: 0px;
    display: flex;
    justify-content: center;
  }
  
  .title-contact{
    font-size: 70px;
    background: linear-gradient(19deg, #21D4FD 20%, #B721FF 59%, #9a9a9a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  /* FOOTER */
  
  footer{
    background-color: #090909e9;
    padding-left: 20px;
    padding: 30px 20px 30px 20px;
  }
  
  .footer-sections{
    display: flex;
    justify-content: center;
  }
  
  .footer-part1{
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #ffff;
  }
  
  .footer-part1 h5 {
    font-size: 30px;
    padding-bottom: 20px;
  }
  
  .footer-part1 span {
    font-size: 15px;
  }
  
  
  .footer-cophyright{
    display: flex;
    justify-content: center;
    text-align: center;
    padding-top: 20px;
  }

}

