:root {
    --bg-dark: #05070a;
    --card-bg: rgba(255, 255, 255, 0.03);
    --emerald: #10b981;
    --emerald-glow: rgba(16, 185, 129, 0.2);
    --purple: #8b5cf6;
    --purple-glow: rgba(139, 92, 246, 0.2);
    --gold: #fbbf24;
    --text-main: #f8fafc;
    --text-dim: #cbd5e1;
    --font-sans: 'Instrument Sans', sans-serif;
    --font-mono: 'Geist Mono', monospace;
}

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

html.lenis {
    height: auto;
}

#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Texture */
.bg-texture {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-image: url('dark-bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
}

.glow-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Attention Grabber Animations */
.text-focus-glow {
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 0.1em;
    animation: focusPulse 4s infinite ease-in-out;
    display: inline-block;
}

.glow-emerald {
    color: var(--emerald);
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

.glow-purple {
    color: var(--purple);
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.glow-gold {
    color: var(--gold);
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

@keyframes focusPulse {

    0%,
    100% {
        opacity: 0.4;
        filter: blur(4px);
        transform: scale(0.95);
    }

    50% {
        opacity: 1;
        filter: blur(0px);
        transform: scale(1.02);
    }
}

.split-text {
    perspective: 1000px;
    display: inline-block;
}

.split-char {
    display: inline-block;
    transform-origin: center bottom;
    will-change: transform, opacity;
}

/* Scare Animation for SURPRESA */
.text-scare {
    display: inline-block;
    color: #ff4d4d;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(255, 77, 77, 0.5);
    animation: scareShake 5s infinite;
}

@keyframes scareShake {
    0% {
        opacity: 0;
        filter: blur(20px);
        transform: scale(0.8);
    }

    10% {
        opacity: 1;
        filter: blur(0px);
        transform: scale(1.1);
    }

    12% {
        transform: translate(2px, 2px) rotate(1deg);
    }

    14% {
        transform: translate(-2px, -2px) rotate(-1deg);
    }

    16% {
        transform: translate(2px, -2px) rotate(1deg);
    }

    18% {
        transform: translate(-2px, 2px) rotate(-1deg);
    }

    20% {
        transform: translate(0, 0) rotate(0);
    }

    100% {
        transform: translate(0, 0) rotate(0);
    }
}

/* Problem/Pain Section */
.problem {
    padding: 8rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.p-text h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

.p-list {
    list-style: none;
    margin-top: 2rem;
}

.p-list li {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cross-icon {
    color: #ff4d4d;
    font-weight: 900;
}

.p-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-card {
    background: rgba(255, 77, 77, 0.05);
    border: 1px solid rgba(255, 77, 77, 0.1);
    padding: 2.5rem;
    border-radius: 24px;
    text-align: center;
}

.stat-card.gold {
    background: rgba(251, 191, 36, 0.05);
    border-color: rgba(251, 191, 36, 0.1);
}

.stat-value {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-mono);
    margin-bottom: 1rem;
    color: #ff4d4d;
}

.stat-card.gold .stat-value {
    color: var(--gold);
}

.stat-card p {
    font-size: 0.9rem;
    color: var(--text-dim);
}

@media (max-width: 1024px) {
    .problem-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }

    .p-stats {
        grid-template-columns: 1fr;
    }
}

/* Transformation Section */
.transformation {
    padding: 8rem 0;
}

.t-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
}

.t-side {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 32px;
    height: 100%;
}

.t-side h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.t-side.before {
    border-color: rgba(255, 77, 77, 0.1);
}

.t-side.before h3 {
    color: #ff4d4d;
}

.t-side.after {
    border-color: var(--emerald-glow);
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.03) 0%, transparent 100%);
}

.t-side.after h3 {
    color: var(--emerald);
}

.t-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.t-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--text-dim);
}

.t-list li span {
    font-size: 1.25rem;
}

.t-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.t-arrow {
    font-size: 2.5rem;
    color: var(--emerald);
    opacity: 0.5;
    animation: arrowPulse 2s infinite ease-in-out;
}

@keyframes arrowPulse {

    0%,
    100% {
        transform: translateX(0);
        opacity: 0.3;
    }

    50% {
        transform: translateX(10px);
        opacity: 1;
    }
}

@media (max-width: 992px) {
    .t-grid {
        grid-template-columns: 1fr;
    }

    .t-divider {
        padding: 2rem 0;
        transform: rotate(90deg);
    }
}

/* AI Showcase Section */
.ai-showcase {
    padding: 4rem 0;
    /* Diminuído de 8rem */
}

.ai-content-wrap {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    text-align: center;
}

.video-mockup-wrapper {
    position: relative;
    width: 100%;
    max-width: 320px;
}

