Spaces:
Running
Running
| <html lang="pt-BR"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Z&S Calhas e Vedações | Soluções Profissionais em Telhados</title> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <script> | |
| tailwind.config = { | |
| theme: { | |
| extend: { | |
| colors: { | |
| primary: '#F57C00', | |
| white: '#FFFFFF', | |
| black: '#000000', | |
| lightgray: '#D9D9D9', | |
| }, | |
| fontFamily: { | |
| montserrat: ['Montserrat', 'sans-serif'], | |
| roboto: ['Roboto', 'sans-serif'], | |
| }, | |
| backgroundImage: { | |
| 'hero': "url('https://images.unsplash.com/photo-1534040385115-33dcb22638b0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80')", | |
| } | |
| } | |
| } | |
| } | |
| </script> | |
| <link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Roboto:wght@400;500&display=swap" rel="stylesheet"> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> | |
| </head> | |
| <body class="font-roboto bg-black"> | |
| <!-- Cabeçalho --> | |
| <header class="fixed w-full bg-black/90 backdrop-blur-sm z-50 border-b border-primary"> | |
| <div class="container mx-auto px-4 py-3 flex justify-between items-center"> | |
| <div class="flex items-center"> | |
| <div class="flex flex-col"> | |
| <span class="font-montserrat text-2xl font-bold text-white">Z&S</span> | |
| <span class="text-xs text-lightgray">Calhas e Vedações</span> | |
| </div> | |
| </div> | |
| <div class="md:hidden"> | |
| <button id="mobile-menu-button" class="text-white focus:outline-none"> | |
| <i class="fas fa-bars text-xl"></i> | |
| </button> | |
| </div> | |
| <nav class="hidden md:block"> | |
| <ul class="flex space-x-4 md:space-x-8"> | |
| <li><a href="#inicio" class="text-lightgray hover:text-white transition">Início</a></li> | |
| <li><a href="#servicos" class="text-lightgray hover:text-white transition">Serviços</a></li> | |
| <li><a href="#diferenciais" class="text-lightgray hover:text-white transition">Diferenciais</a></li> | |
| <li><a href="#sobre" class="text-lightgray hover:text-white transition">Sobre Nós</a></li> | |
| <li><a href="#depoimentos" class="text-lightgray hover:text-white transition">Depoimentos</a></li> | |
| <li><a href="#contato" class="text-lightgray hover:text-white transition">Contato</a></li> | |
| </ul> | |
| </nav> | |
| </div> | |
| </header> | |
| <!-- Mobile Menu --> | |
| <div id="mobile-menu" class="hidden fixed inset-0 bg-black/90 z-40 pt-20 md:hidden"> | |
| <div class="container mx-auto px-4"> | |
| <ul class="flex flex-col space-y-6 text-center py-4"> | |
| <li><a href="#inicio" class="block py-3 text-lightgray hover:text-white transition border-b border-white/10">Início</a></li> | |
| <li><a href="#servicos" class="block py-3 text-lightgray hover:text-white transition border-b border-white/10">Serviços</a></li> | |
| <li><a href="#diferenciais" class="block py-3 text-lightgray hover:text-white transition border-b border-white/10">Diferenciais</a></li> | |
| <li><a href="#sobre" class="block py-3 text-lightgray hover:text-white transition border-b border-white/10">Sobre Nós</a></li> | |
| <li><a href="#depoimentos" class="block py-3 text-lightgray hover:text-white transition border-b border-white/10">Depoimentos</a></li> | |
| <li><a href="#contato" class="block py-3 text-lightgray hover:text-white transition">Contato</a></li> | |
| </ul> | |
| </div> | |
| </div> | |
| <!-- Hero Section --> | |
| <section id="inicio" class="relative pt-24 pb-40 bg-black bg-cover bg-center" style="background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9)), url('https://images.unsplash.com/photo-1534040385115-33dcb22638b0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80')"> | |
| <div class="container mx-auto px-4"> | |
| <div class="max-w-2xl text-center mx-auto"> | |
| <h1 class="font-montserrat text-4xl md:text-6xl font-bold text-white mb-4">Soluções Profissionais em Calhas e Vedações</h1> | |
| <p class="text-xl text-lightgray mb-8">Proteção e estética para sua residência ou empresa com o mais alto padrão de qualidade</p> | |
| <a href="#contato" class="inline-block bg-primary hover:brightness-125 transition text-white text-lg font-semibold py-4 px-8 rounded-lg shadow-lg"> | |
| SOLICITE UM ORÇAMENTO | |
| </a> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Nossos Serviços --> | |
| <section id="servicos" class="py-20 bg-white"> | |
| <div class="container mx-auto px-4"> | |
| <div class="flex flex-col items-center mb-16"> | |
| <h2 class="font-montserrat text-3xl md:text-4xl font-bold text-black mb-3">Nossos Serviços</h2> | |
| <div class="w-24 h-1 bg-primary"></div> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
| <div class="bg-lightgray rounded-xl p-8 transition-all hover:shadow-xl border-b-4 border-transparent hover:border-primary"> | |
| <div class="w-16 h-16 flex items-center justify-center bg-primary rounded-lg mb-6"> | |
| <i class="fas fa-tint text-white text-2xl"></i> | |
| </div> | |
| <h3 class="font-montserrat text-xl font-bold text-black mb-3">Instalação de Calhas</h3> | |
| <p class="text-gray-700">Instalação profissional de calhas com os melhores materiais do mercado, garantindo drenagem perfeita e proteção contra infiltrações.</p> | |
| </div> | |
| <div class="bg-lightgray rounded-xl p-8 transition-all hover:shadow-xl border-b-4 border-transparent hover:border-primary"> | |
| <div class="w-16 h-16 flex items-center justify-center bg-primary rounded-lg mb-6"> | |
| <i class="fas fa-hammer text-white text-2xl"></i> | |
| </div> | |
| <h3 class="font-montserrat text-xl font-bold text-black mb-3">Manutenção de Calhas</h3> | |
| <p class="text-gray-700">Serviços especializados de limpeza, reparo e substituição de calhas para manter o sistema de drenagem funcionando perfeitamente.</p> | |
| </div> | |
| <div class="bg-lightgray rounded-xl p-8 transition-all hover:shadow-xl border-b-4 border-transparent hover:border-primary"> | |
| <div class="w-16 h-16 flex items-center justify-center bg-primary rounded-lg mb-6"> | |
| <i class="fas fa-shield-alt text-white text-2xl"></i> | |
| </div> | |
| <h3 class="font-montserrat text-xl font-bold text-black mb-3">Sistemas de Vedação</h3> | |
| <p class="text-gray-700">Soluções de vedação profissional para telhados, lajes e demais áreas externas, prevenindo infiltrações e aumentando a vida útil da estrutura.</p> | |
| </div> | |
| <div class="bg-lightgray rounded-xl p-8 transition-all hover:shadow-xl border-b-4 border-transparent hover:border-primary"> | |
| <div class="w-16 h-16 flex items-center justify-center bg-primary rounded-lg mb-6"> | |
| <i class="fas fa-sun text-white text-2xl"></i> | |
| </div> | |
| <h3 class="font-montserrat text-xl font-bold text-black mb-3">Captação de Água Pluvial</h3> | |
| <p class="text-gray-700">Sistemas completos para aproveitamento da água da chuva com calhas específicas, filtros e reservatórios de alta capacidade.</p> | |
| </div> | |
| <div class="bg-lightgray rounded-xl p-8 transition-all hover:shadow-xl border-b-4 border-transparent hover:border-primary"> | |
| <div class="w-16 h-16 flex items-center justify-center bg-primary rounded-lg mb-6"> | |
| <i class="fas fa-home text-white text-2xl"></i> | |
| </div> | |
| <h3 class="font-montserrat text-xl font-bold text-black mb-3">Calhas Industriais</h3> | |
| <p class="text-gray-700">Soluções robustas para empresas e galpões industriais, projetadas para grandes volumes de água e condições especiais de trabalho.</p> | |
| </div> | |
| <div class="bg-lightgray rounded-xl p-8 transition-all hover:shadow-xl border-b-4 border-transparent hover:border-primary"> | |
| <div class="w-16 h-16 flex items-center justify-center bg-primary rounded-lg mb-6"> | |
| <i class="fas fa-toolbox text-white text-2xl"></i> | |
| </div> | |
| <h3 class="font-montserrat text-xl font-bold text-black mb-3">Calhas Decorativas</h3> | |
| <p class="text-gray-700">Calhas que unem funcionalidade e design, disponíveis em diversos modelos e cores para complementar a arquitetura de sua propriedade.</p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Diferenciais --> | |
| <section id="diferenciais" class="py-20 bg-black"> | |
| <div class="container mx-auto px-4"> | |
| <div class="flex flex-col items-center mb-16"> | |
| <h2 class="font-montserrat text-3xl md:text-4xl font-bold text-white mb-3">Nossos Diferenciais</h2> | |
| <div class="w-24 h-1 bg-primary"></div> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6"> | |
| <div class="bg-white/5 backdrop-blur-sm border border-lightgray/20 rounded-xl p-8 transition-all hover:brightness-110"> | |
| <div class="flex items-center mb-4"> | |
| <div class="w-12 h-12 flex items-center justify-center bg-primary rounded-md mr-4"> | |
| <i class="fas fa-medal text-white text-xl"></i> | |
| </div> | |
| <h3 class="font-montserrat text-xl font-bold text-white">Material Premium</h3> | |
| </div> | |
| <p class="text-lightgray">Utilizamos apenas as melhores matérias-primas do mercado com certificação internacional de qualidade.</p> | |
| </div> | |
| <div class="bg-white/5 backdrop-blur-sm border border-lightgray/20 rounded-xl p-8 transition-all hover:brightness-110"> | |
| <div class="flex items-center mb-4"> | |
| <div class="w-12 h-12 flex items-center justify-center bg-primary rounded-md mr-4"> | |
| <i class="fas fa-clock text-white text-xl"></i> | |
| </div> | |
| <h3 class="font-montserrat text-xl font-bold text-white">Garantia de 10 Anos</h3> | |
| </div> | |
| <p class="text-lightgray">Nossos serviços são protegidos pela maior garantia do mercado, demostrando nossa confiança no trabalho.</p> | |
| </div> | |
| <div class="bg-white/5 backdrop-blur-sm border border-lightgray/20 rounded-xl p-8 transition-all hover:brightness-110"> | |
| <div class="flex items-center mb-4"> | |
| <div class="w-12 h-12 flex items-center justify-center bg-primary rounded-md mr-4"> | |
| <i class="fas fa-users text-white text-xl"></i> | |
| </div> | |
| <h3 class="font-montserrat text-xl font-bold text-white">Equipe Especializada</h3> | |
| </div> | |
| <p class="text-lightgray">Profissionais treinados constantemente nas mais modernas técnicas de instalação e manutenção.</p> | |
| </div> | |
| <div class="bg-white/5 backdrop-blur-sm border border-lightgray/20 rounded-xl p-8 transition-all hover:brightness-110"> | |
| <div class="flex items-center mb-4"> | |
| <div class="w-12 h-12 flex items-center justify-center bg-primary rounded-md mr-4"> | |
| <i class="fas fa-leaf text-white text-xl"></i> | |
| </div> | |
| <h3 class="font-montserrat text-xl font-bold text-white">Soluções Sustentáveis</h3> | |
| </div> | |
| <p class="text-lightgray">Promovemos práticas ecologicamente corretas e sistemas de reaproveitamento de água pluvial.</p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Sobre Nós --> | |
| <section id="sobre" class="py-20 bg-lightgray"> | |
| <div class="container mx-auto px-4"> | |
| <div class="flex flex-col items-center mb-12"> | |
| <h2 class="font-montserrat text-3xl md:text-4xl font-bold text-black mb-3">Sobre Nós</h2> | |
| <div class="w-24 h-1 bg-primary"></div> | |
| </div> | |
| <div class="flex flex-col lg:flex-row items-center"> | |
| <div class="w-full lg:w-1/2 mb-10 lg:mb-0 lg:pr-12"> | |
| <img src="https://images.unsplash.com/photo-1584118624010-dc7a38b8d963?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1332&q=80" alt="Equipe Z&S" class="rounded-xl shadow-lg w-full"> | |
| </div> | |
| <div class="w-full lg:w-1/2"> | |
| <h3 class="font-montserrat text-2xl font-bold text-black mb-4">15 Anos de História e Excelência</h3> | |
| <p class="text-gray-700 mb-6"> | |
| A Z&S Calhas e Vedações começou em 2008 com uma missão clara: oferecer soluções de excelência em calhas e sistemas de vedação, combinando qualidade técnica, atendimento personalizado e prazo de execução confiável. | |
| </p> | |
| <p class="text-gray-700 mb-6"> | |
| Ao longo destes anos, consolidamos nossa reputação como uma das empresas mais confiáveis do setor, atendendo milhares de clientes entre residências, comércios e indústrias com soluções personalizadas para cada necessidade. | |
| </p> | |
| <p class="text-gray-700 mb-8"> | |
| Nosso compromisso é unir segurança, estética e durabilidade em cada projeto, utilizando tecnologia de ponta e materiais de primeira qualidade para entregar resultados que superam expectativas. | |
| </p> | |
| <div class="grid grid-cols-2 gap-6"> | |
| <div class="flex flex-col items-center"> | |
| <span class="text-4xl font-bold text-primary mb-2">2000+</span> | |
| <span class="text-gray-700 text-center">Projetos Entregues</span> | |
| </div> | |
| <div class="flex flex-col items-center"> | |
| <span class="text-4xl font-bold text-primary mb-2">98%</span> | |
| <span class="text-gray-700 text-center">Clientes Satisfeitos</span> | |
| </div> | |
| <div class="flex flex-col items-center"> | |
| <span class="text-4xl font-bold text-primary mb-2">15</span> | |
| <span class="text-gray-700 text-center">Anos de Mercado</span> | |
| </div> | |
| <div class="flex flex-col items-center"> | |
| <span class="text-4xl font-bold text-primary mb-2">12</span> | |
| <span class="text-gray-700 text-center">Técnicos Especializados</span> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Galeria --> | |
| <section class="py-20 bg-white"> | |
| <div class="container mx-auto px-4"> | |
| <div class="flex flex-col items-center mb-16"> | |
| <h2 class="font-montserrat text-3xl md:text-4xl font-bold text-black mb-3">Galeria de Projetos</h2> | |
| <div class="w-24 h-1 bg-primary"></div> | |
| <p class="mt-6 text-gray-700 max-w-lg text-center">Confira alguns dos nossos projetos recentes realizados com excelência</p> | |
| </div> | |
| <div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-6"> | |
| <div class="group relative overflow-hidden rounded-xl h-80"> | |
| <img src="https://images.unsplash.com/photo-1479839672679-a46483c0ad62?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1364&q=80" alt="Projeto residencial" class="w-full h-full object-cover transition-transform duration-500 group-hover:scale-105"> | |
| <div class="absolute inset-0 bg-black/70 flex flex-col items-center justify-center opacity-0 group-hover:opacity-100 transition-opacity p-6"> | |
| <h3 class="font-montserrat text-xl text-white mb-2">Residência Alphaville</h3> | |
| <p class="text-lightgray text-center mb-4">Sistema de calhas integradas com design moderno e personalizado</p> | |
| <a href="#" class="text-primary font-semibold">Ver detalhes <i class="fas fa-arrow-right ml-1"></i></a> | |
| </div> | |
| </div> | |
| <div class="group relative overflow-hidden rounded-xl h-80"> | |
| <img src="https://images.unsplash.com/photo-1504309092620-4d0ecdebefb1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1374&q=80" alt="Projeto comercial" class="w-full h-full object-cover transition-transform duration-500 group-hover:scale-105"> | |
| <div class="absolute inset-0 bg-black/70 flex flex-col items-center justify-center opacity-0 group-hover:opacity-100 transition-opacity p-6"> | |
| <h3 class="font-montserrat text-xl text-white mb-2">Shopping Center Iguatemi</h3> | |
| <p class="text-lightgray text-center mb-4">Sistema industrial de calhas e captação de água em grande escala</p> | |
| <a href="#" class="text-primary font-semibold">Ver detalhes <i class="fas fa-arrow-right ml-1"></i></a> | |
| </div> | |
| </div> | |
| <div class="group relative overflow-hidden rounded-xl h-80"> | |
| <img src="https://images.unsplash.com/photo-1560448204-e626ae7b7f7e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1469&q=80" alt="Projeto residencial" class="w-full h-full object-cover transition-transform duration-500 group-hover:scale-105"> | |
| <div class="absolute inset-0 bg-black/70 flex flex-col items-center justify-center opacity-0 group-hover:opacity-100 transition-opacity p-6"> | |
| <h3 class="font-montserrat text-xl text-white mb-2">Casa de Praia</h3> | |
| <p class="text-lightgray text-center mb-4">Sistema de vedação especial para áreas de salinidade elevada</p> | |
| <a href="#" class="text-primary font-semibold">Ver detalhes <i class="fas fa-arrow-right ml-1"></i></a> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="text-center mt-12"> | |
| <a href="#" class="inline-block bg-primary hover:brightness-125 transition text-white font-semibold py-3 px-8 rounded-lg"> | |
| VER TODOS OS PROJETOS <i class="fas fa-arrow-right ml-2"></i> | |
| </a> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Depoimentos --> | |
| <section id="depoimentos" class="py-20 bg-lightgray"> | |
| <div class="container mx-auto px-4"> | |
| <div class="flex flex-col items-center mb-16"> | |
| <h2 class="font-montserrat text-3xl md:text-4xl font-bold text-black mb-3">O Que Nossos Clientes Dizem</h2> | |
| <div class="w-24 h-1 bg-primary"></div> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-8"> | |
| <div class="bg-white rounded-xl p-8 shadow-md border border-primary"> | |
| <div class="flex items-center mb-6"> | |
| <div class="w-14 h-14 rounded-full overflow-hidden mr-4"> | |
| <img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Cliente" class="w-full h-full object-cover"> | |
| </div> | |
| <div> | |
| <h4 class="font-montserrat font-bold text-black">Ricardo Fernandes</h4> | |
| <div class="flex mt-1"> | |
| <i class="fas fa-star text-primary"></i> | |
| <i class="fas fa-star text-primary"></i> | |
| <i class="fas fa-star text-primary"></i> | |
| <i class="fas fa-star text-primary"></i> | |
| <i class="fas fa-star text-primary"></i> | |
| </div> | |
| </div> | |
| </div> | |
| <p class="text-gray-700 italic"> | |
| "Contratei a Z&S para instalar calhas na minha casa e fiquei impressionado com o profissionalismo. A equipe foi pontual, organizada e fez um trabalho perfeito. Sem dúvida contratarei novamente quando necessário." | |
| </p> | |
| </div> | |
| <div class="bg-white rounded-xl p-8 shadow-md border border-primary"> | |
| <div class="flex items-center mb-6"> | |
| <div class="w-14 h-14 rounded-full overflow-hidden mr-4"> | |
| <img src="https://randomuser.me/api/portraits/women/62.jpg" alt="Cliente" class="w-full h-full object-cover"> | |
| </div> | |
| <div> | |
| <h4 class="font-montserrat font-bold text-black">Camila Martins</h4> | |
| <div class="flex mt-1"> | |
| <i class="fas fa-star text-primary"></i> | |
| <i class="fas fa-star text-primary"></i> | |
| <i class="fas fa-star text-primary"></i> | |
| <i class="fas fa-star text-primary"></i> | |
| <i class="fas fa-star text-primary"></i> | |
| </div> | |
| </div> | |
| </div> | |
| <p class="text-gray-700 italic"> | |
| "Sou proprietária de uma padaria e precisava de um sistema de calhas eficiente. A Z&S não só resolveu meu problema com infiltrações, como sugeriu melhorias que economizaram água. Serviço de primeira qualidade!" | |
| </p> | |
| </div> | |
| <div class="bg-white rounded-xl p-8 shadow-md border border-primary"> | |
| <div class="flex items-center mb-6"> | |
| <div class="w-14 h-14 rounded-full overflow-hidden mr-4"> | |
| <img src="https://randomuser.me/api/portraits/men/68.jpg" alt="Cliente" class="w-full h-full object-cover"> | |
| </div> | |
| <div> | |
| <h4 class="font-montserrat font-bold text-black">Roberto Almeida</h4> | |
| <div class="flex mt-1"> | |
| <i class="fas fa-star text-primary"></i> | |
| <i class="fas fa-star text-primary"></i> | |
| <i class="fas fa-star text-primary"></i> | |
| <i class="fas fa-star text-primary"></i> | |
| <i class="fas fa-star text-primary"></i> | |
| </div> | |
| </div> | |
| </div> | |
| <p class="text-gray-700 italic"> | |
| "Após uma forte chuva, minha calha se rompeu e me indicaram a Z&S. Além do conserto rápido, fizeram uma manutenção preventiva em todo sistema. Nota 10 em atendimento e qualidade do trabalho. Recomendo!" | |
| </p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Contato --> | |
| <section id="contato" class="py-20 bg-black"> | |
| <div class="container mx-auto px-4"> | |
| <div class="flex flex-col items-center mb-16"> | |
| <h2 class="font-montserrat text-3xl md:text-4xl font-bold text-white mb-3">Entre em Contato</h2> | |
| <div class="w-24 h-1 bg-primary"></div> | |
| </div> | |
| <div class="grid grid-cols-1 lg:grid-cols-2 gap-12"> | |
| <div> | |
| <h3 class="font-montserrat text-2xl text-white mb-6">Informações de Contato</h3> | |
| <div class="mb-8"> | |
| <div class="flex items-start mb-6"> | |
| <div class="w-12 h-12 flex items-center justify-center bg-primary rounded-md mr-4"> | |
| <i class="fas fa-map-marker-alt text-white"></i> | |
| </div> | |
| <div> | |
| <h4 class="font-semibold text-white mb-1">Endereço</h4> | |
| <p class="text-lightgray">Rua das Construções, 123 - Bairro Industrial<br>São Paulo - SP, 03042-000</p> | |
| </div> | |
| </div> | |
| <div class="flex items-start mb-6"> | |
| <div class="w-12 h-12 flex items-center justify-center bg-primary rounded-md mr-4"> | |
| <i class="fas fa-phone text-white"></i> | |
| </div> | |
| <div> | |
| <h4 class="font-semibold text-white mb-1">Telefone</h4> | |
| <p class="text-lightgray">(11) 3333-4444</p> | |
| <p class="text-lightgray">(11) 98888-7777 (WhatsApp)</p> | |
| </div> | |
| </div> | |
| <div class="flex items-start"> | |
| <div class="w-12 h-12 flex items-center justify-center bg-primary rounded-md mr-4"> | |
| <i class="fas fa-envelope text-white"></i> | |
| </div> | |
| <div> | |
| <h4 class="font-semibold text-white mb-1">E-mail</h4> | |
| <p class="text-lightgray">contato@zsecalhas.com.br</p> | |
| <p class="text-lightgray">orcamentos@zsecalhas.com.br</p> | |
| </div> | |
| </div> | |
| </div> | |
| <h3 class="font-montserrat text-2xl text-white mb-6">Horário de Funcionamento</h3> | |
| <div class="bg-white/5 backdrop-blur-sm border border-lightgray/20 rounded-lg p-6"> | |
| <p class="text-lightgray mb-2"><span class="font-semibold text-white">Segunda-Sexta:</span> 8:00 - 18:00</p> | |
| <p class="text-lightgray mb-2"><span class="font-semibold text-white">Sábado:</span> 8:00 - 12:00</p> | |
| <p class="text-lightgray"><span class="font-semibold text-white">Domingo e Feriados:</span> Fechado</p> | |
| </div> | |
| </div> | |
| <div class="bg-white/5 backdrop-blur-sm border border-lightgray/20 rounded-xl p-8"> | |
| <h3 class="font-montserrat text-2xl text-white mb-6">Solicite um Orçamento</h3> | |
| <form id="contactForm" class="space-y-6"> | |
| <div class="grid grid-cols-1 md:grid-cols-2 gap-6"> | |
| <div> | |
| <label class="block text-lightgray mb-2">Nome Completo</label> | |
| <input type="text" class="w-full bg-black/30 border border-lightgray/30 rounded-lg py-3 px-4 text-white placeholder:text-lightgray/50 focus:border-primary focus:outline-none focus:ring-2 focus:ring-primary/50" placeholder="Seu nome"> | |
| </div> | |
| <div> | |
| <label class="block text-lightgray mb-2">Telefone</label> | |
| <input type="tel" class="w-full bg-black/30 border border-lightgray/30 rounded-lg py-3 px-4 text-white placeholder:text-lightgray/50 focus:border-primary focus:outline-none focus:ring-2 focus:ring-primary/50" placeholder="(00) 00000-0000"> | |
| </div> | |
| </div> | |
| <div> | |
| <label class="block text-lightgray mb-2">E-mail</label> | |
| <input type="email" class="w-full bg-black/30 border border-lightgray/30 rounded-lg py-3 px-4 text-white placeholder:text-lightgray/50 focus:border-primary focus:outline-none focus:ring-2 focus:ring-primary/50" placeholder="seuemail@exemplo.com"> | |
| </div> | |
| <div> | |
| <label class="block text-lightgray mb-2">Serviço de Interesse</label> | |
| <select class="w-full bg-black/30 border border-lightgray/30 rounded-lg py-3 px-4 text-white placeholder:text-lightgray/50 focus:border-primary focus:outline-none focus:ring-2 focus:ring-primary/50"> | |
| <option>Instalação de Calhas</option> | |
| <option>Manutenção de Calhas</option> | |
| <option>Sistemas de Vedação</option> | |
| <option>Captação de Água Pluvial</option> | |
| <option>Calhas Industriais</option> | |
| <option>Calhas Decorativas</option> | |
| </select> | |
| </div> | |
| <div> | |
| <label class="block text-lightgray mb-2">Mensagem</label> | |
| <textarea rows="4" class="w-full bg-black/30 border border-lightgray/30 rounded-lg py-3 px-4 text-white placeholder:text-lightgray/50 focus:border-primary focus:outline-none focus:ring-2 focus:ring-primary/50" placeholder="Descreva seu projeto ou necessidade..."></textarea> | |
| </div> | |
| <button type="submit" class="w-full bg-primary hover:brightness-125 transition text-white font-semibold py-4 px-6 rounded-lg"> | |
| ENVIAR SOLICITAÇÃO | |
| </button> | |
| </form> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Rodapé --> | |
| <footer class="bg-black border-t border-primary"> | |
| <div class="container mx-auto px-4 pt-12 pb-8"> | |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8"> | |
| <div> | |
| <div class="flex flex-col mb-6"> | |
| <span class="font-montserrat text-2xl font-bold text-white">Z&S</span> | |
| <span class="text-xs text-lightgray">Calhas e Vedações</span> | |
| </div> | |
| <p class="text-lightgray mb-6">Soluções profissionais em calhas e sistemas de vedação com 15 anos de excelência no mercado.</p> | |
| <div class="flex space-x-4"> | |
| <a href="#" class="w-10 h-10 flex items-center justify-center bg-white/10 hover:bg-primary rounded-full transition"> | |
| <i class="fab fa-facebook-f text-white"></i> | |
| </a> | |
| <a href="#" class="w-10 h-10 flex items-center justify-center bg-white/10 hover:bg-primary rounded-full transition"> | |
| <i class="fab fa-instagram text-white"></i> | |
| </a> | |
| <a href="#" class="w-10 h-10 flex items-center justify-center bg-white/10 hover:bg-primary rounded-full transition"> | |
| <i class="fab fa-linkedin-in text-white"></i> | |
| </a> | |
| <a href="#" class="w-10 h-10 flex items-center justify-center bg-white/10 hover:bg-primary rounded-full transition"> | |
| <i class="fab fa-whatsapp text-white"></i> | |
| </a> | |
| </div> | |
| </div> | |
| <div> | |
| <h3 class="font-montserrat text-lg font-bold text-white mb-4 pb-2 border-b border-primary inline-block">Links Rápidos</h3> | |
| <ul class="space-y-2"> | |
| <li><a href="#inicio" class="text-lightgray hover:text-white transition">Início</a></li> | |
| <li><a href="#servicos" class="text-lightgray hover:text-white transition">Serviços</a></li> | |
| <li><a href="#diferenciais" class="text-lightgray hover:text-white transition">Diferenciais</a></li> | |
| <li><a href="#sobre" class="text-lightgray hover:text-white transition">Sobre Nós</a></li> | |
| <li><a href="#depoimentos" class="text-lightgray hover:text-white transition">Depoimentos</a></li> | |
| <li><a href="#contato" class="text-lightgray hover:text-white transition">Contato</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h3 class="font-montserrat text-lg font-bold text-white mb-4 pb-2 border-b border-primary inline-block">Nossos Serviços</h3> | |
| <ul class="space-y-2"> | |
| <li><a href="#" class="text-lightgray hover:text-white transition">Instalação de Calhas</a></li> | |
| <li><a href="#" class="text-lightgray hover:text-white transition">Manutenção de Calhas</a></li> | |
| <li><a href="#" class="text-lightgray hover:text-white transition">Sistemas de Vedação</a></li> | |
| <li><a href="#" class="text-lightgray hover:text-white transition">Captação de Água Pluvial</a></li> | |
| <li><a href="#" class="text-lightgray hover:text-white transition">Calhas Industriais</a></li> | |
| <li><a href="#" class="text-lightgray hover:text-white transition">Calhas Decorativas</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h3 class="font-montserrat text-lg font-bold text-white mb-4 pb-2 border-b border-primary inline-block">Contato</h3> | |
| <ul class="space-y-3"> | |
| <li class="flex items-start"> | |
| <i class="fas fa-map-marker-alt text-primary mt-1 mr-3"></i> | |
| <span class="text-lightgray">Rua das Construções, 123 - São Paulo, SP</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i class="fas fa-phone text-primary mr-3"></i> | |
| <span class="text-lightgray">(11) 3333-4444</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i class="fab fa-whatsapp text-primary mr-3"></i> | |
| <span class="text-lightgray">(11) 98888-7777</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-envelope text-primary mt-1 mr-3"></i> | |
| <span class="text-lightgray">contato@zsecalhas.com.br</span> | |
| </li> | |
| </ul> | |
| </div> | |
| </div> | |
| <div class="border-t border-gray-800 mt-12 pt-8"> | |
| <div class="flex flex-col md:flex-row justify-between items-center"> | |
| <p class="text-gray-600 text-sm mb-4 md:mb-0">© 2023 Z&S Calhas e Vedações. Todos os direitos reservados.</p> | |
| <div> | |
| <a href="#" class="text-gray-600 hover:text-lightgray text-sm mr-4">Política de Privacidade</a> | |
| <a href="#" class="text-gray-600 hover:text-lightgray text-sm">Termos de Uso</a> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </footer> | |
| <script> | |
| // Form submission handler | |
| document.getElementById('contactForm').addEventListener('submit', function(e) { | |
| e.preventDefault(); | |
| // Simulate form submission success | |
| alert('Sua solicitação foi enviada com sucesso! Entraremos em contato em breve.'); | |
| this.reset(); | |
| }); | |
| // Mobile menu toggle | |
| const mobileMenuButton = document.getElementById('mobile-menu-button'); | |
| const mobileMenu = document.getElementById('mobile-menu'); | |
| mobileMenuButton.addEventListener('click', function() { | |
| mobileMenu.classList.toggle('hidden'); | |
| }); | |
| // Close mobile menu when clicking a link | |
| document.querySelectorAll('#mobile-menu a').forEach(link => { | |
| link.addEventListener('click', function() { | |
| mobileMenu.classList.add('hidden'); | |
| }); | |
| }); | |
| // Smooth scrolling for navigation | |
| document.querySelectorAll('a[href^="#"]').forEach(anchor => { | |
| anchor.addEventListener('click', function (e) { | |
| e.preventDefault(); | |
| const target = document.querySelector(this.getAttribute('href')); | |
| if (target) { | |
| window.scrollTo({ | |
| top: target.offsetTop - 80, | |
| behavior: 'smooth' | |
| }); | |
| } | |
| }); | |
| }); | |
| </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=jonesfernandes/zes-mobile" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
| </html> |