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

:root {
    --cor-verde: #C8FF4A;
    --cor-azul: #0D1B3A;
    --cor-lilas: #B29CFF;
    --cor-offwhite: #F5F4EF;
    --cor-cinza: #B0B0B0;
    --cor-preto: #0E0E0E;
    --cor-chumbo: #1F1F23;
    --cor-erro: #ff4a4a;
    --fonte-principal: "Inter", "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
    --ease: cubic-bezier(.16, 1, .3, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--fonte-principal);
    background: linear-gradient(135deg, #091227 0%, var(--cor-azul) 50%, #151518 100%);
    background-attachment: fixed;
    color: var(--cor-offwhite);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--cor-verde);
    color: var(--cor-preto);
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Acessibilidade */
:focus-visible {
    outline: 3px solid var(--cor-lilas);
    outline-offset: 2px;
}

/* NAV */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 4px 0;
    background-color: rgba(14, 14, 14, 0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border-bottom: 1px solid rgba(255, 255, 255, 0);
    transition: background-color 0.35s ease, padding 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.nav.s {
    background-color: #151518;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 2px 0;
    border-bottom: 1px solid rgba(200, 255, 74, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-in {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    height: 48px;
}

.nav-logo img {
    height: 78px;
    max-height: 80px;
    width: auto;
    object-fit: contain;
    margin-top: -14px;
    margin-bottom: -14px;
    transition: height 0.3s var(--ease);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    color: var(--cor-cinza);
    font-size: 0.8125rem;
    font-weight: 500;
    transition: color 0.25s;
}

.nav-links a:hover {
    color: var(--cor-lilas);
}

.nav-links a:active,
.nav-links a.active {
    color: var(--cor-verde);
    font-weight: 700;
}

.btn-cta {
    background-color: var(--cor-verde);
    color: #0F172A !important; /* AZUL CHUMBO ESCURO - MÁXIMA LEGIBILIDADE */
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.82rem;
    letter-spacing: 0.03em;
    font-weight: 900;
    text-decoration: none;
    transition: all 0.3s var(--ease);
    display: inline-block;
    box-shadow: 0 0 20px rgba(200, 255, 74, 0.25);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-cta:hover {
    box-shadow: 0 0 28px rgba(200, 255, 74, 0.4);
    transform: translateY(-2px);
    background: #d4ff70;
    color: #0B0E14 !important;
}

.btn-ghost {
    background: rgba(178, 156, 255, 0.05);
    color: var(--cor-lilas);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid rgba(178, 156, 255, 0.3);
    transition: all 0.25s var(--ease);
    cursor: pointer;
    text-align: center;
    display: inline-block;
}

.btn-ghost:hover {
    background: rgba(178, 156, 255, 0.15);
    border-color: var(--cor-lilas);
    color: var(--cor-lilas);
    box-shadow: 0 0 22px rgba(178, 156, 255, 0.35);
    transform: translateY(-2px);
}

.btn-ghost:active,
.btn-ghost.selected {
    background: var(--cor-verde);
    color: var(--cor-azul);
    border-color: var(--cor-verde);
    box-shadow: 0 0 25px rgba(200, 255, 74, 0.4);
}

.hamburger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cor-offwhite);
    margin: 5px 0;
    border-radius: 2px;
}

.mob-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 310px;
    max-width: 82vw;
    height: 100vh;
    background: rgba(13, 27, 58, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-left: 1px solid rgba(200, 255, 74, 0.18);
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.65);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 40px 24px;
    gap: 16px;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.38s;
}

.mob-menu.open {
    transform: translateX(0);
    visibility: visible;
}

.mob-menu a {
    color: var(--cor-offwhite);
    font-size: 1.05rem;
    font-weight: 600;
    padding: 12px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mob-menu a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--cor-verde);
}

.mob-menu .btn-cta {
    background-color: var(--cor-verde) !important;
    color: #0F172A !important; /* AZUL CHUMBO ESCURO NA SIDEBAR */
    font-weight: 900 !important;
    text-align: center;
    margin-top: 12px;
}

.mob-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--cor-offwhite);
    font-size: 1.1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mob-close:hover {
    background: rgba(200, 255, 74, 0.2);
    color: var(--cor-verde);
    border-color: var(--cor-verde);
}

/* SECTIONS */
.wrap {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 96px 0;
}

.label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cor-lilas);
    margin-bottom: 14px;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 16px;
    text-wrap: balance;
}

h2 em {
    font-style: normal;
    color: var(--cor-verde);
}

.sub {
    font-size: 1.125rem;
    color: var(--cor-cinza);
    max-width: 600px;
    line-height: 1.7;
    text-wrap: balance;
}

