
The world is coming together for the game we love. Let’s make sure all children and teens are safe!
Whether you’re there to watch the game, work, or welcome travellers — be aware, trust your instincts, and share your concern if you think a child may be at risk. Your actions can help protect children from sexual exploitation.
Select if you’re a traveller or part of a business, and find out how you can make a difference.
Campaign Materials
Please enter your details to access materials and stay in touch about our campaign.
document.getElementById(‘business-form’).addEventListener(‘submit’, function(e) {
e.preventDefault();
const form = e.target;
const payload = {
first_name: form.first_name.value,
last_name: form.last_name.value,
email: form.email.value,
company_name: form.company_name.value,
company_location: form.company_location.value,
page_id: 214,
tag_id: 1001
};
console.log(‘Sending to server:’, payload);
fetch(‘/wp-json/nationbuilder/v2/push-test’, {
method: ‘POST’,
headers: { ‘Content-Type’: ‘application/json’ },
body: JSON.stringify(payload)
})
.then(async response => {
const status = response.status;
const text = await response.text();
console.log(‘Response:’, text);
try {
const json = JSON.parse(text);
console.log(‘Parsed JSON:’, json);
} catch (e) {
console.log(‘Response is not JSON’);
}
window.location.href = ‘https://trello.com/b/fYcuEeSn/weprotectchildren-fifa-campaign’;
})
.catch(err => {
console.error(‘Fetch error:’, err);
});
});
Travellers:
Businesses:
If Something Feels Wrong – Trust Your Instincts
You don’t need to be certain when something feels off. It’s often your instincts recognising when a child or young person might need help.
Look out for:
- Adults offering money, gifts, or alcohol to children.
- Children appearing fearful, disoriented, or under the influence.
- Inappropriate interactions between adults and children.
Remember:
- Any child – girls, boys, and teenagers – can be at risk.
- Every child behaves differently when uncomfortable or scared.
- Sexual exploitation of children and youth can happen anywhere — stadiums, hotels, restaurants, taxis, airports, or shopping areas.
If you see something concerning:
- Note WHAT happened, WHO was involved, and WHERE it occurred
- Click below to share through local reporting channels
United States
Canada
Mexico
| Number | About |
|---|---|
| 1-800-THE-LOST (1-800-843-5678) |
National Center for Missing & Exploited Children (NCMEC) |
| 1-855-FLA-SAFE | Florida – report Human Trafficking to law enforcement |
| 1-800-96-ABUSE | Florida – Human Trafficking Hotline |
| 305-FIX-STOP | Miami – Human Trafficking Hotline |
| FIFA’s Reporting Portal to report concerns in direct relation to FIFA’s activities and events. |
| Number | About |
|---|---|
| 1-833-900-1010 | Canadian Human Trafficking Hotline |
| (416) 808-7066 | Victim Services Toronto, provides case management, advocacy and crisis response for human trafficking survivors. |
| 1-800-668-6868 | Kids Help Phone, 24/7 support for young people (can guide to local services). |
| 1-866-658-9022 | Canadian Centre for Child Protection, National Portal for Reporting Online Child Sexual Exploitation. |
| FIFA’s Reporting Portal to report concerns in direct relation to FIFA’s activities and events. |
| Number | About |
|---|---|
| 911 | All emergency calls in Mexico. |
| 800.5533.000 | National Hotline Against Human Trafficking (phone and chat) |
| 998 167 9651 | Quintana Roo Reporting Trafficking and Exploitation of Children |
| 55 5346 2516 | Specialized Office for Crimes of Violence Against Women and Human Trafficking |
| FIFA’s Reporting Portal to report concerns in direct relation to FIFA’s activities and events. |
Join the #WeProtectChildren Campaign
This FIFA World Cup, get to know hotlines or organisations that can help to report suspected exploitation of children and teens. Ask hotels, accommodation, transport, and other service providers if they have child protection measures in place. Recognise businesses that are already making a positive change, such as Members of The Code, and encourage other businesses to act.
Download our campaign materials below and share them on your social media pages. As a traveller and customer, you can influence change for children.
Take the Lead in Protecting Children and Youth
When millions of visitors arrive for the World Cup, busy tourism spaces can be misused to exploit children. By staying alert and knowing what to look out for, your business can help stop this and reduce risks to your company. Protecting children also protects your business.
Whether you run a hotel, private accommodation, restaurant, bar, airline, taxi service, or shop, your team is on the front line of child protection.
Every staff member, every customer interaction, every observation can make a difference.
Join the #WeProtectChildren Campaign
- Download and share our free campaign materials to show your business is part of the team.
- Want to display your logo on our page as a supporter of child protection? Email us here: communications@ecpat.org
- Inspire your staff to spot warning signs and know how to respond.
Be Part of a Movement of Responsible Businesses
Take your commitment further and make child protection part of your business’ DNA.
Join The Code, a global initiative that helps travel and tourism companies take concrete action to protect children. As a member, your business will:
- Receive practical tools and training materials to identify and prevent child sexual exploitation.
- Be part of a global movement of leaders in responsible and sustainable tourism.
- Join an international network of businesses protecting children worldwide.
Preventing sexual exploitation is possible.
This FIFA World Cup, join travellers, businesses, and communities in keeping children safe.
Campaign Partners




















const openBtn = document.getElementById(‘business-open’);
const overlay = document.getElementById(‘modal-overlay’);
const closeBtn = document.getElementById(‘close-modal’);
const businessForm = document.getElementById(‘business-form’);
function switchTab(tab) {
var i;
var x = document.getElementsByClassName(“tb-section”);
for (i = 0; i < x.length; i++) {
x[i].style.display = "none";
}
document.getElementById(tab).style.display = "flex";
var tabs = document.getElementById('tbnav');
for (const t of tabs.children) {
t.classList.remove('active');
}
if(tab == 'travellers') {
document.getElementById('t-tab').classList.add('active');
} else if (tab == 'businesses') {
document.getElementById('b-tab').classList.add('active');
}
}
function countryTab(tab) {
var i;
var x = document.getElementsByClassName("country-info");
for (i = 0; i < x.length; i++) {
x[i].style.display = "none";
}
document.getElementById(tab).style.display = "flex";
var tabs = document.getElementById('countries');
for (const t of tabs.children) {
t.classList.remove('active');
}
switch (tab) {
case 'usa':
document.getElementById('usa-tab').classList.add('active');
break;
case 'canada':
document.getElementById('can-tab').classList.add('active');
break;
case 'mexico':
document.getElementById('mex-tab').classList.add('active');
break;
default:
break;
}
}
function openForm(form) {
overlay.classList.remove('hidden');
if(form == 'business') {
businessForm.classList.remove('hidden');
}
}
function closeForm() {
overlay.classList.add('hidden');
}
