body {
    overflow-x: hidden;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: url('../img/background.jpg') no-repeat center center/cover;
    position: relative;
    backdrop-filter: blur(3px);
    margin: 0;
    padding: 0;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
    pointer-events: none;
}

.div__body {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
}


main{
  overflow-y: auto;
}
/* HEADER  */
header{
    height: 12vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__img {
  width: 100%; /* 100% para que ocupe todo el ancho disponible del contenedor */
  height: 100%; /* Ajustar al 100% del alto disponible */
  
  padding: 40px; /* Añadir un poco de espacio alrededor */
}

.header__img img {
  width: 100px; /* Asegura que la imagen no se salga del contenedor */ /*modificado*/
  height: 100%; /* Asegura que la imagen no sea más alta que el contenedor */ /*modificado*/

}


.header__option{
    width: 75%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
}

.header__option button {
    position: relative; 
    padding: 8px 12px;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    overflow: hidden;
    font-size: 18px;
    font-family:Arial, Helvetica, sans-serif;
}

.header__option button:last-child {
  border-radius: 16px;
  border: 1px solid #e1bf3d;
  font-size: 18px;
}

.header__option button:last-child b {
  color: #e1bf3d;
}


.header__option button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.header__option button:hover::after {
    left: 0;
    width: 100%;
}

.header__option_celular{
  width: 30%;
  color: #fff;
  display: flex;
  justify-content: end;
  align-items: center;
  padding: 8px;
}

.header__option_celular button{
    background: transparent;
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s ease-in-out;
    border-radius: 8px;
    padding: 6px;
}

.header__option_celular button:hover{
  background: rgba(0, 0, 0, 0.3);
}

main{
    height: 88vh;
    width: 100%;
}

/* SLYDER  */


/* CSS MAIN  */

.cttn__main{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    overflow-x: hidden;
    overflow-y: autos;
    flex-wrap: wrap;
}

.pa_rent {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 30px;
    margin: 40px 20px; /* margen vertical y horizontal */
}

/*.modal-content{*/
/*      display: none;*/
/*      position: fixed;*/
/*      z-index: 1000;*/
/*      left: 0;*/
/*      top: 0;*/
/*      width: 100%;*/
/*      height: 100%;*/
/*      background-color: rgba(0,0,0,0.6);*/
/*      justify-content: center;*/
/*      align-items: center;*/
/*}*/
  

  /* Estilos para el modal en general */
  #videoModal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    padding: 10px; /* Padding para dar espacio en pantallas pequeñas */
    box-sizing: border-box;
  }

  .modal-content {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    width: 100%;
    max-width: 700px;
    text-align: center;
    position: relative;
    box-sizing: border-box;
  }

  .modal-content iframe {
    width: 100%;
    height: 50vw; /* altura relativa para adaptarse a diferentes tamaños */
    max-height: 400px;
  }

  .close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 25px;
    cursor: pointer;
    font-weight: bold;
  }







  /* Ajustes para pantallas muy pequeñas */
  @media (max-width: 480px) {
    .modal-content iframe {
      height: 60vw;
    }

    .modal-content {
      padding: 10px;
    }

    .close {
      font-size: 20px;
      top: 5px;
      right: 10px;
    }
  }



/* Responsive para pantallas medianas */
@media (min-width: 768px) {
    .pa_rent {
        margin: 60px 40px;
    }
}

/* Responsive para pantallas grandes */
@media (min-width: 1024px) {
    .pa_rent {
        margin: 80px 100px;
    }
}

.cttn__main__info{
  width: 40%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.cttn__main__info__container{
  width: 100%;
  /* background: green; */
}

.cttn__main__info__container__text{
  width: 100%;
  font-family:'Times New Roman', Times, serif;
  color: #fff;
}

.cttn__main__info__container__text, .cttn__main__info__container__option{
  opacity: 0; /* Inicialmente invisible */
  transform: translateX(-50px); /* Posición inicial */
  animation: fadeInUp 1s ease-in-out forwards; /* Animación */
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateX(-50px); /* Desplazamiento hacia abajo */
  }
  100% {
    opacity: 1;
    transform: translateX(0); /* Posición final */
  }
}


.cttn__main__info__container__text h3{
  font-size: 40px;
  font-weight: 300;
}

.cttn__main__info__container__text p{
  font-size: 20px;
  font-family:'Gill Sans', 'Gill Sans MT', 'Times New Roman', 'Trebuchet MS', sans-serif;
  font-weight:300 !important;
  text-align: justify ;
}

.cttn__main__info__container__text p b{
  color: rgb(229 189 64);
  font-weight:300 !important;
}

