calafat / index.html
MateusBonacina's picture
Add 3 files
07ef87f verified
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Espaço Calafat - Eventos Especiais</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">
<style>
.hero {
background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1519671482749-fd09be7ccebf?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
background-size: cover;
background-position: center;
}
.event-card {
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.event-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.testimonial-card {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
}
.gallery-item {
transition: all 0.3s ease;
}
.gallery-item:hover {
transform: scale(1.05);
z-index: 10;
}
.nav-link {
position: relative;
}
.nav-link::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -2px;
left: 0;
background-color: #f3f4f6;
transition: width 0.3s ease;
}
.nav-link:hover::after {
width: 100%;
}
</style>
</head>
<body class="bg-gray-50 font-sans">
<!-- Header/Navbar -->
<header class="fixed w-full z-50 bg-white shadow-md">
<div class="container mx-auto px-4 py-3 flex justify-between items-center">
<div class="flex items-center">
<div class="w-12 h-12 bg-amber-500 rounded-full flex items-center justify-center mr-3">
<i class="fas fa-glass-cheers text-white text-xl"></i>
</div>
<h1 class="text-2xl font-bold text-gray-800">Espaço <span class="text-amber-500">Calafat</span></h1>
</div>
<nav class="hidden md:flex space-x-8">
<a href="#home" class="nav-link text-gray-700 hover:text-amber-500 font-medium">Home</a>
<a href="#about" class="nav-link text-gray-700 hover:text-amber-500 font-medium">Sobre</a>
<a href="#services" class="nav-link text-gray-700 hover:text-amber-500 font-medium">Serviços</a>
<a href="#gallery" class="nav-link text-gray-700 hover:text-amber-500 font-medium">Galeria</a>
<a href="#contact" class="nav-link text-gray-700 hover:text-amber-500 font-medium">Contato</a>
</nav>
<button class="md:hidden text-gray-700" id="menu-toggle">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
<!-- Mobile Menu -->
<div class="md:hidden hidden bg-white w-full py-4 px-4 shadow-lg" id="mobile-menu">
<div class="flex flex-col space-y-4">
<a href="#home" class="text-gray-700 hover:text-amber-500 font-medium">Home</a>
<a href="#about" class="text-gray-700 hover:text-amber-500 font-medium">Sobre</a>
<a href="#services" class="text-gray-700 hover:text-amber-500 font-medium">Serviços</a>
<a href="#gallery" class="text-gray-700 hover:text-amber-500 font-medium">Galeria</a>
<a href="#contact" class="text-gray-700 hover:text-amber-500 font-medium">Contato</a>
</div>
</div>
</header>
<!-- Hero Section -->
<section id="home" class="hero min-h-screen flex items-center justify-center text-white pt-20">
<div class="container mx-auto px-4 text-center">
<h1 class="text-4xl md:text-6xl font-bold mb-6 animate-fade-in">Eventos Inesquecíveis</h1>
<p class="text-xl md:text-2xl mb-8 max-w-3xl mx-auto animate-fade-in">Transformamos seus momentos especiais em memórias eternas com excelência e sofisticação.</p>
<div class="flex flex-col sm:flex-row justify-center gap-4 animate-fade-in">
<a href="#contact" class="bg-amber-500 hover:bg-amber-600 text-white font-bold py-3 px-8 rounded-full transition duration-300 transform hover:scale-105">Reserve Agora</a>
<a href="#gallery" class="bg-transparent border-2 border-white hover:bg-white hover:text-gray-800 text-white font-bold py-3 px-8 rounded-full transition duration-300 transform hover:scale-105">Ver Galeria</a>
</div>
</div>
<div class="absolute bottom-10 left-0 right-0 flex justify-center animate-bounce">
<a href="#about" class="text-white text-2xl">
<i class="fas fa-chevron-down"></i>
</a>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-20 bg-white">
<div class="container mx-auto px-4">
<div class="flex flex-col lg:flex-row items-center">
<div class="lg:w-1/2 mb-10 lg:mb-0 lg:pr-10">
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-6">Sobre o <span class="text-amber-500">Espaço Calafat</span></h2>
<p class="text-gray-600 mb-6">Fundado em 2010, o Espaço Calafat se tornou referência em organização de eventos especiais, combinando tradição e inovação para criar experiências únicas.</p>
<p class="text-gray-600 mb-6">Nossa equipe de especialistas está comprometida em transformar sua visão em realidade, cuidando de cada detalhe para que você possa simplesmente aproveitar seu momento especial.</p>
<div class="flex flex-wrap gap-4 mb-6">
<div class="flex items-center">
<div class="w-10 h-10 bg-amber-100 rounded-full flex items-center justify-center mr-3">
<i class="fas fa-check text-amber-500"></i>
</div>
<span class="text-gray-700">Mais de 500 eventos realizados</span>
</div>
<div class="flex items-center">
<div class="w-10 h-10 bg-amber-100 rounded-full flex items-center justify-center mr-3">
<i class="fas fa-check text-amber-500"></i>
</div>
<span class="text-gray-700">Equipe especializada</span>
</div>
</div>
<a href="#contact" class="inline-block bg-amber-500 hover:bg-amber-600 text-white font-bold py-3 px-6 rounded-full transition duration-300">Saiba Mais</a>
</div>
<div class="lg:w-1/2 relative">
<div class="relative">
<img src="https://images.unsplash.com/photo-1555244162-803834f70033?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" alt="Espaço Calafat" class="rounded-lg shadow-xl w-full">
<div class="absolute -bottom-6 -right-6 bg-white p-4 rounded-lg shadow-lg hidden md:block">
<div class="flex items-center">
<div class="w-12 h-12 bg-amber-500 rounded-full flex items-center justify-center mr-3">
<i class="fas fa-award text-white text-xl"></i>
</div>
<div>
<h4 class="font-bold text-gray-800">Prêmio Excelência</h4>
<p class="text-gray-600 text-sm">Melhor Espaço para Eventos 2022</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Services Section -->
<section id="services" class="py-20 bg-gray-100">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">Nossos <span class="text-amber-500">Serviços</span></h2>
<p class="text-gray-600 max-w-2xl mx-auto">Oferecemos soluções completas para todos os tipos de eventos, desde o planejamento até a execução perfeita.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
<!-- Wedding Card -->
<div class="event-card bg-white rounded-xl overflow-hidden shadow-md">
<div class="h-48 bg-amber-100 flex items-center justify-center">
<i class="fas fa-ring text-amber-500 text-6xl"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold text-gray-800 mb-3">Casamentos</h3>
<p class="text-gray-600 mb-4">Crie o casamento dos seus sonhos com nossa equipe especializada em cerimônias memoráveis.</p>
<ul class="space-y-2 mb-4">
<li class="flex items-center">
<i class="fas fa-check text-amber-500 mr-2"></i>
<span class="text-gray-700">Decoração personalizada</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-amber-500 mr-2"></i>
<span class="text-gray-700">Buffet completo</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-amber-500 mr-2"></i>
<span class="text-gray-700">Coordenação do evento</span>
</li>
</ul>
</div>
</div>
<!-- Corporate Events Card -->
<div class="event-card bg-white rounded-xl overflow-hidden shadow-md">
<div class="h-48 bg-blue-100 flex items-center justify-center">
<i class="fas fa-briefcase text-blue-500 text-6xl"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold text-gray-800 mb-3">Eventos Corporativos</h3>
<p class="text-gray-600 mb-4">Profissionalismo e sofisticação para seus eventos de negócios e confraternizações.</p>
<ul class="space-y-2 mb-4">
<li class="flex items-center">
<i class="fas fa-check text-blue-500 mr-2"></i>
<span class="text-gray-700">Estrutura completa</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-blue-500 mr-2"></i>
<span class="text-gray-700">Tecnologia de ponta</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-blue-500 mr-2"></i>
<span class="text-gray-700">Coffee breaks premium</span>
</li>
</ul>
</div>
</div>
<!-- Graduation Card -->
<div class="event-card bg-white rounded-xl overflow-hidden shadow-md">
<div class="h-48 bg-purple-100 flex items-center justify-center">
<i class="fas fa-graduation-cap text-purple-500 text-6xl"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold text-gray-800 mb-3">Formaturas</h3>
<p class="text-gray-600 mb-4">Celebre essa conquista importante com uma festa inesquecível.</p>
<ul class="space-y-2 mb-4">
<li class="flex items-center">
<i class="fas fa-check text-purple-500 mr-2"></i>
<span class="text-gray-700">Temas personalizados</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-purple-500 mr-2"></i>
<span class="text-gray-700">Fotografia profissional</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-purple-500 mr-2"></i>
<span class="text-gray-700">DJ e iluminação</span>
</li>
</ul>
</div>
</div>
<!-- Birthday Card -->
<div class="event-card bg-white rounded-xl overflow-hidden shadow-md">
<div class="h-48 bg-pink-100 flex items-center justify-center">
<i class="fas fa-birthday-cake text-pink-500 text-6xl"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold text-gray-800 mb-3">Aniversários</h3>
<p class="text-gray-600 mb-4">Celebre a vida com festas temáticas e decorações encantadoras.</p>
<ul class="space-y-2 mb-4">
<li class="flex items-center">
<i class="fas fa-check text-pink-500 mr-2"></i>
<span class="text-gray-700">Temas exclusivos</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-pink-500 mr-2"></i>
<span class="text-gray-700">Doces e lembrancinhas</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-pink-500 mr-2"></i>
<span class="text-gray-700">Animação infantil</span>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section class="py-20 bg-gray-800 text-white">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Depoimentos</h2>
<p class="text-gray-300 max-w-2xl mx-auto">O que nossos clientes dizem sobre nós</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="testimonial-card p-8 rounded-lg">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full overflow-hidden mr-4">
<img src="https://randomuser.me/api/portraits/women/32.jpg" alt="Cliente" class="w-full h-full object-cover">
</div>
<div>
<h4 class="font-bold">Ana Carolina</h4>
<p class="text-amber-400 text-sm">Casamento</p>
</div>
</div>
<p class="text-gray-300 mb-4">"O Espaço Calafat transformou nosso casamento em um conto de fadas. Cada detalhe foi perfeito e superou todas nossas expectativas!"</p>
<div class="flex text-amber-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<!-- Testimonial 2 -->
<div class="testimonial-card p-8 rounded-lg">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full overflow-hidden mr-4">
<img src="https://randomuser.me/api/portraits/men/45.jpg" alt="Cliente" class="w-full h-full object-cover">
</div>
<div>
<h4 class="font-bold">Ricardo Almeida</h4>
<p class="text-blue-400 text-sm">Evento Corporativo</p>
</div>
</div>
<p class="text-gray-300 mb-4">"Nosso evento anual de premiação foi um sucesso graças à equipe do Espaço Calafat. Profissionalismo e atenção aos detalhes impressionantes."</p>
<div class="flex text-amber-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<!-- Testimonial 3 -->
<div class="testimonial-card p-8 rounded-lg">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full overflow-hidden mr-4">
<img src="https://randomuser.me/api/portraits/women/68.jpg" alt="Cliente" class="w-full h-full object-cover">
</div>
<div>
<h4 class="font-bold">Patrícia Mendes</h4>
<p class="text-purple-400 text-sm">Formatura</p>
</div>
</div>
<p class="text-gray-300 mb-4">"A festa de formatura da minha filha foi mágica! O Espaço Calafat cuidou de tudo e pudemos apenas aproveitar esse momento especial."</p>
<div class="flex text-amber-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
</div>
</div>
</section>
<!-- Gallery Section -->
<section id="gallery" class="py-20 bg-white">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">Nossa <span class="text-amber-500">Galeria</span></h2>
<p class="text-gray-600 max-w-2xl mx-auto">Explore momentos especiais que criamos para nossos clientes</p>
</div>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- Gallery Item 1 -->
<div class="gallery-item relative group rounded-xl overflow-hidden">
<img src="https://images.unsplash.com/photo-1519225421980-715cb0215aed?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" alt="Casamento" class="w-full h-64 object-cover transition duration-300">
<div class="absolute inset-0 bg-black bg-opacity-40 flex items-center justify-center opacity-0 group-hover:opacity-100 transition duration-300">
<div class="text-center text-white p-4">
<h3 class="text-xl font-bold mb-2">Casamento Clássico</h3>
<p class="text-sm">Decoração em tons de marfim e dourado</p>
</div>
</div>
</div>
<!-- Gallery Item 2 -->
<div class="gallery-item relative group rounded-xl overflow-hidden">
<img src="https://images.unsplash.com/photo-1492684223066-81342ee5ff30?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" alt="Evento Corporativo" class="w-full h-64 object-cover transition duration-300">
<div class="absolute inset-0 bg-black bg-opacity-40 flex items-center justify-center opacity-0 group-hover:opacity-100 transition duration-300">
<div class="text-center text-white p-4">
<h3 class="text-xl font-bold mb-2">Conferência Anual</h3>
<p class="text-sm">Evento corporativo com 200 participantes</p>
</div>
</div>
</div>
<!-- Gallery Item 3 -->
<div class="gallery-item relative group rounded-xl overflow-hidden">
<img src="https://images.unsplash.com/photo-1530103862676-de8c9debad1d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" alt="Formatura" class="w-full h-64 object-cover transition duration-300">
<div class="absolute inset-0 bg-black bg-opacity-40 flex items-center justify-center opacity-0 group-hover:opacity-100 transition duration-300">
<div class="text-center text-white p-4">
<h3 class="text-xl font-bold mb-2">Festa de Formatura</h3>
<p class="text-sm">Tema "Noite das Estrelas"</p>
</div>
</div>
</div>
<!-- Gallery Item 4 -->
<div class="gallery-item relative group rounded-xl overflow-hidden">
<img src="https://images.unsplash.com/photo-1513151233558-d860c5398176?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" alt="Aniversário" class="w-full h-64 object-cover transition duration-300">
<div class="absolute inset-0 bg-black bg-opacity-40 flex items-center justify-center opacity-0 group-hover:opacity-100 transition duration-300">
<div class="text-center text-white p-4">
<h3 class="text-xl font-bold mb-2">Aniversário Infantil</h3>
<p class="text-sm">Tema "Fazendinha" para 50 crianças</p>
</div>
</div>
</div>
<!-- Gallery Item 5 -->
<div class="gallery-item relative group rounded-xl overflow-hidden">
<img src="https://images.unsplash.com/photo-1494972308805-463bc619d34e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2073&q=80" alt="Casamento" class="w-full h-64 object-cover transition duration-300">
<div class="absolute inset-0 bg-black bg-opacity-40 flex items-center justify-center opacity-0 group-hover:opacity-100 transition duration-300">
<div class="text-center text-white p-4">
<h3 class="text-xl font-bold mb-2">Jantar de Gala</h3>
<p class="text-sm">Evento beneficente com 150 convidados</p>
</div>
</div>
</div>
<!-- Gallery Item 6 -->
<div class="gallery-item relative group rounded-xl overflow-hidden">
<img src="https://images.unsplash.com/photo-1519671482749-fd09be7ccebf?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" alt="Coquetel" class="w-full h-64 object-cover transition duration-300">
<div class="absolute inset-0 bg-black bg-opacity-40 flex items-center justify-center opacity-0 group-hover:opacity-100 transition duration-300">
<div class="text-center text-white p-4">
<h3 class="text-xl font-bold mb-2">Coquetel de Lançamento</h3>
<p class="text-sm">Evento empresarial com serviço de hors d'oeuvres</p>
</div>
</div>
</div>
</div>
<div class="text-center mt-12">
<a href="#contact" class="inline-block bg-amber-500 hover:bg-amber-600 text-white font-bold py-3 px-8 rounded-full transition duration-300 transform hover:scale-105">Agende uma Visita</a>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-20 bg-gray-100">
<div class="container mx-auto px-4">
<div class="flex flex-col lg:flex-row">
<div class="lg:w-1/2 mb-12 lg:mb-0 lg:pr-12">
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-6">Entre em <span class="text-amber-500">Contato</span></h2>
<p class="text-gray-600 mb-8">Estamos ansiosos para ajudar a planejar seu evento especial. Preencha o formulário ou entre em contato diretamente pelos nossos canais.</p>
<div class="space-y-6">
<div class="flex items-start">
<div class="w-12 h-12 bg-amber-100 rounded-full flex items-center justify-center mr-4">
<i class="fas fa-map-marker-alt text-amber-500 text-xl"></i>
</div>
<div>
<h4 class="font-bold text-gray-800 mb-1">Endereço</h4>
<p class="text-gray-600">Av. das Flores, 1234 - Jardim Primavera<br>São Paulo - SP</p>
</div>
</div>
<div class="flex items-start">
<div class="w-12 h-12 bg-amber-100 rounded-full flex items-center justify-center mr-4">
<i class="fas fa-phone-alt text-amber-500 text-xl"></i>
</div>
<div>
<h4 class="font-bold text-gray-800 mb-1">Telefone</h4>
<p class="text-gray-600">(11) 1234-5678<br>(11) 98765-4321 (WhatsApp)</p>
</div>
</div>
<div class="flex items-start">
<div class="w-12 h-12 bg-amber-100 rounded-full flex items-center justify-center mr-4">
<i class="fas fa-envelope text-amber-500 text-xl"></i>
</div>
<div>
<h4 class="font-bold text-gray-800 mb-1">Email</h4>
<p class="text-gray-600">contato@espacocalafat.com.br<br>eventos@espacocalafat.com.br</p>
</div>
</div>
</div>
<div class="mt-8">
<h4 class="font-bold text-gray-800 mb-4">Siga-nos</h4>
<div class="flex space-x-4">
<a href="#" class="w-10 h-10 bg-amber-500 hover:bg-amber-600 rounded-full flex items-center justify-center text-white">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="w-10 h-10 bg-amber-500 hover:bg-amber-600 rounded-full flex items-center justify-center text-white">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="w-10 h-10 bg-amber-500 hover:bg-amber-600 rounded-full flex items-center justify-center text-white">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="#" class="w-10 h-10 bg-amber-500 hover:bg-amber-600 rounded-full flex items-center justify-center text-white">
<i class="fab fa-pinterest-p"></i>
</a>
</div>
</div>
</div>
<div class="lg:w-1/2">
<form class="bg-white p-8 rounded-xl shadow-lg">
<div class="mb-6">
<label for="name" class="block text-gray-700 font-medium mb-2">Nome Completo</label>
<input type="text" id="name" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-amber-500 focus:border-amber-500 outline-none transition duration-300" placeholder="Seu nome">
</div>
<div class="mb-6">
<label for="email" class="block text-gray-700 font-medium mb-2">Email</label>
<input type="email" id="email" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-amber-500 focus:border-amber-500 outline-none transition duration-300" placeholder="seu@email.com">
</div>
<div class="mb-6">
<label for="phone" class="block text-gray-700 font-medium mb-2">Telefone</label>
<input type="tel" id="phone" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-amber-500 focus:border-amber-500 outline-none transition duration-300" placeholder="(00) 00000-0000">
</div>
<div class="mb-6">
<label for="event-type" class="block text-gray-700 font-medium mb-2">Tipo de Evento</label>
<select id="event-type" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-amber-500 focus:border-amber-500 outline-none transition duration-300">
<option value="">Selecione...</option>
<option value="wedding">Casamento</option>
<option value="corporate">Evento Corporativo</option>
<option value="graduation">Formatura</option>
<option value="birthday">Aniversário</option>
<option value="other">Outro</option>
</select>
</div>
<div class="mb-6">
<label for="date" class="block text-gray-700 font-medium mb-2">Data Prevista</label>
<input type="date" id="date" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-amber-500 focus:border-amber-500 outline-none transition duration-300">
</div>
<div class="mb-6">
<label for="message" class="block text-gray-700 font-medium mb-2">Mensagem</label>
<textarea id="message" rows="4" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-amber-500 focus:border-amber-500 outline-none transition duration-300" placeholder="Conte-nos sobre seu evento..."></textarea>
</div>
<button type="submit" class="w-full bg-amber-500 hover:bg-amber-600 text-white font-bold py-3 px-6 rounded-lg transition duration-300 transform hover:scale-105">Enviar Mensagem</button>
</form>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-12">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<div class="flex items-center mb-4">
<div class="w-10 h-10 bg-amber-500 rounded-full flex items-center justify-center mr-3">
<i class="fas fa-glass-cheers text-white"></i>
</div>
<h3 class="text-xl font-bold">Espaço <span class="text-amber-500">Calafat</span></h3>
</div>
<p class="text-gray-400">Transformando momentos comuns em memórias extraordinárias desde 2010.</p>
</div>
<div>
<h4 class="text-lg font-bold mb-4">Links Rápidos</h4>
<ul class="space-y-2">
<li><a href="#home" class="text-gray-400 hover:text-amber-500 transition duration-300">Home</a></li>
<li><a href="#about" class="text-gray-400 hover:text-amber-500 transition duration-300">Sobre Nós</a></li>
<li><a href="#services" class="text-gray-400 hover:text-amber-500 transition duration-300">Serviços</a></li>
<li><a href="#gallery" class="text-gray-400 hover:text-amber-500 transition duration-300">Galeria</a></li>
<li><a href="#contact" class="text-gray-400 hover:text-amber-500 transition duration-300">Contato</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-bold mb-4">Serviços</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-amber-500 transition duration-300">Casamentos</a></li>
<li><a href="#" class="text-gray-400 hover:text-amber-500 transition duration-300">Eventos Corporativos</a></li>
<li><a href="#" class="text-gray-400 hover:text-amber-500 transition duration-300">Formaturas</a></li>
<li><a href="#" class="text-gray-400 hover:text-amber-500 transition duration-300">Aniversários</a></li>
<li><a href="#" class="text-gray-400 hover:text-amber-500 transition duration-300">Eventos Personalizados</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-bold mb-4">Newsletter</h4>
<p class="text-gray-400 mb-4">Assine nossa newsletter para receber novidades e promoções.</p>
<form class="flex">
<input type="email" placeholder="Seu email" class="px-4 py-2 w-full rounded-l-lg focus:outline-none text-gray-800">
<button type="submit" class="bg-amber-500 hover:bg-amber-600 px-4 py-2 rounded-r-lg transition duration-300">
<i class="fas fa-paper-plane"></i>
</button>
</form>
</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 Espaço Calafat. Todos os direitos reservados.</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-amber-500 transition duration-300"><i class="fab fa-facebook-f"></i></a>
<a href="#" class="text-gray-400 hover:text-amber-500 transition duration-300"><i class="fab fa-twitter"></i></a>
<a href="#" class="text-gray-400 hover:text-amber-500 transition duration-300"><i class="fab fa-instagram"></i></a>
<a href="#" class="text-gray-400 hover:text-amber-500 transition duration-300"><i class="fab fa-linkedin-in"></i></a>
</div>
</div>
</div>
</footer>
<!-- Back to Top Button -->
<button id="back-to-top" class="fixed bottom-8 right-8 w-12 h-12 bg-amber-500 text-white rounded-full shadow-lg flex items-center justify-center opacity-0 invisible transition-all duration-300">
<i class="fas fa-arrow-up"></i>
</button>
<script>
// Mobile Menu Toggle
const menuToggle = document.getElementById('menu-toggle');
const mobileMenu = document.getElementById('mobile-menu');
menuToggle.addEventListener('click', () => {
mobileMenu.classList.toggle('hidden');
});
// Smooth Scrolling for Anchor Links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const targetId = this.getAttribute('href');
const targetElement = document.querySelector(targetId);
if (targetElement) {
window.scrollTo({
top: targetElement.offsetTop - 80,
behavior: 'smooth'
});
// Close mobile menu if open
if (!mobileMenu.classList.contains('hidden')) {
mobileMenu.classList.add('hidden');
}
}
});
});
// Back to Top Button
const backToTopButton = document.getElementById('back-to-top');
window.addEventListener('scroll', () => {
if (window.pageYOffset > 300) {
backToTopButton.classList.remove('opacity-0', 'invisible');
backToTopButton.classList.add('opacity-100', 'visible');
} else {
backToTopButton.classList.remove('opacity-100', 'visible');
backToTopButton.classList.add('opacity-0', 'invisible');
}
});
backToTopButton.addEventListener('click', () => {
window.scrollTo({
top: 0,
behavior: 'smooth'
});
});
// Form Submission (example)
const contactForm = document.querySelector('form');
if (contactForm) {
contactForm.addEventListener('submit', (e) => {
e.preventDefault();
alert('Obrigado pelo seu contato! Entraremos em breve em contato.');
contactForm.reset();
});
}
</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=MateusBonacina/calafat" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>