/*=============== GOOGLE FONTS ===============*/
 /* @import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;700&display=swap'); */
 /* @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap'); */
 @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  --first-color: #5353d5;
  --title-color: #0d2f59;
  --text-color: #5a5e72;
  --body-color: #f4e5ff;
  --container-color: #fff;
  --border-color: #bfc4d9;

  /*========== Font and typography ==========*/
  --body-font: "Poppins", serif;
  --h2-font-size: 1.25rem;
  --normal-font-size: .938rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-fixed: 100;
  --z-modal: 1000;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1023px) {
  :root {
    --h2-font-size: 1.5rem;
    --normal-font-size: 1rem;
  }
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
  }

.containerForm{
    display: flex;
    width: 100%;
    height: auto;
    align-items: center;
    justify-content: center;
}

.contenAll_inputs{
    display: flex;
    width: 100%;
    height: auto;
    justify-content: center;
    flex-wrap: wrap;
}

.eticketForm{
    display: flex;
    width: 100%;
    height:auto ;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 3%;
    gap: 20px;
}

.containerInputs{
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    width: min(400px, 100%);
    height: auto;
}

@media (max-width: 920px){
    .containerInputs{
        width: min(780px, 100%);
    }
}

.inputs{
    display: flex;
    gap: 5px;
    flex-direction: column;
}

.inputs input{
    display: flex;
    height: 40px;
    padding: 5px;
    border-radius: 5px;
    font-size: 15px;
    background-color: #5252d50b;
    outline: none;
    border: 1px solid #fff3;
    color: #fff9;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(240) sepia(32%) saturate(16%) hue-rotate(184deg);
  cursor: pointer;
}


.inputs label{
    color: #fff;
    opacity: 0.8;
}


.inputs select{
    color: #333;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: border-color 0.3s ease;
    background-color: #5252d50b;
    border: 1px solid #fff3;
    color: #fff9;
}


.custum-file-upload {
    width: min(750px, 90%);
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: space-between;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border: 2px dashed #e8e8e894;
    border-radius: 10px;
    /* box-shadow: 0px 48px 35px -48px #5353d57e; */
  }


  .contenFileUp{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .custum-file-upload .icon {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .custum-file-upload .icon svg {
    height: 80px;
    fill: #5353d59c;
    animation: upDawn 2s ease-in infinite;
  } 

  @keyframes upDawn {
    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(5px);
    }

    100%{
        transform: translateY(0px);
    }
  }

  
  .custum-file-upload .text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
  }

  
  .custum-file-upload .text span {
    font-weight: 400;
    font-size:18px;
    color:#5353d5 ;
  }


.file2{
    display: none;
}


.hiddenFile {
    display: none;
}

.contenInfo_file{
    display: flex;
    width: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}