.cttn__main__info__container__option, .cttn__main__info__container__option__icons, .cttn__main__info__container__option__buttons{
  width: 100%;
}

.cttn__main__info__container__option__icons{
  display: flex;
  justify-content: space-around;
  align-items: center;
  color:#ffffff
}

.cttn__main__info__container__option__buttons{
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 10px;
}

.cttn__main__info__container__option__buttons button{
  background: transparent;
  border: none;
  color: #fff;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 22px;
  padding: 8px 18px;
  border-radius: 18px;
  cursor: pointer;
}

.cttn__main__info__container__option__buttons button:first-child{
  background: transparent;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(118, 108, 37, 0.6);
  background: rgba(118, 108, 37, 0.6); /* Transparencia al 50% */
  transition: .3s ease-in;
}

.cttn__main__info__container__option__buttons button:first-child:hover{
  border: 1px solid rgba(179, 162, 34, 0.6);
  background: rgba(179, 162, 34, 0.6);
}

.cttn__main__info__container__option__buttons button:nth-child(2){
  border: 1px solid #c0b709;
  transition: .3s ease-in;
}

.cttn__main__info__container__option__buttons button:nth-child(2):hover{
  color: #fff;
  background: rgba(229, 189, 64, .3);
}

.cttn__main__info__container__option__icons div{
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 32%;
}

.cttn__main__info__container__option__icons svg{
  width: 50% !important;
  height: 50% !important;
}

.cttn__main__carrousel{
  width: 48%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cttn__main__info__footer{
  width: 100%;
  color: #fff;
  display: flex;
  justify-content: start;
  align-items: center;
  /* background: rgba(0, 0, 0, 0.8); */
}


/* .cttn__main__info__footer div{
  width: 30%;
  padding: 4vh 0;
  margin-left:6vh;
} */

.cttn__main__info__footer a{
    width: 12%;
    color: #fff;
}


.cttn__main__info__footer a svg{
  width: 28px !important;
  height: 28px !important;
}

.carousel {
    width: 40%;
    height: 85%;
    position: relative;
    perspective: 100px;
  }
  
  .carousel-inner {
    display: flex;
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d; 
    transition: transform 0.8s ease-in-out;
  }
  
  .carousel-item {
    position: absolute;
    width: 100%;
    height: 90%;
    backface-visibility: hidden;
    transform: translateX(-50%) scale(0.9);
    opacity: 0.3;
    transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
    border-width: 16px 8px; /* 5px para arriba/abajo, 10px para los lados */
    border-style: solid;
    border-color: #fff;
    border-radius: 25px;
  }
  
  .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }
  
  .carousel-item.active {
    transform: translateX(0) scale(1); /* Imagen principal */
    opacity: 1;
    z-index: 1;
  }
  
  .carousel-item:nth-child(1) {
    transform: translateX(-75%) scale(0.9); /* Imagen a la izquierda */
  }
  
  .carousel-item:nth-child(3) {
    transform: translateX(75%) scale(0.9); /* Imagen a la derecha */
  }
 

/* CSS HERRAMIENTAS  */

  .cttn__carousel{
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    width: 100%;
    align-items: center;
    background: transparent;
    flex-wrap: wrap;
}
h4, h2,small,a{
    margin: 0;
    padding: 0;
}
a{
    text-decoration: none;
}

.Carousel{
    width: 100%;
    height: 50vh;
}


.slick-list{
    position: relative;
    display: flex;
    align-items: center;
    width: fit-content;
    height: 100%;
    padding: 10px 0px;
    margin: 0px auto;
    max-width: 95vw;
    overflow: hidden;
}

.slick-track{
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    transition: .5s ease-in-out;
    height: 100%;
}
.slick{
    position: relative;
    width: 275px;
    padding: 0 18px;
    float: left;
    box-sizing: border-box;
    display: flex;
    height: 100% !important;
}
.slick h4{
    position: absolute;
    z-index: 1;
    font-size: 22px;
    line-height: 23px;
    color: #fff;
    padding: 15px;
}
.slick h4 small{
    font-size: 15px;
    display: block;
}
.slick a img{
    object-fit: cover;
    height: 90%;
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.5);
    transition: .3s ease-in-out;
    border-radius: 24px;
    border: 6px solid #fff;
}

