
:root {
--rx-black: #04060f;
--rx-dark: #080c18;
--rx-card: #0c1020;
--rx-border: #1a1f35;
--rx-orange: #c8316a;
--rx-orange-glow: rgba(200,49,106,0.15);
--rx-orange-light: #e05585;
--rx-white: #f0f2ff;
--rx-muted: #7a86a8;
--rx-accent: #c8316a;
--font-display: 'Bebas Neue', sans-serif;
--font-body: 'DM Sans', sans-serif;
--font-mono: 'JetBrains Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
background: var(--rx-black);
color: var(--rx-white);
font-family: var(--font-body);
font-size: 16px;
line-height: 1.6;
overflow-x: hidden;
}

/* ─── NOISE OVERLAY ─── */
body::before {
content: '';
position: fixed; inset: 0;
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
pointer-events: none; z-index: 999; opacity: 0.5;
}

/* ─── NAV ─── */
nav {
position: fixed; top: 0; left: 0; right: 0; z-index: 100;
display: flex; align-items: center; justify-content: space-between;
padding: 20px 48px;
background: rgba(4,6,15,0.90);
backdrop-filter: blur(20px);
border-bottom: 1px solid var(--rx-border);
}
.nav-logo {
font-family: var(--font-display);
font-size: 28px;
letter-spacing: 2px;
color: var(--rx-white);
text-decoration: none;
}
.nav-logo span { color: var(--rx-orange); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
color: var(--rx-muted);
text-decoration: none;
font-size: 13px;
font-weight: 500;
letter-spacing: 0.05em;
text-transform: uppercase;
transition: color 0.2s;
}
.nav-links a:hover { color: var(--rx-white); }
.nav-cta {
background: var(--rx-orange);
color: var(--rx-black) !important;
padding: 10px 24px;
border-radius: 4px;
font-weight: 700 !important;
transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--rx-orange-light) !important; transform: translateY(-1px); }

/* ─── HAMBURGER ─── */
.nav-hamburger {
display: none;
flex-direction: column;
justify-content: center;
gap: 5px;
width: 40px; height: 40px;
cursor: pointer;
background: none; border: none; padding: 4px;
z-index: 200;
}
.nav-hamburger span {
display: block;
width: 24px; height: 2px;
background: var(--rx-white);
border-radius: 2px;
transition: all 0.3s ease;
transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE MENU OVERLAY ─── */
.nav-mobile {
display: none;
position: fixed;
top: 0; left: 0; right: 0; bottom: 0;
background: rgba(4,6,15,0.98);
backdrop-filter: blur(24px);
z-index: 150;
flex-direction: column;
align-items: center;
justify-content: center;
opacity: 0;
pointer-events: none;
transition: opacity 0.3s ease;
}
.nav-mobile.open { opacity: 1; pointer-events: all; }
.nav-mobile ul {
list-style: none;
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
padding: 0 32px;
}
.nav-mobile ul li {
width: 100%;
border-bottom: 1px solid var(--rx-border);
opacity: 0;
transform: translateY(16px);
transition: opacity 0.3s ease, transform 0.3s ease;
}
.nav-mobile.open ul li { opacity: 1; transform: translateY(0); }
.nav-mobile.open ul li:nth-child(1) { transition-delay: 0.05s; }
.nav-mobile.open ul li:nth-child(2) { transition-delay: 0.10s; }
.nav-mobile.open ul li:nth-child(3) { transition-delay: 0.15s; }
.nav-mobile.open ul li:nth-child(4) { transition-delay: 0.20s; }
.nav-mobile.open ul li:nth-child(5) { transition-delay: 0.25s; }
.nav-mobile.open ul li:nth-child(6) { transition-delay: 0.30s; }
.nav-mobile ul li a {
display: block;
padding: 20px 0;
font-family: var(--font-display);
font-size: 32px;
letter-spacing: 1px;
color: var(--rx-muted);
text-decoration: none;
text-transform: uppercase;
transition: color 0.2s;
}
.nav-mobile ul li a:hover,
.nav-mobile ul li a:active { color: var(--rx-white); }
.nav-mobile ul li a.nav-cta-mobile { color: var(--rx-orange); }
.nav-mobile-logo {
position: absolute;
top: 20px; left: 24px;
font-family: var(--font-display);
font-size: 28px;
letter-spacing: 2px;
color: var(--rx-white);
text-decoration: none;
}
.nav-mobile-logo span { color: var(--rx-orange); }

/* ─── HERO FULLSCREEN ─── */
#hero {
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 0;
position: relative;
overflow: hidden;
background: #04040d;
}

