        .footer-note {
            text-align: center;
            font-size: 0.75rem;
            color: #6b7280;
            margin-top: 18px;
        }

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 8px;
}

.btn-primary {
    background: #2b5cff;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
}

.btn-primary:hover {
    background: #1f4be0;
}

.btn-secondary {
    background: #2b5cff;
    color: #fff;
}

.btn-secondary:hover {
    background: #1f4be0;
}

.btn-danger {
    background: #dc2626;
    color: #fff;
}

.btn-danger:hover {
    background: #b91c1c;
}

.btn-block {
    width: 100%;
    text-align: center;
}



.checkbox-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    padding: 6px 8px;
    background: #f7f7f2;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
}

.checkbox-item input {
    margin: 0;
}

.checkbox-item.destaque {
    background: #e0e7ff;
    font-weight: 600;
}

.termos-group {
    margin-top: 20px;
}

.termos-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    line-height: 1.4;
}

.termos-label input {
    margin: 0;
}

.termos-label a {
    color: #2b5cff;
    text-decoration: underline;
    cursor: pointer;
}

.tooltip {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.tooltip-icon {
    background: #ccc;
    color: #000;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    text-align: center;
    font-size: 12px;
    cursor: pointer;
}

.tooltip-text {
    display: none;
    position: absolute;
    top: 120%;
    left: 0;
    background: #333;
    color: #fff;
    padding: 8px;
    font-size: 12px;
    border-radius: 6px;
    width: 240px;
    z-index: 10;
}

.tooltip:hover .tooltip-text {
    display: block;
}

.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 100;
}

.modal-content {
    background: #fff;
    max-width: 500px;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
}

        .close {
            margin-top: 16px;
            width: 100%;
            background: #111827;
            color: #fff;
            padding: 12px;
            border-radius: 10px;
            border: none;
            cursor: pointer;
        }

.iti {
    width: 100%;
}

.iti input {
    width: 100%;
    padding: 10px;
    font-size: 14px;
}