.mockup-frame {
    background: #0B1015;
    border: 8px solid #1a1f26;
    border-radius: 40px;
    padding: 10px;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.8), 0 0 30px rgba(16, 185, 129, 0.1);
    position: relative;
    overflow: hidden;
}

.ai-demo-video {
    width: 100%;
    border-radius: 28px;
    display: block;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    background: var(--emerald);
    color: #000;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 99px;
    font-weight: 800;
    font-size: 0.8rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.05);
    background: #fff;
}

.video-overlay-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 40%, rgba(16, 185, 129, 0.05) 100%);
    pointer-events: none;
}

.ai-commands {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.command-bubble {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 99px;
    font-size: 0.9rem;
    color: var(--text-main);
}

@keyframes micPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes vBounce {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-10px);
    }
}

@keyframes commandFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 992px) {
    .ai-content-wrap {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ai-commands {
        align-items: center;
    }

    .command-bubble {
        margin-left: 0 !important;
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography Defaults */
h1,
h2,
h3 {
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: rgba(5, 7, 10, 0.7);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dim);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    transition: color 0.3s ease;
}

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

.nav-links a.nav-highlight {
    color: var(--gold);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
    border: 1px solid rgba(251, 191, 36, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 99px;
    background: rgba(251, 191, 36, 0.05);
    transition: all 0.3s ease;
}

.nav-links a.nav-highlight:hover {
    background: rgba(251, 191, 36, 0.1);
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.2);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.2rem;
}

.logo img {
    height: 48px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.2));
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

/* Buttons */
.btn-cta {
    background: var(--emerald);
    color: #000;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-family: var(--font-mono);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1rem;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 20px -5px rgba(16, 185, 129, 0.4);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(16, 185, 129, 0.6);
    background: #fff;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 12rem;
    /* Aumentado para descer o bloco (vários enter) */
}

.hero-tag {
    font-family: var(--font-mono);
    color: var(--emerald);
    font-size: 0.75rem;
    letter-spacing: 0.3rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    max-width: 1000px;
    margin-bottom: 2rem;
}

.text-gradient {
    background: linear-gradient(135deg, #fff 0%, var(--emerald) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-dim);
    max-width: 600px;
    margin-bottom: 4rem;
}

.hero-mockup-wrap {
    position: relative;
    width: 100%;
    perspective: 2000px;
    margin-top: 6rem;
    margin-bottom: 12rem;
}

.hero-mockup {
    width: 65%;
    /* Tamanho reduzido para o celular ficar elegante sem o fundo */
    max-width: 500px;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 0 50px rgba(16, 185, 129, 0.3));
    animation: none;
    transform: none;
    transform-style: preserve-3d;
}

@media (max-width: 768px) {
    .hero-mockup {
        width: 200%;
        margin-left: -50%;
        margin-right: -50%;
    }
}



@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-40px) scale(1.02);
    }
}

/* Features Grid */
.features {
    padding: 10rem 0;
}

.section-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-dim);
    letter-spacing: 0.5rem;
    text-transform: uppercase;
    margin-bottom: 4rem;
    display: block;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.f-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 3rem;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    position: relative;
}

.f-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--emerald);
    transform: translateY(-10px);
}

.f-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.f-card p {
    color: var(--text-dim);
}

.f-card img {
    width: 130%;
    margin-left: -15%;
    margin-top: 1rem;
    transition: transform 0.5s;
}

.f-card:hover img {
    transform: scale(1.05);
}

/* Gen 0 - The Special One */
.gen0 {
    padding: 10rem 0;
    position: relative;
}

