@font-face { font-family: "Inter"; font-style: normal; font-weight: 400 700; font-display: swap; src: url("/static/fonts/inter.woff2") format("woff2"); } @font-face { font-family: "Space Grotesk"; font-style: normal; font-weight: 400 700; font-display: swap; src: url("/static/fonts/space-grotesk.woff2") format("woff2"); } :root { --radius: 0.75rem; --ocean: #061326; --background: oklch(0.14 0.03 255); --foreground: oklch(0.97 0.01 250); --surface: oklch(0.18 0.03 258); --primary: oklch(0.72 0.17 232); --primary-fg: oklch(0.99 0.005 250); --accent: oklch(0.74 0.16 210); --muted-fg: oklch(0.72 0.025 255); --destructive: oklch(0.62 0.22 25); --border: oklch(0.32 0.04 255 / 55%); --input: oklch(0.25 0.04 258); --gradient-primary: linear-gradient(135deg, oklch(0.55 0.19 258), oklch(0.74 0.16 210)); --gradient-accent: linear-gradient(135deg, oklch(0.74 0.16 210), oklch(0.80 0.14 200)); --gradient-hero: radial-gradient(ellipse at top, oklch(0.35 0.14 235 / 30%), transparent 60%), radial-gradient(ellipse at bottom right, oklch(0.42 0.16 205 / 22%), transparent 55%); --gradient-card: linear-gradient(145deg, oklch(0.22 0.04 258 / 82%), oklch(0.15 0.03 256 / 82%)); --glow-primary: 0 0 60px oklch(0.60 0.18 245 / 32%); --shadow-elevated: 0 25px 60px -20px oklch(0.05 0.02 260 / 80%); } * { box-sizing: border-box; margin: 0; padding: 0; } html { scroll-behavior: smooth; scroll-padding-top: 5rem; } body { background-color: var(--ocean); color: var(--foreground); font-family: "Inter", system-ui, sans-serif; line-height: 1.5; overflow-x: hidden; min-height: 100vh; } h1, h2, h3, h4 { font-family: "Space Grotesk", system-ui, sans-serif; letter-spacing: -0.02em; line-height: 1.1; } a { color: inherit; text-decoration: none; } img { display: block; max-width: 100%; height: auto; } svg.ico { width: 1.25rem; height: 1.25rem; flex-shrink: 0; } .container { width: 100%; max-width: 80rem; margin-inline: auto; padding-inline: 1.5rem; } @media (min-width: 768px) { .container { padding-inline: 2.5rem; } } .text-gradient { background: var(--gradient-primary); -webkit-background-clip: text; background-clip: text; color: transparent; } .text-gradient-accent { background: var(--gradient-accent); -webkit-background-clip: text; background-clip: text; color: transparent; } .card-glass { background: var(--gradient-card); backdrop-filter: blur(12px); border: 1px solid oklch(0.45 0.05 235 / 0.28); border-radius: var(--radius); } #three-hero-container { position: absolute; top: 0; left: 0; width: 100%; height: 100vh; z-index: -1; pointer-events: none; overflow: hidden; background-color: var(--ocean); } .btn { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600; padding: 0.875rem 1.75rem; border-radius: 0.625rem; border: 0; cursor: pointer; font-size: 1rem; font-family: inherit; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; } .btn .ico { width: 1rem; height: 1rem; } .btn-sm { padding: 0.55rem 1.1rem; font-size: 0.875rem; } .btn-lg { padding: 1rem 2rem; } .btn-block { width: 100%; justify-content: center; } .btn-primary { background: var(--gradient-primary); color: var(--primary-fg); box-shadow: var(--glow-primary); } .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 80px oklch(0.60 0.18 245 / 0.5); } .btn-ghost { background: oklch(0.25 0.04 258 / 0.5); color: var(--foreground); border: 1px solid oklch(0.45 0.05 235 / 0.4); backdrop-filter: blur(8px); } .btn-ghost:hover { transform: translateY(-2px); border-color: var(--primary); } .btn-outline { background: transparent; color: var(--foreground); border: 1px solid oklch(0.55 0.08 230 / 0.6); } .btn-outline:hover { transform: translateY(-2px); border-color: var(--primary); background: oklch(0.60 0.18 245 / 0.08); } .nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; backdrop-filter: blur(16px); background: oklch(0.12 0.03 255 / 0.62); border-bottom: 1px solid var(--border); } .nav-inner { height: 4rem; display: flex; align-items: center; justify-content: space-between; } .brand { display: flex; align-items: center; } .brand-logo { height: 3rem; width: auto; object-fit: contain; } .nav-links { display: none; gap: 2rem; font-size: 0.9rem; color: var(--muted-fg); } .nav-links a:hover { color: var(--foreground); } .nav-actions { display: flex; align-items: center; gap: 0.625rem; } .nav-hamburger { display: inline-flex; align-items: center; justify-content: center; width: 2.25rem; height: 2.25rem; border-radius: 0.5rem; border: 1px solid var(--border); background: transparent; color: var(--foreground); cursor: pointer; transition: border-color .2s; } .nav-hamburger:hover { border-color: var(--primary); } .nav-hamburger .ico { width: 1.125rem; height: 1.125rem; } .nav-hamburger .ico-close { display: none; } .nav-hamburger.open .ico-menu { display: none; } .nav-hamburger.open .ico-close { display: block; } .nav-mobile { background: oklch(0.12 0.03 255 / 0.97); backdrop-filter: blur(16px); border-top: 1px solid var(--border); } .nav-mobile:not([hidden]) { display: block; } .nav-mobile-link { display: block; padding: 0.875rem 1.5rem; font-size: 0.9rem; color: var(--muted-fg); border-bottom: 1px solid var(--border); transition: color .2s, background .2s; } .nav-mobile-link:hover { color: var(--foreground); background: var(--surface); } .nav-mobile .btn { margin: 1rem 1.5rem; width: calc(100% - 3rem); } @media (min-width: 768px) { .nav-inner { position: relative; } .nav-links { display: flex; position: absolute; left: 50%; transform: translateX(-50%); } .nav-hamburger { display: none; } .nav-mobile { display: none !important; } } .hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 7rem 0 5rem; overflow: hidden; } .hero::after { content: ""; position: absolute; inset: 0; background: var(--gradient-hero); pointer-events: none; z-index: -1; } .hero-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; } .hero-copy { text-align: center; max-width: 60rem; width: 100%; } .hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 700; margin-bottom: 1.5rem; } .lead { font-size: 1.125rem; color: var(--muted-fg); margin-bottom: 2rem; max-width: 46rem; margin-left: auto; margin-right: auto; } .badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.375rem 0.9rem; border-radius: 999px; font-size: 0.78rem; font-weight: 500; border: 1px solid oklch(0.60 0.18 245 / 0.35); background: oklch(0.60 0.18 245 / 0.12); color: var(--accent); margin-bottom: 1.5rem; } .badge .ico { width: 0.9rem; height: 0.9rem; } .hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; } .section { position: relative; padding: 6rem 0; } .section-alt { background: oklch(0.16 0.03 258 / 0.55); backdrop-filter: blur(2px); } .section-head { max-width: 48rem; margin: 0 auto 4rem; text-align: center; } .section-head h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 1.25rem; } .section-head p { font-size: 1.125rem; color: var(--muted-fg); } .eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; } .eyebrow .ico { width: 0.875rem; height: 0.875rem; } .grid { display: grid; gap: 1.5rem; } .grid-3 { grid-template-columns: 1fr; } .grid-4 { grid-template-columns: 1fr 1fr; } @media (min-width: 768px) { .grid-3 { grid-template-columns: 1fr 1fr; } } @media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } } .card { padding: 2rem; display: flex; flex-direction: column; transition: transform .3s ease, border-color .3s ease; } .card h3 { font-size: 1.35rem; margin-bottom: 0.75rem; } .card > p { color: var(--muted-fg); font-size: 0.9rem; margin-bottom: 1.25rem; } .card-lift:hover { transform: translateY(-4px); border-color: oklch(0.60 0.18 245 / 0.5); } .card .check-list { margin-bottom: 1.5rem; } .card .btn-ghost { margin-top: auto; } .card-featured { border-color: oklch(0.74 0.16 210 / 0.6); box-shadow: 0 0 50px oklch(0.60 0.18 245 / 0.18); position: relative; } .card-flag { position: absolute; top: -0.7rem; right: 1.25rem; background: var(--gradient-accent); color: var(--primary-fg); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.25rem 0.7rem; border-radius: 999px; } .ico-grad { width: 3rem; height: 3rem; border-radius: 0.75rem; background: var(--gradient-primary); color: var(--primary-fg); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; box-shadow: var(--glow-primary); } .ico-grad .ico { width: 1.5rem; height: 1.5rem; } .ico-plain { color: var(--accent); margin-bottom: 1rem; display: flex; } .ico-plain.lg .ico { width: 2rem; height: 2rem; } .check-list { list-style: none; display: grid; gap: 0.6rem; } .check-list li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.9rem; color: var(--muted-fg); } .check-list .ico { width: 1rem; height: 1rem; color: var(--accent); margin-top: 0.15rem; } .about-split { display: grid; gap: 2.5rem; align-items: center; margin-bottom: 4rem; } @media (min-width: 900px) { .about-split { grid-template-columns: 1fr 1fr; } } .about-media img { border-radius: var(--radius); box-shadow: var(--shadow-elevated); width: 100%; } .about-copy h3 { font-size: 1.75rem; margin-bottom: 1.25rem; } .about-copy p { color: var(--muted-fg); margin-bottom: 1rem; } .about-pillars { margin-bottom: 4rem; } .team-title { text-align: center; font-size: 1.75rem; margin-bottom: 2rem; } .team-card { padding: 1.75rem 1rem; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.35rem; transition: transform .3s ease, border-color .3s ease; } .team-card:hover { transform: translateY(-4px); border-color: oklch(0.60 0.18 245 / 0.5); } .team-avatar { width: 3.5rem; height: 3.5rem; border-radius: 999px; background: oklch(0.60 0.18 245 / 0.14); color: var(--accent); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 0.5rem; } .team-avatar .ico { width: 1.75rem; height: 1.75rem; } .team-name { font-weight: 600; font-family: "Space Grotesk", sans-serif; } .team-role { font-size: 0.85rem; color: var(--muted-fg); } .contact-card { max-width: 44rem; margin: 0 auto; padding: 2rem; box-shadow: var(--shadow-elevated); } .lead-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; } .lead-form label { display: block; } .lead-form .col-2 { grid-column: span 2; } .lead-form label > span { display: block; font-size: 0.78rem; font-weight: 500; color: var(--muted-fg); margin-bottom: 0.375rem; } .lead-form input, .lead-form select, .lead-form textarea { width: 100%; padding: 0.75rem 1rem; border-radius: 0.5rem; background: oklch(0.25 0.04 258 / 0.6); border: 1px solid var(--border); color: var(--foreground); font-size: 0.9rem; font-family: inherit; transition: border-color .2s ease, box-shadow .2s ease; } .lead-form textarea { resize: vertical; min-height: 6rem; } .lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px oklch(0.60 0.18 245 / 0.3); } .hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; } .form-msg { grid-column: span 2; margin-top: 0.25rem; font-size: 0.9rem; min-height: 1.25rem; } .form-msg.ok { color: var(--accent); } .form-msg.err { color: var(--destructive); } .lead-form.sent > label, .lead-form.sent > button { display: none; } @media (max-width: 560px) { .lead-form { grid-template-columns: 1fr; } .lead-form .col-2, .form-msg { grid-column: span 1; } } .footer { position: relative; border-top: 1px solid var(--border); background: oklch(0.13 0.03 256 / 0.82); backdrop-filter: blur(8px); padding: 3.5rem 0; } .footer-grid { display: grid; gap: 2.5rem; } @media (min-width: 768px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1.2fr 1.3fr; } } .footer-logo { height: 4.5rem; width: auto; margin-bottom: 1rem; } .footer-brand p { color: var(--muted-fg); font-size: 0.9rem; max-width: 22rem; margin-bottom: 1.25rem; } .footer-net { display: flex; gap: 0.75rem; } .footer-net a { width: 2.6rem; height: 2.6rem; border-radius: 0.5rem; border: 1px solid var(--border); background: oklch(0.60 0.18 245 / 0.10); display: inline-flex; align-items: center; justify-content: center; color: var(--foreground); transition: color .2s, border-color .2s, background .2s; } .footer-net a svg { width: 1.4rem; height: 1.4rem; display: block; } .footer-net a:hover { color: var(--accent); border-color: var(--primary); background: oklch(0.60 0.18 245 / 0.20); } .footer h4 { font-size: 0.9rem; margin-bottom: 1rem; } .footer-h4-gap { margin-top: 1.5rem; } .footer-list { list-style: none; display: grid; gap: 0.6rem; font-size: 0.9rem; color: var(--muted-fg); } .footer-list li { display: flex; align-items: flex-start; gap: 0.5rem; } .footer-list .ico { width: 1rem; height: 1rem; flex-shrink: 0; margin-top: 0.15rem; } .footer-list a:hover { color: var(--foreground); } .footer-map iframe { width: 100%; border: 1px solid var(--border); border-radius: var(--radius); filter: grayscale(0.3) contrast(1.05); } .footer-bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--border); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.75rem; font-size: 0.8rem; color: var(--muted-fg); } .footer-bottom a:hover { color: var(--foreground); } .footer-parceiros { padding-top: 0.75rem; font-size: 0.8rem; color: var(--muted-fg); } .footer-parceiros a:hover { color: var(--foreground); } .error-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 2rem; } .error-box { max-width: 32rem; } .error-code { font-family: "Space Grotesk", sans-serif; font-size: 6rem; font-weight: 700; line-height: 1; } .error-box h2 { font-size: 1.5rem; margin: 1rem 0 0.5rem; } .error-box p { color: var(--muted-fg); margin-bottom: 1.5rem; } .reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; } .reveal.in { opacity: 1; transform: none; } @media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } #three-hero-container { display: none; } } .wapp-fab { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 9999; width: 3.5rem; height: 3.5rem; background: #25D366; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(37,211,102,.45); transition: background .2s, transform .2s, box-shadow .2s; } .wapp-fab:hover { background: #1ebe5d; transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,.55); } .wapp-fab svg { width: 1.75rem; height: 1.75rem; position: relative; z-index: 1; } .wapp-ring { position: absolute; inset: 0; border-radius: 50%; background: #25D366; animation: wapp-ping 2s cubic-bezier(0,0,.2,1) infinite; } @keyframes wapp-ping { 0% { transform: scale(1); opacity: .55; } 75%, 100% { transform: scale(1.9); opacity: 0; } } .wapp-tip { position: absolute; right: calc(100% + .75rem); top: 50%; transform: translateY(-50%); background: #fff; color: #111827; font-size: .8125rem; font-weight: 600; white-space: nowrap; padding: .4rem .75rem; border-radius: .5rem; box-shadow: 0 2px 10px rgba(0,0,0,.12); opacity: 0; pointer-events: none; transition: opacity .2s; } .wapp-fab:hover .wapp-tip { opacity: 1; } @media (prefers-reduced-motion: reduce) { .wapp-ring { animation: none; } }