/* Video background */
.hero-video {
position: absolute; inset: 0;
width: 100%; height: 100%;
object-fit: cover;
object-position: center center;
z-index: 0;
}
.hero-video-overlay {
position: absolute; inset: 0; z-index: 1;
background: linear-gradient(
180deg,
rgba(4,6,15,0.3)  0%,
rgba(4,6,15,0.4)  40%,
rgba(4,6,15,0.82) 72%,
rgba(4,6,15,0.97) 100%
);
}

/* purple tint on the right side */
.hero-bg::before {
content: '';
position: absolute; inset: 0;
background: radial-gradient(ellipse at 75% 25%, rgba(200,49,106,0.30) 0%, rgba(0,64,128,0.15) 50%, transparent 70%);
z-index: 1;
}

/* floating particles */
.hero-stars {
position: absolute; inset: 0; z-index: 1; pointer-events: none;
overflow: hidden;
}
.star {
position: absolute;
width: 2px; height: 2px;
border-radius: 50%;
background: #fff;
animation: twinkle var(--d) ease-in-out infinite;
opacity: 0;
}
@keyframes twinkle {
0%, 100% { opacity: 0; transform: scale(1); }
50% { opacity: var(--o); transform: scale(1.5); }
}

.hero-inner {
position: relative; z-index: 3;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
padding: 140px 48px 100px;
max-width: 860px;
width: 100%;
}

.hero-eyebrow {
display: inline-flex;
align-items: center;
gap: 10px;
font-family: var(--font-mono);
font-size: 11px;
color: var(--rx-white);
letter-spacing: 0.2em;
text-transform: uppercase;
margin-bottom: 28px;
background: rgba(255,255,255,0.08);
border: 1px solid rgba(255,255,255,0.18);
padding: 7px 18px;
border-radius: 100px;
backdrop-filter: blur(8px);
}
.hero-eyebrow::before {
content: '';
display: inline-block;
width: 6px; height: 6px;
border-radius: 50%;
background: var(--rx-white);
animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink {
0%, 100% { opacity: 1; }
50% { opacity: 0.3; }
}

h1 {
font-family: var(--font-display);
font-size: clamp(72px, 9vw, 128px);
line-height: 0.9;
letter-spacing: 3px;
margin-bottom: 28px;
text-align: center;
text-shadow: 0 4px 40px rgba(0,0,0,0.6);
}
h1 em {
font-style: normal;
color: var(--rx-orange);
display: block;
text-shadow: 0 0 60px rgba(200,49,106,0.6), 0 4px 40px rgba(0,0,0,0.6);
}

.hero-sub {
font-size: 18px;
color: rgba(245,245,255,0.75);
max-width: 580px;
line-height: 1.8;
margin-bottom: 48px;
text-align: center;
text-shadow: 0 2px 20px rgba(0,0,0,0.8);
}
.hero-sub strong { color: var(--rx-white); }

.hero-actions {
display: flex; gap: 16px; align-items: center;
flex-wrap: wrap; justify-content: center;
}

/* ─── BUTTONS ─── */
.btn-primary {
display: inline-flex; align-items: center; gap: 10px;
background: var(--rx-orange);
color: var(--rx-white);
padding: 16px 32px;
border-radius: 6px;
font-weight: 700;
font-size: 13px;
text-decoration: none;
letter-spacing: 0.1em;
text-transform: uppercase;
transition: all 0.25s;
border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--rx-orange-light); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(200,49,106,0.4); }
.btn-ghost {
display: inline-flex; align-items: center; gap: 8px;
background: var(--rx-orange);
color: var(--rx-white);
padding: 16px 32px;
border-radius: 6px;
font-weight: 700;
font-size: 13px;
text-decoration: none;
letter-spacing: 0.1em;
text-transform: uppercase;
transition: all 0.25s;
border: none; cursor: pointer;
}
.btn-ghost:hover { background: var(--rx-orange-light); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(200,49,106,0.4); }

/* scroll cue */
.hero-scroll-cue {
position: absolute;
bottom: 32px; left: 50%;
transform: translateX(-50%);
display: flex; flex-direction: column; align-items: center; gap: 8px;
z-index: 3;
opacity: 0.6;
}
.scroll-line {
width: 1px; height: 44px;
background: linear-gradient(to bottom, var(--rx-orange), transparent);
animation: scroll-line-anim 2s ease-in-out infinite;
}
@keyframes scroll-line-anim {
0%, 100% { transform: scaleY(1); opacity: 0.6; }
50% { transform: scaleY(0.4); opacity: 0.2; }
}
.scroll-text {
font-family: var(--font-mono);
font-size: 9px;
color: var(--rx-muted);
text-transform: uppercase;
letter-spacing: 0.2em;
writing-mode: vertical-rl;
}

