
@import url('https://fonts.googleapis.com/css?family=Raleway:300&display=swap');
@import url('https://fonts.googleapis.com/css?family=Monoton&display=swap');
@import url('https://fonts.googleapis.com/css?family=Poppins:500&display=swap');


::-webkit-scrollbar{
  width: 4px;
  color:#33a1cc;
  transition: all .4s ease;
}
::-webkit-scrollbar-thumb {
  background: #33a1cc; 
  border-radius: 4px;
  width: 4px;
  transition: all .4s ease;
}
::-webkit-scrollbar-track {
  background: #101010; 
  border-radius: 4px;
  width: 4px;
}

body {
  background-color: #171717;
  margin: 0;
  padding: 0;
 
}

body.menu-open {
overflow: hidden;
}



.loader {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100vh;
  position: fixed;
  z-index: 9999;
  font-family: poppins;
  background-color: #202020;
  color: whitesmoke;
  font-size: 70px;
  width: 100%;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader img {
  width: 300px;
  height: auto;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.cursor {
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.623);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.cursor-inner {
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.9);
  }
}




.menu {
  display: flex;
  justify-content: flex-end; /* Alinear los elementos a la derecha */
  align-items: center;
  padding: 10px;
margin-top: -60px;
font-family: poppins;

}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  z-index: 999;

}

.menu-list li {
  font-size: 14px;
  opacity: 0.8;
}

.menu-list a {
  color: whitesmoke;
  text-decoration: none;
  padding: 10px;
  z-index: 9999;

}

.menu-list a:hover {
  color: #33aecc;
}

.hamburger-menu {
  display: none;
  font-size: 2em;
  color: white;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
}

.boton-cerrar {
display: none; /* Ocultar el botón de cerrar por defecto */
position: absolute;
top: 20px;
right: 20px;
font-size: 30px;
color: white;
background: none;
border: none;
z-index: 9999; /* Asegurar que esté por encima del contenido */
}



.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  z-index: 999;

}

.content .central-image {
  margin: 20px 0;
}

.content-button {
  margin-top: 20px;
}

.secondline {
  z-index: 2;
  font-size: 30px;
  padding-top: 20px;
  font-weight: 500;
  color: rgb(255, 255, 255, .8);
  font-family: raleway;
}

.secondline span.txt-rotate.color span {
 color: #33aecc;
 }

.slash {
  animation-name: animateslash;
  animation-duration: .8s;
  animation-iteration-count: infinite;
  animation-play-state: running;
}


.social-right {
  position: fixed;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: .6;


}



.social-right {
  top: 50%;
  right: 60px;
  transform: translateY(-50%);
}


.social-right img {
  color: #33aecc;
  transition: transform 0.3s ease;
  margin: 10px;
  width: 30px; /* Ajusta el ancho de las imágenes */
  height: 30px; /* Ajusta la altura de las imágenes */

}

.social-right img:hover {
  transform: scale(1.2);
}

.social-right-mobile  {
  margin-top: 40px;
}

.social-right-mobile a {
  margin-bottom: 10px; /* Espacio entre cada enlace */
  padding: 5px;

}
.social-right-mobile img {
  width: 30px; /* Ajusta el ancho de las imágenes */
  height: 30px; /* Ajusta la altura de las imágenes */
  transition: transform 0.3s ease; /* Transición suave de 0.3 segundos en la propiedad transform */
}

.social-right-mobile img:hover {
  transform: scale(1.2); /* Zoom del 20% al pasar el mouse por encima */
}






.content.hidden {
    display: none;
}

.background-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.5;
}

@keyframes animateslash {
  0% {
    opacity: 1;
    z-index: 2;
  }
  100% {
    opacity: 0;
    z-index: 0;
  }
}

#particles {
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  position: fixed;
  z-index: -1;
}

/**/
.modal-ws {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 9999;
}

.modal-content-whatSapp {
  background-color: black;
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 600px;
  text-align: center;
  border-radius: 10px;
  color: white;
  position: relative;
  z-index: 9999;
}

#title-modal {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  color: #33aecc;
}

#message-area {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: white;
  margin: 20px 0;
}