.card {
    background: var(--cor-chumbo);
    border: 1px solid rgba(178, 156, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.35s var(--ease);
}

.card:hover {
    border-color: rgba(178, 156, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* REVEAL */
.rv {
    opacity: 1;
    transform: none;
}

.rv.d1 { transition-delay: 0.1s; }
.rv.d2 { transition-delay: 0.2s; }
.rv.d3 { transition-delay: 0.3s; }
.rv.d4 { transition-delay: 0.4s; }

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    position: relative;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 24px;
    text-wrap: balance;
}

.hero h1 .hl {
    color: var(--cor-verde);
    position: relative;
}

.hero-p {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--cor-cinza);
    line-height: 1.75;
    max-width: 650px;
    margin-bottom: 40px;
    text-wrap: balance;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.proof {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.proof-i {
    font-size: 0.9rem;
    color: var(--cor-cinza);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.proof-i svg {
    width: 20px;
    height: 20px;
    color: var(--cor-verde);
    flex-shrink: 0;
}

.proof-d {
    width: 1px;
    height: 20px;
    background: rgba(178, 156, 255, 0.2);
}

/* PAIN GRID */
.pain-g {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
}

.pain-c h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--cor-verde);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.pain-c p {
    font-size: 1rem;
    color: var(--cor-cinza);
    line-height: 1.65;
}

.quote {
    margin-top: 40px;
    padding: 24px 32px;
    border-left: 3px solid var(--cor-verde);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--cor-verde);
    background: rgba(200, 255, 74, 0.05);
    border-radius: 0 12px 12px 0;
}

/* COMPARISON */
.comp-g {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
}

.comp-c {
    border-radius: 16px;
    padding: 40px;
}

.comp-c.bad {
    background: rgba(248, 113, 113, 0.05);
    border: 1px solid rgba(248, 113, 113, 0.2);
}

.comp-c.good {
    background: rgba(200, 255, 74, 0.05);
    border: 1px solid rgba(200, 255, 74, 0.2);
    position: relative;
}

.comp-c h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.comp-c.bad h3 { color: var(--cor-erro); }
.comp-c.good h3 { color: var(--cor-verde); }

.cl {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cl li {
    font-size: 1rem;
    color: var(--cor-cinza);
    line-height: 1.6;
    padding-left: 28px;
    position: relative;
}

.cl li::before {
    position: absolute;
    left: 0;
    font-weight: 900;
    font-size: 1rem;
}

.cl.bad li::before { content: '✗'; color: var(--cor-erro); }
.cl.good li::before { content: '✓'; color: var(--cor-verde); }
.cl li strong { color: var(--cor-offwhite); }

/* SOLUTION */
.sol-g {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
}

.sol-c p {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--cor-cinza);
}

.sol-c strong {
    color: var(--cor-verde);
    font-weight: 700;
}

.sol-bar {
    margin-top: 40px;
    background: var(--cor-chumbo);
    border: 1px solid rgba(178, 156, 255, 0.2);
    border-radius: 12px;
    padding: 24px 40px;
    text-align: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--cor-cinza);
}

.sol-bar em {
    font-style: normal;
    color: var(--cor-verde);
    font-weight: 800;
}

/* METHOD */
.meth-g {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 16px;
    align-items: center;
    margin-top: 48px;
}

.meth-c {
    text-align: center;
    padding: 32px 20px;
}

.meth-c .badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.badge-l { background: rgba(200, 255, 74, 0.1); color: var(--cor-verde); border: 1px solid rgba(200, 255, 74, 0.2); }
.badge-p { background: rgba(178, 156, 255, 0.1); color: var(--cor-lilas); border: 1px solid rgba(178, 156, 255, 0.2); }

.meth-c h3 {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--cor-offwhite);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.meth-c p {
    font-size: 0.95rem;
    color: var(--cor-cinza);
    line-height: 1.6;
}

.meth-arrow {
    display: flex;
    justify-content: center;
    color: var(--cor-verde);
    opacity: 0.5;
}
.meth-arrow svg {
    width: 32px;
    height: 32px;
}

/* SQUAD (AGENCYDIGITAL STYLE) */
.sq-g {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.sq-c {
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--cor-chumbo);
    border: 1px solid rgba(178, 156, 255, 0.15);
    border-radius: 16px;
    transition: all 0.35s var(--ease);
}

.sq-c:hover {
    border-color: var(--cor-verde);
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(200, 255, 74, 0.1);
}

.sq-ic {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 20px;
    background: rgba(200, 255, 74, 0.1);
    border: 1px solid rgba(200, 255, 74, 0.25);
    color: var(--cor-verde);
}

.sq-c h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--cor-offwhite);
    margin-bottom: 12px;
}

