Spaces:
Running
Running
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>GameOn LatAm | Gaming Advertising & Consulting</title> | |
<script src="https://cdn.tailwindcss.com"></script> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> | |
<script> | |
tailwind.config = { | |
theme: { | |
extend: { | |
colors: { | |
primary: '#FF5E14', | |
secondary: '#1E1E2D', | |
accent: '#00FFA3', | |
}, | |
fontFamily: { | |
'sans': ['"Exo 2"', 'sans-serif'], | |
}, | |
} | |
} | |
} | |
</script> | |
<style> | |
@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;500;600;700;800&display=swap'); | |
body { | |
font-family: 'Exo 2', sans-serif; | |
background-color: #0F0F1A; | |
color: white; | |
} | |
.hero-gradient { | |
background: radial-gradient(circle at 20% 50%, rgba(255,94,20,0.15) 0%, rgba(31,31,45,0) 50%); | |
} | |
.service-card:hover { | |
transform: translateY(-10px); | |
box-shadow: 0 20px 25px -5px rgba(255, 94, 20, 0.2), 0 10px 10px -5px rgba(255, 94, 20, 0.04); | |
} | |
.pixel-border { | |
position: relative; | |
} | |
.pixel-border::before { | |
content: ""; | |
position: absolute; | |
inset: 0; | |
border: 2px solid #FF5E14; | |
border-image: repeating-linear-gradient(45deg, #FF5E14, #FF5E14 5px, transparent 5px, transparent 10px) 5; | |
} | |
.nav-link::after { | |
content: ''; | |
position: absolute; | |
width: 0; | |
height: 2px; | |
bottom: -2px; | |
left: 0; | |
background-color: #FF5E14; | |
transition: width 0.3s ease; | |
} | |
.nav-link:hover::after { | |
width: 100%; | |
} | |
.stats-item { | |
position: relative; | |
} | |
.stats-item::after { | |
content: ''; | |
position: absolute; | |
right: 0; | |
top: 50%; | |
transform: translateY(-50%); | |
width: 1px; | |
height: 60%; | |
background: rgba(255,255,255,0.1); | |
} | |
.stats-item:last-child::after { | |
display: none; | |
} | |
</style> | |
</head> | |
<body class="min-h-screen"> | |
<!-- Header/Navigation --> | |
<header class="fixed w-full z-50 bg-secondary/90 backdrop-blur-md border-b border-gray-800"> | |
<div class="container mx-auto px-6 py-4"> | |
<div class="flex justify-between items-center"> | |
<div class="flex items-center"> | |
<div class="w-12 h-12 rounded-full bg-primary flex items-center justify-center mr-3"> | |
<i class="fas fa-gamepad text-2xl text-white"></i> | |
</div> | |
<a href="#" class="text-2xl font-bold bg-gradient-to-r from-primary to-accent bg-clip-text text-transparent">GameOn<span class="text-white">LatAm</span></a> | |
</div> | |
<nav class="hidden md:flex space-x-8"> | |
<a href="#services" class="nav-link relative text-white hover:text-primary transition duration-300">Services</a> | |
<a href="#about" class="nav-link relative text-white hover:text-primary transition duration-300">About</a> | |
<a href="#clients" class="nav-link relative text-white hover:text-primary transition duration-300">Clients</a> | |
<a href="#contact" class="nav-link relative text-white hover:text-primary transition duration-300">Contact</a> | |
<div class="flex items-center ml-4"> | |
<span class="mr-2 text-gray-400">EN</span> | |
<div class="w-8 h-5 bg-primary rounded-full flex items-center justify-end px-1"> | |
<div class="w-3 h-3 bg-white rounded-full"></div> | |
</div> | |
<span class="ml-2 text-gray-400">ES</span> | |
</div> | |
</nav> | |
<button class="md:hidden text-white focus:outline-none"> | |
<i class="fas fa-bars text-2xl"></i> | |
</button> | |
</div> | |
</div> | |
</header> | |
<!-- Hero Section --> | |
<section class="hero-gradient pt-32 pb-20 px-6"> | |
<div class="container mx-auto flex flex-col lg:flex-row items-center"> | |
<div class="lg:w-1/2 mb-12 lg:mb-0"> | |
<h1 class="text-4xl md:text-6xl font-bold mb-6 leading-tight"> | |
<span class="text-primary">Level Up</span> Your Gaming <span class="text-accent">Marketing</span> in Latin America | |
</h1> | |
<p class="text-xl text-gray-300 mb-8 max-w-2xl"> | |
We help gaming brands conquer the Latin American market through specialized advertising, strategic consulting, creative solutions, and top-tier talent. | |
</p> | |
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4"> | |
<a href="#contact" class="bg-primary hover:bg-primary/90 text-white font-bold py-3 px-8 rounded-full transition duration-300 text-center"> | |
Get Started <i class="fas fa-arrow-right ml-2"></i> | |
</a> | |
<a href="#services" class="border-2 border-primary text-primary hover:bg-primary/10 font-bold py-3 px-8 rounded-full transition duration-300 text-center"> | |
Our Services | |
</a> | |
</div> | |
<div class="mt-12 flex items-center space-x-6"> | |
<div class="flex -space-x-2"> | |
<img src="https://randomuser.me/api/portraits/women/44.jpg" class="w-10 h-10 rounded-full border-2 border-secondary" alt="Client"> | |
<img src="https://randomuser.me/api/portraits/men/32.jpg" class="w-10 h-10 rounded-full border-2 border-secondary" alt="Client"> | |
<img src="https://randomuser.me/api/portraits/women/68.jpg" class="w-10 h-10 rounded-full border-2 border-secondary" alt="Client"> | |
</div> | |
<div> | |
<p class="text-gray-300">Trusted by 100+ gaming companies</p> | |
<div class="flex items-center mt-1"> | |
<i class="fas fa-star text-yellow-400 mr-1"></i> | |
<i class="fas fa-star text-yellow-400 mr-1"></i> | |
<i class="fas fa-star text-yellow-400 mr-1"></i> | |
<i class="fas fa-star text-yellow-400 mr-1"></i> | |
<i class="fas fa-star text-yellow-400 mr-1"></i> | |
<span class="text-gray-400 ml-2">5.0</span> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="lg:w-1/2 relative"> | |
<div class="relative z-10"> | |
<img src="https://images.unsplash.com/photo-1612287230202-811ffceb93d9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1471&q=80" alt="Gaming in Latin America" class="rounded-xl shadow-2xl border border-gray-800 transform rotate-2"> | |
<div class="absolute -bottom-6 -left-6 w-32 h-32 bg-accent rounded-xl -z-10"></div> | |
</div> | |
<div class="absolute top-1/2 -right-20 transform -translate-y-1/2 bg-secondary p-6 rounded-xl shadow-lg border border-gray-800 hidden xl:block"> | |
<div class="text-center"> | |
<div class="text-3xl font-bold text-primary mb-2">+300%</div> | |
<div class="text-gray-300">Average ROI for our clients</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Stats Section --> | |
<section class="py-12 bg-secondary"> | |
<div class="container mx-auto px-6"> | |
<div class="grid grid-cols-2 md:grid-cols-4 gap-6"> | |
<div class="stats-item text-center py-4"> | |
<div class="text-4xl font-bold text-primary mb-2">15+</div> | |
<div class="text-gray-300 uppercase text-sm tracking-wider">Countries Covered</div> | |
</div> | |
<div class="stats-item text-center py-4"> | |
<div class="text-4xl font-bold text-primary mb-2">120M+</div> | |
<div class="text-gray-300 uppercase text-sm tracking-wider">Gamers Reached</div> | |
</div> | |
<div class="stats-item text-center py-4"> | |
<div class="text-4xl font-bold text-primary mb-2">8+</div> | |
<div class="text-gray-300 uppercase text-sm tracking-wider">Years Experience</div> | |
</div> | |
<div class="stats-item text-center py-4"> | |
<div class="text-4xl font-bold text-primary mb-2">95%</div> | |
<div class="text-gray-300 uppercase text-sm tracking-wider">Client Retention</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Services Section --> | |
<section id="services" class="py-20 px-6"> | |
<div class="container mx-auto"> | |
<div class="text-center mb-16"> | |
<span class="inline-block px-3 py-1 text-sm font-semibold text-primary bg-primary/10 rounded-full mb-4">OUR SERVICES</span> | |
<h2 class="text-3xl md:text-4xl font-bold mb-4">Specialized Solutions for <span class="text-primary">Gaming Brands</span></h2> | |
<p class="text-xl text-gray-300 max-w-3xl mx-auto">We offer a complete suite of services tailored to the unique needs of gaming companies expanding in Latin America.</p> | |
</div> | |
<div class="grid md:grid-cols-2 lg:grid-cols-4 gap-8"> | |
<!-- Advertising Service --> | |
<div class="service-card bg-secondary rounded-xl p-8 border border-gray-800 transition duration-300 hover:border-primary"> | |
<div class="w-16 h-16 bg-primary/10 rounded-lg flex items-center justify-center mb-6 text-primary"> | |
<i class="fas fa-bullhorn text-3xl"></i> | |
</div> | |
<h3 class="text-xl font-bold mb-3">Gaming Advertising</h3> | |
<p class="text-gray-300 mb-4">Hyper-targeted campaigns across Twitch, YouTube Gaming, TikTok, and esports platforms to reach Latin American gamers.</p> | |
<ul class="space-y-2 text-gray-400"> | |
<li class="flex items-center"> | |
<i class="fas fa-check-circle text-primary mr-2"></i> Influencer partnerships | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-check-circle text-primary mr-2"></i> Programmatic buying | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-check-circle text-primary mr-2"></i> Localized creatives | |
</li> | |
</ul> | |
</div> | |
<!-- Consulting Service --> | |
<div class="service-card bg-secondary rounded-xl p-8 border border-gray-800 transition duration-300 hover:border-primary"> | |
<div class="w-16 h-16 bg-primary/10 rounded-lg flex items-center justify-center mb-6 text-primary"> | |
<i class="fas fa-chart-line text-3xl"></i> | |
</div> | |
<h3 class="text-xl font-bold mb-3">Business Consulting</h3> | |
<p class="text-gray-300 mb-4">Market entry strategies, competitive analysis, and monetization models tailored for LATAM gaming ecosystems.</p> | |
<ul class="space-y-2 text-gray-400"> | |
<li class="flex items-center"> | |
<i class="fas fa-check-circle text-primary mr-2"></i> Market research | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-check-circle text-primary mr-2"></i> Localization strategy | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-check-circle text-primary mr-2"></i> Revenue optimization | |
</li> | |
</ul> | |
</div> | |
<!-- Creative Service --> | |
<div class="service-card bg-secondary rounded-xl p-8 border border-gray-800 transition duration-300 hover:border-primary"> | |
<div class="w-16 h-16 bg-primary/10 rounded-lg flex items-center justify-center mb-6 text-primary"> | |
<i class="fas fa-paint-brush text-3xl"></i> | |
</div> | |
<h3 class="text-xl font-bold mb-3">Creative Production</h3> | |
<p class="text-gray-300 mb-4">High-impact creatives that resonate with Latin American gaming culture, from trailers to in-game assets.</p> | |
<ul class="space-y-2 text-gray-400"> | |
<li class="flex items-center"> | |
<i class="fas fa-check-circle text-primary mr-2"></i> Game trailers | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-check-circle text-primary mr-2"></i> Esports content | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-check-circle text-primary mr-2"></i> Social media assets | |
</li> | |
</ul> | |
</div> | |
<!-- Staffing Service --> | |
<div class="service-card bg-secondary rounded-xl p-8 border border-gray-800 transition duration-300 hover:border-primary"> | |
<div class="w-16 h-16 bg-primary/10 rounded-lg flex items-center justify-center mb-6 text-primary"> | |
<i class="fas fa-users text-3xl"></i> | |
</div> | |
<h3 class="text-xl font-bold mb-3">Gaming Talent</h3> | |
<p class="text-gray-300 mb-4">Access to top gaming professionals in Latin America - from community managers to game developers.</p> | |
<ul class="space-y-2 text-gray-400"> | |
<li class="flex items-center"> | |
<i class="fas fa-check-circle text-primary mr-2"></i> Recruitment | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-check-circle text-primary mr-2"></i> Staff augmentation | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-check-circle text-primary mr-2"></i> Team outsourcing | |
</li> | |
</ul> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- About Section --> | |
<section id="about" class="py-20 px-6 bg-secondary"> | |
<div class="container mx-auto"> | |
<div class="flex flex-col lg:flex-row items-center"> | |
<div class="lg:w-1/2 mb-12 lg:mb-0 lg:pr-12"> | |
<span class="inline-block px-3 py-1 text-sm font-semibold text-primary bg-primary/10 rounded-full mb-4">WHY CHOOSE US</span> | |
<h2 class="text-3xl md:text-4xl font-bold mb-6">We Speak <span class="text-primary">Gamer</span> and <span class="text-accent">Latin American</span></h2> | |
<p class="text-gray-300 mb-6 text-lg"> | |
Founded by gamers for gamers, we bridge the gap between international gaming brands and the vibrant Latin American market. Our team consists of industry veterans who understand both the global gaming landscape and local cultural nuances. | |
</p> | |
<div class="space-y-4"> | |
<div class="flex"> | |
<div class="mr-4"> | |
<div class="w-12 h-12 rounded-full bg-primary/10 flex items-center justify-center text-primary"> | |
<i class="fas fa-globe-americas"></i> | |
</div> | |
</div> | |
<div> | |
<h4 class="font-bold mb-1">Local Expertise</h4> | |
<p class="text-gray-300">Teams in Brazil, Mexico, Argentina, and Colombia providing on-the-ground insights.</p> | |
</div> | |
</div> | |
<div class="flex"> | |
<div class="mr-4"> | |
<div class="w-12 h-12 rounded-full bg-primary/10 flex items-center justify-center text-primary"> | |
<i class="fas fa-gamepad"></i> | |
</div> | |
</div> | |
<div> | |
<h4 class="font-bold mb-1">Gaming Focus</h4> | |
<p class="text-gray-300">100% dedicated to gaming - no distractions with other verticals.</p> | |
</div> | |
</div> | |
<div class="flex"> | |
<div class="mr-4"> | |
<div class="w-12 h-12 rounded-full bg-primary/10 flex items-center justify-center text-primary"> | |
<i class="fas fa-bolt"></i> | |
</div> | |
</div> | |
<div> | |
<h4 class="font-bold mb-1">Agile Approach</h4> | |
<p class="text-gray-300">Fast-moving strategies adapted to the rapidly evolving LATAM gaming scene.</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="lg:w-1/2 relative"> | |
<div class="relative z-10"> | |
<img src="https://images.unsplash.com/photo-1542751371-adc38448a05e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Our Team" class="rounded-xl shadow-2xl border border-gray-800 transform -rotate-1"> | |
<div class="absolute -bottom-6 -right-6 w-32 h-32 bg-primary rounded-xl -z-10"></div> | |
</div> | |
<div class="absolute -top-10 -left-10 bg-accent p-4 rounded-lg shadow-lg border border-gray-800 hidden lg:block"> | |
<div class="text-center"> | |
<div class="text-2xl font-bold text-secondary mb-1">500+</div> | |
<div class="text-sm text-secondary">Campaigns Executed</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Clients Section --> | |
<section id="clients" class="py-20 px-6"> | |
<div class="container mx-auto"> | |
<div class="text-center mb-16"> | |
<span class="inline-block px-3 py-1 text-sm font-semibold text-primary bg-primary/10 rounded-full mb-4">OUR PARTNERS</span> | |
<h2 class="text-3xl md:text-4xl font-bold mb-4">Trusted by Leading <span class="text-primary">Gaming Brands</span></h2> | |
<p class="text-xl text-gray-300 max-w-3xl mx-auto">We've helped publishers, developers, and gaming platforms succeed across Latin America.</p> | |
</div> | |
<div class="grid grid-cols-2 md:grid-cols-3 lg:grid-cols-5 gap-8"> | |
<div class="bg-secondary rounded-xl p-8 flex items-center justify-center border border-gray-800 hover:border-primary transition duration-300"> | |
<img src="https://via.placeholder.com/150x60?text=Gaming+Publisher" alt="Client Logo" class="h-10 opacity-80 hover:opacity-100 transition duration-300"> | |
</div> | |
<div class="bg-secondary rounded-xl p-8 flex items-center justify-center border border-gray-800 hover:border-primary transition duration-300"> | |
<img src="https://via.placeholder.com/150x60?text=Esports+Org" alt="Client Logo" class="h-10 opacity-80 hover:opacity-100 transition duration-300"> | |
</div> | |
<div class="bg-secondary rounded-xl p-8 flex items-center justify-center border border-gray-800 hover:border-primary transition duration-300"> | |
<img src="https://via.placeholder.com/150x60?text=Game+Studio" alt="Client Logo" class="h-10 opacity-80 hover:opacity-100 transition duration-300"> | |
</div> | |
<div class="bg-secondary rounded-xl p-8 flex items-center justify-center border border-gray-800 hover:border-primary transition duration-300"> | |
<img src="https://via.placeholder.com/150x60?text=Gaming+Platform" alt="Client Logo" class="h-10 opacity-80 hover:opacity-100 transition duration-300"> | |
</div> | |
<div class="bg-secondary rounded-xl p-8 flex items-center justify-center border border-gray-800 hover:border-primary transition duration-300"> | |
<img src="https://via.placeholder.com/150x60?text=Hardware+Brand" alt="Client Logo" class="h-10 opacity-80 hover:opacity-100 transition duration-300"> | |
</div> | |
</div> | |
<div class="mt-16 bg-gradient-to-r from-primary to-accent rounded-2xl p-0.5"> | |
<div class="bg-secondary rounded-2xl p-8 md:p-12"> | |
<div class="flex flex-col md:flex-row items-center"> | |
<div class="md:w-2/3 mb-8 md:mb-0 md:pr-8"> | |
<h3 class="text-2xl md:text-3xl font-bold mb-4">Ready to Dominate Latin America?</h3> | |
<p class="text-gray-300 mb-6">Schedule a free consultation with our gaming specialists to discuss your LATAM strategy.</p> | |
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4"> | |
<a href="#contact" class="bg-primary hover:bg-primary/90 text-white font-bold py-3 px-8 rounded-full transition duration-300 text-center"> | |
Book a Call <i class="fas fa-calendar-alt ml-2"></i> | |
</a> | |
<a href="mailto:[email protected]" class="border-2 border-primary text-primary hover:bg-primary/10 font-bold py-3 px-8 rounded-full transition duration-300 text-center"> | |
Email Us <i class="fas fa-envelope ml-2"></i> | |
</a> | |
</div> | |
</div> | |
<div class="md:w-1/3"> | |
<div class="bg-secondary border border-gray-800 rounded-xl p-6 text-center"> | |
<div class="w-16 h-16 bg-primary/10 rounded-full flex items-center justify-center mx-auto mb-4 text-primary"> | |
<i class="fas fa-headset text-2xl"></i> | |
</div> | |
<h4 class="font-bold mb-2">24/7 Support</h4> | |
<p class="text-gray-300 text-sm">Our gaming specialists are available around the clock to support your campaigns.</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Testimonials Section --> | |
<section class="py-20 px-6 bg-secondary"> | |
<div class="container mx-auto"> | |
<div class="text-center mb-16"> | |
<span class="inline-block px-3 py-1 text-sm font-semibold text-primary bg-primary/10 rounded-full mb-4">CLIENT TESTIMONIALS</span> | |
<h2 class="text-3xl md:text-4xl font-bold mb-4">What <span class="text-primary">Gaming Leaders</span> Say</h2> | |
<p class="text-xl text-gray-300 max-w-3xl mx-auto">Hear from publishers and developers who've expanded successfully in Latin America with our help.</p> | |
</div> | |
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
<div class="bg-gray-900 rounded-xl p-8 border border-gray-800"> | |
<div class="flex items-center mb-6"> | |
<img src="https://randomuser.me/api/portraits/women/65.jpg" alt="Client" class="w-12 h-12 rounded-full mr-4"> | |
<div> | |
<h4 class="font-bold">Mariana Silva</h4> | |
<p class="text-gray-400 text-sm">Marketing Director, Game Publisher</p> | |
</div> | |
</div> | |
<p class="text-gray-300 mb-6 italic">"GameOn LatAm tripled our user acquisition in Brazil while reducing our CPA by 40%. Their understanding of local gaming culture was instrumental in adapting our creatives."</p> | |
<div class="flex"> | |
<i class="fas fa-star text-yellow-400 mr-1"></i> | |
<i class="fas fa-star text-yellow-400 mr-1"></i> | |
<i class="fas fa-star text-yellow-400 mr-1"></i> | |
<i class="fas fa-star text-yellow-400 mr-1"></i> | |
<i class="fas fa-star text-yellow-400 mr-1"></i> | |
</div> | |
</div> | |
<div class="bg-gray-900 rounded-xl p-8 border border-gray-800"> | |
<div class="flex items-center mb-6"> | |
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Client" class="w-12 h-12 rounded-full mr-4"> | |
<div> | |
<h4 class="font-bold">Carlos Mendez</h4> | |
<p class="text-gray-400 text-sm">CEO, Esports Organization</p> | |
</div> | |
</div> | |
<p class="text-gray-300 mb-6 italic">"Their staffing solutions helped us build an all-star LATAM community team that increased our regional engagement by 250% in just 6 months."</p> | |
<div class="flex"> | |
<i class="fas fa-star text-yellow-400 mr-1"></i> | |
<i class="fas fa-star text-yellow-400 mr-1"></i> | |
<i class="fas fa-star text-yellow-400 mr-1"></i> | |
<i class="fas fa-star text-yellow-400 mr-1"></i> | |
<i class="fas fa-star text-yellow-400 mr-1"></i> | |
</div> | |
</div> | |
<div class="bg-gray-900 rounded-xl p-8 border border-gray-800"> | |
<div class="flex items-center mb-6"> | |
<img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Client" class="w-12 h-12 rounded-full mr-4"> | |
<div> | |
<h4 class="font-bold">Ana Rodriguez</h4> | |
<p class="text-gray-400 text-sm">VP Growth, Mobile Gaming</p> | |
</div> | |
</div> | |
<p class="text-gray-300 mb-6 italic">"The market entry strategy they developed helped us avoid costly mistakes and establish strong local partnerships from day one."</p> | |
<div class="flex"> | |
<i class="fas fa-star text-yellow-400 mr-1"></i> | |
<i class="fas fa-star text-yellow-400 mr-1"></i> | |
<i class="fas fa-star text-yellow-400 mr-1"></i> | |
<i class="fas fa-star text-yellow-400 mr-1"></i> | |
<i class="fas fa-star text-yellow-400 mr-1"></i> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Contact Section --> | |
<section id="contact" class="py-20 px-6"> | |
<div class="container mx-auto"> | |
<div class="flex flex-col lg:flex-row"> | |
<div class="lg:w-1/2 mb-12 lg:mb-0 lg:pr-12"> | |
<span class="inline-block px-3 py-1 text-sm font-semibold text-primary bg-primary/10 rounded-full mb-4">GET IN TOUCH</span> | |
<h2 class="text-3xl md:text-4xl font-bold mb-6">Let's Talk About Your <span class="text-primary">LATAM Gaming</span> Strategy</h2> | |
<p class="text-gray-300 mb-8 text-lg"> | |
Whether you're looking to enter the Latin American market or optimize your existing presence, our gaming specialists are ready to help. | |
</p> | |
<div class="space-y-6"> | |
<div class="flex items-start"> | |
<div class="mr-4 mt-1"> | |
<div class="w-10 h-10 rounded-full bg-primary/10 flex items-center justify-center text-primary"> | |
<i class="fas fa-map-marker-alt"></i> | |
</div> | |
</div> | |
<div> | |
<h4 class="font-bold mb-1">Our Offices</h4> | |
<p class="text-gray-300">São Paulo, Mexico City, Buenos Aires, Bogotá</p> | |
</div> | |
</div> | |
<div class="flex items-start"> | |
<div class="mr-4 mt-1"> | |
<div class="w-10 h-10 rounded-full bg-primary/10 flex items-center justify-center text-primary"> | |
<i class="fas fa-envelope"></i> | |
</div> | |
</div> | |
<div> | |
<h4 class="font-bold mb-1">Email Us</h4> | |
<a href="mailto:[email protected]" class="text-gray-300 hover:text-primary transition duration-300">[email protected]</a> | |
</div> | |
</div> | |
<div class="flex items-start"> | |
<div class="mr-4 mt-1"> | |
<div class="w-10 h-10 rounded-full bg-primary/10 flex items-center justify-center text-primary"> | |
<i class="fas fa-phone-alt"></i> | |
</div> | |
</div> | |
<div> | |
<h4 class="font-bold mb-1">Call Us</h4> | |
<a href="tel:+525555123456" class="text-gray-300 hover:text-primary transition duration-300">+52 55 5512 3456</a> | |
</div> | |
</div> | |
</div> | |
<div class="mt-10"> | |
<h4 class="font-bold mb-4">Follow Us</h4> | |
<div class="flex space-x-4"> | |
<a href="#" class="w-10 h-10 rounded-full bg-secondary flex items-center justify-center text-gray-300 hover:text-primary hover:bg-primary/10 transition duration-300"> | |
<i class="fab fa-twitter"></i> | |
</a> | |
<a href="#" class="w-10 h-10 rounded-full bg-secondary flex items-center justify-center text-gray-300 hover:text-primary hover:bg-primary/10 transition duration-300"> | |
<i class="fab fa-linkedin-in"></i> | |
</a> | |
<a href="#" class="w-10 h-10 rounded-full bg-secondary flex items-center justify-center text-gray-300 hover:text-primary hover:bg-primary/10 transition duration-300"> | |
<i class="fab fa-instagram"></i> | |
</a> | |
<a href="#" class="w-10 h-10 rounded-full bg-secondary flex items-center justify-center text-gray-300 hover:text-primary hover:bg-primary/10 transition duration-300"> | |
<i class="fab fa-twitch"></i> | |
</a> | |
</div> | |
</div> | |
</div> | |
<div class="lg:w-1/2"> | |
<div class="bg-secondary rounded-xl p-8 border border-gray-800"> | |
<h3 class="text-2xl font-bold mb-6">Send Us a Message</h3> | |
<form> | |
<div class="grid grid-cols-1 md:grid-cols-2 gap-6 mb-6"> | |
<div> | |
<label for="name" class="block text-gray-300 mb-2">Your Name</label> | |
<input type="text" id="name" class="w-full bg-gray-900 border border-gray-800 rounded-lg px-4 py-3 focus:outline-none focus:ring-2 focus:ring-primary focus:border-transparent" placeholder="John Doe"> | |
</div> | |
<div> | |
<label for="company" class="block text-gray-300 mb-2">Company</label> | |
<input type="text" id="company" class="w-full bg-gray-900 border border-gray-800 rounded-lg px-4 py-3 focus:outline-none focus:ring-2 focus:ring-primary focus:border-transparent" placeholder="Game Studio"> | |
</div> | |
</div> | |
<div class="mb-6"> | |
<label for="email" class="block text-gray-300 mb-2">Email Address</label> | |
<input type="email" id="email" class="w-full bg-gray-900 border border-gray-800 rounded-lg px-4 py-3 focus:outline-none focus:ring-2 focus:ring-primary focus:border-transparent" placeholder="[email protected]"> | |
</div> | |
<div class="mb-6"> | |
<label for="service" class="block text-gray-300 mb-2">Service Interested In</label> | |
<select id="service" class="w-full bg-gray-900 border border-gray-800 rounded-lg px-4 py-3 focus:outline-none focus:ring-2 focus:ring-primary focus:border-transparent"> | |
<option value="">Select a service</option> | |
<option value="advertising">Gaming Advertising</option> | |
<option value="consulting">Business Consulting</option> | |
<option value="creative">Creative Production</option> | |
<option value="staffing">Gaming Talent</option> | |
</select> | |
</div> | |
<div class="mb-6"> | |
<label for="message" class="block text-gray-300 mb-2">Your Message</label> | |
<textarea id="message" rows="5" class="w-full bg-gray-900 border border-gray-800 rounded-lg px-4 py-3 focus:outline-none focus:ring-2 focus:ring-primary focus:border-transparent" placeholder="Tell us about your gaming project..."></textarea> | |
</div> | |
<button type="submit" class="w-full bg-primary hover:bg-primary/90 text-white font-bold py-4 px-6 rounded-lg transition duration-300"> | |
Send Message <i class="fas fa-paper-plane ml-2"></i> | |
</button> | |
</form> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Footer --> | |
<footer class="bg-secondary border-t border-gray-800 py-12 px-6"> | |
<div class="container mx-auto"> | |
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-12"> | |
<div> | |
<div class="flex items-center mb-6"> | |
<div class="w-10 h-10 rounded-full bg-primary flex items-center justify-center mr-3"> | |
<i class="fas fa-gamepad text-xl text-white"></i> | |
</div> | |
<a href="#" class="text-xl font-bold bg-gradient-to-r from-primary to-accent bg-clip-text text-transparent">GameOn<span class="text-white">LatAm</span></a> | |
</div> | |
<p class="text-gray-300 mb-6"> | |
The leading gaming marketing and consulting agency for Latin American markets. | |
</p> | |
<div class="flex space-x-4"> | |
<a href="#" class="text-gray-400 hover:text-primary transition duration-300"> | |
<i class="fab fa-twitter"></i> | |
</a> | |
<a href="#" class="text-gray-400 hover:text-primary transition duration-300"> | |
<i class="fab fa-linkedin-in"></i> | |
</a> | |
<a href="#" class="text-gray-400 hover:text-primary transition duration-300"> | |
<i class="fab fa-instagram"></i> | |
</a> | |
<a href="#" class="text-gray-400 hover:text-primary transition duration-300"> | |
<i class="fab fa-twitch"></i> | |
</a> | |
</div> | |
</div> | |
<div> | |
<h4 class="text-lg font-bold mb-6">Services</h4> | |
<ul class="space-y-3"> | |
<li><a href="#" class="text-gray-300 hover:text-primary transition duration-300">Gaming Advertising</a></li> | |
<li><a href="#" class="text-gray-300 hover:text-primary transition duration-300">Business Consulting</a></li> | |
<li><a href="#" class="text-gray-300 hover:text-primary transition duration-300">Creative Production</a></li> | |
<li><a href="#" class="text-gray-300 hover:text-primary transition duration-300">Gaming Talent</a></li> | |
<li><a href="#" class="text-gray-300 hover:text-primary transition duration-300">Esports Marketing</a></li> | |
</ul> | |
</div> | |
<div> | |
<h4 class="text-lg font-bold mb-6">Markets</h4> | |
<ul class="space-y-3"> | |
<li><a href="#" class="text-gray-300 hover:text-primary transition duration-300">Brazil</a></li> | |
<li><a href="#" class="text-gray-300 hover:text-primary transition duration-300">Mexico</a></li> | |
<li><a href="#" class="text-gray-300 hover:text-primary transition duration-300">Argentina</a></li> | |
<li><a href="#" class="text-gray-300 hover:text-primary transition duration-300">Colombia</a></li> | |
<li><a href="#" class="text-gray-300 hover:text-primary transition duration-300">Chile</a></li> | |
</ul> | |
</div> | |
<div> | |
<h4 class="text-lg font-bold mb-6">Resources</h4> | |
<ul class="space-y-3"> | |
<li><a href="#" class="text-gray-300 hover:text-primary transition duration-300">Blog</a></li> | |
<li><a href="#" class="text-gray-300 hover:text-primary transition duration-300">Case Studies</a></li> | |
<li><a href="#" class="text-gray-300 hover:text-primary transition duration-300">LATAM Gaming Reports</a></li> | |
<li><a href="#" class="text-gray-300 hover:text-primary transition duration-300">Careers</a></li> | |
<li><a href="#" class="text-gray-300 hover:text-primary transition duration-300">Contact Us</a></li> | |
</ul> | |
</div> | |
</div> | |
<div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center"> | |
<p class="text-gray-400 mb-4 md:mb-0">© 2023 GameOn LatAm. All rights reserved.</p> | |
<div class="flex space-x-6"> | |
<a href="#" class="text-gray-400 hover:text-primary transition duration-300">Privacy Policy</a> | |
<a href="#" class="text-gray-400 hover:text-primary transition duration-300">Terms of Service</a> | |
<a href="#" class="text-gray-400 hover:text-primary transition duration-300">Cookies</a> | |
</div> | |
</div> | |
</div> | |
</footer> | |
<script> | |
// Simple script for smooth scrolling | |
document.querySelectorAll('a[href^="#"]').forEach(anchor => { | |
anchor.addEventListener('click', function (e) { | |
e.preventDefault(); | |
document.querySelector(this.getAttribute('href')).scrollIntoView({ | |
behavior: 'smooth' | |
}); | |
}); | |
}); | |
// Mobile menu toggle functionality would go here | |
// This is a placeholder for actual implementation | |
const mobileMenuButton = document.querySelector('.md\\:hidden'); | |
mobileMenuButton.addEventListener('click', function() { | |
// This would toggle a mobile menu | |
alert('Mobile menu would open here in a full implementation'); | |
}); | |
</script> | |
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=joaobouner/tests" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
</html> |