.message-fade {
  opacity: 0;
  animation: fade-in 2s ease-in-out forwards;
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.whatsapp-button {
  background-color: #33aecc;
  color: white;
  padding: 15px 20px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: bold;
  display: inline-block;
  text-decoration: none;
}

.whatsapp-button:hover {
  background-color: #33aecc;
}

.whatsapp-button i {
  font-size: 24px;
  margin-right: 10px;
}

.whatsapp-button span {
  vertical-align: middle;
}




.Title-job {
  font-size: 4vw; /* Tamaño de fuente relativo al ancho de la ventana */
  text-align: center; /* Alineación al centro */
  font-family: Arial, Helvetica, sans-serif;
  width: 80%; /* Ancho del contenedor */
  margin: 100px auto; /* Centrado automático y margen superior */
  box-sizing: border-box; /* Incluye el borde en el cálculo del ancho */

}

.Title-job p {
  display: inline; /* Hace que el texto sea en línea */
}

.gold {
  color: #33aecc; /* Color dorado */
}

.white {
  color: white; /* Color blanco */
}

.vertical-rectangles {
  display: flex;
  justify-content: space-between;
  width: 80%;
  margin-top: -90px;
  z-index: 999;
  margin-left: 20px;
}

.vertical-rectangles-jobs {
  display: flex;
  justify-content: space-between;
  width: 80%;
  z-index: 999;


}

.cards-bag-job {
  position: relative;
  cursor: pointer;
  transition: transform 0.5s;
}
.cards-bag-job.flip {
  transform: rotateY(180deg);
}
.text-ventas, .text-description-info {
  
}





.text-rectangle, .form-rectangle {
  width: 45%;
  box-sizing: border-box;
  padding: 20px;
}

.text-rectangle {
  color: white;
}


.text-rectangle p {
  
  text-align: justify;
}




#text-title{
    color: #33aecc;
  font-weight: bold;
  margin-top: 20px;    
  font-size: 30px;
  text-transform: uppercase;
  font-family: poppins;

}

.text-normal{
  font-family: poppins;
  font-size: 14px;
}

.text-question {
  color: #33aecc;
  font-family: poppins;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  text-align: justify;
  text-transform: uppercase;
}


#text-data{
  color: white;
font-size: 16px;
font-family: poppins;
width: 100%;

}





.form-rectangle {
  color: white;

}

.form-rectangle form {
  display: flex;
  flex-direction: column;
  background-color: rgba(128, 128, 128, 0.2);
  width: 100%;
  padding: 40px;
  border-radius: 10px;
  box-sizing: border-box;
  font-family: poppins;
  margin-top: 30px;

  
  

}

.form-rectangle label {
  display: block;
  margin-bottom: 10px;
  font-family: poppins;
  font-size: 12px;
  text-align: left;
  

}

.form-rectangle input,
.form-rectangle select {
  width: calc(100% - 20px);
  padding: 10px;
  margin-bottom: 15px;
  border: none;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 12px;
  font-family: Arial, Helvetica, sans-serif;
}

.form-rectangle .select-number-code {
  display: flex;
  align-items: center;
}

.form-rectangle .number-phone-label  {
  flex: 1;
  margin-left: 10px;
}

.number-phone-label input{
  width: 150px;
}

.form-rectangle .container-button-upload {
  margin-top: 10px;
  text-align: center;
}

.form-rectangle .custom-file-upload {
  display: inline-block;
  background-color: #33aecc;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-left: 47%;
  padding: 10px 10px;
  width: calc(50% - 20px);
  text-align: center;

}

.form-rectangle .custom-file-upload:hover {
  background-color: #33aecc;
  color: #101010;
}

#file-upload {
  display: none;
}

.form-rectangle .select-speciality {
  text-align: center;
  width: 50%;
  margin-top: -50px;
  margin-left: -9px;
}

option{
  color: black;
}

.form-rectangle .btn-submit {
  width: 100%;
  padding: 15px;
  background-color: #cc9933;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s;
  margin-top: 10px;
}

.form-rectangle .btn-submit:hover {
  background-color: #33aecc;
  color: black;
}