.slick a h6{
  text-align: center;
  color: #fff;
  padding: 0;
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.slick a img:hover{
    opacity: .85;
}

/* buttons */

.slick-arrow{
    border-radius: 30px;
    background-color: #fff;
    position: absolute;
    z-index: 4;
    width: 48px;
    height: 48px;
    text-align: center;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.15);
    border: 0;
    cursor: pointer;
}
.slick-arrow:focus{
    outline: 0;
}
.slick-arrow svg{
    width: 12px;
    height: 100%;
    color: rgba(0,0,0,.7);
}
.slick-prev{
    left: 0px;
}
.slick-next{
    right: 0px;
}


@media (max-width: 850px){
    .slick-next{
        right: 20px;
    }
    .slick-list{
        max-width: 100vw;
    }
  }

.cttn__carousel__text{
  width:55%;
  color: #fff;
  margin: 20px 5vw;
}

.cttn__carousel__text h3{
  font-family: 'Times New Roman', Times, serif;
  font-size: 36px;
  padding: 10px 0;
  margin: 0;
}

.cttn__carousel__text p{
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 28px;
  font-weight: 300;
  margin: 0;
}

/* CSS TESTIMONIO  */

.cttn__testimonio{
  width: 80%;
  margin: 5vh auto;
  height: 75vh;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.cttn__testimonio__img {
  width: 42%;
  height: 80vh; /* altura del contenedor */
  border-radius: 42px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cttn__testimonio__img iframe {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ajusta el contenido sin distorsionar */
  object-position: top; /* Centra el contenido en la parte superior */
  border-radius: 42px; /* Aplica bordes redondeados */
}



.cttn__testimonio__text{
  width: 45%;
  color: #fff;
}

.cttn__testimonio__text svg{
  width: 25%;
  height: 25%;
}

.cttn__testimonio__text div{
  display: flex;
  align-items: center;
  margin: 0;
}

.cttn__testimonio__text div h2{
  font-size: 42px;
}

.cttn__testimonio__text div h2 b{
  color: #ffce09;
}

.cttn__testimonio__text p{
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  text-align: justify;
  font-size: 22px;
  font-weight: 300;
  margin: 16px 0;
}

.cttn__testimonio__text h6{
  color: #ffce09;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  text-align: justify;
  font-size: 22px;
  margin: 10px 0;
}
/* OPCIONES DE SOPORTE */
.cttn__soporte{
  width: 90%;
  height: 72vh;
  margin:5vh auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px 0;
}

.comunicado-section {
    color: #ffffff ;
}

.cttn__soporte__div{
  width: 24%;
  height: 86%;
  background: rgba(255,255,255, .7);
  border-radius:26px;
  transition: .2s ease-in-out;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.cttn__soporte__div:hover{
  height: 96%;
}

.cttn__soporte__div__title{
  height: 18%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cttn__soporte__div__title h3{
  text-align: center;
  margin: 0;
  padding: 0;
  font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: 30px;
}

.cttn__soporte__div__img{
  width: 100%;
  height: 50%;
}

.cttn__soporte__div__img img{
  width: 100%;
  height: 100%;
  border-radius:26px;
}

.cttn__soporte__div__p{
  height: 18%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cttn__soporte__div__p p{
  padding: 0;
  margin: 0;
  text-align: center;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 18px;
}

.cttn__barra__celular {
  background: rgba(0, 0, 0, 0.9);
  position: fixed;
  z-index: 20;
  width: 55%;
  height: 100vh;
  transition: .2s ease-in;
}

.cttn__barra__celular div:first-child{
  display: flex;
  justify-content: end;
  align-items: center;
  padding: 20px;
}

.cttn__barra__celular div:first-child button{
  background: transparent;
  border: none;
  padding: 5px;
  border-radius: 8px;
  transition: .2s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cttn__barra__celular div:first-child button:hover{
  background: rgba(255,255,255, .2);
}

.cttn__barra__celular div:first-child svg{
  color: #fff;
  width: 4vw;
  height: 4vh;
}

.cttn__barra__celular div:nth-child(2){
  display: flex;
  flex-wrap: wrap;
}

.cttn__barra__celular div:nth-child(2) button{
  width: 100%;
  padding: 10px 16px;
  font-size: 16px;
  text-align: start;
  background: transparent;
  border: none;
  color: #777;
  transition: .1s ease-in-out;
}

.cttn__barra__celular div:nth-child(2) button:hover{
  color: #ffffff;
}
.cttn__planes{
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 0;
  margin: 3vh 0;
}

.pack-container {
  position: relative;
  display: flex;
  max-width: 350px;
  flex-direction: column;
  border-radius: 12px;
  background-color: rgba(0,0,0,.8);
  border: 1px solid #fff;
  padding: 1.2rem;
  color: #fff;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  margin-top: 10px;
}

.header {
  position: relative;
  margin: 0;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 0;
  border-bottom: 1px solid #fff;
  background: transparent;
  padding-bottom: 0.8rem;
  text-align: center;
}

.title {
  display: block;
  font-family: sans-serif;
  font-size: 0.875rem;
  line-height: 1.25rem;
  text-transform: uppercase;
  color: #fff
}

.price-container {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 4px;
  font-family: sans-serif;
  font-size: 4.5rem;
  line-height: 1;
}

.price-container span:first-child {
  margin-top: 10px;
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.price-container span:last-child {
  align-self: flex-end;
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.lists {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.list {
  display: flex;
  align-items: center;
  gap: 10px;
}

.list span {
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background-color: rgba(255, 255, 255, 0.185);
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.list span svg {
  height: 12px;
  width: 12px;
}

.list p {
  display: block;
  font-family: sans-serif;
}

.button-container {
  margin-top: 20px;
  padding: 0;
}

.button-container button {
  display: block;
  width: 100%;
  background:transparent;
  border: 1px solid #fff;
  padding: 10px 20px;
  text-transform: uppercase;
  color: #ffffff;
  outline: 0;
  border-radius: 10px;
  cursor: pointer;
  transition: .2s ease-in-out;
}

.button-container button:hover{
  background: rgba(0, 0, 0, 0.9);
}
.cttn__planes__adjunto{
  position: absolute;
  width: 10vw;
  height: 10vh;
  bottom: .5em;
  right: 4em;
}
.tooltip-container {
  position: relative;
  display: inline-block;
  font-family: "Arial", sans-serif;
  overflow: visible;
}

/* Button Styles */
.button-content {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2b2b2b, #000000);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  cursor: pointer;
  transition:
    background 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
    transform 0.3s ease,
    box-shadow 0.4s ease;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.button-content::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(65, 65, 66, 0.4),
    rgba(10, 10, 10, 0.4)
  );
  filter: blur(15px);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.button-content::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  transform: scale(0);
  transition: transform 0.6s ease-out;
  z-index: -1;
}

.button-content:hover::before {
  opacity: 1;
}

.button-content:hover::after {
  transform: scale(1);
}

.button-content:hover {
  background: linear-gradient(135deg, #000000, #000000);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  transform: translateY(-4px) scale(1.03);
}

.button-content:active {
  transform: translateY(-2px) scale(0.98);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}



.share-icon {
  fill: white;
  transition:
    transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
    fill 0.3s ease;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.button-content:hover .share-icon {
  transform: rotate(180deg) scale(1.1);
  fill: #ffffff;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(101, 103, 108, 0.4);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(110, 142, 251, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(110, 142, 251, 0);
  }
}

.button-content {
  animation: pulse 3s infinite;
}
.cttn__modal{
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  z-index: 50;
  top: -1px;
  display: flex;
  justify-content: center;
}

.cttn__modal__plan{
  width: 24%;
  margin-top: 4vh;
  background: rgb(255, 255, 255);
  height: 60vh;
  border-radius: 16px;
}

.cttn__modal__plan__header{
  height: 15%;
  border-bottom: 1px solid #b0b0b0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family:Arial, Helvetica, sans-serif;
  font-size: 18px;
}

.cttn__modal__plan__header button{
  background: transparent;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .2s ease-in;
  padding: 8px;
  border-radius: 8px;
}

.cttn__modal__plan__header button:hover{
  background: rgba(0,0,0,.2)
}

.cttn__modal__plan__header div{
  margin: 0 10px;
}

.cttn__modal__plan__body{
  height: 70%;
  background: rgb(255, 255, 255);
}

.cttn__modal__plan__body img{
  height: 100%;
  width: 100%;
}

.cttn__modal__plan__footer{
  height: 15%;
  border-top: 1px solid #b0b0b0;
  display: flex;
  justify-content: end;
  align-items: center;
}

.cttn__modal__plan__footer button{
  border-radius: 8px;
  background: #777;
  color: #fff;
  padding: 10px 16px;
  border: none;
  margin: 0 10px;
  font-size: 16px;
  transition: .2s ease-in;
}

.cttn__modal__plan__footer button:hover{
  background: #8e8e8e;
}

.cttn__modal__plan__body h5{
  margin: 0 0 0 15px;
  font-size: 16px;
  padding: 0;
  text-align: center;
  color: #3c3c3c;
}

.cttn__modal__plan__body a{
  color: #012087;
  border-bottom:1px solid #012087;
}

.adjunto .cttn__modal__plan {
  width: 35%;
  overflow: hidden;
  height: auto !important;
  background: transparent;
}

.adjunto .cttn__modal__plan__header {
  background: #c8f0b8;
  color: #0f3201;
  /* font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; */
  font-weight: 500;
}

.adjunto .cttn__modal__plan__body{
  padding: 12px 0 0 0 ;
  height: auto;
  border-bottom-left-radius: 16px; /* Cambia el valor según el radio deseado */
  border-bottom-right-radius: 16px; /* Cambia el valor según el radio deseado */
}
/* From Uiverse.io by Satwinder04 */ 
/* Input container */
.input-container {
  position: relative;
  width: 90%;
  margin: 22px 10px;
  /* overflow: hidden; */
}

.input-container h6{
  margin: 5px;
  font-size: 16px;
  color: #757575;
}

.input-container select{
  outline: none;
  border: none;
  border-radius: 8px;
  border: 1px solid rgb(156, 156, 156);
}

.input-container button{
  width: 100%;
  border-radius: 8px;
  background: rgb(13, 103, 13);
  color: #fff;
  border: none;
  padding: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: .3s ease-in-out;
}

.input-container button:hover{
  background: rgb(13, 67, 13);
}

/* Input field */
.input-field {
  display: block;
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: none;
  border-bottom: 2px solid #ccc;
  outline: none;
  background-color: transparent;
  overflow: hidden;
}

.input-field-file{
  background: rgb(220, 220, 220);
  width: 100%;
  padding: 8px;
  font-size: 16px;
  height: 100%; 
  box-sizing: border-box;
}

/* Input label */
.input-label {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 16px;
  color: rgba(204, 204, 204, 0);
  pointer-events: none;
  transition: all 0.3s ease;
}

/* Input highlight */
.input-highlight {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #595959;
  transition: all 0.3s ease;
}

/* Input field:focus styles */
.input-field:focus + .input-label {
  top: -20px;
  font-size: 14px;
  color: #595959;
}

.input-field:focus + .input-label + .input-highlight {
  width: 100%;
}

/* Estilo general para el botón */
.custom-button {
    display: inline-block;
    padding: 10px 20px; /* Espaciado interno */
    background-color: #FFC107; /* Amarillo vibrante */
    color: #000; /* Texto en negro */
    border: none; /* Sin borde */
    border-radius: 4px; /* Bordes redondeados */
    font-size: 16px; /* Tamaño de fuente */
    font-weight: bold; /* Fuente negrita */
    cursor: pointer; /* Cursor de clic */
    transition: background-color 0.3s ease; /* Transición suave al hacer hover */
}

/* Efecto al pasar el mouse */
.custom-button:hover {
    background-color: #E6A800; /* Sombra más oscura al hacer hover */
}

/* Eliminar subrayado si usas un enlace (<a>) */
.custom-button:link,
.custom-button:visited,
.custom-button:focus,
.custom-button:active {
    text-decoration: none; /* No mostrar subrayado */
}


@media (max-width: 1200px) {
  .cttn__planes__adjunto{
    bottom: .8em;
    right: 6em;
  }

  .adjunto .cttn__modal__plan {
    width: 40%;
  }

}

@media (max-width: 900px) {
  .adjunto .cttn__modal__plan {
    width: 50%;
  }

  .cttn__testimonio {
    width:90%;
  }

  .cttn__planes__adjunto{
    right: 8em;
  }

}

@media (max-width: 800px) {
  .adjunto .cttn__modal__plan {
    width: 60%;
  }

  .cttn__planes__adjunto{
    right:9em;
  }

  .header__option button {
    font-size: 16px !important;
}

  .cttn__main__info {
    width: 85%;
    margin: 0 auto;
  }

  .cttn__main__carrousel {
    width: 90%;
    margin: 60px auto; /*altura de separacion*/
  }

  .carousel {
    height: 75%;
  }

  .cttn__main__info__container__text h3 {
    font-size: 32px;
  }

  .cttn__main__info__container__text p {
    font-size: 18px;
}

.cttn__main__info__container__option__icons div {
  font-size: 12px;
}


.cttn__main__info__container__option__buttons button {
  font-size: 18px;
  padding: 8px 12px;
}

.cttn__main__info__container__option__buttons button:nth-child(2) {
  padding: 10px 14px;
}

.cttn__testimonio {
  width: 95%;
  margin: 5vh auto;
  height: 45vh;
}

.cttn__testimonio__text {
  width: 52%;
  color: #fff;
}

.cttn__testimonio__text div h2 {
  font-size: 22px;
}

.cttn__testimonio__text p {
  font-size: 18px;
}

.cttn__testimonio__text svg{
  width: 15% !important;
  height: 15% !important;
}

.cttn__testimonio__text h6 {
  font-size: 18px;
}

.cttn__soporte {
  width: 100%;
}

.cttn__soporte__div {
  width: 25%;
  height: 75%;
}

.cttn__soporte__div:hover{
  height: 78%;
}


.cttn__soporte__div__p p {
  font-size: 16px;
}


.cttn__main__info__container__option__icons svg{
  width: 30% !important;
  height: 30% !important;
}

.header__img {
  width: 35%;
}

.cttn__carousel__text{
  width:75%;
}

.Carousel{
  height: 40vh;
}


.pack-container {
  padding: .8rem;
  margin: 0 10px;
}

.header {
  padding-bottom: .8rem;
  margin: .4rem;
}

.lists {
  gap: 0;
}

}
@media (max-width: 650px) {
  .adjunto .cttn__modal__plan {
    width: 85%;
  }
  .cttn__testimonio__text{
    width: 60%;
  }

  .cttn__testimonio__text p {
    font-size: 14px;
  }

  .cttn__testimonio__text h6 {
    font-size: 14px;
  }

  .cttn__testimonio {
    height: 42vh;
  }

  .cttn__testimonio__text div h2 {
    font-size: 18px;
}

.cttn__main__info__container__option__buttons button {
  font-size: 16px;
  padding: 6px 10px;
}

.cttn__soporte__div {
  width: 40%;
}

.cttn__soporte__div__p p {
  font-size: 16px;
}

.cttn__main__info__container__option__icons svg{
  width: 40% !important;
  height: 40% !important;
}


.header__img {
  width: 30%;
  padding: 15px; /* modificado para telefono*/
}

.header__option{
  display: none;
}

.header__option_celular{
  display: flex;
}

.cttn__carousel__text{
  width:90%;
}

.Carousel{
  height: 40vh;
}

.slick-track {
  height: 90%;
}

.slick {
  width: 210px;
}

.cttn__carousel__text h3 {
  font-size: 32px;
}

.cttn__carousel__text p {
  font-size: 24px;
}

.slick-arrow {
  width: 36px;
  height: 36px;
}


.cttn__carousel {
  margin-top: 10vh;
}

}
@media (min-width: 650px) {
  .header__option{
    display: flex;
  }

  .header__option_celular{
    display: none;
  }

  .cttn__barra__celular {
    transform: translateX(-100vw) !important;
  }

}
@media (max-width: 500px) {
  .cttn__soporte__div {
    width: 60%;
  } 

  .cttn__main__info__container__option__icons svg{
    width: 50% !important;
    height: 50% !important;
  }

}
/*2-21-2025 MODIFICIADO POR  ADRIAN LIMA  Y ORDENADO*/

/* DEL LA PESTAÑA DE SOPORTE ESTE ES EL MODAL ESTILOS  EN GENERAL*/
.modalSo {
    display: none; /* Inicialmente está oculto */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fondo oscuro */
    justify-items: center;
    align-items: center;
}
.modalSo-contentSo {
    background-color: rgba(255, 255, 255, 0.7); /* Blanco semitransparente */
    backdrop-filter: blur(10px); /* Efecto de desenfoque */
    margin: 8% auto;
    padding: 20px;
    border-radius: 20px; 
    border: 5px solid #b3b3b3; 
    width: 55%; /**/
    
}
.modalSo-contentSo h3 {
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.6rem;
  color: #333; /* Color del texto */

}
.modalSo-contentSo p, .modalSo-contentSo li {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #555;
}
.closeSo {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 0;
    right: 10px;
}
.closeSo:hover,
.closeSo:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
/* DEL LA PESTAÑA DE SOPORTE ESTE ES EL MODAL ESTILOS  EN GENERAL*/


/* DE LA PESTAÑA DE HERRAMIENTAS ESTE ES SU CSS MODALES Y DEMAS  */
.parentHerramientas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 20px; /* Espacio entre elementos */ 
    padding: 0 50px; /*margenes laterales*/
}
.parentHerramientas div {
    border: 2px ; /* Borde en cada elemento */
    padding: 20px; /* Espaciado interno */
    background-color: rgba(211, 211, 211, 0.4); /* Color de fondo */
    border-radius: 10px; /* Bordes redondeados */
    transition: transform 0.5s;
}
.title {
    font-size: 1.5rem; /* Tamaño de la fuente */
    font-family: Georgia, 'Times New Roman', Times, serif;
    text-align: center; /* Centrar el texto */
    margin-top: 10px;
}
.parrafoH {
    font-size: 1rem;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center; /* Justificar el texto */
}
.parentHerramientas div:hover { /*efecto para sobresalir*/
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.5); /* Efecto de zoom al pasar el cursor */
}
.imagen {
    display: flex;
    justify-content: center;
    align-items: center;
}
.imagen img {
    width: 75%; /* Ajusta el tamaño de la imagen al contenedor */
    height: auto;
    transition: transform 0.3s ease-in-out;
    border-radius: 15px; /* Bordes redondeados */
}

.modalSo {
    display: none; /* Inicialmente está oculto */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fondo oscuro */
    justify-items: center;
    align-items: center;
}
.modal-principal {
    background-color: rgba(255, 255, 255, 0.3); /* Blanco semitransparente */
    backdrop-filter: blur(10px); /* Efecto de desenfoque */
    margin: 8% auto; /*separacion entre el contenido superior*/
    padding: 20px;
    border-radius: 20px;
    width: 60%;
    /* Centrar el contenido vertical y horizontalmente */
    display: flex;
    flex-direction: column;
    align-items: center; /* Centra horizontalmente */
    text-align: center;
    /* Centrar el contenido vertical y horizontalmente */
    max-height: 420px;
    overflow-y: auto;
}

.modal-examen {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 3 columnas */
    gap: 40px;
    justify-content: center; /* Centrar horizontalmente */
    align-items: center; /* Centrar verticalmente */
    text-align: center;
    padding: 20px 0;
  }

.tool {
    perspective: 1000px; /* Efecto 3D */
    cursor: pointer;
    width: 150px;
    height: 150px;
}
.tool-name {
    font-size: 1rem;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center; 
}
.tool-icon {
    font-size: 50px; /* Ajusta el tamaño del icono */
}
.tool-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.tool:hover .tool-inner {
    transform: rotateY(180deg) translateX(-20px) /*solucion a problemas -20px crj*/
}
.tool-front,
.tool-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    padding: 10px;
    font-size: 18px;
}
.tool-front {
    background: #f4f4f4;
    border: 2px solid #ccc;
}
.tool-back {
    background: #333;
    color: white;
    transform: rotateY(180deg);
}
/* DE LA PESTAÑA DE HERRAMIENTAS ESTE ES SU CSS MODALES Y DEMAS  */

/* DE LA PESTAÑA DE INICIO NOTICIAS SABIAS QUE TIK TOK  */
.contenedor {
  display: flex;
  justify-content: center;
  gap: 20px; /*separacion entre contenedores*/
  padding: 40px; /*separacion con la parte principal*/
  flex-wrap: wrap;
}

/* Estilo de cada sección */
.seccion {
  width: 330px;
  padding: 20px;
  border-radius: 10px;
  color: white;
  text-align: center;
  transition: transform 0.3s;
}

.seccion:hover {
  transform: scale(1.05);
}

/* Colores específicos por sección */
.tiktok {
  background-color: rgba(255, 255, 255, 0.3); /* Blanco semitransparente */
  backdrop-filter: blur(10px); /* Efecto de desenfoque */
}

.noticias {
  background-color: rgba(255, 255, 255, 0.4); /* Blanco semitransparente */
    backdrop-filter: blur(10px); /* Efecto de desenfoque */
}

.sabias {
  background-color: rgba(255, 255, 255, 0.3); /* Blanco semitransparente */
    backdrop-filter: blur(10px); /* Efecto de desenfoque */
}

/* Estilos principales del carrusel */
.carouselInicio {
  margin: 0 auto;
  padding: 5px 0;
  max-width: 700px;
  overflow: hidden;
  display: flex;
}

/* Estilos de cada tarjeta */
.card img{
  width: 150px;
  color: white;
  border-radius: 24px;
  font-size: xx-large;
  justify-content: center;
  align-items: center;
  min-height: 240px;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Estructura del grupo de tarjetas */
.group {
  display: flex;
  gap: 10px;
  padding-right: 20px;
}

/* Animación de desplazamiento */
.group {
  will-change: transform; /* Notificación de lo que se va a animar */
  animation: scrolling 10s linear infinite;
}

@keyframes scrolling {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(-100%);
  }
}

/* Detener la animación cuando el ratón pasa sobre el carrusel */
.carouselInicio:hover .group {
  animation-play-state: paused;
}

/* DE LA PESTAÑA DE INICIO NOTICIAS SABIAS QUE TIK TOK  */
/* Estilo del modal */
.modalUno {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.modalUno-contentUno {
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
}

.modalUno-link {
  margin-top: 10px;
  background-color: #ff0050;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.modalUno-link:hover {
  background-color: #e60046;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}
#modalLink {
  margin-top: 15px;
  color: white;
  background-color: #ff0050;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
}

#modalLink:hover {
  background-color: #cc0040;
}
/* NUEVA SECCION GALERIA DE IMG Y VIDEOS */
.title_geleria {
  font-size: 2rem;
  font-weight: bold;
  color: #ffea00;
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}
.description_galeria {
  font-size: 1.1rem;
  color: #ffffff;
  line-height: 1.6;
  max-width: 600px;
}
.parent_galeria {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1200px; /* o el ancho que te guste */
  margin: 0 auto;     /* centra horizontalmente */
  width: 100%; 
}
.parent_galeria div {
  border: 2px ; /* Borde en cada elemento */
  padding: 20px; /* Espaciado interno */
  background-color: rgba(211, 211, 211, 0.4); /* Color de fondo */
  border-radius: 10px; /* Bordes redondeados */
  transition: transform 0.5s;
}
.parent_galeria div:hover { /*efecto para sobresalir*/
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.5); /* Efecto de zoom al pasar el cursor */
}
.cttn_video_galeria {
  width: 100%;
  height: 50vh; /* altura del contenedor */
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cttn_video_galeria iframe {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ajusta el contenido sin distorsionar */
  object-position: top; /* Centra el contenido en la parte superior */
  border-radius: 10px; /* Aplica bordes redondeados */
}
.proximamente {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.4);
  border: 2px dashed #ffea00;
  border-radius: 10px;
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease-in-out;
  color: #fff;
}

.proximamente:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px rgba(8, 8, 8, 0.3);
}

.contenido_proximamente {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

.icono {
  font-size: 3rem;
}

.texto {
  font-size: 1.6rem;
  font-weight: bold;
  color: #ffea00;
}

.subtexto{
  font-size: 1rem;
  color: #fff;
  opacity: 0.85;
  max-width: 250px;
}

.emoji-scroll {
  margin-top: 8px;
  font-size: 1.3rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}




/*RESPONSIVE DE LAS ACTUALIZACIONES*/
@media (max-width: 800px) { /*modificado*/
  .cttn__testimonio__img {
    width: 32%;
    height: 37vh; /*altura del contenedor d*/
    border-radius: 15px; /*ajustar si o si */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
}

@media screen and (max-width: 400px) {
  .modalSo-contentSo {
    background-color: rgb(226, 226, 226);
    margin: 35% auto;
    padding: 20px;
    border-radius: 20px; /* Ajusta el valor para el radio del borde */
    border: 5px solid #b3b3b3; /* Agrega un borde */
    width: 80%; /* Ajusta el ancho */
    max-height: 350px; /* Altura máxima antes de activar el scroll */
    overflow-y: scroll; /* Permite el desplazamiento vertical */
  }

  .cttn__testimonio__img {
    width: 35%;
    height: 40vh; /*altura del contenedor d*/
    border-radius: 20px; /*ajustar si o si */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .cttn__testimonio__img video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ajusta el video para que ocupe el área sin deformarse */
    object-position: top;
    border-radius: 20px;
  }
  .cttn__main__carrousel {
    width: 90%;
    margin: 100px auto; /*altura de separacion*/
  }
  .cttn__carousel{
    margin-top: 1px;
  }
  .parentHerramientas {
    grid-template-columns: 1fr; /* Una columna */
  }
  .modal-principal {
    width: 90%;
    max-height: 500px;
    display: flex;
    flex-direction: column;
    text-align: center;
    margin: 25% auto; /*margen de separacion*/
    align-items: center;
  }
  .modal-examen {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center; /* Centrar horizontalmente */
    align-items: center; /* Centrar verticalmente */
    text-align: center;
    gap: 35px;
    display: grid;
    width: 100%;
    justify-content: center;

  }
  .tool {
    perspective: 1000px; /* Efecto 3D */
    cursor: pointer;
    width: 140px;
    height: 140px;
  }
  .contenedor {
    display: flex;
    justify-content: center; /* Centrar horizontalmente */
    align-items: center; /* Centrar verticalmente */
    padding: 0px;

  }
  .seccion {
    width: 230px;
    
  }
  .parent_galeria {
    grid-template-columns: 1fr; /* Un solo elemento por fila */
    width: 90%;
  }
  .cttn_video_galeria {
    width: 80%;
    height: 40vh; /*altura del contenedor d*/
    border-radius: 20px; /*ajustar si o si */
    overflow: hidden;
    justify-content: center;
    align-items: center;
    margin: 0 auto;     /* centra horizontalmente */
   
  }
}