#cuadro {
    width:clamp(310px, 70vw, 700px);
    height: 270px;   
    border-radius: 5px;
    overflow: hidden;                
    position: relative; 
    filter: drop-shadow(-3px -1px 5px  #5353d55a);
  }

   #cuadro img {
    width: 100%;                       
    height: 100%;                     
    object-fit: cover;    
  }

  .contenTitle_etikect{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
  }

  .contenTitle_etikect h1{
    color: #fff;
    font-size: clamp(30px, 5vw, 45px);
    font-weight: 600;
    }

    .contenTitle_etikect h3{
        color: #fff;
        font-size: 20px;
        font-weight: 300;
    }

    @media screen and (max-width: 723px) {
       
       #prueva{
            font-size: 13px;
        }
      }

    .text h5{
        color: #fff;
        font-weight: 300;
        opacity: 0.8;
    }

    .contenButtonForm{
        display: flex;
        width: min(750px, 90%);
        justify-content: center;
        gap: 10px;
    }

    .contenBtn_Modal{
        display: flex;
        /* width: min(750px, 100%); */
        width: 100%;
        justify-content: end;
        gap: 20px;
        margin-top: 5%;
    }

    .contenBtn_Modal button{
      width: 150px;
        height: 40px;
        -webkit-transition: 0.5s;
        transition: 0.5s;
        background-size: 500% auto;
        align-items: center;
        font-size: 16px;
        font-weight: 400;
        color: #fff;
        border-radius: 5px;
        cursor: pointer;
    }

    #btnCancelar{
      width: 150px;
        height: 40px;
        -webkit-transition: 0.5s;
        transition: 0.5s;
        background-size: 500% auto;
        font-size: 16px;
        font-weight: 400;
        color: #fff;
        border-radius: 5px;
        cursor: pointer;
        background-color: #ff2d50;
    }

    .contenButtonForm button{
        width: 100%;
        height: 40px;
        -webkit-transition: 0.5s;
        transition: 0.5s;
        background-size: 500% auto;
        font-size: 16px;
        font-weight: 400;
        color: #fff;
        border-radius: 5px;
        cursor: pointer;
    }

    

    .space:hover {
        background-position: right center;
        border-image-source: linear-gradient(90deg, #d53a9d,#5352d5 );
        -webkit-box-shadow: 0 0 20px #5352d5;
        box-shadow: 0 0 20px #5352d5;
        color: rgb(255, 255, 255);
        text-shadow: 1px 1px 10px #d53a9d;
    }

    .spaceCancel:hover {
      background-position: right center;
      border-image-source: linear-gradient(90deg, #d53a9d,#ff2d50 );
      -webkit-box-shadow: 0 0 20px #ff2d50;
      box-shadow: 0 0 20px #ff2d50;
      color: rgb(255, 255, 255);
      text-shadow: 1px 1px 10px #d53a9d;
  }

    .disbleBtn{
        background-color: #5252d514;
        border: 1px solid rgba(255, 255, 255, 0.346);
        opacity: 0.5;
    }


    .error-message {
      color: rgb(255, 106, 106);
      font-size: 12px;
      margin-top: 5px;
  }
    

  /* /////////////////// SEGUNDO FORM //////////////// */

  .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    flex-direction: column;
  }

  .modal p {
    color: #fff;
    opacity: 0.8;
    font-size: 0.9em;
    font-weight: 600;  
  }

  .contenedor1{
      display: flex;
      flex-direction: row;
  }

  .contenModal{
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 60%;
    height: auto;
    gap: 70px;
    padding: 35px;
    justify-content: center;
    background-color:#25282e;
    background-image:
    radial-gradient(at 49% 56%, rgb(29, 31, 36) 0px, transparent 50%),
    radial-gradient(at 51% 0%, hsla(240,59%,55%,0.51) 0px, transparent 50%);
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 5px;
  }


  .contentTravel{
    width: 100%;
    margin-top: 3%;
    justify-content: center;
    display: flex;
  }

  .contenExit{
    display: flex;
    width: 100%;
    flex-direction: column;
    text-align: start;
  }

  .contenExit h1{
    color: #5352d5;
    opacity: 0.8;
    font-size: 3em;
  }

  .contenArrive h1{
    color: #43d711;
    opacity: 0.8;
    font-size: 3em;
  }
  

  .contenArrive{
    display: flex;
    width: 100%;
    flex-direction: column;
    text-align: end;
  }

  .contenLine{
    display:flex ;
    gap: 10px;
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .contenLogo{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contenLIneHora{
    display: flex;
    gap: 10px;
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .contenIconModal{
    display: flex;
    width: 100%;
    align-items: center;
    gap: 5px;
  }

  .contenIconModal i{
    color: #5352d5;
    font-size: 20px;
    margin-top: -3.5%;
  }

.contenHora2{
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  gap: 7px;
}

.colorFecha{
  color: #5352d5 !important;
  font-weight: 500 !important;
}

.colorModal{
  padding: 0px 5px 0px 5px;
  background-color: #5352d5;
  border-radius: 2px;
  font-weight: 500 !important;
  color: greenyellow !important;
  font-size: 0.8em !important
}

.contenHora1{
  display: flex;
  flex-direction: row;
  justify-content: start;
  width: 100%;
  gap: 7px;
  align-items: center;
}

.contenHora p {
  text-align: end;
}

  #linea{
    width: 100%;
    height: 1px;
    background-color: rgb(255, 255, 255);
  }
  
  .close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    cursor: pointer;
  }


  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px); /* Desenfoque */
    z-index: 999;
  }

  .modalForm{
    display: flex;
    width: 100%;
    align-items: center;
    flex-direction: column;
    margin-bottom: 5%;
  }

  .modalForm h1{
    color: #fff;
    opacity: 0.8;
    font-size: 2.2em;
  }

  .modalForm h3{
    color: #fff;
    opacity: 0.8;
    margin-bottom: 8%;
    font-weight: 300;
  }

  .contenIpus_Modal{
    display: flex;
    width: 100%;
    height: auto;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    color: #fff;
  }
  
  .InpusModal{
    display: flex;
    width: 100%;
    gap: 20px;
    flex-direction: column;
  }

  .inpus_conten{
    width: 100%;
    display: flex;
    gap: 5px;
    flex-direction: column;
    height: auto;
  }

  .inpus_conten input, select{
    display: flex;
    width: 100%;
    height: 40px;
    background-color: #5252d50a;
    outline: none;
    border: 1px solid #ffffff15;
    border-radius: 5px;
    padding: 10px;
  }

  .inpus_conten label{
    opacity: 0.8;
    font-weight: 300;

  }