.div-title-job {
width: 80%; /* Ancho del contenedor */
z-index: 9999;
margin: 100px auto; /* Centrado automático y margen superior */
padding: 20px; /* Opcional: agrega un poco de relleno dentro del borde */
box-sizing: border-box; /* Asegura que el relleno y el borde se incluyan en el cálculo del ancho */
text-align: center; /* Alinea el texto al centro dentro del div */
z-index: 999;

}

.div-title-job p {
font-size: 4vw; /* Tamaño de fuente relativo al ancho de la ventana */
font-family: 'Poppins', sans-serif;
color: whitesmoke;
margin: 0; /* Elimina el margen por defecto */
}


.rectangulo {
  width: 200px;
  height: auto;
  margin: 20px;
}

.rectangulo-text-description{
font-family: poppins;
font-size: 14px;
}



.cards-bag-job {
  width: 300px;
  height: au;
  border: #dbd6d6 solid 4px;
  margin-top: 40px;
  background-size: cover; /* Ajusta la imagen al tamaño del contenedor */
  background-position: center; /* Centra la imagen */
  position: relative; /* Asegura que los elementos hijos se posicionen correctamente */
  overflow: visible; /* Permite que el contenido sobresalga del contenedor */
  padding: 40px;
  border-radius: 10px;
  margin-left: 26px;
  margin-right: 20px;

}

.cards-bag-job:hover {
  border: #33aecc solid 4px;
}

.square {
  margin-left: -5px; /* Sobresale hacia la izquierda */
  margin-top: -115px; /* Sobresale hacia arriba */
  width: 150px;
  height: 150px;

}

/* Estilo para la imagen dentro del .square */
.square img {
  width: 150%;
  height: 100%;
  object-fit: cover; /* Ajusta la imagen al tamaño del contenedor */
  border: solid 4px white;
  border-radius: 10px;
}

.square img:hover {
  border:solid 4px #cc9933;

}

.text-ventas{
font-family: poppins;
margin-top: 10px;
color: white;

}

.text-description-info{
  font-family: poppins;
  margin-top: 10px;  
  font-size: 12px;
  color: white;
}




@keyframes flip {
  0% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(90deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}

.flip {
  animation: flip 0.5s forwards;
}


.text-ventas, .text-description-info {

  
}







.animated-text {
  animation: fadeIn 1s ease-in-out forwards; /* Animación de aparición */
  font-family:poppins;
  margin-top: 60px;
  font-size: 28px;
  text-align: center;
  color:#cc9933;
  font-weight: bold;

}

.animated-text-fas{
  font-family:poppins;
  margin-top: 60px;
  font-size: 28px;
  text-align: center;
  color:white;
}

.animated-text2 {
  animation: fadeIn 1s ease-in-out forwards; /* Animación de aparición */
  font-family:poppins;
  margin-top: 60px;
  font-size: 28px;
  text-align: center;
  color:#33aecc;

  font-weight: bold;

}

.animated-text-fas2{
  font-family:poppins;
  margin-top: 60px;
  font-size: 28px;
  text-align: center;
  color:white;
}



.animated-text3 {
  animation: fadeIn 1s ease-in-out forwards; /* Animación de aparición */
  font-family:poppins;
  margin-top: 60px;
  font-size: 28px;
  text-align: center;
  color:#33aecc;

  font-weight: bold;

}

.animated-text-fas3{
  font-family:poppins;
  margin-top: 60px;
  font-size: 28px;
  text-align: center;
  color:white;
}



@keyframes fadeIn {
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}




.div-title-user {
  width: 80%;
  z-index: 9999;
  margin-left: auto; /* Center the div horizontally */
  margin-right: auto; /* Center the div horizontally */
  padding: 20px; /* Optional: Adds some padding inside the border */
  box-sizing: border-box; /* Ensures padding and border are included in the width */
  text-align: center; /* Center-aligns the text inside the div */
  margin-top: 40px;
  z-index: 999;


}

.div-title-user  {
  font-family: 'Poppins', sans-serif;
  color: whitesmoke;
  text-align: center;
  font-size: 38px;
}

.text-title-user{
font-size: 20px;
z-index: 999;

}


.div-content-controls {
width: 80%;
z-index: 9999;
margin-left: 78px; /* Centra el div horizontalmente */
padding: 20px; /* Añade relleno dentro del borde */
box-sizing: border-box; /* Asegura que el relleno y el borde estén incluidos en el ancho */
text-align: center; /* Alinea el texto al centro dentro del div */
margin-top: 10px;
}

#options {
text-align: center;
}

