@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600&display=swap'); :root { --gold: #c9a227; --gold-light: #d4b84a; --gold-dark: #a68820; --dark: #1a1a1a; --dark-brown: #2d2a26; --burgundy: #722f37; --white: #ffffff; --gray: #f5f5f5; --text-light: #e8e8e8; --text-muted: #999999; } * { margin: 0; padding: 0; box-sizing: border-box; } html { scroll-behavior: smooth; } body { font-family: 'Montserrat', sans-serif; background: var(--dark); color: var(--text-light); line-height: 1.7; overflow-x: hidden; position: relative; } body::before { content: ''; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: url('images/balanca-fundo.webp') no-repeat center center; background-size: 50%; opacity: 0.08; z-index: -1; pointer-events: none; } h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 600; letter-spacing: 1px; } a { text-decoration: none; color: inherit; transition: all 0.3s ease; } .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; } header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 15px 0; transition: all 0.4s ease; background: transparent; } header.scrolled { background: rgba(26, 26, 26, 0.98); backdrop-filter: blur(10px); box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3); padding: 10px 0; } header .container { display: flex; justify-content: space-between; align-items: center; } .logo { display: flex; align-items: center; gap: 15px; } .logo img { height: 60px; transition: transform 0.3s ease; } .logo:hover img { transform: scale(1.05); } nav ul { display: flex; list-style: none; gap: 35px; } nav a { font-size: 0.9rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-light); position: relative; padding: 5px 0; } nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); transition: width 0.3s ease; } nav a:hover { color: var(--gold); } nav a:hover::after { width: 100%; } .mobile-menu { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 10px; } .mobile-menu span { width: 25px; height: 2px; background: var(--gold); transition: all 0.3s ease; } .hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; background: url('images/balanca-fundo.webp') no-repeat center center; background-size: cover; background-attachment: fixed; overflow: hidden; } .hero::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(26, 26, 26, 0.8), rgba(26, 26, 26, 0.9)); z-index: 1; } .hero-content { text-align: center; z-index: 2; padding: 0 20px; animation: fadeInUp 1s ease; } .hero-logo { width: 200px; margin-bottom: 30px; animation: float 6s ease-in-out infinite; } .hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); color: var(--gold); margin-bottom: 20px; text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5); } .hero p { font-size: 1.2rem; color: var(--text-muted); max-width: 600px; margin: 0 auto 40px; } .btn-primary { display: inline-block; padding: 18px 50px; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--dark); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; border-radius: 50px; transition: all 0.4s ease; box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3); } .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(201, 162, 39, 0.4); } .selos { background: #111; padding: 40px 0; border-bottom: 1px solid rgba(201, 162, 39, 0.1); } .selos-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; align-items: center; } .selo-item { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; transition: transform 0.3s ease; } .selo-item:hover { transform: translateY(-5px); } .selo-item img { height: 100px; width: auto; filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5)); } .selo-item span { font-size: 0.8rem; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; font-weight: 500; } section { padding: 100px 0; } .section-header { text-align: center; margin-bottom: 60px; } .section-header h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--gold); margin-bottom: 15px; } .section-header p { color: var(--text-muted); max-width: 600px; margin: 0 auto; } .divider { width: 80px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--burgundy)); margin: 20px auto; } .sobre { background: var(--dark-brown); } .sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; } .sobre-content h3 { font-size: 2rem; color: var(--gold); margin-bottom: 25px; } .sobre-content p { margin-bottom: 20px; color: var(--text-light); } .sobre-stats { display: flex; gap: 40px; margin-top: 40px; } .stat { text-align: center; } .stat-number { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 700; color: var(--gold); display: block; } .stat-label { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; } .sobre-image { position: relative; } .sobre-image img { width: 100%; border-radius: 10px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4); } .sobre-image::before { content: ''; position: absolute; top: -20px; left: -20px; width: 100%; height: 100%; border: 2px solid var(--gold); border-radius: 10px; z-index: -1; } .areas { background: var(--dark); } .areas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; } .area-card { background: linear-gradient(145deg, rgba(45, 42, 38, 0.8), rgba(26, 26, 26, 0.9)); border: 1px solid rgba(201, 162, 39, 0.2); border-radius: 15px; padding: 40px 30px; text-align: center; transition: all 0.4s ease; position: relative; overflow: hidden; } .area-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--gold), var(--burgundy)); transform: scaleX(0); transition: transform 0.4s ease; } .area-card:hover { transform: translateY(-10px); border-color: var(--gold); box-shadow: 0 20px 50px rgba(201, 162, 39, 0.15); } .area-card:hover::before { transform: scaleX(1); } .area-icon { font-size: 3rem; margin-bottom: 20px; } .area-card h3 { font-size: 1.4rem; color: var(--gold); margin-bottom: 15px; } .area-card p { color: var(--text-muted); font-size: 0.95rem; } .diferenciais { background: var(--dark-brown); } .diferenciais-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; } .diferencial { text-align: center; padding: 30px 20px; } .diferencial-icon { width: 80px; height: 80px; border: 2px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 2rem; transition: all 0.4s ease; } .diferencial:hover .diferencial-icon { background: var(--gold); transform: scale(1.1); } .diferencial h4 { font-size: 1.2rem; color: var(--gold); margin-bottom: 10px; } .diferencial p { color: var(--text-muted); font-size: 0.9rem; } .cta { background: linear-gradient(135deg, var(--burgundy), var(--dark)); text-align: center; padding: 80px 0; } .cta h2 { font-size: 2.5rem; color: var(--gold); margin-bottom: 20px; } .cta p { color: var(--text-light); margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; } .contato { background: var(--dark); } .contato-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; } .contato-info h3 { font-size: 1.8rem; color: var(--gold); margin-bottom: 30px; } .info-item { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 30px; padding: 20px; background: rgba(45, 42, 38, 0.5); border-radius: 10px; border-left: 3px solid var(--gold); transition: all 0.3s ease; } .info-item:hover { transform: translateX(10px); background: rgba(45, 42, 38, 0.8); } .info-icon { font-size: 1.5rem; color: var(--gold); } .info-text h4 { font-size: 1rem; color: var(--gold); margin-bottom: 5px; font-family: 'Montserrat', sans-serif; } .info-text p, .info-text a { color: var(--text-light); font-size: 0.95rem; } .info-text a:hover { color: var(--gold); } .social-links { display: flex; gap: 15px; margin-top: 30px; } .social-links a { width: 50px; height: 50px; border: 2px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; transition: all 0.3s ease; } .social-links a:hover { background: var(--gold); color: var(--dark); transform: translateY(-5px); } .contato-map { border-radius: 15px; overflow: hidden; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3); } .contato-map iframe { width: 100%; height: 100%; min-height: 400px; border: none; filter: grayscale(80%) contrast(1.1); transition: filter 0.3s ease; } .contato-map:hover iframe { filter: grayscale(0%); } footer { background: #0d0d0d; padding: 40px 0 20px; text-align: center; } .footer-logo { height: 80px; margin-bottom: 20px; } footer p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 10px; } footer a { color: var(--gold); } footer a:hover { text-decoration: underline; } .whatsapp-float { position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: white; box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4); z-index: 999; animation: pulse 2s infinite; transition: transform 0.3s ease; } .whatsapp-float:hover { transform: scale(1.1); } .depoimentos { background: var(--dark); position: relative; } .depoimentos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .depoimento-card { background: linear-gradient(145deg, rgba(45, 42, 38, 0.4), rgba(26, 26, 26, 0.6)); border: 1px solid rgba(201, 162, 39, 0.1); padding: 30px; border-radius: 10px; transition: transform 0.3s ease; } .depoimento-card:hover { transform: translateY(-5px); border-color: var(--gold); } .stars { color: #ffc107; margin-bottom: 15px; font-size: 1.2rem; } .depoimento-text { font-style: italic; color: var(--text-light); margin-bottom: 20px; font-size: 0.95rem; } .cliente-info { display: flex; flex-direction: column; } .cliente-nome { color: var(--gold); font-weight: 600; font-size: 1rem; } .cliente-tipo { font-size: 0.8rem; color: var(--text-muted); } .faq { background: var(--dark-brown); } .faq-grid { max-width: 800px; margin: 0 auto; } .faq-item { background: rgba(26, 26, 26, 0.3); margin-bottom: 15px; border-radius: 5px; overflow: hidden; cursor: pointer; transition: all 0.3s ease; border-left: 3px solid transparent; } .faq-item:hover { background: rgba(26, 26, 26, 0.6); } .faq-item.active { border-left-color: var(--gold); background: rgba(26, 26, 26, 0.8); } .faq-question { padding: 20px; display: flex; justify-content: space-between; align-items: center; } .faq-question h3 { font-size: 1.1rem; font-family: 'Montserrat', sans-serif; color: var(--text-light); margin: 0; } .toggle-icon { font-size: 1.5rem; color: var(--gold); transition: transform 0.3s ease; } .faq-item.active .toggle-icon { transform: rotate(45deg); } .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0 20px; } .faq-item.active .faq-answer { max-height: 200px; padding-bottom: 20px; } @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } } @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } } @keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); } 50% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); } } @media (max-width: 992px) { .sobre-grid, .contato-grid { grid-template-columns: 1fr; gap: 40px; } .diferenciais-grid { grid-template-columns: repeat(2, 1fr); } .sobre-image { order: -1; max-width: 500px; margin: 0 auto; } } @media (max-width: 768px) { header { padding: 10px 0; background: rgba(26, 26, 26, 0.98); } nav ul { display: none; } .mobile-menu { display: flex; } nav.active ul { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: rgba(26, 26, 26, 0.98); padding: 30px 20px; gap: 20px; text-align: center; border-top: 1px solid rgba(201, 162, 39, 0.1); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); } .hero { padding-top: 80px; background: url('images/balanca-mobile.webp') no-repeat center center; background-size: cover; background-attachment: scroll; } .hero-logo { width: 140px; } .hero h1 { font-size: 2.5rem; } .selos-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } .selo-item img { height: 80px; } .diferenciais-grid { grid-template-columns: 1fr; } .sobre-stats { justify-content: center; gap: 30px; } .stat-number { font-size: 2.2rem; } .section-header h2 { font-size: 2rem; } .cta h2 { font-size: 1.8rem; } .contato-map iframe { min-height: 300px; } .whatsapp-float { width: 50px; height: 50px; bottom: 20px; right: 20px; font-size: 1.5rem; } } @media (max-width: 480px) { .selos-grid { grid-template-columns: 1fr; } .hero h1 { font-size: 2rem; } .btn-primary { padding: 15px 30px; font-size: 0.9rem; width: 100%; } .stat { width: 100%; } }