/* Reset básico */ * { margin: 0; padding: 0; box-sizing: border-box; } /* Variáveis */ :root { --black: #000000; --white: #ffffff; --gray: #333333; --vermillion: #ff4a3d; } /* Base */ body { font-family: Arial, Helvetica, sans-serif; color: var(--black); background: var(--white); line-height: 1.45; } a { color: var(--black); text-decoration: none; } .container { width: 100%; max-width: 1100px; padding: 0 24px; margin: 0 auto; } .container.narrow { max-width: 760px; } /* Header */ .site-header { border-bottom: 1px solid #e5e5e5; } .header-inner { display: flex; justify-content: space-between; align-items: center; height: 72px; } .logo { font-weight: 700; letter-spacing: 0.04em; } .nav a { margin-left: 24px; font-size: 14px; } /* Hero */ .hero { padding: 120px 0 100px; } .hero h1 { font-size: 64px; font-weight: 700; letter-spacing: 0.04em; } .hero h2 { font-size: 22px; font-weight: 400; margin-top: 16px; } .hero-text { margin-top: 32px; max-width: 720px; font-size: 16px; } /* Services */ .services { padding: 80px 0; } .service { margin-bottom: 48px; } .service h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; } .service p { max-width: 820px; font-size: 15px; } /* Positioning */ .positioning { padding: 80px 0 120px; } .positioning p { font-size: 16px; } /* Contact */ .contact { background: var(--vermillion); color: var(--black); min-height: 70vh; display: flex; align-items: center; } .contact-inner { width: 100%; text-align: center; } .contact h2 { font-size: 72px; font-weight: 700; letter-spacing: 0.06em; } .contact-meta { display: flex; justify-content: space-between; max-width: 900px; margin: 80px auto 0; padding: 0 24px; font-size: 14px; } /* Responsivo */ @media (max-width: 768px) { .hero { padding: 80px 0 60px; } .hero h1 { font-size: 44px; } .contact h2 { font-size: 48px; } .contact-meta { flex-direction: column; gap: 12px; text-align: center; } }