/* Overlay escondido por padrão */
.bradesco-gol-c-overlay {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    display: none; 
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.65);
    z-index: 999999;
}

/* Quando aberto */
.bradesco-gol-c-overlay--open {
    display: flex;
}

/* Modal */
.bradesco-gol-c-modal {
    position: relative;
    background: #fff;
    width: 90%;
    max-width: 480px;
    border-radius: 5px;
    padding: 46px 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}

.bradesco-gol-c-modal::after{
    content: "";
    display: block;
    width: 100%;
    height: 10px;
    background-color: #E1173F;
    position: absolute;
    bottom: 0;
    left: 0;
}

/* Botão fechar */
.bradesco-gol-c-closed {
    position: absolute;
    top: 10px;
    right: 16px;
    background: none;
    border: none;
    color: #3b69ff;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

/* Título */
.bradesco-gol-title {
    color: #E1173F;
    font-size: 21px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Texto */
.bradesco-gol-text {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 24px;
}

/* Subtexto */
.bradesco-gol-subtext {
    font-size: 11px;
    color: #555;
}

.bradesco-gol-subtext a {
    font-weight: bold;
    text-decoration: none;
    color:#3b69ff;
}

/* Travar scroll */
.bradesco-gol-modal-open {
    overflow: hidden;
}