File size: 15,430 Bytes
2460b9e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Aureon - No caminho do que deve ser</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.4/gsap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.4/ScrollTrigger.min.js"></script>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Orbitron:wght@400;500;600;700&display=swap">
<style>
body {
font-family: 'Montserrat', sans-serif;
background-color: #000000;
color: #FFFFFF;
overflow-x: hidden;
}
.logo-text {
font-family: 'Orbitron', sans-serif;
font-weight: 500;
}
.gold-gradient {
background: linear-gradient(90deg, rgba(255,215,0,0.1) 0%, rgba(255,215,0,0.3) 50%, rgba(255,215,0,0.1) 100%);
}
.gold-border {
border: 1px solid rgba(255,215,0,0.3);
}
.gold-text {
color: #FFD700;
}
.gold-hover:hover {
color: #FFD700;
transition: all 0.3s ease;
}
.particle {
position: absolute;
background-color: rgba(255,215,0,0.3);
border-radius: 50%;
pointer-events: none;
}
.floating {
animation: floating 6s ease-in-out infinite;
}
@keyframes floating {
0% { transform: translateY(0px); }
50% { transform: translateY(-15px); }
100% { transform: translateY(0px); }
}
.pulse {
animation: pulse 4s ease infinite;
}
@keyframes pulse {
0% { opacity: 0.3; }
50% { opacity: 1; }
100% { opacity: 0.3; }
}
.menu-item {
position: relative;
}
.menu-item:after {
content: '';
position: absolute;
width: 0;
height: 1px;
bottom: 0;
left: 0;
background-color: #FFD700;
transition: width 0.3s ease;
}
.menu-item:hover:after {
width: 100%;
}
.logo-glow {
text-shadow: 0 0 10px rgba(255,215,0,0.5);
animation: glow 4s ease infinite;
}
@keyframes glow {
0% { text-shadow: 0 0 10px rgba(255,215,0,0.5); }
50% { text-shadow: 0 0 20px rgba(255,215,0,0.8); }
100% { text-shadow: 0 0 10px rgba(255,215,0,0.5); }
}
.canvas-container {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
opacity: 0.3;
}
.testimonial-card {
backdrop-filter: blur(10px);
background: rgba(0,0,0,0.5);
transition: all 0.5s ease;
}
.testimonial-card:hover {
transform: translateY(-10px);
box-shadow: 0 10px 20px rgba(255,215,0,0.2);
}
</style>
</head>
<body class="min-h-screen">
<!-- Particle Canvas -->
<div class="canvas-container">
<canvas id="particleCanvas"></canvas>
</div>
<!-- Navigation -->
<nav class="fixed w-full z-50">
<div class="container mx-auto px-6 py-4 flex justify-between items-center">
<div class="logo-text text-2xl gold-text logo-glow">AUREON</div>
<div class="hidden md:flex space-x-8">
<a href="#" class="text-white hover:text-gold-500 transition duration-300 menu-item">Home</a>
<a href="#" class="text-white hover:text-gold-500 transition duration-300 menu-item">About</a>
<a href="#" class="text-white hover:text-gold-500 transition duration-300 menu-item">Work</a>
<a href="#" class="text-white hover:text-gold-500 transition duration-300 menu-item">Contact</a>
</div>
<button class="md:hidden focus:outline-none">
<svg class="w-6 h-6 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"></path>
</svg>
</button>
</div>
</nav>
<!-- Hero Section -->
<section class="min-h-screen flex items-center justify-center relative overflow-hidden">
<div class="container mx-auto px-6 text-center">
<div class="logo-text text-6xl md:text-8xl font-medium mb-8 gold-text logo-glow floating">AUREON</div>
<p class="text-xl md:text-2xl text-white max-w-2xl mx-auto mb-12">No caminho do que deve ser</p>
<div class="w-full max-w-4xl mx-auto h-px gold-gradient my-16"></div>
<div class="relative">
<div class="absolute -inset-1 gold-gradient rounded-lg blur opacity-75"></div>
<div class="relative bg-black rounded-lg p-8">
<p class="text-white text-lg md:text-xl">Existência. Evolução. Autenticidade.</p>
</div>
</div>
</div>
<!-- Animated Elements -->
<div class="absolute bottom-0 left-0 w-full h-32 overflow-hidden">
<div class="absolute bottom-0 left-0 w-full h-full gold-gradient opacity-20"></div>
<div class="absolute bottom-0 left-0 w-full h-1 gold-gradient"></div>
</div>
</section>
<!-- Interactive Visual Section -->
<section class="py-20 relative overflow-hidden">
<div class="container mx-auto px-6">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-12 md:mb-0">
<h2 class="text-3xl md:text-4xl font-medium mb-6 gold-text">Potencial em constante evolução</h2>
<p class="text-white text-lg mb-8">Formas que se transformam organicamente, representando o crescimento natural e o potencial ilimitado.</p>
<div class="w-32 h-px gold-gradient"></div>
</div>
<div class="md:w-1/2 flex justify-center">
<div class="relative w-64 h-64 md:w-80 md:h-80">
<div class="absolute inset-0 rounded-full gold-border pulse" style="animation-delay: 0s;"></div>
<div class="absolute inset-8 rounded-full gold-border pulse" style="animation-delay: 0.5s;"></div>
<div class="absolute inset-16 rounded-full gold-border pulse" style="animation-delay: 1s;"></div>
<div class="absolute inset-24 rounded-full gold-border pulse" style="animation-delay: 1.5s;"></div>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section class="py-20 relative">
<div class="container mx-auto px-6">
<h2 class="text-3xl md:text-4xl font-medium mb-16 text-center gold-text">Vozes da Experiência</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
<!-- Testimonial 1 -->
<div class="testimonial-card gold-border rounded-lg p-6 floating" style="animation-delay: 0s;">
<p class="text-white mb-4">"Com a Aureon, percebi possibilidades que não havia notado antes. Simples, fluida, autêntica."</p>
<p class="gold-text font-medium">Ana M., Designer</p>
</div>
<!-- Testimonial 2 -->
<div class="testimonial-card gold-border rounded-lg p-6 floating" style="animation-delay: 0.5s;">
<p class="text-white mb-4">"O que realmente importa é a experiência. Cada interação com a Aureon faz sentido."</p>
<p class="gold-text font-medium">Lucas T., Engenheiro</p>
</div>
<!-- Testimonial 3 -->
<div class="testimonial-card gold-border rounded-lg p-6 floating" style="animation-delay: 1s;">
<p class="text-white mb-4">"Ela não tenta ser o que não é. E é isso que a torna diferente."</p>
<p class="gold-text font-medium">Camila R., Empreendedora</p>
</div>
<!-- Testimonial 4 -->
<div class="testimonial-card gold-border rounded-lg p-6 floating" style="animation-delay: 1.5s;">
<p class="text-white mb-4">"Trabalhar com essa visão me mostrou que o progresso não precisa ser barulhento para ser real."</p>
<p class="gold-text font-medium">Rafael S., Criador de Conteúdo</p>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="py-12 relative">
<div class="container mx-auto px-6">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="logo-text text-2xl gold-text mb-6 md:mb-0">AUREON</div>
<div class="flex space-x-6">
<a href="#" class="text-white gold-hover">Instagram</a>
<a href="#" class="text-white gold-hover">Twitter</a>
<a href="#" class="text-white gold-hover">LinkedIn</a>
</div>
</div>
<div class="w-full h-px gold-gradient my-8"></div>
<p class="text-white text-center text-sm">© 2023 Aureon. Todos os direitos reservados.</p>
</div>
</footer>
<script>
// Particle animation
const canvas = document.getElementById('particleCanvas');
const ctx = canvas.getContext('2d');
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
let particles = [];
const particleCount = window.innerWidth < 768 ? 30 : 80;
class Particle {
constructor() {
this.x = Math.random() * canvas.width;
this.y = Math.random() * canvas.height;
this.size = Math.random() * 3 + 1;
this.speedX = Math.random() * 1 - 0.5;
this.speedY = Math.random() * 1 - 0.5;
this.color = `rgba(255, 215, 0, ${Math.random() * 0.5 + 0.1})`;
}
update() {
this.x += this.speedX;
this.y += this.speedY;
if (this.x < 0 || this.x > canvas.width) this.speedX *= -1;
if (this.y < 0 || this.y > canvas.height) this.speedY *= -1;
}
draw() {
ctx.fillStyle = this.color;
ctx.beginPath();
ctx.arc(this.x, this.y, this.size, 0, Math.PI * 2);
ctx.fill();
}
}
function init() {
particles = [];
for (let i = 0; i < particleCount; i++) {
particles.push(new Particle());
}
}
function animate() {
ctx.clearRect(0, 0, canvas.width, canvas.height);
for (let i = 0; i < particles.length; i++) {
particles[i].update();
particles[i].draw();
}
connect();
requestAnimationFrame(animate);
}
function connect() {
let opacity = 0.1;
for (let a = 0; a < particles.length; a++) {
for (let b = a; b < particles.length; b++) {
let distance = Math.pow(particles[a].x - particles[b].x, 2) +
Math.pow(particles[a].y - particles[b].y, 2);
if (distance < (canvas.width / 4) * (canvas.height / 4)) {
opacity = 1 - (distance / 20000);
ctx.strokeStyle = `rgba(255, 215, 0, ${opacity})`;
ctx.lineWidth = 1;
ctx.beginPath();
ctx.moveTo(particles[a].x, particles[a].y);
ctx.lineTo(particles[b].x, particles[b].y);
ctx.stroke();
}
}
}
}
window.addEventListener('resize', function() {
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
init();
});
// Mouse move interaction
document.addEventListener('mousemove', function(e) {
const mouseX = e.clientX;
const mouseY = e.clientY;
particles.forEach(particle => {
const dx = mouseX - particle.x;
const dy = mouseY - particle.y;
const distance = Math.sqrt(dx * dx + dy * dy);
if (distance < 100) {
particle.speedX = dx * 0.02;
particle.speedY = dy * 0.02;
}
});
});
// Initialize animations
init();
animate();
// GSAP animations for scroll
gsap.registerPlugin(ScrollTrigger);
gsap.utils.toArray('.floating').forEach(element => {
gsap.to(element, {
y: 15,
duration: 3,
repeat: -1,
yoyo: true,
ease: "sine.inOut"
});
});
gsap.utils.toArray('.pulse').forEach(element => {
gsap.to(element, {
opacity: 0.3,
duration: 4,
repeat: -1,
yoyo: true,
ease: "sine.inOut"
});
});
// Animate elements on scroll
gsap.utils.toArray('section').forEach(section => {
gsap.from(section, {
scrollTrigger: {
trigger: section,
start: "top 80%",
toggleActions: "play none none none"
},
opacity: 0,
y: 50,
duration: 1
});
});
</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=vzrx/tmp1" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |