Elena Anfossi

Lead Mentor -

@

@

transformation.space

transformation.space

With a Master's degree in Communication, Organization, and Leadership from Universidade Católica Portuguesa and a Bachelor's in Tourism Sciences from Università di Pisa, I am passionate about the power of communication and digital marketing to create tangible value for both businesses and society.

I am the Co-Founder and Social Media Manager at Brave Digital Marketing, where we help companies grow their brand and attract new clients through data-driven strategies in social media, paid advertising, and creative content. Brave was born with the idea of combining the flexibility and expertise of freelance professionals with the structure and vision of an agency, offering cost-effective solutions and delivering measurable growth.

At Brave, I focus on designing impactful social media strategies with a sales-oriented approach that combine creativity with performance and building authentic connections between brands and their audiences.

Previously, I worked as a Digital Marketing Expert and at TikTok for Business (Genpact), managing a B2B client portfolio and guiding them through onboarding, strategy development, campaign launch, and ongoing optimization. This experience honed my ability to balance creativity with analytical rigor to deliver measurable results. I managed over +1M€ budget and realised +1000 consultancies to SMEs.

Earlier in my career, as Italian Sales Country Manager at We Translate On Time, I opened a new office, optimized operations by reducing costs by 30%, and increased profit per sale. I also curated cultural and editorial projects, leveraging my organizational and leadership skills.

Chat on WhatsApp
  
import requests

url = "https://api.firecrawl.dev/v2/map"

payload = {
  "url": "https://thetransformation.space",
  "limit": 5000,
  "includeSubdomains": False,
  "sitemap": "include",
  "origin": "website"
}

headers = {
    "Authorization": "Bearer fc-a4db1c5dc5ec47e79a4e4164781971ad",
    "Content-Type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.json())