Spaces:
Running
Running
| <html lang="pt-BR"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Doce Arte Confeitaria - Bolos Artesanais</title> | |
| <link rel="preconnect" href="https://fonts.googleapis.com"> | |
| <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | |
| <link href="https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600&display=swap" rel="stylesheet"> | |
| <script src="https://unpkg.com/lucide@latest/dist/umd/lucide.js"></script> | |
| <style> | |
| :root { | |
| --bg: #fdf8f4; | |
| --bg-dark: #f5ebe0; | |
| --fg: #3d2914; | |
| --fg-light: #6b5344; | |
| --accent: #c9a227; | |
| --accent-light: #e8d5a3; | |
| --rose: #d4a5a5; | |
| --rose-dark: #b88a8a; | |
| --card: #ffffff; | |
| --border: #e8ddd0; | |
| --shadow: rgba(61, 41, 20, 0.1); | |
| } | |
| * { | |
| margin: 0; | |
| padding: 0; | |
| box-sizing: border-box; | |
| } | |
| html { | |
| scroll-behavior: smooth; | |
| } | |
| body { | |
| font-family: 'Poppins', sans-serif; | |
| background-color: var(--bg); | |
| color: var(--fg); | |
| line-height: 1.6; | |
| overflow-x: hidden; | |
| } | |
| h1, h2, h3, h4 { | |
| font-family: 'Playfair Display', serif; | |
| } | |
| /* Utility Classes */ | |
| .container { | |
| max-width: 1200px; | |
| margin: 0 auto; | |
| padding: 0 24px; | |
| } | |
| .btn { | |
| display: inline-flex; | |
| align-items: center; | |
| gap: 8px; | |
| padding: 14px 32px; | |
| border-radius: 50px; | |
| font-family: 'Poppins', sans-serif; | |
| font-weight: 500; | |
| font-size: 15px; | |
| text-decoration: none; | |
| transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); | |
| cursor: pointer; | |
| border: none; | |
| } | |
| .btn-primary { | |
| background: linear-gradient(135deg, var(--accent) 0%, #dbb840 100%); | |
| color: var(--fg); | |
| box-shadow: 0 4px 20px rgba(201, 162, 39, 0.3); | |
| } | |
| .btn-primary:hover { | |
| transform: translateY(-3px); | |
| box-shadow: 0 8px 30px rgba(201, 162, 39, 0.4); | |
| } | |
| .btn-secondary { | |
| background: transparent; | |
| color: var(--fg); | |
| border: 2px solid var(--fg); | |
| } | |
| .btn-secondary:hover { | |
| background: var(--fg); | |
| color: var(--bg); | |
| } | |
| /* Header */ | |
| .header { | |
| position: fixed; | |
| top: 0; | |
| left: 0; | |
| right: 0; | |
| z-index: 1000; | |
| padding: 16px 0; | |
| transition: all 0.4s ease; | |
| } | |
| .header.scrolled { | |
| background: rgba(253, 248, 244, 0.95); | |
| backdrop-filter: blur(20px); | |
| box-shadow: 0 4px 30px var(--shadow); | |
| } | |
| .header .container { | |
| display: flex; | |
| align-items: center; | |
| justify-content: space-between; | |
| } | |
| .logo { | |
| display: flex; | |
| align-items: center; | |
| gap: 12px; | |
| text-decoration: none; | |
| color: var(--fg); | |
| } | |
| .logo-icon { | |
| width: 48px; | |
| height: 48px; | |
| background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%); | |
| border-radius: 50%; | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| font-size: 24px; | |
| } | |
| .logo-text { | |
| font-family: 'Playfair Display', serif; | |
| font-size: 24px; | |
| font-weight: 700; | |
| letter-spacing: -0.5px; | |
| } | |
| .logo-text span { | |
| color: var(--accent); | |
| } | |
| .nav { | |
| display: flex; | |
| align-items: center; | |
| gap: 40px; | |
| } | |
| .nav-links { | |
| display: flex; | |
| gap: 32px; | |
| list-style: none; | |
| } | |
| .nav-links a { | |
| text-decoration: none; | |
| color: var(--fg); | |
| font-weight: 500; | |
| font-size: 15px; | |
| position: relative; | |
| padding: 4px 0; | |
| } | |
| .nav-links a::after { | |
| content: ''; | |
| position: absolute; | |
| bottom: 0; | |
| left: 0; | |
| width: 0; | |
| height: 2px; | |
| background: var(--accent); | |
| transition: width 0.3s ease; | |
| } | |
| .nav-links a:hover::after { | |
| width: 100%; | |
| } | |
| .mobile-toggle { | |
| display: none; | |
| background: none; | |
| border: none; | |
| cursor: pointer; | |
| padding: 8px; | |
| color: var(--fg); | |
| } | |
| /* Hero Section */ | |
| .hero { | |
| min-height: 100vh; | |
| display: flex; | |
| align-items: center; | |
| position: relative; | |
| padding: 120px 0 80px; | |
| overflow: hidden; | |
| } | |
| .hero::before { | |
| content: ''; | |
| position: absolute; | |
| top: -50%; | |
| right: -20%; | |
| width: 80%; | |
| height: 150%; | |
| background: radial-gradient(ellipse, var(--rose) 0%, transparent 70%); | |
| opacity: 0.3; | |
| animation: float 20s ease-in-out infinite; | |
| } | |
| @keyframes float { | |
| 0%, 100% { transform: translate(0, 0) rotate(0deg); } | |
| 50% { transform: translate(-5%, 5%) rotate(5deg); } | |
| } | |
| .hero .container { | |
| display: grid; | |
| grid-template-columns: 1fr 1fr; | |
| gap: 60px; | |
| align-items: center; | |
| } | |
| .hero-content { | |
| position: relative; | |
| z-index: 1; | |
| } | |
| .hero-badge { | |
| display: inline-flex; | |
| align-items: center; | |
| gap: 8px; | |
| padding: 8px 16px; | |
| background: var(--accent-light); | |
| border-radius: 50px; | |
| font-size: 13px; | |
| font-weight: 500; | |
| margin-bottom: 24px; | |
| animation: fadeInUp 0.8s ease forwards; | |
| } | |
| .hero-title { | |
| font-size: clamp(42px, 6vw, 72px); | |
| font-weight: 700; | |
| line-height: 1.1; | |
| margin-bottom: 24px; | |
| animation: fadeInUp 0.8s ease 0.1s forwards; | |
| opacity: 0; | |
| } | |
| .hero-title span { | |
| color: var(--accent); | |
| font-style: italic; | |
| } | |
| .hero-description { | |
| font-size: 18px; | |
| color: var(--fg-light); | |
| margin-bottom: 32px; | |
| max-width: 480px; | |
| animation: fadeInUp 0.8s ease 0.2s forwards; | |
| opacity: 0; | |
| } | |
| .hero-buttons { | |
| display: flex; | |
| gap: 16px; | |
| flex-wrap: wrap; | |
| animation: fadeInUp 0.8s ease 0.3s forwards; | |
| opacity: 0; | |
| } | |
| .hero-image { | |
| position: relative; | |
| animation: fadeInRight 1s ease 0.4s forwards; | |
| opacity: 0; | |
| } | |
| .hero-image-main { | |
| width: 100%; | |
| max-width: 500px; | |
| aspect-ratio: 1; | |
| background: linear-gradient(145deg, var(--rose) 0%, var(--rose-dark) 100%); | |
| border-radius: 50% 50% 50% 70% / 50% 50% 70% 50%; | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| position: relative; | |
| box-shadow: 0 30px 60px rgba(212, 165, 165, 0.4); | |
| } | |
| .cake-illustration { | |
| font-size: 200px; | |
| position: relative; | |
| z-index: 1; | |
| } | |
| .hero-image-decoration { | |
| position: absolute; | |
| width: 100%; | |
| height: 100%; | |
| border: 3px dashed var(--accent); | |
| border-radius: 50%; | |
| animation: spin 30s linear infinite; | |
| opacity: 0.5; | |
| } | |
| @keyframes spin { | |
| from { transform: rotate(0deg); } | |
| to { transform: rotate(360deg); } | |
| } | |
| .floating-element { | |
| position: absolute; | |
| background: var(--card); | |
| padding: 12px 20px; | |
| border-radius: 16px; | |
| box-shadow: 0 10px 40px var(--shadow); | |
| display: flex; | |
| align-items: center; | |
| gap: 10px; | |
| animation: bounce 3s ease-in-out infinite; | |
| } | |
| .floating-element:nth-child(1) { | |
| top: 10%; | |
| left: -10%; | |
| animation-delay: 0s; | |
| } | |
| .floating-element:nth-child(2) { | |
| bottom: 20%; | |
| right: -5%; | |
| animation-delay: 1s; | |
| } | |
| @keyframes bounce { | |
| 0%, 100% { transform: translateY(0); } | |
| 50% { transform: translateY(-10px); } | |
| } | |
| .floating-icon { | |
| width: 40px; | |
| height: 40px; | |
| background: var(--accent-light); | |
| border-radius: 10px; | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| } | |
| .floating-text strong { | |
| display: block; | |
| font-size: 16px; | |
| color: var(--fg); | |
| } | |
| .floating-text span { | |
| font-size: 12px; | |
| color: var(--fg-light); | |
| } | |
| @keyframes fadeInUp { | |
| from { | |
| opacity: 0; | |
| transform: translateY(30px); | |
| } | |
| to { | |
| opacity: 1; | |
| transform: translateY(0); | |
| } | |
| } | |
| @keyframes fadeInRight { | |
| from { | |
| opacity: 0; | |
| transform: translateX(50px); | |
| } | |
| to { | |
| opacity: 1; | |
| transform: translateX(0); | |
| } | |
| } | |
| /* Features Section */ | |
| .features { | |
| padding: 100px 0; | |
| background: var(--bg-dark); | |
| } | |
| .section-header { | |
| text-align: center; | |
| margin-bottom: 60px; | |
| } | |
| .section-tag { | |
| display: inline-block; | |
| padding: 8px 20px; | |
| background: var(--accent-light); | |
| border-radius: 50px; | |
| font-size: 13px; | |
| font-weight: 600; | |
| color: var(--fg); | |
| margin-bottom: 16px; | |
| text-transform: uppercase; | |
| letter-spacing: 1px; | |
| } | |
| .section-title { | |
| font-size: clamp(32px, 4vw, 48px); | |
| font-weight: 700; | |
| margin-bottom: 16px; | |
| } | |
| .section-description { | |
| font-size: 17px; | |
| color: var(--fg-light); | |
| max-width: 600px; | |
| margin: 0 auto; | |
| } | |
| .features-grid { | |
| display: grid; | |
| grid-template-columns: repeat(4, 1fr); | |
| gap: 24px; | |
| } | |
| .feature-card { | |
| background: var(--card); | |
| padding: 32px 24px; | |
| border-radius: 24px; | |
| text-align: center; | |
| transition: all 0.4s ease; | |
| position: relative; | |
| overflow: hidden; | |
| } | |
| .feature-card::before { | |
| content: ''; | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| right: 0; | |
| height: 4px; | |
| background: linear-gradient(90deg, var(--rose), var(--accent)); | |
| transform: scaleX(0); | |
| transition: transform 0.4s ease; | |
| } | |
| .feature-card:hover { | |
| transform: translateY(-8px); | |
| box-shadow: 0 20px 50px var(--shadow); | |
| } | |
| .feature-card:hover::before { | |
| transform: scaleX(1); | |
| } | |
| .feature-icon { | |
| width: 72px; | |
| height: 72px; | |
| background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%); | |
| border-radius: 20px; | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| margin: 0 auto 20px; | |
| transition: transform 0.4s ease; | |
| } | |
| .feature-card:hover .feature-icon { | |
| transform: scale(1.1) rotate(5deg); | |
| } | |
| .feature-title { | |
| font-size: 20px; | |
| font-weight: 600; | |
| margin-bottom: 12px; | |
| } | |
| .feature-text { | |
| font-size: 14px; | |
| color: var(--fg-light); | |
| line-height: 1.7; | |
| } | |
| /* Products Section */ | |
| .products { | |
| padding: 100px 0; | |
| } | |
| .products-grid { | |
| display: grid; | |
| grid-template-columns: repeat(3, 1fr); | |
| gap: 32px; | |
| } | |
| .product-card { | |
| background: var(--card); | |
| border-radius: 28px; | |
| overflow: hidden; | |
| transition: all 0.4s ease; | |
| position: relative; | |
| } | |
| .product-card:hover { | |
| transform: translateY(-10px); | |
| box-shadow: 0 30px 60px var(--shadow); | |
| } | |
| .product-image { | |
| height: 280px; | |
| background: linear-gradient(145deg, var(--rose) 0%, #e8c4c4 100%); | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| position: relative; | |
| overflow: hidden; | |
| } | |
| .product-image::after { | |
| content: ''; | |
| position: absolute; | |
| bottom: 0; | |
| left: 0; | |
| right: 0; | |
| height: 50%; | |
| background: linear-gradient(to top, rgba(0,0,0,0.1), transparent); | |
| } | |
| .product-emoji { | |
| font-size: 100px; | |
| transition: transform 0.4s ease; | |
| } | |
| .product-card:hover .product-emoji { | |
| transform: scale(1.15); | |
| } | |
| .product-badge { | |
| position: absolute; | |
| top: 16px; | |
| left: 16px; | |
| padding: 8px 16px; | |
| background: var(--accent); | |
| border-radius: 50px; | |
| font-size: 12px; | |
| font-weight: 600; | |
| color: var(--fg); | |
| } | |
| .product-content { | |
| padding: 24px; | |
| } | |
| .product-title { | |
| font-size: 22px; | |
| font-weight: 600; | |
| margin-bottom: 8px; | |
| } | |
| .product-description { | |
| font-size: 14px; | |
| color: var(--fg-light); | |
| margin-bottom: 16px; | |
| } | |
| .product-footer { | |
| display: flex; | |
| align-items: center; | |
| justify-content: space-between; | |
| } | |
| .product-price { | |
| font-family: 'Playfair Display', serif; | |
| font-size: 24px; | |
| font-weight: 700; | |
| color: var(--accent); | |
| } | |
| .product-btn { | |
| width: 48px; | |
| height: 48px; | |
| background: var(--fg); | |
| border-radius: 50%; | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| color: var(--bg); | |
| cursor: pointer; | |
| transition: all 0.3s ease; | |
| border: none; | |
| } | |
| .product-btn:hover { | |
| background: var(--accent); | |
| transform: scale(1.1); | |
| } | |
| /* About Section */ | |
| .about { | |
| padding: 100px 0; | |
| background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg) 100%); | |
| } | |
| .about .container { | |
| display: grid; | |
| grid-template-columns: 1fr 1fr; | |
| gap: 80px; | |
| align-items: center; | |
| } | |
| .about-image { | |
| position: relative; | |
| } | |
| .about-image-main { | |
| width: 100%; | |
| max-width: 450px; | |
| aspect-ratio: 4/5; | |
| background: linear-gradient(145deg, var(--rose) 0%, var(--rose-dark) 100%); | |
| border-radius: 30px; | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| position: relative; | |
| box-shadow: 0 30px 60px rgba(212, 165, 165, 0.3); | |
| } | |
| .about-emoji { | |
| font-size: 150px; | |
| } | |
| .about-image-accent { | |
| position: absolute; | |
| bottom: -30px; | |
| right: -30px; | |
| width: 200px; | |
| height: 200px; | |
| background: var(--accent-light); | |
| border-radius: 30px; | |
| z-index: -1; | |
| } | |
| .about-stats { | |
| position: absolute; | |
| bottom: 40px; | |
| left: -40px; | |
| background: var(--card); | |
| padding: 24px 32px; | |
| border-radius: 20px; | |
| box-shadow: 0 20px 50px var(--shadow); | |
| display: flex; | |
| gap: 32px; | |
| } | |
| .stat-item { | |
| text-align: center; | |
| } | |
| .stat-number { | |
| font-family: 'Playfair Display', serif; | |
| font-size: 32px; | |
| font-weight: 700; | |
| color: var(--accent); | |
| } | |
| .stat-label { | |
| font-size: 13px; | |
| color: var(--fg-light); | |
| } | |
| .about-content { | |
| position: relative; | |
| } | |
| .about-title { | |
| font-size: clamp(32px, 4vw, 44px); | |
| font-weight: 700; | |
| margin-bottom: 24px; | |
| line-height: 1.2; | |
| } | |
| .about-text { | |
| font-size: 16px; | |
| color: var(--fg-light); | |
| margin-bottom: 24px; | |
| line-height: 1.8; | |
| } | |
| .about-list { | |
| list-style: none; | |
| margin-bottom: 32px; | |
| } | |
| .about-list li { | |
| display: flex; | |
| align-items: center; | |
| gap: 12px; | |
| padding: 12px 0; | |
| border-bottom: 1px solid var(--border); | |
| } | |
| .about-list li:last-child { | |
| border-bottom: none; | |
| } | |
| .check-icon { | |
| width: 24px; | |
| height: 24px; | |
| background: var(--accent-light); | |
| border-radius: 50%; | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| flex-shrink: 0; | |
| } | |
| /* Testimonials */ | |
| .testimonials { | |
| padding: 100px 0; | |
| } | |
| .testimonials-grid { | |
| display: grid; | |
| grid-template-columns: repeat(3, 1fr); | |
| gap: 24px; | |
| } | |
| .testimonial-card { | |
| background: var(--card); | |
| padding: 32px; | |
| border-radius: 24px; | |
| position: relative; | |
| transition: all 0.4s ease; | |
| } | |
| .testimonial-card:hover { | |
| transform: translateY(-8px); | |
| box-shadow: 0 20px 50px var(--shadow); | |
| } | |
| .testimonial-card.featured { | |
| background: linear-gradient(145deg, var(--rose) 0%, var(--rose-dark) 100%); | |
| color: white; | |
| } | |
| .testimonial-quote { | |
| position: absolute; | |
| top: 24px; | |
| right: 24px; | |
| font-size: 48px; | |
| font-family: 'Playfair Display', serif; | |
| opacity: 0.2; | |
| } | |
| .testimonial-card.featured .testimonial-quote { | |
| opacity: 0.3; | |
| color: white; | |
| } | |
| .testimonial-stars { | |
| display: flex; | |
| gap: 4px; | |
| margin-bottom: 16px; | |
| color: var(--accent); | |
| } | |
| .testimonial-text { | |
| font-size: 15px; | |
| line-height: 1.8; | |
| margin-bottom: 24px; | |
| } | |
| .testimonial-card.featured .testimonial-text { | |
| color: rgba(255,255,255,0.9); | |
| } | |
| .testimonial-author { | |
| display: flex; | |
| align-items: center; | |
| gap: 12px; | |
| } | |
| .author-avatar { | |
| width: 48px; | |
| height: 48px; | |
| background: var(--accent-light); | |
| border-radius: 50%; | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| font-weight: 600; | |
| font-size: 18px; | |
| } | |
| .testimonial-card.featured .author-avatar { | |
| background: rgba(255,255,255,0.3); | |
| } | |
| .author-name { | |
| font-weight: 600; | |
| font-size: 15px; | |
| } | |
| .author-role { | |
| font-size: 13px; | |
| color: var(--fg-light); | |
| } | |
| .testimonial-card.featured .author-role { | |
| color: rgba(255,255,255,0.7); | |
| } | |
| /* Contact Section */ | |
| .contact { | |
| padding: 100px 0; | |
| background: var(--bg-dark); | |
| } | |
| .contact-wrapper { | |
| display: grid; | |
| grid-template-columns: 1fr 1fr; | |
| gap: 60px; | |
| background: var(--card); | |
| border-radius: 32px; | |
| padding: 60px; | |
| box-shadow: 0 30px 60px var(--shadow); | |
| } | |
| .contact-info h2 { | |
| font-size: 36px; | |
| margin-bottom: 16px; | |
| } | |
| .contact-info p { | |
| color: var(--fg-light); | |
| margin-bottom: 32px; | |
| } | |
| .contact-items { | |
| display: flex; | |
| flex-direction: column; | |
| gap: 20px; | |
| } | |
| .contact-item { | |
| display: flex; | |
| align-items: center; | |
| gap: 16px; | |
| } | |
| .contact-icon { | |
| width: 56px; | |
| height: 56px; | |
| background: var(--accent-light); | |
| border-radius: 16px; | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| flex-shrink: 0; | |
| } | |
| .contact-item-text strong { | |
| display: block; | |
| font-size: 15px; | |
| margin-bottom: 4px; | |
| } | |
| .contact-item-text span { | |
| font-size: 14px; | |
| color: var(--fg-light); | |
| } | |
| .contact-form { | |
| display: flex; | |
| flex-direction: column; | |
| gap: 20px; | |
| } | |
| .form-row { | |
| display: grid; | |
| grid-template-columns: 1fr 1fr; | |
| gap: 20px; | |
| } | |
| .form-group { | |
| display: flex; | |
| flex-direction: column; | |
| gap: 8px; | |
| } | |
| .form-group label { | |
| font-size: 14px; | |
| font-weight: 500; | |
| } | |
| .form-group input, | |
| .form-group textarea { | |
| padding: 16px 20px; | |
| border: 2px solid var(--border); | |
| border-radius: 16px; | |
| font-family: 'Poppins', sans-serif; | |
| font-size: 15px; | |
| background: var(--bg); | |
| transition: all 0.3s ease; | |
| } | |
| .form-group input:focus, | |
| .form-group textarea:focus { | |
| outline: none; | |
| border-color: var(--accent); | |
| box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.1); | |
| } | |
| .form-group textarea { | |
| min-height: 120px; | |
| resize: vertical; | |
| } | |
| .contact-form .btn { | |
| width: 100%; | |
| justify-content: center; | |
| margin-top: 8px; | |
| } | |
| /* Footer */ | |
| .footer { | |
| background: var(--fg); | |
| color: var(--bg); | |
| padding: 80px 0 30px; | |
| } | |
| .footer-grid { | |
| display: grid; | |
| grid-template-columns: 2fr 1fr 1fr 1fr; | |
| gap: 60px; | |
| margin-bottom: 60px; | |
| } | |
| .footer-brand .logo { | |
| color: var(--bg); | |
| margin-bottom: 20px; | |
| } | |
| .footer-brand .logo-icon { | |
| background: var(--accent); | |
| } | |
| .footer-brand p { | |
| color: rgba(255,255,255,0.6); | |
| font-size: 14px; | |
| line-height: 1.8; | |
| margin-bottom: 24px; | |
| } | |
| .social-links { | |
| display: flex; | |
| gap: 12px; | |
| } | |
| .social-link { | |
| width: 44px; | |
| height: 44px; | |
| background: rgba(255,255,255,0.1); | |
| border-radius: 12px; | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| color: var(--bg); | |
| transition: all 0.3s ease; | |
| } | |
| .social-link:hover { | |
| background: var(--accent); | |
| transform: translateY(-4px); | |
| } | |
| .footer-title { | |
| font-size: 18px; | |
| font-weight: 600; | |
| margin-bottom: 24px; | |
| color: var(--bg); | |
| } | |
| .footer-links { | |
| list-style: none; | |
| display: flex; | |
| flex-direction: column; | |
| gap: 12px; | |
| } | |
| .footer-links a { | |
| color: rgba(255,255,255,0.6); | |
| text-decoration: none; | |
| font-size: 14px; | |
| transition: all 0.3s ease; | |
| } | |
| .footer-links a:hover { | |
| color: var(--accent); | |
| padding-left: 8px; | |
| } | |
| .footer-bottom { | |
| padding-top: 30px; | |
| border-top: 1px solid rgba(255,255,255,0.1); | |
| display: flex; | |
| justify-content: space-between; | |
| align-items: center; | |
| font-size: 14px; | |
| color: rgba(255,255,255,0.5); | |
| } | |
| .footer-bottom a { | |
| color: var(--accent); | |
| text-decoration: none; | |
| } | |
| /* Mobile Menu */ | |
| .mobile-menu { | |
| position: fixed; | |
| top: 0; | |
| left: 0; | |
| right: 0; | |
| bottom: 0; | |
| background: var(--bg); | |
| z-index: 999; | |
| display: flex; | |
| flex-direction: column; | |
| padding: 100px 24px 40px; | |
| transform: translateX(100%); | |
| transition: transform 0.4s ease; | |
| } | |
| .mobile-menu.active { | |
| transform: translateX(0); | |
| } | |
| .mobile-menu-close { | |
| position: absolute; | |
| top: 24px; | |
| right: 24px; | |
| background: none; | |
| border: none; | |
| cursor: pointer; | |
| padding: 8px; | |
| color: var(--fg); | |
| } | |
| .mobile-menu-links { | |
| list-style: none; | |
| display: flex; | |
| flex-direction: column; | |
| gap: 24px; | |
| } | |
| .mobile-menu-links a { | |
| font-size: 28px; | |
| font-family: 'Playfair Display', serif; | |
| text-decoration: none; | |
| color: var(--fg); | |
| } | |
| /* Scroll Reveal */ | |
| .reveal { | |
| opacity: 0; | |
| transform: translateY(40px); | |
| transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); | |
| } | |
| .reveal.active { | |
| opacity: 1; | |
| transform: translateY(0); | |
| } | |
| /* Responsive */ | |
| @media (max-width: 1024px) { | |
| .features-grid { | |
| grid-template-columns: repeat(2, 1fr); | |
| } | |
| .products-grid { | |
| grid-template-columns: repeat(2, 1fr); | |
| } | |
| .about .container { | |
| grid-template-columns: 1fr; | |
| gap: 60px; | |
| } | |
| .about-image { | |
| order: -1; | |
| display: flex; | |
| justify-content: center; | |
| } | |
| .about-stats { | |
| left: 50%; | |
| transform: translateX(-50%); | |
| } | |
| .testimonials-grid { | |
| grid-template-columns: 1fr; | |
| } | |
| .contact-wrapper { | |
| grid-template-columns: 1fr; | |
| padding: 40px; | |
| } | |
| .footer-grid { | |
| grid-template-columns: repeat(2, 1fr); | |
| } | |
| } | |
| @media (max-width: 768px) { | |
| .nav-links { | |
| display: none; | |
| } | |
| .mobile-toggle { | |
| display: block; | |
| } | |
| .hero .container { | |
| grid-template-columns: 1fr; | |
| text-align: center; | |
| } | |
| .hero-description { | |
| margin-left: auto; | |
| margin-right: auto; | |
| } | |
| .hero-buttons { | |
| justify-content: center; | |
| } | |
| .hero-image { | |
| order: -1; | |
| } | |
| .hero-image-main { | |
| max-width: 300px; | |
| margin: 0 auto; | |
| } | |
| .floating-element { | |
| display: none; | |
| } | |
| .features-grid { | |
| grid-template-columns: 1fr; | |
| } | |
| .products-grid { | |
| grid-template-columns: 1fr; | |
| } | |
| .about-stats { | |
| flex-direction: column; | |
| gap: 16px; | |
| padding: 16px 24px; | |
| } | |
| .form-row { | |
| grid-template-columns: 1fr; | |
| } | |
| .footer-grid { | |
| grid-template-columns: 1fr; | |
| gap: 40px; | |
| } | |
| .footer-bottom { | |
| flex-direction: column; | |
| gap: 16px; | |
| text-align: center; | |
| } | |
| } | |
| /* Reduced Motion */ | |
| @media (prefers-reduced-motion: reduce) { | |
| *, | |
| *::before, | |
| *::after { | |
| animation-duration: 0.01ms ; | |
| animation-iteration-count: 1 ; | |
| transition-duration: 0.01ms ; | |
| } | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <!-- Header --> | |
| <header class="header" id="header"> | |
| <div class="container"> | |
| <a href="#" class="logo"> | |
| <div class="logo-icon"> | |
| <i data-lucide="cake" style="width: 24px; height: 24px; color: white;"></i> | |
| </div> | |
| <span class="logo-text">Doce <span>Arte</span></span> | |
| </a> | |
| <nav class="nav"> | |
| <ul class="nav-links"> | |
| <li><a href="#inicio">Inicio</a></li> | |
| <li><a href="#produtos">Produtos</a></li> | |
| <li><a href="#sobre">Sobre</a></li> | |
| <li><a href="#depoimentos">Depoimentos</a></li> | |
| <li><a href="#contato">Contato</a></li> | |
| </ul> | |
| <a href="#contato" class="btn btn-primary">Encomendar</a> | |
| </nav> | |
| <button class="mobile-toggle" id="mobileToggle" aria-label="Abrir menu"> | |
| <i data-lucide="menu" style="width: 28px; height: 28px;"></i> | |
| </button> | |
| </div> | |
| </header> | |
| <!-- Mobile Menu --> | |
| <div class="mobile-menu" id="mobileMenu"> | |
| <button class="mobile-menu-close" id="mobileClose" aria-label="Fechar menu"> | |
| <i data-lucide="x" style="width: 28px; height: 28px;"></i> | |
| </button> | |
| <ul class="mobile-menu-links"> | |
| <li><a href="#inicio">Inicio</a></li> | |
| <li><a href="#produtos">Produtos</a></li> | |
| <li><a href="#sobre">Sobre</a></li> | |
| <li><a href="#depoimentos">Depoimentos</a></li> | |
| <li><a href="#contato">Contato</a></li> | |
| </ul> | |
| </div> | |
| <!-- Hero Section --> | |
| <section class="hero" id="inicio"> | |
| <div class="container"> | |
| <div class="hero-content"> | |
| <div class="hero-badge"> | |
| <i data-lucide="sparkles" style="width: 16px; height: 16px;"></i> | |
| Confeitaria Artesanal desde 2015 | |
| </div> | |
| <h1 class="hero-title"> | |
| Doces que <span>encantam</span> cada momento | |
| </h1> | |
| <p class="hero-description"> | |
| Criamos bolos artesanais com ingredientes selecionados e muito amor. | |
| Cada receita e uma obra de arte feita especialmente para voce. | |
| </p> | |
| <div class="hero-buttons"> | |
| <a href="#produtos" class="btn btn-primary"> | |
| Ver Produtos | |
| <i data-lucide="arrow-right" style="width: 18px; height: 18px;"></i> | |
| </a> | |
| <a href="#sobre" class="btn btn-secondary">Nossa Historia</a> | |
| </div> | |
| </div> | |
| <div class="hero-image"> | |
| <div class="floating-element"> | |
| <div class="floating-icon"> | |
| <i data-lucide="award" style="width: 20px; height: 20px;"></i> | |
| </div> | |
| <div class="floating-text"> | |
| <strong>+500</strong> | |
| <span>Bolos entregues</span> | |
| </div> | |
| </div> | |
| <div class="floating-element"> | |
| <div class="floating-icon"> | |
| <i data-lucide="star" style="width: 20px; height: 20px;"></i> | |
| </div> | |
| <div class="floating-text"> | |
| <strong>4.9</strong> | |
| <span>Avaliacao</span> | |
| </div> | |
| </div> | |
| <div class="hero-image-main"> | |
| <div class="hero-image-decoration"></div> | |
| <span class="cake-illustration">π</span> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Features Section --> | |
| <section class="features" id="diferenciais"> | |
| <div class="container"> | |
| <div class="section-header reveal"> | |
| <span class="section-tag">Nossos Diferenciais</span> | |
| <h2 class="section-title">Por que escolher a Doce Arte?</h2> | |
| <p class="section-description"> | |
| Comprometidos com a qualidade e satisfacao de cada cliente | |
| </p> | |
| </div> | |
| <div class="features-grid"> | |
| <div class="feature-card reveal"> | |
| <div class="feature-icon"> | |
| <i data-lucide="leaf" style="width: 32px; height: 32px; color: white;"></i> | |
| </div> | |
| <h3 class="feature-title">Ingredientes Frescos</h3> | |
| <p class="feature-text"> | |
| Utilizamos apenas ingredientes de alta qualidade, frescos e selecionados para garantir o melhor sabor. | |
| </p> | |
| </div> | |
| <div class="feature-card reveal"> | |
| <div class="feature-icon"> | |
| <i data-lucide="heart-handshake" style="width: 32px; height: 32px; color: white;"></i> | |
| </div> | |
| <h3 class="feature-title">Feito com Amor</h3> | |
| <p class="feature-text"> | |
| Cada bolo e preparado com dedicacao e carinho, como se fosse para nossa propria familia. | |
| </p> | |
| </div> | |
| <div class="feature-card reveal"> | |
| <div class="feature-icon"> | |
| <i data-lucide="truck" style="width: 32px; height: 32px; color: white;"></i> | |
| </div> | |
| <h3 class="feature-title">Entrega Rapida</h3> | |
| <p class="feature-text"> | |
| Entregamos seu bolo com todo cuidado e pontualidade para que sua festa seja perfeita. | |
| </p> | |
| </div> | |
| <div class="feature-card reveal"> | |
| <div class="feature-icon"> | |
| <i data-lucide="palette" style="width: 32px; height: 32px; color: white;"></i> | |
| </div> | |
| <h3 class="feature-title">Design Personalizado</h3> | |
| <p class="feature-text"> | |
| Criamos decoracoes exclusivas que combinam perfeitamente com o tema da sua festa. | |
| </p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Products Section --> | |
| <section class="products" id="produtos"> | |
| <div class="container"> | |
| <div class="section-header reveal"> | |
| <span class="section-tag">Nossos Produtos</span> | |
| <h2 class="section-title">Bolos que fazem sucesso</h2> | |
| <p class="section-description"> | |
| Conheca nossos bolos mais pedidos e faca sua encomenda | |
| </p> | |
| </div> | |
| <div class="products-grid"> | |
| <div class="product-card reveal"> | |
| <div class="product-image"> | |
| <span class="product-badge">Mais Vendido</span> | |
| <span class="product-emoji">π</span> | |
| </div> | |
| <div class="product-content"> | |
| <h3 class="product-title">Bolo de Chocolate Belga</h3> | |
| <p class="product-description"> | |
| Massa fofinha com chocolate belga 70% e ganache cremoso | |
| </p> | |
| <div class="product-footer"> | |
| <span class="product-price">R$ 180,00</span> | |
| <button class="product-btn" aria-label="Adicionar ao carrinho"> | |
| <i data-lucide="shopping-bag" style="width: 20px; height: 20px;"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="product-card reveal"> | |
| <div class="product-image"> | |
| <span class="product-emoji">π°</span> | |
| </div> | |
| <div class="product-content"> | |
| <h3 class="product-title">Bolo Red Velvet</h3> | |
| <p class="product-description"> | |
| Classico bolo vermelho com cream cheese e cobertura especial | |
| </p> | |
| <div class="product-footer"> | |
| <span class="product-price">R$ 165,00</span> | |
| <button class="product-btn" aria-label="Adicionar ao carrinho"> | |
| <i data-lucide="shopping-bag" style="width: 20px; height: 20px;"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="product-card reveal"> | |
| <div class="product-image"> | |
| <span class="product-emoji">π§</span> | |
| </div> | |
| <div class="product-content"> | |
| <h3 class="product-title">Bolo de Coco com Leite Condensado</h3> | |
| <p class="product-description"> | |
| Bolo molhadinho com coco ralado e recheio cremoso | |
| </p> | |
| <div class="product-footer"> | |
| <span class="product-price">R$ 145,00</span> | |
| <button class="product-btn" aria-label="Adicionar ao carrinho"> | |
| <i data-lucide="shopping-bag" style="width: 20px; height: 20px;"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="product-card reveal"> | |
| <div class="product-image"> | |
| <span class="product-badge">Novidade</span> | |
| <span class="product-emoji">π</span> | |
| </div> | |
| <div class="product-content"> | |
| <h3 class="product-title">Bolo Naked Cake</h3> | |
| <p class="product-description"> | |
| Trend decoracao rustica com frutas frescas e flores | |
| </p> | |
| <div class="product-footer"> | |
| <span class="product-price">R$ 220,00</span> | |
| <button class="product-btn" aria-label="Adicionar ao carrinho"> | |
| <i data-lucide="shopping-bag" style="width: 20px; height: 20px;"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="product-card reveal"> | |
| <div class="product-image"> | |
| <span class="product-emoji">πΈ</span> | |
| </div> | |
| <div class="product-content"> | |
| <h3 class="product-title">Bolo de Morango com Chantilly</h3> | |
| <p class="product-description"> | |
| Camadas de massa, morangos frescos e chantilly leve | |
| </p> | |
| <div class="product-footer"> | |
| <span class="product-price">R$ 175,00</span> | |
| <button class="product-btn" aria-label="Adicionar ao carrinho"> | |
| <i data-lucide="shopping-bag" style="width: 20px; height: 20px;"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="product-card reveal"> | |
| <div class="product-image"> | |
| <span class="product-emoji">π</span> | |
| </div> | |
| <div class="product-content"> | |
| <h3 class="product-title">Bolo Infantil Personalizado</h3> | |
| <p class="product-description"> | |
| Decoracao tematica com personagens e cores da festa | |
| </p> | |
| <div class="product-footer"> | |
| <span class="product-price">A partir de R$ 200,00</span> | |
| <button class="product-btn" aria-label="Adicionar ao carrinho"> | |
| <i data-lucide="shopping-bag" style="width: 20px; height: 20px;"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- About Section --> | |
| <section class="about" id="sobre"> | |
| <div class="container"> | |
| <div class="about-image reveal"> | |
| <div class="about-image-main"> | |
| <span class="about-emoji">π©βπ³</span> | |
| </div> | |
| <div class="about-image-accent"></div> | |
| <div class=" |