.gen0-box {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(251, 191, 36, 0.05) 100%);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 32px;
    padding: 5rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.gen0-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.gen0 h2 {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.countdown {
    display: flex;
    gap: 2rem;
    margin: 3rem 0;
}

.c-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.c-item span {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: var(--font-mono);
    line-height: 1;
}

.c-item small {
    color: var(--emerald);
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

/* Hourglass SVG / Animation */
.hourglass-futuristic {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    background: radial-gradient(circle, var(--emerald) 0%, transparent 70%);
    clip-path: polygon(0% 0%, 100% 0%, 50% 50%, 100% 100%, 0% 100%, 50% 50%);
    animation: rotate 10s infinite;
    filter: blur(1px) drop-shadow(0 0 20px var(--emerald));
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
        opacity: 0.8;
    }

    50% {
        transform: rotate(180deg);
        opacity: 1;
    }

    100% {
        transform: rotate(360deg);
        opacity: 0.8;
    }
}

/* VS Comparison Graphic */
.vs-comparison {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    justify-content: space-between;
}

.vs-item {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.vs-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
}

.vs-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.vs-item p {
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0 !important;
    line-height: 1.4;
}

.vs-item.highlight {
    border-color: var(--emerald);
    background: rgba(16, 185, 129, 0.05);
}

.vs-item.highlight p {
    color: var(--emerald);
}

@media (max-width: 600px) {
    .vs-comparison {
        flex-direction: column;
    }
}

/* Killer Feature Banner */
.killer-feature {
    padding: 5rem 0;
}

.k-banner {
    background: linear-gradient(135deg, rgba(20, 20, 25, 0.95) 0%, rgba(5, 7, 10, 1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    padding: 5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    overflow: hidden;
    position: relative;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.8);
    text-align: center;
}

/* Killer Feature Structure */
.k-title-main {
    font-size: 3.5rem;
    margin-bottom: 3rem;
    line-height: 1.1;
    text-align: center;
}

.k-visual-centered {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.k-visual-centered img {
    width: 100%;
    max-width: 500px;
    z-index: 2;
    filter: drop-shadow(0 0 30px rgba(16, 185, 129, 0.1));
}

.k-desc-main {
    font-size: 1.25rem;
    color: var(--text-dim);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.k-block-two {
    width: 100%;
    max-width: 900px;
    margin-top: 6rem;
    /* Empurrando o container para baixo conforme pedido */
    margin-bottom: 5rem;
}

.k-feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.k-feature-list li {
    font-size: 1.25rem;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 1rem;
    white-space: nowrap;
    /* Prevent line breaks as requested */
}

.k-block-three {
    text-align: center;
}

.k-price-display {
    margin-bottom: 3rem;
}

.k-price-label {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.k-price-value {
    font-size: 4rem;
    font-weight: 800;
    color: var(--purple);
    margin-bottom: 0.5rem;
}

.k-price-value span {
    font-size: 1.25rem;
    color: #fff;
    opacity: 0.7;
}

.k-price-daily {
    font-size: 1rem;
    opacity: 0.6;
}

.k-btn-final {
    margin: 0 auto;
    min-width: 320px;
    display: inline-block;
}

@media (max-width: 1024px) {
    .k-banner {
        padding: 3rem 1.5rem;
    }

    .k-list {
        grid-template-columns: 1fr;
    }

    .k-list li {
        justify-content: center;
        text-align: center;
    }

    .k-title {
        font-size: 2.5rem;
    }
}

/* Pricing Grid */
.pricing {
    padding: 10rem 0;
}

.pricing-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.p-card {
    background: var(--card-bg);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 800px;
    /* Mais largo para comportar as duas colunas */
    text-align: center;
}

.p-card:hover {
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.02);
}

.p-card.featured {
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.1) 0%, rgba(5, 7, 10, 0.6) 100%);
    border-color: var(--purple);
    z-index: 2;
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.1);
}

.p-card.special {
    background: linear-gradient(180deg, rgba(251, 191, 36, 0.1) 0%, rgba(5, 7, 10, 0) 100%);
    border-color: var(--gold);
}

.p-header {
    margin-bottom: 2rem;
}

.p-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-main);
}

.p-header h3 span {
    font-weight: 400;
    font-size: 1.1rem;
    opacity: 0.7;
    margin-left: 0.5rem;
}

.p-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--purple);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.4rem 0.8rem;
    border-radius: 99px;
    letter-spacing: 0.05rem;
}

.p-header h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.p-header p {
    color: var(--text-dim);
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.6;
}

.p-features {
    list-style: none;
    margin-bottom: 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 3rem;
    text-align: left;
    position: relative;
    padding: 0 1rem;
}

/* Divisor vertical entre colunas de features */
.p-features::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 80%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.p-features li {
    font-size: 0.9rem;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    line-height: 1.4;
}

.p-features li::before {
    content: '✓';
    color: var(--emerald);
    font-weight: 700;
}

.p-card.featured .p-features li::before {
    color: var(--purple);
}

.p-card.special .p-features li::before {
    color: var(--gold);
}

.cross {
    opacity: 0.3;
    text-decoration: line-through;
}

.btn-outline,
.p-card .btn-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 99px;
    text-decoration: none;
    font-weight: 800;
    font-family: var(--font-mono);
    text-transform: uppercase;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
    width: fit-content;
    margin: 0 auto;
    min-width: 320px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #fff;
}

.btn-price {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0;
    margin-top: 0.2rem;
    background: none !important;
    text-shadow: none !important;
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.p-card.featured .btn-cta {
    background: var(--purple);
    color: #fff;
    box-shadow: 0 10px 20px -5px rgba(139, 92, 246, 0.4);
}

.p-card.featured .btn-cta:hover {
    background: #fff;
    color: var(--purple);
}



/* Comparison Table */
.table-hint {
    text-align: center;
    font-size: 0.75rem;
    color: var(--emerald);
    margin-bottom: 1rem;
    opacity: 0.8;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    display: none;
    /* Escondido por padrão */
}

.comparison-container {
    margin-top: 6rem;
    overflow-x: auto;
    background: #020305;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.8), 0 20px 40px rgba(0, 0, 0, 0.4);
    max-height: 80vh;
    /* Permite scroll interno para que o header fixe no topo do container se houver scroll */
}

/* Guarantee Section */
.guarantee-box {
    margin-top: 4rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(5, 7, 10, 0.5) 100%);
    border: 1px solid var(--emerald-glow);
    border-radius: 24px;
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    text-align: left;
}

.g-icon {
    font-size: 4rem;
    filter: drop-shadow(0 0 15px var(--emerald));
}

.g-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--emerald);
}

.g-content p {
    color: var(--text-dim);
    font-size: 1rem;
    max-width: 600px;
}

@media (max-width: 768px) {
    .guarantee-box {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 1.5rem;
    }
}

.comp-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 700px;
}

.comp-table th,
.comp-table td {
    padding: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 0.9rem;
}

.comp-table th {
    font-family: var(--font-mono);
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    font-size: 0.75rem;
    position: sticky;
    top: 0;
    z-index: 10;
    background: #020305;
}

.col-basic {
    color: rgba(255, 255, 255, 0.7);
}

.col-pro {
    color: var(--purple);
    font-weight: 600;
}

.col-premium {
    color: var(--gold);
    font-weight: 600;
}

.comp-table th.col-pro,
.comp-table td.col-pro {
    border-left: 1px solid rgba(139, 92, 246, 0.15);
    border-right: 1px solid rgba(139, 92, 246, 0.15);
    background: rgba(139, 92, 246, 0.04);
}

.comp-table th.col-premium,
.comp-table td.col-premium {
    border-left: 1px solid rgba(251, 191, 36, 0.15);
    background: rgba(251, 191, 36, 0.06);
}

.t-category td {
    font-weight: 700;
    color: var(--text-main);
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.2rem;
    padding: 2.5rem 1.25rem 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

/* Category Specific Highlights */
.cat-finance {
    background: rgba(59, 130, 246, 0.05) !important;
}

.cat-finance td {
    border-bottom-color: #3b82f6 !important;
    color: #3b82f6 !important;
}

.cat-advanced {
    background: rgba(139, 92, 246, 0.05) !important;
}

.cat-advanced td {
    border-bottom-color: var(--purple) !important;
    color: var(--purple) !important;
}

.cat-investments {
    background: rgba(16, 185, 129, 0.05) !important;
}

.cat-investments td {
    border-bottom-color: var(--emerald) !important;
    color: var(--emerald) !important;
}

.cat-personalization {
    background: rgba(251, 191, 36, 0.05) !important;
}

.cat-personalization td {
    border-bottom-color: var(--gold) !important;
    color: var(--gold) !important;
}

.faq {
    padding: 10rem 0;
    max-width: 900px;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem 2rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-icon {
    color: var(--emerald);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    color: var(--text-dim);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
    max-height: 200px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Testimonials */
.testimonials {
    padding: 10rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.t-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.t-stars {
    color: var(--gold);
    font-size: 1.2rem;
    display: flex;
    gap: 0.4rem;
    letter-spacing: 0.1rem;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
}

.t-card p {
    font-style: italic;
    color: var(--text-main);
    font-size: 1.1rem;
    line-height: 1.7;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.t-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--emerald);
    object-fit: cover;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}

.t-author strong {
    display: block;
    font-size: 1rem;
}

.t-author small {
    color: var(--text-dim);
    font-size: 0.8rem;
}

/* Features Stack */
.features-stack {
    padding: 8rem 0;
    overflow: hidden;
}

.stack-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 3rem;
}

.stack-text {
    flex: none;
    width: 100%;
}

.stack-text h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.stack-text p {
    color: var(--text-dim);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.stack-container {
    position: relative;
    height: 450px;
    width: 320px;
    margin: 4rem auto 0;
    perspective: 1000px;
}

.stack-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    cursor: grab;
    user-select: none;
    transform-origin: center bottom;
}

.card-image {
    width: 100%;
    height: 60%;
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.card-content {
    padding: 1.5rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(to top, rgba(16, 185, 129, 0.05), transparent);
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.card-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-dim);
}

.stack-card:hover {
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.9), 0 0 40px rgba(16, 185, 129, 0.1);
}

.card-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: auto;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Individual Color Glows */
.stack-card[data-color="emerald"] .card-icon-wrap {
    color: var(--emerald);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

.stack-card[data-color="green"] .card-icon-wrap {
    color: #22c55e;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.2);
}

.stack-card[data-color="blue"] .card-icon-wrap {
    color: #3b82f6;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.stack-card[data-color="orange"] .card-icon-wrap {
    color: #f97316;
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.2);
}

.stack-card[data-color="yellow"] .card-icon-wrap {
    color: var(--gold);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.2);
}

.stack-card[data-color="cyan"] .card-icon-wrap {
    color: #06b6d4;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
}