/* ─── STATS BAND ─── */
.hero-stats-band {
position: relative; z-index: 2;
width: 100%;
background: var(--rx-dark);
border-top: 1px solid var(--rx-border);
border-bottom: 1px solid var(--rx-border);
display: grid;
grid-template-columns: repeat(3, 1fr);
}
.hstat {
padding: 40px 32px;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
border-right: 1px solid var(--rx-border);
position: relative;
overflow: hidden;
transition: background 0.3s;
cursor: default;
}
.hstat:last-child { border-right: none; }
.hstat::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0; height: 2px;
background: var(--rx-orange);
transform: scaleX(0);
transition: transform 0.4s;
transform-origin: left;
}
.hstat:hover::before { transform: scaleX(1); }
.hstat:hover { background: rgba(124,58,237,0.05); }
.hstat-num {
font-family: var(--font-display);
font-size: 64px;
line-height: 1;
color: var(--rx-white);
margin-bottom: 10px;
}
.hstat-num em {
font-style: normal;
color: var(--rx-orange);
font-size: 0.5em;
vertical-align: super;
}
.hstat-label {
font-size: 12px;
color: var(--rx-muted);
text-transform: uppercase;
letter-spacing: 0.1em;
line-height: 1.6;
}
.hstat-sub {
font-family: var(--font-mono);
font-size: 10px;
color: rgba(200,49,106,0.55);
margin-top: 6px;
letter-spacing: 0.08em;
}

/* ─── RODA HERO — integrated sliders + chart ─── */
#roda-hero {
background: var(--rx-dark);
padding: 100px 48px;
position: relative;
overflow: hidden;
}
#roda-hero::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
background: radial-gradient(ellipse at 20% 50%, rgba(200,49,106,0.07) 0%, transparent 60%);
pointer-events: none;
}
.roda-hero-inner {
max-width: 1200px;
margin: 0 auto;
position: relative; z-index: 1;
}
.roda-hero-top {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 64px;
align-items: start;
margin-bottom: 56px;
}
.roda-hero-text p {
color: var(--rx-muted);
font-size: 16px;
line-height: 1.8;
margin-bottom: 0;
}
/* pillar icon grid */
.pillar-icon-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 10px;
}
.pig-item {
background: var(--rx-card);
border: 1px solid var(--rx-border);
border-radius: 8px;
padding: 14px 10px;
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
cursor: default;
transition: all 0.2s;
}
.pig-item:hover {
border-color: var(--rx-orange);
background: rgba(200,49,106,0.06);
transform: translateY(-2px);
}
.pig-svg {
width: 26px; height: 26px;
stroke: var(--rx-orange);
opacity: 0.7;
transition: opacity 0.2s, stroke 0.2s;
}
.pig-item:hover .pig-svg { opacity: 1; }
.pig-label {
font-size: 10px;
color: var(--rx-muted);
text-align: center;
text-transform: uppercase;
letter-spacing: 0.06em;
line-height: 1.3;
}
.pig-item:hover .pig-label { color: var(--rx-white); }