/* //////////////////////////////////////// */

body{
  position: static;
}

.loader {
  display: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.796);
  backdrop-filter: blur(20px); /* Desenfoque */
  z-index: 999;
}

.loandeAnimate{
  display: flex;
  gap: 8px;
}

.conteloande{
  display: flex;
  position: absolute;
  flex-direction: column;
  width: 100%;
  align-items: center;
  gap: 10px;
  top: 50%;
}

.conteloande p {
  color: #fff;
  font-size: 1.5em;
  font-weight: 600;
  letter-spacing: 2px;
  animation: cambiarColor 3s infinite;
}

@keyframes cambiarColor {
  0% { color: #5352d5; }
  50% { color: #fff; }
  100% { color: #5352d5; }
}


.loader__circle {
  --size__loader: 0.6em;
  width: var(--size__loader);
  height: var(--size__loader);
  border-radius: 50%;
  animation: loader__circle__jumping 3s infinite;
  background-color: #5352d5;
}

.loader__circle:nth-child(2n) {
  animation-delay: 300ms;
  background-color: #fff;
}

.loader__circle:nth-child(3n) {
  animation-delay: 600ms;
}

@keyframes loader__circle__jumping {
  0%, 100% {
    transform: translateY(0px);
  }

  25% {
    transform: translateY(-15px) scale(0.5);
  }

  50% {
    transform: translateY(0px);
  }

  75% {
    transform: translateY(5px) scale(0.9);
  }
}

@media (max-width: 1050px) {
  .contenModal{
    max-width: 95%;
  }

}


@media (max-width: 600px) {
  .contenIpus_Modal{
    flex-direction: column;
  }

  .modal{
    overflow-y: scroll;
  }

  .contenModal{
    margin-top: 50%;
    padding: 10px;
  }

  .contenExit h1{
    font-size: 2.5em;
  }

  .contenArrive h1{
    font-size: 2.5em;
  }

  .modalForm h1{
    font-size: clamp(20px, 5vw, 45px);
  }

  .modalForm h3{
    font-size: clamp(10px, 5vw, 12px);
  }

  .inpus_conten label {
    font-size: 13px ;
  }

  #btnCancelar{
      width: 100px;
      height: 35px;
      font-size: 13PX;
  }

  .spaceResponsive{
    width: 100px !important;
    height: 35px !important;
    font-size: 13px !important;
  }

  .inputs select  option{
    color: #ffffff;
    font-size: 12px;
    width: 100%;
}
}

.contenIconFoto{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.contenIconFoto h1{
  color: #fff;
  font-weight: 600;
  margin-bottom: -8px;
}

.contenIconFoto i {
  color: #31af08;
  font-size: 60px;
}

.contenIconFoto p {
  color: #ffffff;
  font-size: 18px;
  font-weight: 300;
}



.fotoEtikect{
  display: none;
  flex-direction: column;
  align-items: center;
  margin-top: 10%;
  width: 100%;
  height: auto;
  gap: 40px;
}

.contenPdf{
  width: 100%;
  display: flex;
  justify-content: center;
}

#pdf-viewer{
 display: flex;
 width: 500px;
 height: 80px;
 border-radius: 5px;
 background-color:#fff;
 align-items: center;
 justify-content: center;
 gap:8px;
 font-size: 20px;
 font-weight: 600;
 color:#5352d5;
}

#pdf-viewer i{
  font-size: 30px;
}


.contenBtn_foto{
  display: flex;
  width: 100%;
  max-width: 500px;
  gap: 10px;
  margin-top: 1%;
}

.conten_etikectInfo{
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}

.contenBtn_foto button{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.contenBtn_foto a{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.FotoBtn{
  width: 100%;
  height: 40px;
  padding: 0px 20px 0px 20px ;
  border-radius: 5px;
  cursor: pointer;
  color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-size: 500% auto;
  border: 1px solid #ffffff35;
}

.FotoBtn :hover{
  background-position: right center;
  border-image-source: linear-gradient(90deg, #d53a9d,#5352d5 );
  -webkit-box-shadow: 0 0 20px #5352d5;
  box-shadow: 0 0 20px #5352d5;
  color: rgb(255, 255, 255);
  text-shadow: 1px 1px 10px #d53a9d;
}