:root { --bg-main: #faf9f5; --bg-light: #ffffff; --bg-beige: #efe8df; --text-dark: #33312e; --text-muted: #78746f; --accent: #d4c3b3; --accent-dark: #8c8074; --font-heading: 'Playfair Display', serif; --font-body: 'Montserrat', sans-serif; --transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1); } * { margin: 0; padding: 0; box-sizing: border-box; } html { scroll-behavior: smooth; scroll-padding-top: 80px; } body { font-family: var(--font-body); background-color: var(--bg-main); color: var(--text-dark); line-height: 1.7; overflow-x: hidden; font-weight: 300; } h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 400; color: var(--text-dark); line-height: 1.2; } .fw-light { font-weight: 300 !important; } a { text-decoration: none; color: inherit; transition: var(--transition); } ul { list-style: none; } img { max-width: 100%; height: auto; display: block; } .text-center { text-align: center; } .mt-4 { margin-top: 2rem; } .ms-3 { margin-left: 1rem; } .w-100 { width: 100%; } .bg-light { background-color: var(--bg-light); } .bg-beige { background-color: var(--bg-beige); } .container { max-width: 1200px; margin: 0 auto; padding: 0 5%; } .section { padding: 100px 0; overflow: hidden; } .section-header { text-align: center; margin-bottom: 4rem; } .section-title { font-size: 2.5rem; margin-bottom: 1rem; letter-spacing: 1px; } .section-subtitle { color: var(--text-muted); max-width: 600px; margin: 0 auto; font-size: 1.05rem; } .divider { width: 60px; height: 2px; background-color: var(--accent); margin-bottom: 2rem; } .divider.center { margin: 0 auto 2rem auto; } .btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 35px; font-family: var(--font-body); text-transform: uppercase; letter-spacing: 2px; font-size: 0.85rem; font-weight: 500; cursor: pointer; transition: var(--transition); border: none; border-radius: 0; } .btn-icon { margin-right: 8px; width: 18px; height: 18px; } .btn-outline { border: 1px solid var(--text-dark); background: transparent; color: var(--text-dark); } .btn-outline:hover { background: var(--text-dark); color: var(--bg-light); } .btn-solid { background: var(--text-dark); color: var(--bg-light); border: 1px solid var(--text-dark); } .btn-solid:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: var(--bg-light); } header { position: fixed; top: 0; left: 0; width: 100%; padding: 25px 0; z-index: 1000; transition: var(--transition); background: transparent; } header.scrolled { background: rgba(250, 249, 245, 0.95); backdrop-filter: blur(10px); padding: 15px 0; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03); } .nav-container { max-width: 1300px; margin: 0 auto; padding: 0 5%; display: flex; justify-content: space-between; align-items: center; } .logo { z-index: 1001; display: flex; align-items: center; } .logo-img { height: 150px; width: auto; transition: var(--transition); } header.scrolled .logo-img { height: 95px; } .logo:hover .logo-img { opacity: 0.8; } .desktop-nav .nav-links { display: flex; gap: 2.5rem; } .nav-links li a { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; position: relative; font-weight: 500; color: var(--text-dark); } .nav-links li a::after { content: ''; position: absolute; width: 0; height: 1px; bottom: -6px; left: 0; background-color: var(--accent-dark); transition: var(--transition); } .nav-links li a:hover::after, .nav-links li a.active::after { width: 100%; } .mobile-menu-btn { display: none; cursor: pointer; z-index: 1001; } .mobile-nav { position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; background-color: var(--bg-main); z-index: 1002; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: var(--transition); } .mobile-nav.open { right: 0; } .close-btn { position: absolute; top: 25px; right: 5%; cursor: pointer; } .mobile-nav-links { display: flex; flex-direction: column; gap: 2rem; text-align: center; } .mobile-nav-links li a { font-family: var(--font-heading); font-size: 2rem; color: var(--text-dark); } .hero { height: 100vh; display: flex; align-items: center; position: relative; padding: 0 5%; overflow: hidden; } .hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: url('https://images.unsplash.com/photo-1616394584738-fc6e612e71b9?auto=format&fit=crop&q=80'); background-size: cover; background-position: center; background-attachment: fixed; z-index: -2; animation: scaleDown 20s ease-out forwards; } .hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to right, rgba(250, 249, 245, 0.95) 0%, rgba(250, 249, 245, 0.6) 60%, rgba(250, 249, 245, 0.2) 100%); z-index: -1; } .hero-content { max-width: 650px; animation: fadeUp 1.5s cubic-bezier(0.25, 0.8, 0.25, 1) forwards; opacity: 0; transform: translateY(40px); margin-left: 5%; } .subtitle { display: block; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 4px; margin-bottom: 20px; color: var(--accent-dark); font-weight: 500; } .hero-content h1 { font-size: 4.5rem; line-height: 1.05; margin-bottom: 25px; } .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0; } .hero-content p { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 40px; max-width: 500px; } .container-split { display: flex; align-items: center; gap: 5rem; } .split-image { flex: 1; position: relative; } .split-image::before { content: ''; position: absolute; top: 20px; left: -20px; width: 100%; height: 100%; border: 1px solid var(--accent); z-index: -1; } .split-image img { width: 100%; height: 550px; object-fit: cover; } .split-content { flex: 1; } .split-content p { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 1.05rem; } .signature { font-family: 'Playfair Display', serif; font-size: 2rem; font-style: italic; color: var(--accent-dark); margin-top: 2rem; } .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; } .services-grid--6 { grid-template-columns: repeat(3, 1fr); } .service-card { background: var(--bg-light); padding: 3.5rem 2.5rem; text-align: center; border: 1px solid rgba(212, 195, 179, 0.3); transition: var(--transition); position: relative; overflow: hidden; } .service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background-color: var(--accent); transform: scaleX(0); transform-origin: left; transition: var(--transition); } .service-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.04); } .service-card:hover::before { transform: scaleX(1); } .service-icon { width: 80px; height: 80px; margin: 0 auto 2rem auto; background-color: var(--bg-beige); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--accent-dark); } .service-icon svg { width: 32px; height: 32px; } .service-card h3 { font-size: 1.5rem; margin-bottom: 1rem; } .service-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 2rem; } .gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; } .gallery-card { background: var(--bg-light); border: 1px solid rgba(212, 195, 179, 0.3); transition: var(--transition); display: flex; flex-direction: column; overflow: hidden; } .gallery-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.05); border-color: var(--accent-dark); } .gallery-img { width: 100%; height: 250px; object-fit: cover; transition: transform 0.8s ease; } .gallery-card:hover .gallery-img { transform: scale(1.03); } .gallery-card-content { padding: 2.5rem; display: flex; flex-direction: column; flex-grow: 1; text-align: center; } .gallery-card-content h3 { font-size: 1.3rem; margin-bottom: 1rem; } .gallery-card-content p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 0; } .floating-whatsapp { position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; background-color: #25d366; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); z-index: 1000; transition: var(--transition); } .floating-whatsapp:hover { transform: scale(1.1); background-color: #1ebe57; color: #fff; } .contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; background: var(--bg-light); padding: 4rem; box-shadow: 0 10px 30px rgba(0,0,0,0.02); } .contact-info { display: flex; flex-direction: column; gap: 2rem; } .info-item { display: flex; gap: 1.5rem; } .info-item svg { width: 24px; height: 24px; color: var(--accent-dark); margin-top: 5px; } .info-item h4 { font-size: 1.1rem; margin-bottom: 0.5rem; } .info-item p { color: var(--text-muted); font-size: 0.95rem; } .form-group { margin-bottom: 1.5rem; } .form-group input.minimal-input, .form-group textarea.minimal-input { width: 100%; padding: 1rem 0; border: none; border-bottom: 1px solid rgba(212, 195, 179, 0.5); background: transparent; font-family: var(--font-body); font-size: 0.95rem; color: var(--text-dark); outline: none; transition: var(--transition); border-radius: 0; box-shadow: none; } .form-group input.minimal-input:focus, .form-group textarea.minimal-input:focus { border-bottom-color: var(--accent-dark); } .btn-animated { transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); } .btn-animated:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(212, 195, 179, 0.4); } .form-status-msg { margin-top: 1rem; font-size: 0.9rem; text-align: center; opacity: 0; transition: opacity 0.3s ease; pointer-events: none; } .form-status-msg.show { opacity: 1; } .form-status-msg.error { color: #d9534f; } footer { background-color: var(--bg-beige); color: var(--text-dark); padding: 4rem 0; text-align: center; border-top: 1px solid rgba(212, 195, 179, 0.3); } .footer-content { display: flex; flex-direction: column; align-items: center; gap: 2rem; } .footer-logo { display: flex; align-items: center; justify-content: center; } .footer-logo-img { height: 300px; width: auto; border-radius: 4px; } .social-links { display: flex; gap: 1.5rem; } .social-links a { color: var(--text-dark); opacity: 0.7; transition: var(--transition); } .social-links a:hover { opacity: 1; transform: translateY(-3px); } footer p { opacity: 0.5; font-size: 0.85rem; } .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; } .reveal.active { opacity: 1; transform: translateY(0); } .delay-1 { transition-delay: 0.2s; } .delay-2 { transition-delay: 0.4s; } @keyframes fadeUp { to { opacity: 1; transform: translateY(0); } } @keyframes scaleDown { from { transform: scale(1.1); } to { transform: scale(1); } } @media (max-width: 992px) { .hero-content h1 { font-size: 3.5rem; } .container-split { flex-direction: column; gap: 3rem; } .contact-wrapper { grid-template-columns: 1fr; padding: 2.5rem; } .services-grid--6 { grid-template-columns: repeat(2, 1fr); } } @media (max-width: 768px) { .desktop-nav { display: none; } .mobile-menu-btn { display: block; } .hero { align-items: flex-end; padding-bottom: 20vh; } .hero-overlay { background: linear-gradient(to top, rgba(250, 249, 245, 0.95) 0%, rgba(250, 249, 245, 0.7) 50%, rgba(250, 249, 245, 0.1) 100%); } .hero-content { margin-left: 0; } .hero-content h1 { font-size: 3rem; } .section { padding: 70px 0; } .section-title { font-size: 2rem; } .split-image img { height: 400px; } .services-grid--6 { grid-template-columns: 1fr; } .gallery-grid { grid-template-columns: 1fr; } }