/* ─── NAVBAR ─── */
.navbar {
    background: var(--bg);
    border-bottom: 1px solid rgba(0,0,0,.07);
    padding: 14px 0;
}

.nav-link {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: normal;
    font-style: normal;
    color: #5a3a3a;
    padding-left: 10px !important;
}

    .nav-link:hover, .nav-link.active {
        color: var(--red) !important;
    }

.dropdown-menu {
    border: none;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    border-radius: 10px;
    padding: 8px 0;
    background: var(--bg);
}

.dropdown-item {
    font-size: .9rem;
    color: var(--muted);
    padding: 8px 20px;
}

    .dropdown-item:hover {
        color: var(--red);
        background: rgba(155,34,38,.04);
    }

.navbar-toggler {
    border: none;
}

    .navbar-toggler:focus {
        box-shadow: none;
    }

/* ─── FOOTER ─── */
footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 52px 0 0;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0,0,0,.06);
    border: 1px solid rgba(0,0,0,.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 1rem;
    margin-right: 6px;
    transition: background .2s, transform .2s;
}

    .social-btn:hover {
        background: rgba(0,0,0,.12);
        transform: translateY(-2px);
        color: var(--text);
    }

.footer-col-title {
    font-weight: 500;
    font-size: .95rem;
    color: var(--text);
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    font-size: .88rem;
    color: var(--muted);
    margin-bottom: 10px;
    transition: color .2s;
}

    .footer-links a:hover {
        color: var(--red);
    }

.footer-bottom {
    margin-top: 48px;
    border-top: 1px solid var(--border);
    padding: 18px 0;
    text-align: center;
    font-size: .8rem;
    color: var(--muted);
}

/* ─── MODAL OVERLAY ─── */
.modal-backdrop.show {
    opacity: .55;
}

/* ─── MODAL ─── */
.modal-dialog {
    max-width: 480px;
    margin: auto;
    overflow: visible !important;
}

.modal-content {
    border: none;
    border-radius: 24px;
    padding: 0;
    overflow: visible;
    box-shadow: 0 20px 60px rgba(0,0,0,.18);
    overflow: visible !important;
}

/* ─── ÍCONE FLUTUANTE ─── */
.modal-icon-wrap {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(145deg,#007bff,#0053c4);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 28px #007bff73;
    z-index: 10;
    border: 4px solid #ffffff;
}

    .modal-icon-wrap i {
        font-size: 2rem;
        color: #fff;
        font-weight: 900;
    }

/* ─── MODAL BODY ─── */
.modal-body {
    padding: 56px 36px 32px;
    text-align: center;
    position: relative;
}

/* badge aviso */
.badge-aviso {
    display: inline-block;
    background: #fdecea;
    color: #b91c1c;
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    border-radius: 30px;
    padding: 6px 18px;
    margin-bottom: 18px;
    line-height: 1.4;
}

.modal-title-custom {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 14px;
}

.modal-desc {
    font-size: 1rem;
    color: #334155;
    line-height: 1.75;
    margin-bottom: 20px;
}

/* lista */
.fraud-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    text-align: left;
}

    .fraud-list li {
        font-size: 1rem;
        color: #475569;
        line-height: 1.5;
        padding: 6px 0 6px 18px;
        position: relative;
    }

        .fraud-list li::before {
            content: "•";
            color: #4a6cf7;
            position: absolute;
            left: 0;
            top: 6px;
        }

.modal-footer-text {
    font-size: 1rem;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 28px;
}

/* ─── BOTÕES ─── */
.modal-footer-custom {
    display: flex;
    gap: 12px;
    justify-content: center;
    padding: 0 36px 32px;
}

.btn-canais {
    flex: 1;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 13px 20px;
    font-size: .92rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: background .2s, transform .15s;
    cursor: pointer;
    flex: none;
    width: 180px;
}

    .btn-canais:hover {
        background: #005ed0;
        transform: translateY(-2px);
        box-shadow: 0 14px 30px #007bff8c;
    }

.btn-entendi {
    flex: 0 0 auto;
    background: transparent;
    color: #444;
    border: 1.5px solid #ddd;
    border-radius: 12px;
    padding: 13px 24px;
    font-size: .92rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: border-color .2s, color .2s;
    cursor: pointer;
}

    .btn-entendi:hover {
        background: #e8eeff;
        border-color: #007bff;
        color: #007bff;
    }

/* ─── CLOSE ─── */
.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #aaa;
    cursor: pointer;
    transition: color .2s;
    line-height: 1;
    z-index: 1056
}

    .modal-close:hover {
        color: #333;
    }