.stack-card[data-color="lime"] .card-icon-wrap {
    color: #84cc16;
    box-shadow: 0 0 20px rgba(132, 204, 22, 0.2);
}

.card-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.card-info p {
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--text-dim);
}

@media (max-width: 992px) {
    .stack-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .stack-text p {
        margin: 0 auto;
    }

    .stack-container {
        margin: 4rem auto 0;
    }
}

.final-cta {
    padding: 10rem 0;
}

.cta-box {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 7, 10, 1) 100%);
    border: 1px solid var(--emerald);
    border-radius: 32px;
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.cta-box p {
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.25rem;
}

/* Footer */
.footer {
    padding: 5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--text-dim);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 1024px) {

    .gen0-box,
    .k-banner {
        display: flex !important;
        flex-direction: column !important;
        padding: 1.5rem 1rem;
        gap: 1.5rem;
        text-align: center;
    }

    .gen0-header-mobile h2 {
        font-size: 1.8rem !important;
        margin: 1.5rem 0 !important;
    }

    .gen0-header-mobile p {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
    }

    .gen0-benefits-grid {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 0.75rem !important;
        margin: 1.5rem 0;
    }

    .benefit-card {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.05);
        padding: 0.75rem;
        border-radius: 12px;
        width: calc(50% - 0.6rem) !important;
        /* Mais segurança contra overflow */
        text-align: left;
    }

    .benefit-card.full-width {
        width: 100%;
        text-align: center;
    }

    .benefit-card p {
        font-size: 0.85rem !important;
        margin: 0 !important;
        line-height: 1.4;
    }

    .gen0-footer-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .countdown {
        display: flex !important;
        gap: 1rem !important;
        margin: 0 auto !important;
        justify-content: center !important;
    }

    .c-item span {
        font-size: 1.8rem !important;
    }

    .c-item small {
        font-size: 0.75rem !important;
    }

    .gen0-btn-mobile {
        max-width: 280px !important;
        font-size: 0.85rem !important;
        padding: 1rem 1.5rem !important;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .pricing-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 500px;
        margin: 0 auto;
    }

    .p-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {

    html,
    body {
        overflow-x: hidden !important;
        width: 100% !important;
        position: relative;
        margin: 0;
        padding: 0;
    }

    .container {
        max-width: 100% !important;
        padding: 0 1.5rem !important;
        /* Aumentado para maior segurança lateral */
        box-sizing: border-box !important;
        overflow-x: hidden !important;
        width: 100% !important;
    }

    section,
    main {
        overflow-x: hidden !important;
        width: 100% !important;
    }

    /* Force all images to fit mobile viewport */
    img {
        max-width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
    }

    /* Global Typography Aggressive Reduction & Spacing */
    h1 {
        font-size: 2.2rem !important;
        line-height: 1.1 !important;
        margin-bottom: 1.5rem !important;
    }

    h2 {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1.5rem !important;
    }

    h3 {
        font-size: 1.3rem !important;
    }

    p {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1.5rem;
    }

    .section-label {
        font-size: 0.75rem !important;
        /* Slightly larger for visibility */
        display: block;
        margin: 0 auto 2rem !important;
        /* Increased space below label */
        text-align: center;
        letter-spacing: 0.3rem;
        opacity: 0.8;
    }

    .header {
        position: fixed;
        width: 100%;
        background: rgba(5, 7, 10, 0.98);
        backdrop-filter: blur(15px);
        z-index: 1000;
        padding: 0.25rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .header-content {
        flex-direction: column;
        gap: 0.1rem;
        align-items: center;
        width: 100%;
        padding: 0 0.25rem;
        /* Reduzido de 0.75 para 0.25 para ganhar espaço lateral */
        box-sizing: border-box;
    }

    .logo img {
        width: 24px !important;
    }

    .logo span {
        font-size: 0.8rem !important;
        letter-spacing: 0.1rem;
    }

    .nav-links {
        display: flex !important;
        gap: 0.3rem;
        /* Reduzido de 0.5 para 0.3 */
        justify-content: center;
        width: 100%;
        padding: 0.2rem 0.1rem 0;
    }

    .nav-links a {
        font-size: 0.58rem !important;
        /* Ligeiramente menor */
        white-space: nowrap;
        opacity: 1;
        text-transform: uppercase;
        border: 1px solid rgba(255, 255, 255, 0.15);
        padding: 0.3rem 0.45rem;
        /* Reduzido padding lateral de 0.6 para 0.45 */
        /* Botões menores para não vazar */
        border-radius: 6px;
    }

    .nav-highlight {
        color: var(--gold) !important;
        font-weight: 800 !important;
        border-color: rgba(251, 191, 36, 0.3) !important;
    }

    /* Hero & Global Adjustments */
    .hero {
        padding-top: 18rem;
        padding-bottom: 2rem;
        text-align: center;
    }

    .hero-mockup {
        width: 85% !important;
        max-width: 320px !important;
        margin: 0 auto !important;
        display: block !important;
        transform: none !important;
        animation: none !important;
    }

    .hero-mockup-wrap {
        margin-top: 3rem !important;
        margin-bottom: 8rem !important;
    }



    /* Problem Section (Caos Atual) Spacing */
    .problem {
        text-align: center;
        padding: 2rem 0 !important;
    }

    .problem-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        /* More gap between text and balloons/cards */
    }

    .p-list {
        display: inline-block;
        text-align: left;
        margin: 1rem auto 0;
    }

    .p-list li {
        font-size: 0.95rem !important;
        margin-bottom: 0.8rem !important;
        gap: 0.75rem !important;
        line-height: 1.4 !important;
    }

    .cross-icon {
        font-size: 1rem !important;
    }

    .p-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        margin-top: 1.5rem;
    }

    .stat-card {
        padding: 0.75rem !important;
        width: 100% !important;
        border-radius: 12px !important;
        margin: 0;
    }

    .stat-value {
        font-size: 1.5rem !important;
        white-space: nowrap !important;
        margin-bottom: 0.35rem !important;
    }

    .stat-card p {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
    }

    /* Transformation Section Mobile Fix (Side-by-Side Comparison) */
    .transformation {
        padding: 5rem 0.5rem 6rem;
        /* Aumentado rodapé */
        text-align: center;
    }

    .t-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
        align-items: stretch !important;
        justify-content: center !important;
        margin-top: 1.5rem;
    }

    .t-side {
        padding: 1.5rem !important;
        flex: 1 !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        border-radius: 20px !important;
        display: flex;
        flex-direction: column;
    }

    .t-side h3 {
        font-size: 1rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.3 !important;
    }

    .t-list {
        gap: 0.75rem !important;
        text-align: left;
    }

    .t-list li {
        font-size: 0.85rem !important;
        gap: 0.5rem !important;
        line-height: 1.4 !important;
        align-items: flex-start !important;
        display: flex !important;
    }

    .t-list li span {
        font-size: 1rem !important;
    }

    .t-divider {
        display: none !important;
    }

    /* Esconder seta para ganhar espaço lateral */

    /* AI Showcase Mobile Fix */
    .ai-showcase {
        padding: 7rem 0.5rem 7rem;
        /* Espaçamento luxuoso */
    }

    .ai-showcase img {
        width: 100% !important;
        max-width: 280px !important;
        margin: 0 auto;
    }

    .video-mockup-wrapper {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .mockup-frame {
        border-width: 3px;
        padding: 4px;
        border-radius: 20px;
    }

    .ai-text {
        margin-top: 4rem;
        /* Grande respiro entre vídeo e texto */
        margin-bottom: 2rem;
    }

    .ai-commands {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.25rem;
        /* Respiro entre os balões */
        margin-top: 4rem;
        /* Grande respiro para separar os balões do parágrafo */
    }

    /* Features Stack Mobile (Ultra Small) */
    .stack-container {
        width: 210px !important;
        height: 300px !important;
        margin: 1rem auto 0 !important;
    }

    .stack-card img {
        height: 180px !important;
        width: 100% !important;
        object-fit: cover;
    }

    .card-content {
        padding: 0.6rem 0.9rem !important;
        justify-content: flex-start !important;
        gap: 0.1rem !important;
    }

    .stack-card h3 {
        font-size: 1.1rem !important;
        margin-bottom: 0.2rem !important;
    }

    .stack-card p {
        font-size: 0.82rem !important;
        line-height: 1.3 !important;
    }

    /* Standard Cards (Features) */
    .features-grid {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 0.75rem !important;
    }

    .f-card {
        width: calc(50% - 0.5rem) !important;
        flex: 0 0 auto !important;
        padding: 0.75rem !important;
        margin-bottom: 0;
        border-radius: 12px !important;
    }

    .f-card h3 {
        font-size: 1.1rem !important;
        margin-bottom: 0.75rem !important;
    }

    .f-card img {
        width: 100% !important;
        margin-left: 0 !important;
        margin-top: 0.5rem !important;
        border-radius: 8px;
    }

    .features,
    .gen0,
    .pricing,
    .testimonials,
    .faq,
    .final-cta {
        padding: 3rem 0 !important;
    }

    .hero-mockup {
        max-width: 250px !important;
    }

    /* Killer Feature Banner Mobile Fix */
    .k-banner {
        padding: 2.5rem 1rem !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 2rem !important;
        text-align: center !important;
    }

    .gen0-box {
        display: flex !important;
        flex-direction: column !important;
        padding: 1.5rem 1rem !important;
    }

    .vs-comparison {
        display: flex !important;
        flex-direction: row !important;
        gap: 0.5rem !important;
        margin-top: 1rem !important;
    }

    .vs-item {
        padding: 0.4rem !important;
        border-radius: 8px !important;
    }

    .k-title-main {
        font-size: 1.5rem !important;
        margin-bottom: 2rem !important;
        white-space: normal !important;
        /* Allow wrapping to fit screen */
        width: 100% !important;
        text-align: center !important;
        line-height: 1.3 !important;
        padding: 0 1rem !important;
    }

    .k-desc-main {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        margin-bottom: 2.5rem !important;
        white-space: normal !important;
        /* Allow wrapping */
        padding: 0 1.5rem !important;
        text-align: center !important;
    }

    .k-visual-centered img {
        width: 85% !important;
        /* Menor que a largura do container */
        max-width: 280px !important;
        margin: 0 auto !important;
        display: block !important;
    }

    .k-block-two {
        margin-top: 4rem !important;
        /* Descendo o container no mobile */
        margin-bottom: 3rem !important;
        padding: 0 1.5rem !important;
    }

    .k-feature-list {
        gap: 0.5rem !important;
    }

    .k-feature-list li {
        font-size: 0.95rem !important;
        white-space: normal !important;
        /* Allow wrapping */
        justify-content: center !important;
        text-align: center !important;
        line-height: 1.4 !important;
        margin-bottom: 1rem !important;
    }

    .k-price-value {
        font-size: 2.5rem !important;
        white-space: normal !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .k-price-value span {
        font-size: 1rem !important;
    }

    .k-price-daily {
        font-size: 0.8rem !important;
    }

    .k-btn-final {
        padding: 1rem !important;
        font-size: 0.9rem !important;
        width: 100% !important;
        min-width: unset !important;
        white-space: nowrap !important;
        margin-top: 1rem !important;
    }

    .k-banner {
        padding: 2.5rem 0.5rem !important;
        /* Mínimo de padding lateral para não cortar texto */
        width: 100% !important;
    }

    .killer-feature.container {
        padding: 0 !important;
        /* Remove margens do container padrão para ganhar espaço */
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }

    /* Pricing Grid - Mobile Sketch Accurate */
    .pricing-grid {
        gap: 2rem !important;
    }

    .pricing-grid>.p-card {
        padding: 1rem !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .p-badge {
        top: -12px !important;
        /* Move para a borda superior */
        right: auto !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        background: var(--purple) !important;
        z-index: 10;
    }

    .p-header h3 {
        font-size: 1.1rem !important;
        display: block !important;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .p-header h3 span {
        font-size: 0.8rem !important;
        display: inline !important;
        opacity: 0.6;
    }

    .p-features {
        grid-template-columns: 1fr 1fr !important;
        gap: 0.8rem 1.5rem !important;
        padding: 0 !important;
        margin-bottom: 2rem !important;
    }

    .p-features::after {
        display: block !important;
        height: 70% !important;
        background: rgba(255, 255, 255, 0.15) !important;
    }

    .p-features li {
        font-size: 0.68rem !important;
        gap: 0.4rem !important;
        line-height: 1.2 !important;
    }

    .btn-outline,
    .p-card .btn-cta {
        min-width: 90% !important;
        padding: 0.8rem 1rem !important;
    }

    .btn-outline span,
    .p-card .btn-cta span {
        font-size: 0.75rem !important;
    }

    .btn-price {
        font-size: 0.85rem !important;
    }

    .testimonials-grid {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 0.5rem !important;
    }

    .testimonials-grid>.t-card {
        width: calc(50% - 0.5rem) !important;
        flex: 0 0 auto !important;
    }

    .t-card {
        padding: 0.75rem !important;
        gap: 0.5rem !important;
        border-radius: 12px !important;
    }

    .t-card p {
        font-size: 0.85rem !important;
        line-height: 1.6 !important;
    }

    .t-avatar {
        width: 30px !important;
        height: 30px !important;
    }

    .t-author strong {
        font-size: 0.9rem !important;
    }

    /* Floating CTA FIX */
    .floating-cta {
        bottom: 1.5rem !important;
        width: 90% !important;
        max-width: 300px !important;
    }

    .floating-cta .cta-button {
        padding: 0.8rem 1.5rem !important;
        border-radius: 40px !important;
    }

    .floating-cta span {
        font-size: 1rem !important;
        white-space: nowrap !important;
    }

    .floating-cta small {
        font-size: 0.6rem !important;
    }

    .final-cta {
        padding: 3rem 0;
    }

    .cta-box {
        padding: 2.5rem 1.5rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .cta-box h2 {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
    }

    .cta-box p {
        font-size: 1rem !important;
        margin-bottom: 2rem;
        line-height: 1.5 !important;
    }

    /* Guarantee Mobile */
    .guarantee-box {
        flex-direction: column !important;
        padding: 2rem 1.25rem !important;
        gap: 1.5rem !important;
        text-align: center !important;
        margin-top: 3rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .g-icon {
        font-size: 2.5rem !important;
    }

    .g-content h3 {
        font-size: 1.3rem !important;
        margin-bottom: 1rem !important;
    }

    .g-content p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }

    /* FAQ Mobile */
    .faq-question {
        padding: 1.25rem 1.5rem !important;
        font-size: 1rem !important;
    }

    .faq-answer {
        font-size: 0.9rem !important;
        padding: 0 1.5rem !important;
        line-height: 1.5 !important;
    }

    .faq-item.active .faq-answer {
        padding-bottom: 1.25rem !important;
        max-height: 1200px !important;
    }

    .faq-icon {
        font-size: 1rem !important;
    }

    /* Footer Mobile */
    .footer {
        padding: 2rem 0 !important;
    }

    .footer p {
        font-size: 0.75rem !important;
        letter-spacing: 0.15rem !important;
        opacity: 0.8;
    }

    /* Comparison Table Mobile - No Horizontal Scroll */
    .comparison-container {
        margin-top: 0.5rem !important;
        padding: 0 0.4rem 0.4rem 0.4rem !important;
        /* Zero no topo */
        overflow-x: hidden !important;
        overflow-y: auto !important;
        max-height: 350px !important;
        /* Cria a área de arraste */
        -webkit-overflow-scrolling: touch;
        background: #020305;
        /* Fundo sólido */
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
    }

    .comp-table {
        min-width: 100% !important;
        width: 100% !important;
        table-layout: fixed !important;
    }

    .comp-table th,
    .comp-table td {
        padding: 0.75rem 0.35rem !important;
        font-size: 0.75rem !important;
        word-wrap: break-word;
    }

    .comp-table th:nth-child(1),
    .comp-table td:nth-child(1) {
        width: 40% !important;
    }

    .comp-table th:nth-child(n+2),
    .comp-table td:nth-child(n+2) {
        width: 20% !important;
        text-align: center;
    }

    .t-category td {
        padding: 1.5rem 0.35rem 0.75rem !important;
        font-size: 0.75rem !important;
        letter-spacing: 0.1rem !important;
    }

    .comp-table th {
        font-size: 0.7rem !important;
        background: #020305 !important;
        padding-top: 1.5rem !important;
        /* Compensa a remoção do padding do container */
        padding-bottom: 1.25rem !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .table-hint {
        display: block !important;
        font-size: 0.55rem !important;
        margin-top: 4rem !important;
        /* Afasta dos botões dos planos */
        margin-bottom: 0.5rem !important;
        /* Aproxima da tabela */
        letter-spacing: 0.05rem !important;
    }
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    z-index: 999;
    width: auto;
    white-space: nowrap;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-cta.visible {
    transform: translateX(-50%) translateY(0);
}

.floating-cta .cta-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.25rem 2rem;
    text-decoration: none;
    border-radius: 99px;
    background: var(--gold);
    color: #000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(251, 191, 36, 0.3);
    text-align: center;
    gap: 0.25rem;
}

.floating-cta span {
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
}

.floating-cta small {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0.8;
}

/* --- Vitrine Feature Section --- */
.vitrine-feature {
    padding: 10rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.vitrine-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    grid-template-areas:
        "visual header"
        "visual content";
    gap: 2rem 8rem;
    align-items: center;
}

.v-visual {
    grid-area: visual;
}

.v-text-header {
    grid-area: header;
}

.v-text-content {
    grid-area: content;
}

.v-text-header h2 {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.v-text-header p {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 3rem;
}

.v-list {
    list-style: none;
}

.v-list li {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.v-list .check {
    font-size: 1.2rem;
}

/* POV Phone Mockup */
.phone-mockup-pov {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.v-image-pov {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.9);
}

.v-overlay-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(16, 185, 129, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

/* Plans Labels in Vitrine Section */
.v-plans-labels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.v-plan-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.v-plan-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.plan-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 900;
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.plan-tag.pro {
    background: var(--purple);
    color: #fff;
}

.plan-tag.premium {
    background: var(--gold);
    color: #000;
}

.plan-tag.lock {
    background: #333;
    color: #777;
}

.v-plan-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.v-plan-item p {
    font-size: 0.9rem !important;
    margin-bottom: 0 !important;
    line-height: 1.4;
}

.v-plan-item.basic-locked {
    grid-column: span 2;
    background: rgba(255, 0, 0, 0.02);
    border-color: rgba(255, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 1.5rem;
}

.v-plan-item.basic-locked .plan-tag {
    margin-bottom: 0;
}


@media (max-width: 968px) {
    .vitrine-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "header"
            "visual"
            "content";
        text-align: center;
        gap: 3rem;
    }

    .v-text-header h2 {
        font-size: 2.8rem;
    }

    .v-list li {
        justify-content: center;
        text-align: left;
    }
}