.sq-c p {
    font-size: 0.9rem;
    color: var(--cor-cinza);
    line-height: 1.6;
    flex-grow: 1;
}

.sq-btns {
    display: flex;
    gap: 10px;
    width: 100%;
    margin-top: 24px;
}

.sq-btns .btn-sq-primary,
.sq-btns .btn-sq-secondary {
    flex: 1;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: all 0.25s var(--ease);
}

.sq-btns .btn-sq-primary {
    background: var(--cor-verde);
    color: var(--cor-azul);
}

.sq-btns .btn-sq-primary:hover {
    background: #d4ff70;
    box-shadow: 0 4px 15px rgba(200, 255, 74, 0.3);
}

.sq-btns .btn-sq-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--cor-offwhite);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.sq-btns .btn-sq-secondary:hover {
    border-color: var(--cor-lilas);
    color: var(--cor-lilas);
}

/* COST TABLE */
.cost-t {
    margin-top: 48px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(248, 113, 113, 0.2);
    background: var(--cor-chumbo);
}

.cost-h {
    display: flex;
    justify-content: space-between;
    padding: 16px 32px;
    background: rgba(248, 113, 113, 0.08);
    border-bottom: 1px solid rgba(248, 113, 113, 0.2);
}

.cost-h span {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cor-erro);
}

.cost-r {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cost-r span:first-child {
    font-size: 1rem;
    font-weight: 500;
    color: var(--cor-offwhite);
}

.cost-r span:last-child {
    font-size: 1rem;
    font-weight: 600;
    color: var(--cor-cinza);
    font-variant-numeric: tabular-nums;
}

.cost-f {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    background: rgba(248, 113, 113, 0.1);
}

.cost-f span:first-child {
    font-size: 1rem;
    font-weight: 800;
    color: var(--cor-erro);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.cost-f span:last-child {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--cor-erro);
    font-variant-numeric: tabular-nums;
}

.cost-trans {
    margin-top: 32px;
    text-align: center;
    font-size: 1.125rem;
    color: var(--cor-cinza);
}

.cost-trans em {
    font-style: normal;
    color: var(--cor-verde);
    font-weight: 700;
}

/* PLANS */
.plans-g {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    align-items: start;
}

.plan {
    border-radius: 16px;
    padding: 40px 32px;
    background: var(--cor-chumbo);
    border: 1px solid rgba(178, 156, 255, 0.15);
    position: relative;
    transition: all 0.35s var(--ease);
}

.plan.ft {
    border-color: rgba(200, 255, 74, 0.3);
    box-shadow: 0 0 60px rgba(200, 255, 74, 0.08);
    padding-top: 56px;
}

.plan-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cor-verde);
    color: var(--cor-azul);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 100px;
    white-space: nowrap;
}

.plan-n {
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--cor-offwhite);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.plan-d {
    font-size: 0.95rem;
    color: var(--cor-cinza);
    margin-bottom: 24px;
    line-height: 1.6;
}

.plan-old {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
    display: block;
    margin-bottom: 4px;
}

.plan-p {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--cor-verde);
    display: block;
    margin-bottom: 4px;
    font-variant-numeric: tabular-nums;
}

.plan-pl {
    font-size: 0.95rem;
    color: var(--cor-cinza);
    display: block;
    margin-bottom: 28px;
}

.plan-f {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.plan-f li {
    font-size: 0.95rem;
    color: var(--cor-cinza);
    padding-left: 24px;
    position: relative;
    line-height: 1.5;
}

.plan-f li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--cor-verde);
    font-weight: 900;
    font-size: 0.85rem;
}

.plan-f li strong { color: var(--cor-offwhite); }

.plan .btn-cta, .plan .btn-ghost {
    width: 100%;
    display: block;
}

/* WPP PRINTS */
.wpp-grid {
    display: flex;
    gap: 20px;
    margin-top: 48px;
    overflow-x: auto;
    padding-bottom: 24px;
    scroll-snap-type: x mandatory;
}
.wpp-grid::-webkit-scrollbar {
    height: 6px;
}
.wpp-grid::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
}
.wpp-grid::-webkit-scrollbar-thumb {
    background: var(--cor-lilas);
    border-radius: 4px;
}

.wpp-print {
    scroll-snap-align: start;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: #151518;
    border: 1px solid rgba(200, 255, 74, 0.2);
    min-width: 280px;
    max-width: 320px;
    height: auto;
    flex-shrink: 0;
    transition: all 0.3s var(--ease);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.wpp-print:hover {
    border-color: var(--cor-verde);
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(200, 255, 74, 0.25);
}

.wpp-print img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    display: block;
    opacity: 1;
    border-radius: 15px;
}