#navigation {
margin-top: 20px;
}

#navigation button {
padding: 10px;
width: 40px; /* Establece ancho y alto iguales */
height: 40px;
border: 2px solid #cc9933;
border-radius: 50%; /* Lo hace circular */
background-color: transparent;
color: #ffffff;
font-size: 16px;
cursor: pointer;
font-weight: bold;
display: inline-flex; /* Centra el texto dentro del botón */
align-items: center;
justify-content: center;
}

#navigation button:hover {
background-color: #33aecc;
color: white;
}

#current-index {
font-size: 18px;
font-family: poppins;
color: #33aecc;
margin-top: 10px;
display: inline-block; /* Asegura que se alinea con los botones */
width: 40px;
height: 40px;
line-height: 40px; /* Centra el texto verticalmente */
text-align: center;
border: 2px solid #33aecc;
border-radius: 50%; /* Lo hace circular */
}


.cube-container {
width: 300px;
height: 450px;
position: relative;
transform-style: preserve-3d;
transform: rotateX(0deg) rotateY(0deg);
transition: transform 0.5s ease;
}

.face {
position: absolute;
width: 100%;
height: 100%;
border: 3px solid #33aecc;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
}

.face video {
width: 100%;
height: 100%;
object-fit: cover;
}

.front { transform: translateZ(150px); }
.back { transform: rotateY(180deg) translateZ(150px); }
.left { transform: rotateY(-90deg) translateZ(150px); }
.right { transform: rotateY(90deg) translateZ(150px); }
.top { transform: rotateX(90deg) translateZ(150px); }
.bottom { transform: rotateX(-90deg) translateZ(150px); }

.button-container {
margin-top: 40px;
display: flex;
gap: 20px;
}


.control1{
width: 50px;
height: 50px;
border-radius: 50%;
border: none;
background-color: #33aecc;
color: rgb(255, 255, 255);
font-size: 23px;
font-weight: bold;
cursor: pointer;
transition: background-color 0.3s ease;
border: 2px solid #33aecc;
background-color: transparent;

}

.control2{
width: 50px;
height: 50px;
border-radius: 50%;
border: none;
background-color: #33aecc;
color: rgb(255, 255, 255);
font-size: 23px;
font-weight: bold;
cursor: pointer;
transition: background-color 0.3s ease;
border: 2px solid #33aecc;
background-color: transparent;

}

.space-footer{
margin-top: 30px;
}


.active-link {
background-color:#ffffff38;
border-radius: 10px;

}



  #barra-navegacion {
      display: flex;
      justify-content: right;
      align-items: center;
      padding: 10px 20px;
      color: #fff;
      margin-top: -70px;

  }

  .enlaces-navegacion {
      display: flex;
  }

  .enlaces-navegacion a {
      color: white;
      text-decoration: none;
      padding: 10px 10px;
      transition: background 0.3s;
      font-family: poppins;
      opacity: .8;
      text-transform: uppercase;
      font-size: 14px;
  }

  .enlaces-navegacion a:hover {
      color: #33aecc;
      border-radius: 10px;

  }

  .boton-menu {
      font-size: 30px;
      color: white;
      display: none;
  }



  
.cerrar-modal{
font-weight: bold;
font-family: Arial, Helvetica, sans-serif;
font-size: 26px;
padding: 10px;
border-radius: 50%;
color: white;
display: flex;
justify-content: right;
align-items: center;


}


