.container{
    display: flex;
        justify-content: center;
        margin-left: 5%;
        margin-right: 5%;
}

.media-row{
    display: flex;
    padding-top: 10px;
    overflow-x: auto;
   
}


.medias .media-row:last-of-type {
  padding-bottom: 30px;
}

.medias:only-child {
   padding-top: 50px;
}

.container-media{
    width: 70%;
    height: 88vh;
}
.details {
    width: 25%;
    flex-direction: column;
    display: flex
;
    justify-content: center;
    align-content: center;
  

}
.client{
    width: fit-content;
}

.client h1 {
    background-image: url('../images/element-1.png'); 
    background-position: center; 
    background-repeat: no-repeat; 
    background-size: contain; 
   padding: 8px;
  position: relative;
  left: -8px;
    color: #f1ede5;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
 
}


.medias {
    overflow-y: auto;
    height: 87vh;
}

/* Estiliza a barra de rolagem */
.medias::-webkit-scrollbar {
    width: 0px; /* Largura da barra de rolagem */
    background-color: #f4f4f400; /* Cor de fundo da área da barra */
}

/* Estiliza a "track" da barra de rolagem */
.medias::-webkit-scrollbar-track {
    background: #eaeaea; /* Cor do trilho */
    border-radius: 0px; /* 

.media-item img{
    width: 100%;
}


.media-row {
    display: flex;
    padding-top: 10px;
    overflow-x: auto;
    align-items: stretch; /* Força todos os elementos a terem a mesma altura */
}

.media-item {
  
    flex: 1;  /* Faz com que cada item ocupe o mesmo espaço */
    margin-right: 10px; /* Ajuste para espaçamento entre os itens */
    position: relative;
}

.media-item img {
    width: 100%; /* Largura ocupa todo o contêiner */
    height: auto; /* Altura ajusta-se automaticamente para manter a proporção */
    object-fit: contain; /* Mantém a proporção da imagem dentro do contêiner */
    max-height: 90vh; /* Opcional: define uma altura máxima para evitar que a imagem cresça demais */
    display: block; /* Remove qualquer espaço extra abaixo da imagem */
    cursor: zoom-in;
    border-radius: 12px;
}



.media-item iframe {
    width: 100%;       /* Ocupa toda a largura do contêiner */
    aspect-ratio: 16/9; /* Mantém a proporção 16:9 */
    height: auto;      /* Ajusta a altura automaticamente */
    border: none;      /* Remove bordas, se necessário */
    background-color: #333;
    border-radius: 12px;
}


*::-webkit-scrollbar {
    width: 0px;
}

* {
    scrollbar-width: none; /* Esconde a barra de rolagem */
    scrollbar-color: transparent transparent; /* Remove as cores da barra */
}
.media-item img {
    width: 100%;
    height: auto;
  
}
.expand-text svg{
    color: white;   
}
.expand-text {
    position: absolute;
    bottom: 10px;
    left: 50%;         
    background-color: rgba(255, 255, 255, 0.562);
    color: white;         /* Posiciona o texto no centro horizontal */
    transform: translateX(-50%); /* Ajusta a posição para que o centro do texto coincida com o centro da imagem */
    width: 24px;
  height: 24px;
    padding: 5px;
    font-size: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    border-radius: 13px;
}
.media-item:hover .expand-text {
    opacity: 1;
}




#page-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f1ede5; 
    z-index: 9999;
    opacity: 1; /* Totalmente visível */
    pointer-events: none; /* Permite clicar nos elementos por baixo quando invisível */
    transition: opacity 1s ease; /* Transição suave para desaparecer */
}

#page-overlay.hidden {
    opacity: 0; /* Totalmente invisível */
    pointer-events: none; /* Garante que não interfira na interação com a página */
}




.client h1{
    font-family: roboto;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 300;
    
}




#header {
  
    transition: opacity 0.3s ease; /* Transição suave para opacidade */
}


/* Animação de shake */
@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    50% { transform: translateX(10px); }
    75% { transform: translateX(-10px); }
    100% { transform: translateX(0); }
}

.shake {
    animation: shake 0.5s ease-in-out;
}

#password-status {
    position: absolute;
    right: 51px;
    width: 92px;
    top: 9px;
    z-index: 100;
}

.password-input {
    position: relative;

    display: flex;
    padding-top: 24px;
    justify-content: center;
    
}

.password-input #input {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-64%, -43%) rotate(1deg);
    z-index: 0;
    width: 349px;
    padding-top: 7px;
}

#password{
    width: 185px;
    background-color: #ffffff00;
    border: none;
    z-index: 5;
    position: relative;
}

#password[type="password"]:focus {
    background-color: #ff000000;
    border-color: rgba(33, 74, 255, 0);
    border: 0px solid #555;
    outline: none;
}


.password-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -75%);

 }
 

 #password-alert{
    position: absolute;
    color: red;
    font-size: 1.5em;
    margin-top: 20px;

 }
 
 #correct{
    position: absolute;
    color: #758622;
    font-size: 1.5em;
    margin-top: 20px;

 }

 #verifyPasswordBtn{
    position: relative;
    z-index: 999;
  background-color: #333;
  color: #f1ede5;
  border: none;
  margin-left: 122px;
font-family: plunct;
  font-size: 18px;
  margin-bottom: 7px;
  cursor: pointer;
 }

 #verifyPasswordBtn:hover{
    opacity: 50%;
 }

 #verifyPasswordBtn:active{
    opacity: 30%;
 }

 .password-input #next {
   right: -50;
    position: absolute;
 }

 .password-input #back {
 
    position: absolute;
    left: -100;
 }

 .password-input #next, .password-input #back {
    font-size: 50px;
    margin: 0;
    top: 12px;
 }

 .password-input #next:hover, .password-input #back:hover{
    color: #d92b2b;
    cursor: pointer;
   
 }

 .navigate-button-two{
    position: absolute;
    top: 10%;
    right: 10%;
}
 .password-container{
    min-width: 320px;
 }
 .password-container h1 {
    font-size: 25px;
 }
@media screen and (max-width: 700px){
    .password-input #next {
        right: 30%;
        top: 185px;
    }
    .password-input #back{
        left: 33%;
        top: 185px;
        
    }
    .password-container {
       
        transform: translate(-50%, -118%);
    }
}

@media screen and (max-width: 520px){
    #password {
        width: 124px;
      
    }
    .password-input #input {
        left: 50%;
        transform: translate(-68%, -43%) rotate(1deg);
        z-index: 0;
        width: 224px;
        height: 70px;
    }
    #verifyPasswordBtn {
        position: relative;
        z-index: 999;
        background-color: #333;
        color: #f1ede5;
        border: none;
        margin-left: 71px;
        font-family: plunct;
        font-size: 18px;
        margin-bottom: 7px;
        cursor: pointer;
    }
    .password-container h1 {
        font-size: 15px;
        display: flex;
        justify-content: flex-start;
        padding-left: 37px;
    }
    #password-status {
     
        right: 89px;
      
    }
    #password-alert {
        font-size: 1.2em;
        left: 16px;
    }
}