/* TESTIMONIALS */
.test-g {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.test-c {
    padding: 32px;
}

.test-c blockquote {
    font-size: 1rem;
    color: #B0B0B0;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.test-a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.test-av {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cor-lilas), var(--cor-verde));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--cor-azul);
    flex-shrink: 0;
}

.test-a strong {
    display: block;
    font-size: 0.95rem;
    color: var(--cor-offwhite);
    font-weight: 700;
}

.test-a span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* CTA FINAL */
.cta-s {
    text-align: center;
    padding: 120px 0;
}

.cta-s h2 {
    margin-bottom: 20px;
}

.cta-s .sub {
    margin: 0 auto 40px;
    text-align: center;
}

.cta-s .btn-cta {
    padding: 20px 48px;
    font-size: 1rem;
}

.urg {
    margin-top: 24px;
    font-size: 0.95rem;
    color: var(--cor-erro);
    font-weight: 600;
}

.gar {
    margin-top: 12px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* FOOTER */
footer {
    border-top: 1px solid rgba(178, 156, 255, 0.1);
    padding: 48px 0;
    text-align: center;
}

.footer-logo-crop {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    height: 180px;
    margin: 0 auto 16px;
}

.footer-logo-crop img {
    height: 520px;
    max-height: none;
    width: auto;
    object-fit: contain;
    margin-top: -170px;
    margin-bottom: -170px;
}

.ft-c {
    font-size: 0.95rem;
    color: var(--cor-cinza);
    margin-bottom: 8px;
}

.ft-c a {
    color: var(--cor-lilas);
    transition: color 0.2s;
}

.ft-c a:hover {
    color: var(--cor-offwhite);
}

.ft-cp {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* PARALLAX BG REMOVED */
.parallax-bg {
    display: none !important;
}

.brand-icon {
    display: block;
    background-image: url("assets/icone.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0 0 10px rgba(200, 255, 74, 0.25));
}

.p-shape {
    position: absolute;
    color: var(--cor-verde);
    box-sizing: border-box;
    transition: transform 0.1s cubic-bezier(0.1, 0, 0.9, 1);
}

/* GRADIENTE DE OPACIDADE: SUBTIL E CLEAN NAS EXTREMIDADES */
.p-edge {
    opacity: 0.08 !important;
}

.p-mid {
    opacity: 0.16 !important;
}

.p-center {
    opacity: 0.07 !important;
    filter: blur(2px);
}

.p-blur {
    filter: blur(6px);
}

/* RESPONSIVE */
/* INTERACTIVE HOVER & SELECTION STATES (ROXO NO HOVER, VERDE SELECIONADO) */
.pain-c:hover, .sol-c:hover, .plan:hover, .sq-c:hover, .test-c:hover {
    border-color: var(--cor-lilas);
    box-shadow: 0 8px 30px rgba(178, 156, 255, 0.22);
}

.pain-c.selected, .sol-c.selected, .plan.selected, .sq-c.selected, .test-c.selected,
.pain-c:active, .sol-c:active, .plan:active, .sq-c:active, .test-c:active {
    border-color: var(--cor-verde);
    box-shadow: 0 8px 30px rgba(200, 255, 74, 0.3);
}

@media (max-width: 1024px) {
    .meth-g { grid-template-columns: 1fr; gap: 24px; }
    .meth-arrow { transform: rotate(90deg); margin: -8px 0; }
    .plans-g { grid-template-columns: 1fr; }
    .plans-g .plan.ft { order: -1; }
}

@media (max-width: 768px) {
    .nav-logo img { height: 34px; }
    footer img { height: 55px; }
    .nav-links { display: none; }
    .hamburger { display: block; }
    section { padding: 80px 0; }
    .pain-g, .comp-g, .sol-g, .sq-g, .test-g { grid-template-columns: 1fr; }
    .meth-g { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn-cta, .hero-btns .btn-ghost { text-align: center; justify-content: center; width: 100%; }
    .proof { flex-direction: column; gap: 12px; }
    .proof-d { display: none; }

    /* LIMPEZA TOTAL DE PATTERNS NO MOBILE FORA DE POLUIÇÃO */
    .parallax-bg {
        z-index: -1 !important;
    }
    .p-mid, .p-center, .p-blur {
        display: none !important;
    }
    .p-edge {
        opacity: 0.08 !important;
        transform: scale(0.55) !important;
    }
}

@media (max-width: 480px) {
    h2 { font-size: 1.8rem; }
    .hero h1 { font-size: 2.2rem; }
}
