#table {
    margin-left: auto;
    margin-right: auto;
    font-family: Calibri;
    color: #26665D;
    font-size: 25px;
    text-align: center; 
    border-collapse: collapse;
    width: 100% !important;;
    }

#table td, th {
    border: 0px solid #dddddd;
    font-family: Calibri;
    font-size: 25px;
    text-align: center;
    padding: 5px;
    vertical-align: middle;
    }

#imagem{
    float:none; 
    width: auto;
    position:0;
    margin: 0px 0px 0px 0px;
    height: 450px;
    border: 0px solid;
    background-image: url(../img/banner.jpg);
    background-size: 100% 90%;
    background-repeat: no-repeat;
    background-position: top center;
}

.tbl1 {	
    border: 0px dotted #000;
    width: 400px; 
    height: 100px; 
    text-align: left;
}
.tbl2 {	
    border: 0px dotted #000;
    width: 100px; 
    height: 100px; 
    text-align: right;
}
.tb3 { 
        border: 0px solid #000; 
        width: 790px; 
        height: 10px; 
        text-align: right;
    }

.tbi {	
    border: 1px dotted #000;
    width: 390px; 
    height: 100px; 
    text-align: left;
}

.tbb {
    border: 0px solid #000; 
    width: 9px; 
    height: 100px; 
}

.blank{
    border: 0px solid #000; 
    width: 140px; 
    height: 10px; 
}
.blank2{
    border: 0px solid #000; 
    width: 125px; 
    height: 10px; 
}

/*Configuração do PopUp*/
.popup-overlay {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8); /* Fundo mais escuro*/
}

/* Container do conteúdo*/
.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centralizando */

    width: 90%;        /* Largura responsiva para celular */
    max-width: 700px;  /* LARGURA MÁXIMA*/

    background: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.5);
    text-align: center;
}

/* Ajuste da imagem dentro do popup */
.popup-content img {
    width: 100%;      /* Ajusta à largura do container (400px) */
    height: auto;     /* Mantém a proporção */
    display: block;
    margin: 0 auto;
}

/* Botão de fechar (X) */
.close-btn {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #ff0000;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    line-height: 30px;
    cursor: pointer;
    font-weight: bold;
    z-index: 10001;
}