/* radar + sliders side by side */
.roda-hero-main {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 48px;
align-items: center;
background: var(--rx-card);
border: 1px solid var(--rx-border);
border-radius: 16px;
padding: 40px;
position: relative;
}
.roda-hero-main::before {
content: '';
position: absolute;
top: -1px; left: 32px; right: 32px; height: 2px;
background: var(--rx-orange);
border-radius: 0 0 2px 2px;
}
.roda-chart-col {
display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.roda-score-badge {
display: flex; align-items: center; gap: 16px;
background: rgba(200,49,106,0.08);
border: 1px solid rgba(200,49,106,0.2);
border-radius: 10px;
padding: 16px 24px;
width: 100%;
}
.rsb-score {
font-family: var(--font-display);
font-size: 52px;
color: var(--rx-orange);
line-height: 1;
}
.rsb-max { font-size: 18px; color: var(--rx-muted); }
.rsb-info { flex: 1; }
.rsb-label { font-size: 11px; color: var(--rx-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.rsb-msg { font-size: 13px; color: var(--rx-white); margin-top: 4px; line-height: 1.4; }
.roda-sliders-col h3 {
font-family: var(--font-display);
font-size: 28px;
margin-bottom: 6px;
}
.roda-sliders-col > p {
font-size: 13px;
color: var(--rx-muted);
margin-bottom: 24px;
line-height: 1.5;
}
.roda-slider-item { margin-bottom: 14px; }
.rsi-top {
display: flex; justify-content: space-between; align-items: center;
margin-bottom: 6px;
}
.rsi-icon-name {
display: flex; align-items: center; gap: 8px;
font-size: 13px; font-weight: 600;
}
.rsi-emoji { font-size: 15px; }
.rsi-val {
font-family: var(--font-mono);
font-size: 12px;
color: var(--rx-orange);
min-width: 20px;
text-align: right;
}
input[type="range"].roda-range {
width: 100%; height: 3px;
border: none; padding: 0; border-radius: 2px;
background: var(--rx-border);
accent-color: var(--rx-orange);
cursor: pointer;
}
.roda-cta-row {
margin-top: 32px;
display: flex; align-items: center; gap: 16px;
padding-top: 24px;
border-top: 1px solid var(--rx-border);
}
.roda-cta-row p { font-size: 13px; color: var(--rx-muted); flex: 1; line-height: 1.5; }
.roda-cta-row strong { color: var(--rx-white); }

@media (max-width: 1024px) {
.hero-inner { padding: 120px 24px 80px; width: 100%; max-width: 100%; align-items: center; text-align: center; }
.hero-stats-band { grid-template-columns: 1fr; }
.hstat { border-right: none; border-bottom: 1px solid var(--rx-border); }
.hstat:last-child { border-bottom: none; }
.roda-hero-top { grid-template-columns: 1fr; gap: 32px; }
.pillar-icon-grid { grid-template-columns: repeat(4, 1fr); }
.roda-hero-main { grid-template-columns: 1fr; }
#roda-hero { padding: 72px 24px; }
}

section { padding: 100px 48px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label {
font-family: var(--font-mono);
font-size: 11px;
color: var(--rx-orange);
text-transform: uppercase;
letter-spacing: 0.15em;
margin-bottom: 16px;
}
h2 {
font-family: var(--font-display);
font-size: clamp(48px, 5vw, 80px);
line-height: 0.95;
margin-bottom: 24px;
}
h2 em { color: var(--rx-orange); font-style: normal; }

/* ─── MÉTODO ─── */
#metodo { background: var(--rx-dark); }
.method-intro {
max-width: 600px;
color: var(--rx-muted);
font-size: 17px;
line-height: 1.7;
margin-bottom: 72px;
}
.method-intro strong { color: var(--rx-white); }
.method-grid {
display: grid;
grid-template-columns: repeat(7, 1fr);
gap: 2px;
}
.method-step {
background: var(--rx-card);
padding: 32px 20px;
position: relative;
cursor: default;
transition: all 0.3s;
border-bottom: 3px solid transparent;
}
.method-step:hover { background: #1a1a1a; border-bottom-color: var(--rx-orange); }
.method-letter {
font-family: var(--font-display);
font-size: 64px;
color: var(--rx-orange);
line-height: 1;
opacity: 0.3;
transition: opacity 0.3s;
}
.method-step:hover .method-letter { opacity: 1; }
.method-title {
font-weight: 700;
font-size: 13px;
text-transform: uppercase;
letter-spacing: 0.05em;
margin: 12px 0 8px;
}
.method-desc { font-size: 12px; color: var(--rx-muted); line-height: 1.5; }
.method-month {
font-family: var(--font-mono);
font-size: 10px;
color: var(--rx-orange);
margin-top: 12px;
}

/* ─── RODA DAS VENDAS ─── */
#roda { background: var(--rx-black); }
.roda-wrapper {
display: grid;
grid-template-columns: 1fr 1.2fr;
gap: 80px;
align-items: start;
}
.roda-info h3 {
font-family: var(--font-display);
font-size: 36px;
margin-bottom: 16px;
}
.roda-info p { color: var(--rx-muted); line-height: 1.7; margin-bottom: 24px; }
.pillar-list { list-style: none; }
.pillar-item {
display: flex; align-items: center; gap: 12px;
padding: 12px 0;
border-bottom: 1px solid var(--rx-border);
font-size: 14px;
cursor: pointer;
transition: color 0.2s;
}
.pillar-item:hover { color: var(--rx-orange); }
.pillar-dot {
width: 8px; height: 8px; border-radius: 50%;
background: var(--rx-orange);
flex-shrink: 0;
transition: transform 0.2s;
}
.pillar-item:hover .pillar-dot { transform: scale(1.5); }
.pillar-name { font-weight: 600; min-width: 140px; }
.pillar-desc { color: var(--rx-muted); font-size: 13px; }

/* Radar Chart */
.radar-container {
background: var(--rx-card);
border: 1px solid var(--rx-border);
border-radius: 16px;
padding: 40px;
position: relative;
}
.radar-title {
font-family: var(--font-mono);
font-size: 11px;
color: var(--rx-muted);
text-transform: uppercase;
letter-spacing: 0.1em;
text-align: center;
margin-bottom: 32px;
}

/* ─── LEAD FORM ─── */
#diagnostico {
background: linear-gradient(180deg, var(--rx-dark) 0%, var(--rx-black) 100%);
position: relative;
overflow: hidden;
}
#diagnostico::before {
content: '';
position: absolute;
bottom: -300px; left: 50%;
transform: translateX(-50%);
width: 800px; height: 800px;
background: radial-gradient(circle, rgba(200,49,106,0.08) 0%, transparent 70%);
pointer-events: none;
}
.diagnostico-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: center;
}
.diagnostico-left h2 { margin-bottom: 20px; }
.diagnostico-left p {
color: var(--rx-muted);
font-size: 16px;
line-height: 1.7;
margin-bottom: 32px;
}
.checks { list-style: none; }
.checks li {
display: flex; align-items: flex-start; gap: 12px;
padding: 10px 0;
font-size: 15px;
color: var(--rx-muted);
}
.checks li::before {
content: '✓';
color: var(--rx-orange);
font-weight: 700;
flex-shrink: 0;
margin-top: 1px;
}

/* Form */
.form-card {
background: var(--rx-card);
border: 1px solid var(--rx-border);
border-radius: 16px;
padding: 48px;
position: relative;
}
.form-card::before {
content: '';
position: absolute;
top: -1px; left: 32px; right: 32px; height: 2px;
background: var(--rx-orange);
border-radius: 0 0 2px 2px;
}
.form-header {
margin-bottom: 36px;
}
.form-badge {
display: inline-block;
background: var(--rx-orange-glow);
border: 1px solid rgba(200,49,106,0.3);
color: var(--rx-orange);
font-family: var(--font-mono);
font-size: 10px;
text-transform: uppercase;
letter-spacing: 0.12em;
padding: 6px 14px;
border-radius: 100px;
margin-bottom: 16px;
}
.form-title {
font-family: var(--font-display);
font-size: 32px;
line-height: 1.1;
margin-bottom: 10px;
}
.form-sub { font-size: 14px; color: var(--rx-muted); }
.form-group { margin-bottom: 20px; }
label {
display: block;
font-size: 12px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.08em;
color: var(--rx-muted);
margin-bottom: 8px;
}
input, select, textarea {
width: 100%;
background: rgba(255,255,255,0.04);
border: 1px solid var(--rx-border);
border-radius: 6px;
padding: 14px 16px;
color: var(--rx-white);
font-family: var(--font-body);
font-size: 15px;
outline: none;
transition: border-color 0.2s, background 0.2s;
-webkit-appearance: none;
}
input:focus, select:focus, textarea:focus {
border-color: var(--rx-orange);
background: rgba(200,49,106,0.04);
}
select option { background: #1a1a1a; color: var(--rx-white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Slider Group */
.slider-group { margin-bottom: 20px; }
.slider-label-row {
display: flex; justify-content: space-between;
font-size: 12px;
color: var(--rx-muted);
text-transform: uppercase;
letter-spacing: 0.08em;
font-weight: 600;
margin-bottom: 10px;
}
.slider-value {
font-family: var(--font-mono);
color: var(--rx-orange);
font-size: 14px;
}
input[type="range"] {
padding: 0;
height: 4px;
border: none;
border-radius: 2px;
background: var(--rx-border);
cursor: pointer;
accent-color: var(--rx-orange);
}

.form-submit {
margin-top: 28px;
text-align: center;
}
.form-submit .btn-primary {
width: 100%;
justify-content: center;
font-size: 16px;
padding: 18px;
}
.form-disclaimer {
font-size: 12px;
color: var(--rx-muted);
text-align: center;
margin-top: 14px;
}

/* ─── SUCCESS STATE ─── */
.form-success {
display: none;
text-align: center;
padding: 40px 0;
}
.success-icon {
width: 72px; height: 72px;
background: var(--rx-orange-glow);
border: 2px solid var(--rx-orange);
border-radius: 50%;
display: flex; align-items: center; justify-content: center;
font-size: 32px;
margin: 0 auto 24px;
animation: pulse-ring 2s infinite;
}
@keyframes pulse-ring {
0%, 100% { box-shadow: 0 0 0 0 rgba(200,49,106,0.4); }
50% { box-shadow: 0 0 0 16px rgba(124,58,237,0); }
}
.success-title {
font-family: var(--font-display);
font-size: 40px;
margin-bottom: 12px;
}
.success-sub { color: var(--rx-muted); font-size: 15px; }

/* ─── RODA INTERATIVA ─── */
#roda-interativa {
background: var(--rx-dark);
padding: 100px 48px;
}
.roda-interactive-wrapper {
display: grid;
grid-template-columns: 1.1fr 1fr;
gap: 60px;
align-items: center;
}
.roda-chart-area {
display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.roda-controls h3 {
font-family: var(--font-display);
font-size: 36px;
margin-bottom: 8px;
}
.roda-controls > p { color: var(--rx-muted); margin-bottom: 32px; font-size: 15px; line-height: 1.7; }
.pillar-sliders { display: flex; flex-direction: column; gap: 16px; }
.ps-item {}
.ps-label {
display: flex; justify-content: space-between; align-items: center;
font-size: 13px; font-weight: 600; margin-bottom: 6px;
}
.ps-score {
font-family: var(--font-mono);
font-size: 13px;
color: var(--rx-orange);
}
input[type="range"].pillar-range {
height: 3px; padding: 0; border: none;
background: var(--rx-border);
border-radius: 2px;
cursor: pointer;
accent-color: var(--rx-orange);
}
.roda-score-display {
background: var(--rx-card);
border: 1px solid var(--rx-border);
border-radius: 12px;
padding: 20px 24px;
display: flex; justify-content: space-between; align-items: center;
}
.rsd-label { font-size: 13px; color: var(--rx-muted); }
.rsd-score {
font-family: var(--font-display);
font-size: 48px;
color: var(--rx-orange);
line-height: 1;
}
.rsd-max { font-size: 20px; color: var(--rx-muted); }
.rsd-message { font-size: 13px; color: var(--rx-muted); max-width: 200px; text-align: right; }
.roda-cta-box {
background: var(--rx-orange-glow);
border: 1px solid rgba(200,49,106,0.25);
border-radius: 10px;
padding: 20px 24px;
display: flex; align-items: center; justify-content: space-between; gap: 20px;
margin-top: 8px;
}
.roda-cta-box p { font-size: 14px; color: var(--rx-white); line-height: 1.5; }
.roda-cta-box strong { color: var(--rx-orange); }
.roda-cta-box .btn-primary { white-space: nowrap; font-size: 13px; padding: 12px 20px; }

/* ─── PREÇOS ─── */
#precos { background: var(--rx-black); }
.precos-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2px;
margin-top: 64px;
}
.preco-card {
background: var(--rx-card);
padding: 40px 32px;
position: relative;
transition: background 0.3s;
}
.preco-card.featured {
background: var(--rx-dark);
border: 1px solid rgba(200,49,106,0.3);
}
.preco-card:hover { background: #1a1a1a; }
.preco-badge {
display: inline-block;
background: var(--rx-orange);
color: var(--rx-black);
font-size: 10px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.1em;
padding: 4px 12px;
border-radius: 100px;
margin-bottom: 24px;
}
.preco-name {
font-family: var(--font-display);
font-size: 28px;
margin-bottom: 8px;
}
.preco-desc { font-size: 13px; color: var(--rx-muted); margin-bottom: 24px; line-height: 1.5; }
.preco-value {
font-family: var(--font-display);
font-size: 52px;
color: var(--rx-white);
line-height: 1;
margin-bottom: 4px;
}
.preco-value span { font-size: 22px; color: var(--rx-muted); }
.preco-period { font-size: 12px; color: var(--rx-muted); margin-bottom: 32px; }
.preco-features { list-style: none; }
.preco-features li {
display: flex; gap: 10px; align-items: flex-start;
font-size: 13px; color: var(--rx-muted);
padding: 8px 0;
border-bottom: 1px solid var(--rx-border);
}
.preco-features li::before { content: '→'; color: var(--rx-orange); flex-shrink: 0; }
.preco-cta { margin-top: 32px; }
.preco-cta .btn-primary { width: 100%; justify-content: center; }
.preco-cta .btn-ghost { width: 100%; justify-content: center; }

/* ─── FOUNDER ─── */
#fundador { background: var(--rx-dark); }
.founder-wrapper {
display: grid;
grid-template-columns: 1fr 1.2fr;
gap: 80px;
align-items: center;
}
.founder-visual {
position: relative;
}
.founder-card-visual {
background: var(--rx-card);
border: 1px solid var(--rx-border);
border-radius: 16px;
padding: 48px 40px;
text-align: center;
}
.founder-avatar {
width: 100px; height: 100px;
border-radius: 50%;
background: linear-gradient(135deg, var(--rx-orange), #a855f7);
display: flex; align-items: center; justify-content: center;
font-family: var(--font-display);
font-size: 40px;
color: var(--rx-black);
margin: 0 auto 24px;
border: 3px solid rgba(200,49,106,0.4);
}
.founder-name {
font-family: var(--font-display);
font-size: 32px;
margin-bottom: 4px;
}
.founder-role { font-size: 13px; color: var(--rx-orange); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 24px; }
.founder-metrics {
display: grid; grid-template-columns: 1fr 1fr;
gap: 16px; margin-top: 24px;
}
.fm {
background: rgba(255,255,255,0.03);
border: 1px solid var(--rx-border);
border-radius: 8px;
padding: 16px;
text-align: center;
}
.fm-num {
font-family: var(--font-display);
font-size: 32px;
color: var(--rx-orange);
}
.fm-label { font-size: 11px; color: var(--rx-muted); margin-top: 2px; }

.founder-bio h3 {
font-family: var(--font-display);
font-size: 48px;
line-height: 1;
margin-bottom: 24px;
}
.founder-bio h3 em { color: var(--rx-orange); font-style: normal; display: block; }
.founder-bio p { color: var(--rx-muted); line-height: 1.8; margin-bottom: 20px; }
.founder-bio strong { color: var(--rx-white); }
.founder-quote {
background: var(--rx-card);
border-left: 3px solid var(--rx-orange);
padding: 24px 28px;
border-radius: 0 8px 8px 0;
margin: 32px 0;
font-style: italic;
color: var(--rx-white);
font-size: 17px;
line-height: 1.6;
}
.career-items { margin-top: 32px; }
.career-item {
display: flex; gap: 16px; align-items: flex-start;
padding: 16px 0; border-bottom: 1px solid var(--rx-border);
}
.career-bullet {
width: 8px; height: 8px; border-radius: 50%;
background: var(--rx-orange);
flex-shrink: 0;
margin-top: 6px;
}
.career-title { font-weight: 700; font-size: 14px; }
.career-desc { font-size: 13px; color: var(--rx-muted); margin-top: 4px; }

/* ─── ICP ─── */
#icp { background: var(--rx-black); }
.icp-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; margin-top: 64px; }
.icp-card {
background: var(--rx-card);
padding: 40px 36px;
position: relative;
overflow: hidden;
}
.icp-card::after {
content: attr(data-num);
position: absolute;
right: 24px; top: 24px;
font-family: var(--font-display);
font-size: 80px;
color: rgba(200,49,106,0.08);
line-height: 1;
pointer-events: none;
}
.icp-tag {
font-family: var(--font-mono);
font-size: 10px;
color: var(--rx-orange);
text-transform: uppercase;
letter-spacing: 0.12em;
margin-bottom: 16px;
}
.icp-title {
font-family: var(--font-display);
font-size: 30px;
margin-bottom: 16px;
line-height: 1.1;
}
.icp-detail { font-size: 14px; color: var(--rx-muted); line-height: 1.7; }
.icp-detail strong { color: var(--rx-white); }

/* ─── FOOTER ─── */
footer {
background: var(--rx-dark);
border-top: 1px solid var(--rx-border);
padding: 60px 48px;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 24px;
}
.footer-logo {
font-family: var(--font-display);
font-size: 24px;
letter-spacing: 2px;
}
.footer-logo span { color: var(--rx-orange); }
.footer-tagline { font-size: 13px; color: var(--rx-muted); margin-top: 4px; }
.footer-center { text-align: center; }
.footer-center p { font-size: 12px; color: var(--rx-muted); }
.footer-right { text-align: right; font-size: 13px; color: var(--rx-muted); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
from { opacity: 0; transform: translateY(30px); }
to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }

@keyframes spin-slow {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}

/* ─── METHOD DELIVERABLES ─── */
.method-deliverables {
margin-top: 80px;
padding-top: 64px;
border-top: 1px solid var(--rx-border);
}
.md-header { margin-bottom: 48px; }
.md-header h3 {
font-family: var(--font-display);
font-size: 48px;
line-height: 1;
}
.md-header h3 em { color: var(--rx-orange); font-style: normal; }
.md-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2px;
}
.md-item {
background: var(--rx-card);
padding: 32px 28px;
transition: background 0.3s;
border-bottom: 3px solid transparent;
}
.md-item:hover { background: #16162a; border-bottom-color: var(--rx-orange); }
.md-icon { font-size: 28px; margin-bottom: 16px; }
.md-title { font-weight: 700; font-size: 15px; margin-bottom: 10px; }
.md-desc { font-size: 13px; color: var(--rx-muted); line-height: 1.6; }

/* ─── DIFERENCIAIS ─── */
.dif-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2px;
margin-top: 64px;
}
.dif-card {
background: var(--rx-card);
padding: 40px 32px;
position: relative;
border-bottom: 3px solid transparent;
transition: all 0.3s;
}
.dif-card.dif-highlight {
background: #16122a;
border-bottom-color: var(--rx-orange);
}
.dif-card:hover { background: #16162a; border-bottom-color: var(--rx-orange); }
.dif-num {
font-family: var(--font-mono);
font-size: 11px;
color: var(--rx-orange);
letter-spacing: 0.15em;
margin-bottom: 20px;
}
.dif-title {
font-family: var(--font-display);
font-size: 26px;
line-height: 1.1;
margin-bottom: 16px;
}
.dif-desc {
font-size: 14px;
color: var(--rx-muted);
line-height: 1.7;
margin-bottom: 20px;
}
.dif-tag {
font-family: var(--font-mono);
font-size: 10px;
color: var(--rx-orange);
opacity: 0.7;
text-transform: uppercase;
letter-spacing: 0.1em;
border-top: 1px solid var(--rx-border);
padding-top: 16px;
}

/* ─── CLIENTES / LOGOS ─── */
.logo-wall {
overflow: hidden;
position: relative;
margin-bottom: 64px;
-webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.logo-track {
display: flex;
gap: 24px;
animation: logo-scroll 28s linear infinite;
width: max-content;
}
.logo-track:hover { animation-play-state: paused; }
@keyframes logo-scroll {
from { transform: translateX(0); }
to { transform: translateX(-50%); }
}
.logo-item {
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: center;
width: 180px;
height: 80px;
padding: 12px 20px;
}
.logo-real {
max-width: 150px;
max-height: 60px;
width: auto;
height: auto;
object-fit: contain;
opacity: 0.5;
transition: opacity 0.3s, filter 0.3s;
}
.logo-real:hover {
opacity: 1;
filter: drop-shadow(0 0 8px rgba(200,49,106,0.6));
}

.clients-stats {
display: flex;
align-items: center;
justify-content: center;
gap: 0;
background: var(--rx-card);
border: 1px solid var(--rx-border);
border-radius: 12px;
overflow: hidden;
}
.cs-item {
flex: 1;
padding: 32px 24px;
text-align: center;
}
.cs-divider {
width: 1px;
height: 60px;
background: var(--rx-border);
flex-shrink: 0;
}
.cs-num {
font-family: var(--font-display);
font-size: 36px;
color: var(--rx-orange);
line-height: 1;
margin-bottom: 6px;
}
.cs-label {
font-size: 12px;
color: var(--rx-muted);
text-transform: uppercase;
letter-spacing: 0.06em;
}

@media (max-width: 1024px) {
.md-grid { grid-template-columns: 1fr 1fr; }
.dif-grid { grid-template-columns: 1fr; }
.clients-stats { flex-direction: column; }
.cs-divider { width: 60px; height: 1px; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--rx-black); }
::-webkit-scrollbar-thumb { background: var(--rx-border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--rx-orange); }

/* Responsive basics */
@media (max-width: 1024px) {
nav { padding: 16px 24px; }
.nav-links { display: none; }
.nav-hamburger { display: flex; }
.nav-mobile { display: flex; }
#hero { grid-template-columns: 1fr; padding: 120px 24px 60px; }
.hero-stats { grid-template-columns: repeat(3, 1fr); }
section { padding: 72px 24px; }
.method-grid { grid-template-columns: repeat(4, 1fr); }
.roda-wrapper, .diagnostico-wrapper, .roda-interactive-wrapper { grid-template-columns: 1fr; gap: 48px; }
footer { padding: 40px 24px; flex-direction: column; text-align: center; }
.footer-right { text-align: center; }
}


.solucoes-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  margin-top: 64px;
}
.sol-card {
  background: var(--rx-card);
  padding: 36px 24px;
  position: relative;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sol-card--core {
  background: #0f0c1e;
  border-bottom-color: var(--rx-orange);
}
.sol-card--wide {
  background: #0c1020;
}
.sol-card:hover {
  background: #16162a;
  border-bottom-color: var(--rx-orange);
}
.sol-card--core:hover { background: #130f22; }
.sol-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--rx-orange);
  color: var(--rx-black);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.sol-category {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--rx-orange);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}
.sol-icon {
  margin-bottom: 20px;
}
.sol-icon svg { stroke: var(--rx-orange); opacity: 0.8; transition: opacity 0.2s; }
.sol-card:hover .sol-icon svg { opacity: 1; }
.sol-title {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.1;
  margin-bottom: 14px;
}
.sol-desc {
  font-size: 14px;
  color: var(--rx-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 28px;
}
.sol-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rx-orange);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-mono);
  transition: gap 0.2s, opacity 0.2s;
  margin-top: auto;
}
.sol-link:hover { gap: 12px; opacity: 0.8; }

@media (max-width: 1024px) {
  .solucoes-grid { grid-template-columns: 1fr 1fr 1fr; }
  .sol-card--wide { grid-column: span 1; }
  #solucoes { padding: 72px 24px; }
}
@media (max-width: 640px) {
  .solucoes-grid { grid-template-columns: 1fr 1fr; }
  .sol-card--wide { grid-column: span 1; }
}

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: all 0.3s;
  text-decoration: none;
  animation: wpp-pulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  background: #20ba5a;
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
  animation: none;
}
@keyframes wpp-pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.75), 0 0 0 8px rgba(37,211,102,0.1); }
}