@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css');


/* FUNDO ALFA MODAL */
.modal-info-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* CAIXA MODAL BACKGROUND */
.modal-info-background {
    background: #fff;
    border-radius: 16px;
    width: 510px;
    height: 360.0010070800781px;
    padding: 12px 20px;
    padding-top: 0px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding-right: 32px;
    padding-bottom: 32px;
    padding-left: 32px;
    gap: 32px;    
    opacity: 1;
}

/* CONTAINER BTN OK */
.modal-info-footer-btn-ok {
    display: flex;
    justify-content: space-around;
    margin-top: 50px;
}

/* BOTAO OK */
.modal-info-btn-ok {
    background-color: #4F70A6;
    color: white;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 80px;
    /* limita o tamanho máximo */
    height: auto;
    padding: 8px 12px;
    /* controla altura automaticamente */
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    /* responsivo */
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}

.modal-info-btn-ok:hover {
    background-color: #283853;

}



.modal-iframe{
    width: 800px;       /* Largura total do container */
    height: 350px;     /* Altura fixa */
    border: 2px solid #8F8F8F; /* Borda personalizada */
    border-radius: 8px;     /* Bordas arredondadas */
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);

}

/* MENSAGEM DO MODAL */
.modal-info-mensagem {
    color: #666;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    margin-top: 30px
}

.modal-info-icon {
    content: url('../question.png');
    width: 120px;
    height: 120px;
}