.cerrar-modal:hover{
  color:#33aecc;
}

  

  /* Estilos para el menú hamburguesa */
  @media (max-width: 768px) {
    .boton-menu {
        display: block;
    }

    .enlaces-navegacion {
        position: fixed;
        width: 100%;
        height: 100vh;
        backdrop-filter: blur(30px);
        top: 0;
        left: -100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.3s ease;
        background-color:blur(30px)  rgba(33, 32, 32, 0.103);
        -webkit-backdrop-filter: blur(20px); /* Soporte para Safari */
        backdrop-filter: blur(20px);
        z-index: 9999;

        
        

    }

    .enlaces-navegacion a {
        display: block;
        width: 88%;
        text-align: center;
        padding: 20px;
        z-index: 9999;
        color: white;

    }


    .enlaces-navegacion a:hover, .enlaces-navegacion a.active {
      background-color:#ffffff38;
      color: #33aecc;
      border-radius: 10px;

  }

    #verificar:checked ~ .enlaces-navegacion {
        left: 0;
    }

    .boton-cerrar {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 30px;
        color: white;
        background: none;
        border: none;
    }


  

  body.menu-open {
      overflow: hidden;
  }
}

/* Ocultar el botón de cerrar por defecto */
.boton-cerrar {
    display: none;
}

/* Mostrar el botón de cerrar cuando el menú está abierto */
#verificar:checked ~ .enlaces-navegacion .boton-cerrar {
    display: block;
}




@media (max-width: 375px) {


.Title-job{
  margin-right: -19px;
  }

  .enlaces-navegacion a {
    color: white;
font-size: 16px;
opacity: .9;
}



}





@media screen and (max-width: 768px) {

.hamburger-menu {
  display: block;
}

.menu-list {
  width: 100%; /* Ancho del menú en móviles */
  height: 100vh;
  transition: left transform 1.5s ease-in-out; /* Transición de desplazamiento */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(-100%);
  background-color:blur(30px)  rgba(33, 32, 32, 0.103);
          -webkit-backdrop-filter: blur(20px); /* Soporte para Safari */
          backdrop-filter: blur(20px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  line-height: 5;
}



.menu-list.visible {
transform: translateX(0);
}

.menu-list li{
width: 100%;
text-align: center;
}

.close-menu-mobile {
display: block;
}

.menu {
justify-content: flex-end;
}

.menu-list {
display: none;
}

.menu-list li {
border-radius: 10px;
color: white;
}

.menu-list li.active {
background-color: #88888841;
border-radius: 10px;
color: white;
}

.menu-list a:hover {
color: #cc9933;

}



.menu-list.visible {
display: flex;
}

.hamburger-menu.hidden {
display: none;
}

.boton-cerrar.visible {
display: block;
}




.content.mobile-hidden {
  display: none;
}

.vertical-rectangles {
  flex-direction: column;
  align-items: center;
}

.text-rectangle,
.form-rectangle {
  width: 100%;
}

.vertical-rectangles-jobs {
  flex-direction: column;
  align-items: center;
}

.vertical-rectangles2 {
  width: 50%;
}

.Title-job {
  width: 100%;
  font-size: 38px;
}

.Title-job p {
  display: inline;
  width: 100%;
}

.div-title-job p {
  font-size: 28px; /* Tamaño de fuente relativo al ancho de la ventana */
  font-family: 'Poppins', sans-serif;
  margin: 0; /* Elimina el margen por defecto */
  text-transform: uppercase;
}

.cards-bag-job {
  margin-bottom: 140px;
  width: 70%;
}

.div-content-controls {
  width: 100%;
  padding: 10px;
}

#navigation {
  margin-top: 10px;
}

#navigation button {
  width: 30px;
  height: 30px;
  font-size: 14px;
}

#current-index {
  font-size: 14px;
  margin-top: 5px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-width: 1px;
}

.cerrar-modal {
  display: block; /* Mostrar el botón de cerrar en dispositivos móviles */
}

.boton-dorado-cerrar{
display: none;
}

.modal-content-whatSapp {
  width: 90%; /* Ajustar el ancho del modal en dispositivos móviles */
  padding: 15px; /* Ajustar el padding del contenido */
  margin: 10% auto; /* Ajustar el margen verticalmente */
}

.social-right {
  top: 50%;
  right: 1%;
  transform: translateY(-50%);
}




}

