:root { --primary: #E67E22; --dark: #121212; --grey: #F4F7F6; } * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Inter', sans-serif; color: #333; line-height: 1.6; } html { scroll-behavior: smooth; } .container { max-width: 1200px; margin: 0 auto; padding: 0 30px; } /* Navbar - Restaurada */ .navbar { padding: 25px 0; border-bottom: 1px solid #f0f0f0; position: sticky; top: 0; background: #fff; z-index: 1000; } .nav-flex { display: flex; justify-content: space-between; align-items: center; } .logo { font-family: 'Montserrat', sans-serif; font-size: 1.8rem; font-weight: 900; letter-spacing: -2px; color: var(--dark); text-transform: uppercase; } .logo span { color: var(--primary); } .desktop-menu a { text-decoration: none; color: var(--dark); margin-left: 30px; font-weight: 700; font-size: 0.9rem; } .btn-cta-nav { background: var(--dark); color: #fff !important; padding: 12px 25px; border-radius: 4px; } /* Hero Section - Restaurada para Impacto Total */ .hero-section { padding: 100px 0; background: linear-gradient(to bottom, #fff, var(--grey)); } .hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; } .top-label { color: var(--primary); font-weight: 800; text-transform: uppercase; letter-spacing: 2px; font-size: 0.75rem; margin-bottom: 20px; } .hero-content h1 { font-family: 'Montserrat', sans-serif; font-size: 4.5rem; line-height: 0.95; letter-spacing: -3px; margin-bottom: 25px; } .hero-content h1 span { color: var(--primary); display: block; } .hero-content p { font-size: 1.2rem; color: #666; margin-bottom: 40px; max-width: 500px; } .hero-btns { display: flex; gap: 20px; } .main-btn { background: var(--primary); color: #fff; padding: 18px 35px; text-decoration: none; font-weight: 800; border-radius: 4px; } .sec-btn { border: 2px solid #ddd; color: var(--dark); padding: 16px 30px; text-decoration: none; font-weight: 700; border-radius: 4px; } /* Imagem Hero */ .image-wrapper { position: relative; } .hero-img { width: 100%; border-radius: 25px; box-shadow: 0 25px 50px rgba(0,0,0,0.15); } .floating-badge { position: absolute; bottom: -15px; left: -15px; background: var(--dark); color: #fff; padding: 20px; border-radius: 12px; } /* Serviços - Alinhados em 5 Colunas Seguidas */ .services-section { padding: 100px 0; } .section-header { text-align: center; margin-bottom: 60px; } .section-header h2 { font-family: 'Montserrat', sans-serif; font-size: 2.5rem; letter-spacing: -1px; } .services-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; } .card { padding: 40px 20px; background: #fff; border: 1px solid #eee; border-radius: 20px; transition: 0.4s; text-align: center; } .card:hover { border-color: var(--primary); transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.05); } .card i { font-size: 2.2rem; color: var(--primary); margin-bottom: 20px; } .card h3 { font-family: 'Montserrat', sans-serif; font-size: 1.05rem; margin-bottom: 12px; } .card p { font-size: 0.85rem; color: #777; line-height: 1.5; } /* Footer - Restaurado */ .footer { background: #0a0a0a; color: #fff; padding: 80px 0 40px; border-top: 1px solid #222; } .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 50px; margin-bottom: 60px; } .footer-contact h4, .footer-social h4 { margin-bottom: 25px; color: var(--primary); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 2px; } .footer-social a { color: #fff; text-decoration: none; font-weight: bold; } .copyright { text-align: center; border-top: 1px solid #222; padding-top: 30px; font-size: 0.85rem; color: #555; } /* Responsivo */ @media (max-width: 1100px) { .services-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); } .hero-grid { grid-template-columns: 1fr; text-align: center; } .hero-content h1 { font-size: 3.5rem; } .hero-btns { justify-content: center; } }