/* Estilo global */
body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', Arial, sans-serif;
}

/* Conteúdo da página */
.iframe-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.2225%;
    padding-bottom: 0;
    /*box-shadow: 0 2px 8px 0 rgba(63,69,81,0.16);*/
    margin-top: 1.6em;
    margin-bottom: 0.9em;
    overflow: hidden;
    border-radius: 8px;
    will-change: transform;
}

.responsive-iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: none;
}

/* Estilo do popup */
.popup {
    /*width: 450px;*/
    min-width: 300px;
    max-width: 450px;
    width: 80%;
    /*height: 300px;*/
    /*min-height: 100px;
    max-height: 150px;
    height: 16.6%;*/
    background-color: rgb(226, 230, 9);
    border-radius: 10px;
    border: 2px solid #000;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: absolute;
    /*position: fixed;*/
    /*top: 120px;  /* 50px from the top */
    /*right: 50x;  /* 30px from the right */
    top: 20%;
    left: 10%;
    /*transform: translate(-50%, -50%); */ 
    /*padding: 15px;*/
    z-index: 999;    
    /*text-align: center;
    cursor: move;
    user-select: none;*/
}

.popup-header {
    font-family: 'Roboto', sans-serif;
    background-color: rgb(236, 235, 243);
    color: rgb(14, 13, 13);
    padding: 5px;
    text-align: center;
    position: relative;
}

.popup h2 {
    margin: 0 0 10px;
    font-size: 16px;
}

.popup p {
    margin: 0 0 10px;
    font-size: 14px;
}

/* Botão "X" de fechar */
.close-btn {
    position: absolute;
    top: 0;
    right: 0;
    background: transparent;
    border: none;
    color: rgb(14, 13, 13);
    font-size: 16px;
    cursor: pointer;
}

/* Fundo escuro do overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(236, 235, 243);
    /*z-index: 1000;*/
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
}

.popup-content {
    font-family: 'Roboto', sans-serif;
    background-color: rgb(236, 235, 243);
    color: rgb(10, 10, 10);
    padding: 5px;
    text-align: center;
}

/* Ocultar popup inicialmente */
.hidden {
    /*display: none;*/
    visibility: hidden;
}

.menu {
    display: flex;
    justify-content: space-evenly;
    background-color: rgb(201, 198, 235);
    margin-top: 0px;
    margin-bottom: 0px;
}

.menususp {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: black;
    color: white;
    text-align: center;
    padding: 10px 0;
    z-index: 1000; /* Garante que o menu fique sobreposto aos outros elementos */
}

.content {
    margin-top: 60px; /* Adiciona um espaço para o conteúdo não ficar escondido atrás do menu */
    padding: 20px;
}

.menu a {
    flex: 1;
    padding: 20px;
    color: rgb(248, 247, 247);
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto', Arial, sans-serif;
}
.menu a:hover {
    background-color: #2f06e6;
}
@media (max-width: 600px) {
    .menu {
        flex-direction: column;
    }
}

.popup .image-container {
    width: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.popup-image {
    flex-grow: 1;
    display: block;
    width: 100%;
    height: auto;
}

.image-container {
    display: flex;
    justify-content: center;  /* Centraliza horizontalmente */
    align-items: center;      /* Centraliza verticalmente, se necessário */
    height: 100%;             /* Opcional: ajuste a altura conforme necessário */
}

.centered-image {
    max-width: 100%;          /* Garante que a imagem não ultrapasse a largura do contêiner */
    height: auto;             /* Mantém a proporção da imagem */
}
