:root {
--navy: #1a3a5c;
--navy-dark: #122840;
--navy-light: #234b74;
--navy-mid: #1d4068;
--accent: #4a9fd4;
--accent-bright: #6bbfee;
--white: #ffffff;
--off-white: #e8f0f8;
--gray: #8aabca;
--text-muted: #7a9ab5;
}
body {
font-family: 'Barlow', sans-serif;
background: var(--navy-dark);
color: var(--white);
overflow-x: hidden;
}
/* ─── NAV ─── */
nav {
position: fixed; top: 0; width: 100%; z-index: 100;
padding: 24px 60px;
display: flex; align-items: center; justify-content: space-between;
background: linear-gradient(to bottom, rgba(18,40,64,0.95) 0%, transparent 100%);
backdrop-filter: blur(2px);
}
.logo {
font-family: 'Barlow Condensed', sans-serif;
font-weight: 800; font-size: 1.6rem; letter-spacing: 0.04em;
color: var(--white); text-decoration: none;
}
.logo span { color: var(--accent); }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
font-family: 'Barlow Condensed', sans-serif;
font-weight: 600; font-size: 0.85rem; letter-spacing: 0.12em;
text-transform: uppercase; color: var(--off-white);
text-decoration: none; opacity: 0.8; transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; color: var(--accent-bright); }
.nav-cta {
background: var(--accent); color: var(--navy-dark) !important;
padding: 10px 24px; opacity: 1 !important;
transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--accent-bright) !important; }
/* ─── HERO ─── */
#hero {
min-height: 100vh;
display: flex; align-items: center;
position: relative; overflow: hidden;
padding: 120px 60px 80px;
}
.hero-bg {
position: absolute; inset: 0;
background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-mid) 100%);
}
.hero-diagonal {
position: absolute; inset: 0;
background: linear-gradient(145deg, transparent 55%, rgba(74,159,212,0.08) 100%);
}
.hero-grid {
position: absolute; inset: 0; opacity: 0.04;
background-image:
linear-gradient(var(--white) 1px, transparent 1px),
linear-gradient(90deg, var(--white) 1px, transparent 1px);
background-size: 60px 60px;
}
.hero-glow {
position: absolute; top: -200px; right: -200px;
width: 700px; height: 700px; border-radius: 50%;
background: radial-gradient(circle, rgba(74,159,212,0.15) 0%, transparent 70%);
pointer-events: none;
}
.hero-content {
position: relative; z-index: 2;
max-width: 800px;
}
.hero-eyebrow {
font-family: 'Barlow Condensed', sans-serif;
font-weight: 600; font-size: 0.8rem; letter-spacing: 0.25em;
text-transform: uppercase; color: var(--accent);
margin-bottom: 24px;
display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before {
content: ''; display: block;
width: 32px; height: 2px; background: var(--accent);
}
h1 {
font-family: 'Barlow Condensed', sans-serif;
font-weight: 800; font-size: clamp(3.5rem, 7vw, 7rem);
line-height: 0.95; letter-spacing: -0.01em;
text-transform: uppercase;
margin-bottom: 32px;
}
h1 .highlight {
color: var(--accent);
display: block;
}
.hero-desc {
font-size: 1.15rem; line-height: 1.7;
color: var(--off-white); opacity: 0.85;
max-width: 560px; margin-bottom: 48px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
background: var(--accent); color: var(--navy-dark);
padding: 16px 36px; font-family: 'Barlow Condensed', sans-serif;
font-weight: 700; font-size: 0.9rem; letter-spacing: 0.12em;
text-transform: uppercase; text-decoration: none;
transition: all 0.25s; border: none; cursor: pointer;
clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
}
.btn-primary:hover {
background: var(--accent-bright);
transform: translateY(-2px);
box-shadow: 0 12px 30px rgba(74,159,212,0.35);
}
.btn-secondary {
border: 1px solid rgba(255,255,255,0.3); color: var(--white);
padding: 16px 36px; font-family: 'Barlow Condensed', sans-serif;
font-weight: 600; font-size: 0.9rem; letter-spacing: 0.12em;
text-transform: uppercase; text-decoration: none;
transition: all 0.25s; background: transparent;
}
.btn-secondary:hover {
border-color: var(--accent); color: var(--accent);
transform: translateY(-2px);
}
.hero-stats {
position: absolute; right: 60px; bottom: 80px;
display: flex; gap: 48px;
}
.stat {
text-align: right;
}
.stat-number {
font-family: 'Barlow Condensed', sans-serif;
font-weight: 800; font-size: 2.8rem; line-height: 1;
color: var(--white);
}
.stat-number span { color: var(--accent); }
.stat-label {
font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
color: var(--text-muted); margin-top: 4px;
}
/* ─── SECTION BASE ─── */
section { padding: 100px 60px; }
.section-label {
font-family: 'Barlow Condensed', sans-serif;
font-weight: 600; font-size: 0.75rem; letter-spacing: 0.25em;
text-transform: uppercase; color: var(--accent);
margin-bottom: 16px;
display: flex; align-items: center; gap: 10px;
}
.section-label::before {
content: ''; width: 24px; height: 2px; background: var(--accent);
}
h2 {
font-family: 'Barlow Condensed', sans-serif;
font-weight: 800; font-size: clamp(2.2rem, 4vw, 3.5rem);
line-height: 1; text-transform: uppercase; letter-spacing: 0.01em;
margin-bottom: 20px;
}
h2 .highlight { color: var(--accent); }
/* ─── SOLUTIONS ─── */
#solucoes {
background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 100%);
position: relative; overflow: hidden;
}
#solucoes::before {
content: 'WEBLABZ';
position: absolute; right: -20px; top: 50%; transform: translateY(-50%);
font-family: 'Barlow Condensed', sans-serif;
font-weight: 800; font-size: 20vw; line-height: 1;
color: rgba(255,255,255,0.02); pointer-events: none;
white-space: nowrap;
}
.solutions-header {
display: flex; justify-content: space-between; align-items: flex-end;
margin-bottom: 64px; flex-wrap: wrap; gap: 24px;
}
.solutions-intro {
font-size: 1rem; line-height: 1.7; color: var(--text-muted);
max-width: 400px;
}
.solutions-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2px;
}
.solution-card {
background: rgba(255,255,255,0.03);
border: 1px solid rgba(255,255,255,0.07);
padding: 48px 40px;
position: relative; overflow: hidden;
transition: all 0.3s;
cursor: default;
}
.solution-card:hover {
background: rgba(74,159,212,0.08);
border-color: rgba(74,159,212,0.3);
transform: translateY(-4px);
}
.solution-card::after {
content: ''; position: absolute;
bottom: 0; left: 0; right: 0; height: 3px;
background: var(--accent); transform: scaleX(0);
transform-origin: left; transition: transform 0.3s;
}
.solution-card:hover::after { transform: scaleX(1); }
.card-number {
font-family: 'Barlow Condensed', sans-serif;
font-weight: 300; font-size: 4rem; line-height: 1;
color: rgba(255,255,255,0.07);
position: absolute; top: 24px; right: 32px;
}
.card-icon {
width: 48px; height: 48px; margin-bottom: 28px;
background: rgba(74,159,212,0.15); border-radius: 4px;
display: flex; align-items: center; justify-content: center;
}
.card-icon svg { width: 24px; height: 24px; stroke: var(--accent); fill: none; stroke-width: 1.5; }
.solution-card h3 {
font-family: 'Barlow Condensed', sans-serif;
font-weight: 700; font-size: 1.4rem; letter-spacing: 0.03em;
text-transform: uppercase; margin-bottom: 16px;
}
.solution-card p {
font-size: 0.9rem; line-height: 1.7; color: var(--text-muted);
}
.card-tags {
margin-top: 24px; display: flex; flex-wrap: wrap; gap: 8px;
}
.tag {
font-family: 'Barlow Condensed', sans-serif;
font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
color: var(--accent); border: 1px solid rgba(74,159,212,0.3);
padding: 4px 10px;
}
/* ─── HOW IT WORKS ─── */
#como-funciona {
background: var(--navy-dark);
}
.process-grid {
display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
align-items: center; margin-top: 60px;
}
.process-steps { display: flex; flex-direction: column; gap: 0; }
.step {
display: flex; gap: 28px; padding: 32px 0;
border-bottom: 1px solid rgba(255,255,255,0.06);
position: relative;
}
.step:first-child { padding-top: 0; }
.step:last-child { border-bottom: none; }
.step-num {
font-family: 'Barlow Condensed', sans-serif;
font-weight: 800; font-size: 3rem; line-height: 1;
color: rgba(255,255,255,0.06); min-width: 60px;
}
.step-content h4 {
font-family: 'Barlow Condensed', sans-serif;
font-weight: 700; font-size: 1.2rem; text-transform: uppercase;
letter-spacing: 0.05em; margin-bottom: 10px;
}
.step-content p { font-size: 0.9rem; line-height: 1.7; color: var(--text-muted); }
.process-visual {
position: relative; height: 500px;
background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
border: 1px solid rgba(255,255,255,0.08);
overflow: hidden;
display: flex; align-items: center; justify-content: center;
}
.stopwatch-svg {
opacity: 0.9;
}
.process-visual::before {
content: ''; position: absolute; inset: 0;
background: radial-gradient(circle at 50% 50%, rgba(74,159,212,0.1) 0%, transparent 70%);
}
/* ─── SEGMENTOS ─── */
#segmentos {
background: var(--navy);
position: relative;
}
.events-header { margin-bottom: 60px; }
.events-grid {
display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
background: rgba(255,255,255,0.06);
border: 1px solid rgba(255,255,255,0.06);
}
.event-item {
background: var(--navy);
padding: 40px 28px;
transition: background 0.2s;
}
.event-item:hover { background: var(--navy-mid); }
.event-icon {
font-size: 2rem; margin-bottom: 20px;
}
.event-item h4 {
font-family: 'Barlow Condensed', sans-serif;
font-weight: 700; font-size: 1.1rem; text-transform: uppercase;
letter-spacing: 0.05em; margin-bottom: 10px;
}
.event-item p { font-size: 0.85rem; line-height: 1.6; color: var(--text-muted); }
/* ─── TECNOLOGIA ─── */
#tecnologia {
background: var(--navy-dark);
}
.tech-layout {
display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: center;
margin-top: 60px;
}
.tech-text p {
font-size: 1rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 24px;
}
.tech-text-cta {
margin-top: 28px;
display: flex; flex-wrap: wrap; align-items: center; gap: 16px;
}
.product-chipe-aside {
display: flex; align-items: center; justify-content: center;
}
.product-chipe-link {
display: flex; flex-direction: column; align-items: center; gap: 20px;
text-decoration: none; color: inherit;
transition: transform 0.25s ease;
}
.product-chipe-link:hover { transform: translateY(-4px); }
.chipe-logo-horizontal {
display: flex; align-items: center; gap: 16px;
background: #ffffff;
padding: 20px 36px;
border-radius: 16px;
border: 1px solid rgba(255,255,255,0.12);
box-shadow: 0 20px 50px rgba(0,0,0,0.25);
transition: box-shadow 0.25s ease;
}
.product-chipe-link:hover .chipe-logo-horizontal {
box-shadow: 0 28px 60px rgba(74,159,212,0.2);
}
.chipe-logo-horizontal svg {
flex-shrink: 0; width: 52px; height: 52px;
}
.chipe-wordmark {
display: flex; align-items: baseline; line-height: 1;
font-family: 'Bebas Neue', sans-serif;
}
.chipe-w-chi { font-size: clamp(2.25rem, 5vw, 3rem); color: #1a1a1a; letter-spacing: 0.02em; }
.chipe-w-pe { font-size: clamp(2.25rem, 5vw, 3rem); color: #E6B800; letter-spacing: 0.02em; }
/* ─── CONTATO ─── */
#contato {
background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
position: relative; overflow: hidden;
}
#contato::before {
content: ''; position: absolute;
top: -300px; right: -300px;
width: 800px; height: 800px; border-radius: 50%;
background: radial-gradient(circle, rgba(74,159,212,0.07) 0%, transparent 70%);
}
.contact-layout {
display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
margin-top: 60px; position: relative;
}
.contact-info p {
font-size: 1rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 40px;
}
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
display: flex; gap: 16px; align-items: center;
}
.contact-item-icon {
width: 44px; height: 44px;
background: rgba(74,159,212,0.12);
display: flex; align-items: center; justify-content: center;
flex-shrink: 0;
}
.contact-item-icon svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; stroke-width: 1.5; }
.contact-item-text span {
display: block; font-size: 0.75rem; letter-spacing: 0.1em;
text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px;
}
.contact-item-text strong {
font-size: 1rem; color: var(--white);
}
.contact-item-text a {
color: inherit;
text-decoration: underline;
text-decoration-color: rgba(255, 255, 255, 0.28);
text-underline-offset: 0.2em;
text-decoration-thickness: 1px;
transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.contact-item-text a:hover {
color: var(--accent-bright);
text-decoration-color: rgba(107, 191, 238, 0.65);
}
.contact-item-text a:focus-visible {
outline: 2px solid var(--accent);
outline-offset: 3px;
border-radius: 2px;
color: var(--accent-bright);
text-decoration-color: rgba(107, 191, 238, 0.75);
}
.contact-cta {
display: flex; flex-direction: column; justify-content: center;
gap: 32px; height: 100%;
}

.btn-whatsapp {
display: inline-flex; align-items: center; gap: 14px;
background: #25d366; color: #fff;
padding: 18px 36px;
font-family: 'Barlow Condensed', sans-serif;
font-weight: 700; font-size: 1rem; letter-spacing: 0.1em;
text-transform: uppercase; text-decoration: none;
transition: all 0.25s; align-self: flex-start;
clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
}
.btn-whatsapp:hover {
background: #1ebe5d;
transform: translateY(-2px);
box-shadow: 0 12px 30px rgba(37,211,102,0.35);
}
/* ─── FOOTER ─── */
footer {
background: var(--navy-dark);
border-top: 1px solid rgba(255,255,255,0.07);
padding: 48px 60px;
display: flex; justify-content: space-between; align-items: center;
flex-wrap: wrap; gap: 24px;
}
.footer-copy {
font-size: 0.8rem; color: var(--text-muted);
}
.footer-links { display: flex; gap: 32px; }
.footer-links a {
font-family: 'Barlow Condensed', sans-serif;
font-weight: 600; font-size: 0.8rem; letter-spacing: 0.1em;
text-transform: uppercase; color: var(--text-muted); text-decoration: none;
transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }
/* ─── ANIMATIONS ─── */
@keyframes fadeInUp {
from { opacity: 0; transform: translateY(30px); }
to { opacity: 1; transform: translateY(0); }
}
.hero-content > * {
animation: fadeInUp 0.7s ease both;
}
.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.25s; }
.hero-content > *:nth-child(3) { animation-delay: 0.4s; }
.hero-content > *:nth-child(4) { animation-delay: 0.55s; }
.hero-stats {
animation: fadeInUp 0.7s ease 0.7s both;
}
/* Pulse on stopwatch */
@keyframes pulse-ring {
0% { transform: scale(1); opacity: 0.6; }
50% { transform: scale(1.04); opacity: 1; }
100% { transform: scale(1); opacity: 0.6; }
}
.stopwatch-circle { animation: pulse-ring 2s ease-in-out infinite; transform-origin: center; }
@keyframes tick {
0%, 100% { transform: rotate(0deg); transform-origin: 50% 70%; }
50% { transform: rotate(6deg); transform-origin: 50% 70%; }
}
.hand { animation: tick 1s steps(1, end) infinite; transform-origin: 50% 70%; }
/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
nav { padding: 20px 24px; }
.nav-links { display: none; }
section { padding: 70px 24px; }
#hero { padding: 100px 24px 60px; }
h1 { font-size: 3rem; }
.solutions-grid { grid-template-columns: 1fr; }
.process-grid, .tech-layout, .contact-layout { grid-template-columns: 1fr; gap: 40px; }
.process-visual { height: 300px; }
.events-grid { grid-template-columns: 1fr 1fr; }
.hero-stats { position: static; margin-top: 60px; justify-content: flex-start; }
footer { flex-direction: column; align-items: center; text-align: center; padding: 48px 0px; }
.footer-links { justify-content: center; flex-wrap: wrap; }
.form-row { grid-template-columns: 1fr; }
}

