/**
 * Tailor Landing Page - Stylesheet
 *
 * Estrutura:
 * 1. Reset e Variáveis CSS
 * 2. Header e Navegação
 * 3. Hero Section
 * 4. Problem Section
 * 5. Parallax Motors Section
 * 6. Motor Visuals (CRM, Catalog, AI Chat, Payment)
 * 7. Social Proof Section
 * 8. Comparison Table
 * 9. Pricing Section
 * 10. FAQ Section
 * 11. Final CTA
 * 12. Footer
 * 13. Animations
 * 14. Responsive Design
 */

/* ========================================
   1. RESET E VARIÁVEIS CSS
   ======================================== */

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

:root {
    /* Paleta moderna */
    --bright-sandstone: #DAD8CF;
    --red-gravy: #B83312;
    --web-cobblestone: #1F282E;
    --dusty-cotton: #E4E3DC;
    --otan-red: #FF4E20;
    --midnight-smoke: #414E58;

    /* Cores auxiliares */
    --white: #FFFFFF;
    --light-gray: #F8F8F7;
    --dark: #0A0B0C;

    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    font-family: var(--font-main);
    color: var(--web-cobblestone);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

/* ========================================
   2. HEADER E NAVEGAÇÃO
   ======================================== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(31, 40, 46, 0.08);
    z-index: 1000;
    padding: 0.72rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--web-cobblestone);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.logo-image {
    height: 43px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--midnight-smoke);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.cta-button {
    background: var(--otan-red);
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    display: inline-block;
    font-size: 0.95rem;
}

.cta-button:hover {
    background: var(--red-gravy);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 78, 32, 0.25);
}

/* ========================================
   3. HERO SECTION
   ======================================== */
.hero {
    margin-top: 52px;
    padding: 5rem 0 4rem;
    background: linear-gradient(180deg, var(--dusty-cotton) 0%, var(--bright-sandstone) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 78, 32, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
    position: relative;
    z-index: 1;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--web-cobblestone) 0%, var(--midnight-smoke) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content .highlight {
    color: var(--otan-red);
    -webkit-text-fill-color: var(--otan-red);
}

.hero-content .subheading {
    font-size: 1.15rem;
    color: var(--midnight-smoke);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-weight: 400;
}

.tagline {
    font-size: 1.1rem;
    color: var(--midnight-smoke);
    margin-top: 1.5rem;
    margin-bottom: 0;
    font-weight: 500;
}

/* ========================================
   HERO VISUAL - ECOSYSTEM INTEGRATION
   ======================================== */
.hero-visual {
    position: relative;
    padding: 2rem;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ecosystem-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 500px;
    background: transparent;
    border-radius: 20px;
    overflow: visible;
}

/* Central Hub - Logo Tailor no centro */
.ecosystem-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: var(--dusty-cotton);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(255, 78, 32, 0.5);
    z-index: 10;
    animation: hubPulse 3s ease-in-out infinite;
    padding: 20px;
}

.hub-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

/* System Nodes */
.ecosystem-node {
    position: absolute;
    width: 90px;
    height: 90px;
    background: white;
    border: 3px solid var(--otan-red);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(31, 40, 46, 0.15);
    z-index: 5;
    transition: all 0.3s ease;
}

.ecosystem-node:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 78, 32, 0.3);
}

.node-whatsapp {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation: nodeFloat 4s ease-in-out infinite;
}

.node-catalog {
    top: 80px;
    right: 30px;
    animation: nodeFloat 4s ease-in-out infinite 0.8s;
}

.node-erp {
    bottom: 80px;
    right: 30px;
    animation: nodeFloat 4s ease-in-out infinite 1.6s;
}

.node-crm {
    bottom: 80px;
    left: 30px;
    animation: nodeFloat 4s ease-in-out infinite 2.4s;
}

.node-ai {
    top: 80px;
    left: 30px;
    animation: nodeFloat 4s ease-in-out infinite 3.2s;
}

.node-icon {
    font-size: 1.632rem;
    margin-bottom: 0.05rem;
}

.whatsapp-icon {
    width: 2.652rem;
    height: 2.652rem;
    margin-bottom: 0.05rem;
    object-fit: contain;
}

.node-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--web-cobblestone);
    text-align: center;
}

.node-indicator {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: #4CAF50;
    border: 3px solid white;
    border-radius: 50%;
    animation: indicatorPulse 2s ease-in-out infinite;
}

.node-external {
    border-color: transparent !important;
}

.node-external .node-indicator {
    display: none;
}

/* SVG Connections */
.ecosystem-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.flow-line {
    fill: none;
    stroke: var(--otan-red);
    stroke-width: 2;
    stroke-dasharray: 8, 4;
    opacity: 0.3;
    animation: flowDash 20s linear infinite;
}

.flow-particle {
    fill: var(--otan-red);
    opacity: 0;
}

.particle-1 { animation: particleFlow1 3s ease-in-out infinite; }
.particle-2 { animation: particleFlow2 3s ease-in-out infinite 0.6s; }
.particle-3 { animation: particleFlow3 3s ease-in-out infinite 1.2s; }
.particle-4 { animation: particleFlow4 3s ease-in-out infinite 1.8s; }
.particle-5 { animation: particleFlow5 3s ease-in-out infinite 2.4s; }
.particle-6 { animation: particleFlow6 3s ease-in-out infinite 0.3s; }
.particle-7 { animation: particleFlow7 3s ease-in-out infinite 0.9s; }

/* Animations */
@keyframes hubPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 20px 50px rgba(255, 78, 32, 0.4);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        box-shadow: 0 25px 60px rgba(255, 78, 32, 0.5);
    }
}

@keyframes nodeFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-8px) translateX(0);
    }
}

@keyframes indicatorPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

@keyframes flowDash {
    to {
        stroke-dashoffset: -1000;
    }
}

@keyframes particleFlow1 {
    0% { cy: 200; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { cy: 70; opacity: 0; }
}

@keyframes particleFlow2 {
    0% { cx: 200; cy: 200; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { cx: 295; cy: 120; opacity: 0; }
}

@keyframes particleFlow3 {
    0% { cx: 200; cy: 200; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { cx: 295; cy: 280; opacity: 0; }
}

@keyframes particleFlow4 {
    0% { cx: 200; cy: 200; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { cx: 105; cy: 280; opacity: 0; }
}

@keyframes particleFlow5 {
    0% { cx: 200; cy: 200; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { cx: 105; cy: 120; opacity: 0; }
}

@keyframes particleFlow6 {
    0% { cx: 120; cy: 110; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { cx: 280; cy: 110; opacity: 0; }
}

@keyframes particleFlow7 {
    0% { cx: 120; cy: 290; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { cx: 280; cy: 290; opacity: 0; }
}

/* Meta Certification Section */
.meta-certification {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(31, 40, 46, 0.08);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(31, 40, 46, 0.08);
}

.meta-badge-large {
    height: 19.2px;
    width: auto;
    display: block;
    flex-shrink: 0;
}

.meta-cert-content {
    display: flex;
    align-items: center;
}

.meta-cert-text {
    font-size: 1rem;
    color: var(--midnight-smoke);
    font-weight: 600;
    text-align: left;
    margin: 0;
}


/* ERP Integration Section */
.erp-integration {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.75rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(31, 40, 46, 0.08);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(31, 40, 46, 0.08);
    overflow: hidden;
}

.erp-integration__title {
    font-size: 0.95rem;
    color: var(--midnight-smoke);
    font-weight: 600;
    text-align: center;
    margin: 0;
}

.erp-logos {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0.5rem 0;
}


.erp-logo {
    padding: 0.5rem 1rem;
    background: var(--light-gray);
    border-radius: 999px;
    font-weight: 600;
    color: var(--midnight-smoke);
    font-size: 0.8rem;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.erp-logo:hover {
    border-color: var(--otan-red);
    transform: translateY(-2px);
}

/* ========================================
   4. PROBLEM SECTION
   ======================================== */
.problem-section {
    padding: 6rem 2rem;
    background: white;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--web-cobblestone);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--midnight-smoke);
    margin-bottom: 4rem;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.problem-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: var(--otan-red);
    box-shadow: 0 20px 40px rgba(255, 78, 32, 0.1);
}

.problem-icon {
    width: 64px;
    height: 64px;
    background: var(--otan-red);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

.problem-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--web-cobblestone);
    font-weight: 700;
}

.problem-description {
    color: var(--midnight-smoke);
    margin-bottom: 1rem;
    font-weight: 400;
}

.problem-loss {
    font-size: 2rem;
    font-weight: 800;
    color: var(--red-gravy);
}

/* ========================================
   5. PARALLAX MOTORS SECTION
   ======================================== */
.parallax-motors {
    background: var(--web-cobblestone);
    color: white;
    position: relative;
}

.parallax-header {
    padding: 2rem 2rem 0.75rem;
    text-align: center;
    background: var(--web-cobblestone);
    height: auto; /* Valor base, será sobrescrito pelas media queries */
}

/* Wrapper que define a altura total para scroll */
.motors-wrapper {
    position: relative;
    /* 5x altura da viewport para permitir scroll através dos 4 motores + buffer */
    height: 500vh;
}

/* Container que fica fixo enquanto rola */
.motors-sticky-container {
    position: sticky;
    top: 0;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Allow visuals to extend slightly without being clipped */
    overflow: visible;
}

/* Progress Indicator */
.motor-progress {
    position: absolute;
    top: 50%;
    left: 2rem;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.progress-dot {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 78, 32, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background: rgba(31, 40, 46, 0.5);
}

.progress-dot.active {
    background: linear-gradient(135deg, var(--otan-red), var(--red-gravy));
    border-color: var(--otan-red);
    color: white;
    transform: scale(1.2);
    box-shadow: 0 10px 30px rgba(255, 78, 32, 0.4);
}

/* Container principal dos motores */
.motors-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem 0 8rem;
    position: relative;
    height: 70vh;
    display: flex;
    align-items: flex-start;
}

/* Cada slide individual */
.motor-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 48% 52%;
    /* Make the single row fill the slide height to allow vertical centering */
    grid-template-rows: 1fr;
    gap: 2.5rem;
    /* Allow vertical centering within the slide */
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    overflow: visible;
}

.motor-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 2;
}

/* Conteúdo do motor (lado esquerdo) */
.motor-content {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Keep the text block pinned to the top of the slide while the visual centers */
    align-self: start;
    margin-top: 0; /* Valor base, será sobrescrito pelas media queries */
}

.motor-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--otan-red), var(--red-gravy));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    margin-left: 100px;
    letter-spacing: -0.03em;
}

.motor-title {
    font-size: 1.9rem;
    margin-bottom: 0.75rem;
    margin-left: 100px;
    color: white;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.motor-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    margin-left: 100px;
    line-height: 1.5;
}

.motor-features {
    list-style: none;
    margin-bottom: 1.5rem;
    margin-left: 100px;
}

.motor-features li {
    padding: 0.6rem 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateX(-20px);
    opacity: 0;
    transition: all 0.5s ease;
}

.motor-slide.active .motor-features li {
    transform: translateX(0);
    opacity: 1;
}

.motor-slide.active .motor-features li:nth-child(1) { transition-delay: 0.2s; }
.motor-slide.active .motor-features li:nth-child(2) { transition-delay: 0.3s; }
.motor-slide.active .motor-features li:nth-child(3) { transition-delay: 0.4s; }
.motor-slide.active .motor-features li:nth-child(4) { transition-delay: 0.5s; }

.motor-result {
    background: linear-gradient(135deg, var(--otan-red), var(--red-gravy));
    padding: 1rem 1.75rem;
    border-radius: 12px;
    font-weight: 700;
    text-align: center;
    font-size: 1.1rem;
    margin-left: 100px;
    box-shadow: 0 20px 40px rgba(255, 78, 32, 0.3);
    display: inline-block;
    transform: scale(0);
    transition: transform 0.5s ease 0.6s;
}

.motor-slide.active .motor-result {
    transform: scale(1);
}

.motor-visual {
    position: relative;
    padding: 0;
    display: flex;
    /* Center inner visual within full slide height */
    align-items: center;
    justify-content: center;
    /* Center within grid row without forcing clipping */
    align-self: center;
    height: auto;
    min-height: 300px;
    max-height: none;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease 0.3s;
    overflow: visible;
}

.motor-slide.active .motor-visual {
    opacity: 1;
    transform: translateX(0);
}

.motor-visual > * {
    max-height: none;
}

/* Motor CTA - Button below visual */
.motor-cta {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.8s;
}

.motor-slide.active .motor-cta {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   6. MOTOR VISUALS
   ======================================== */

/* CRM Dashboard Styles */
.crm-dashboard {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    min-width: 700px;
    max-width: 700px;
    margin-top: 80px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    /* Slightly larger CRM visual that still floats smoothly */
    --visual-scale: 0.9;
    animation: floatUpScaled 20s infinite ease-in-out;
    transform-origin: center center;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--dusty-cotton);
}

.dashboard-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--web-cobblestone);
}

.dashboard-time {
    font-size: 0.9rem;
    color: var(--midnight-smoke);
}

.risk-indicators {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.risk-card {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s;
}

.risk-card:hover {
    transform: translateY(-5px);
}

.risk-card.high-risk {
    background: rgba(255, 78, 32, 0.1);
    border: 2px solid var(--otan-red);
}

.risk-card.medium-risk {
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid #FFC107;
}

.risk-card.recovered {
    background: rgba(76, 175, 80, 0.1);
    border: 2px solid #4CAF50;
}

.risk-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.risk-count {
    font-size: 2rem;
    font-weight: 800;
    color: var(--web-cobblestone);
}

.risk-label {
    font-size: 0.9rem;
    color: var(--midnight-smoke);
    margin-top: 0.25rem;
}

.risk-action {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--otan-red);
    font-weight: 600;
}

.automation-flow {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 12px;
}

.flow-step {
    text-align: center;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.flow-step.active {
    opacity: 1;
}

.flow-step.processing {
    animation: pulse 1s infinite;
}

.flow-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.flow-text {
    font-size: 0.85rem;
    color: var(--web-cobblestone);
    font-weight: 600;
}

.flow-arrow {
    font-size: 1.5rem;
    color: var(--midnight-smoke);
}

/* Catalog Showcase Styles */
.catalog-showcase {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    min-width: 500px;
    max-width: 500px;
    margin-top: 150px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    --visual-scale: 0.9;
    animation: floatUpScaled 20s infinite ease-in-out;
    transform-origin: center center;
}

.catalog-header {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--web-cobblestone);
    margin-bottom: 2rem;
    text-align: center;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.catalog-product {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.catalog-product:hover {
    transform: translateY(-5px);
    border-color: var(--otan-red);
    box-shadow: 0 10px 30px rgba(255, 78, 32, 0.2);
}

.catalog-product.featured {
    border-color: var(--otan-red);
    background: rgba(255, 78, 32, 0.05);
}

.product-image {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

.product-name {
    font-weight: 700;
    color: var(--web-cobblestone);
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--otan-red);
}

.price-old {
    text-decoration: line-through;
    color: var(--midnight-smoke);
    font-size: 1rem;
    margin-right: 0.5rem;
}

.price-new {
    color: var(--otan-red);
}

.product-badge {
    display: inline-block;
    background: var(--otan-red);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.product-badge.new {
    background: linear-gradient(135deg, var(--otan-red), var(--red-gravy));
}

.product-stock {
    font-size: 0.9rem;
    color: var(--midnight-smoke);
    margin-top: 0.25rem;
}

.erp-sync-indicator {
    text-align: center;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.sync-icon {
    font-size: 1.25rem;
    animation: rotate 2s linear infinite;
}

.sync-text {
    font-weight: 600;
    color: var(--web-cobblestone);
}

/* AI Chat Demo Styles */
.ai-chat-demo {
    background: white;
    border-radius: 20px;
    min-width: 400px;
    max-width: 400px;
    margin-top: 150px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    --visual-scale: 0.9;
    animation: floatUpScaled 20s infinite ease-in-out;
    transform-origin: center center;
}

.chat-header {
    background: #075E54;
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-avatar {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.contact-name {
    font-weight: 600;
}

.contact-status {
    font-size: 0.8rem;
    opacity: 0.8;
}

.chat-time {
    font-size: 0.9rem;
    opacity: 0.8;
}

.chat-messages-container {
    padding: 1.5rem;
    background: #E5DDD5;
    min-height: 400px;
}

.chat-message {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    animation: slideIn 0.5s ease;
}

.chat-message.client {
    align-items: flex-end;
}

.chat-message.ai {
    align-items: flex-start;
}

.message-bubble {
    background: white;
    padding: 1rem;
    border-radius: 18px;
    max-width: 80%;
    color: var(--web-cobblestone);
    font-size: 0.95rem;
    line-height: 1.6;
}

.chat-message.client .message-bubble {
    background: #DCF8C6;
}

.message-time {
    font-size: 0.75rem;
    color: #999;
    margin-top: 0.25rem;
}

.ai-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.ai-badge {
    background: var(--otan-red);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.typing-indicator {
    display: flex;
    gap: 0.25rem;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: var(--midnight-smoke);
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

.chat-stats {
    padding: 1rem 1.5rem;
    background: white;
    border-top: 1px solid #E5DDD5;
    display: flex;
    gap: 1rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--midnight-smoke);
}

.stat-icon {
    font-size: 1.25rem;
}

/* Payment Flow Demo Styles */
.payment-flow-demo {
    background: white;
    border-radius: 20px;
    padding: 0;
    min-width: 400px;
    max-width: 400px;
    margin-top: 100px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    /* Use scaled float animation so scale isn't overridden */
    --visual-scale: 0.9;
    animation: floatUpScaled 20s infinite ease-in-out;
    transform-origin: center center;
}

.whatsapp-mockup {
    background: #E5DDD5;
    border-radius: 12px;
    overflow: hidden;
}

.whatsapp-header {
    background: #075E54;
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
}

.payment-message {
    padding: 1.5rem;
}

.payment-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.payment-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--dusty-cotton);
}

.payment-logo {
    font-size: 2rem;
}

.payment-title {
    font-weight: 700;
    color: var(--web-cobblestone);
}

.payment-items {
    margin-bottom: 1rem;
}

.payment-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--midnight-smoke);
}

.payment-total {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-top: 2px solid var(--dusty-cotton);
    font-weight: 700;
    color: var(--web-cobblestone);
}

.total-value {
    font-size: 1.5rem;
    color: var(--otan-red);
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.payment-method {
    padding: 0.75rem;
    background: var(--light-gray);
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8rem;
    color: var(--midnight-smoke);
}

.payment-method.active {
    border-color: var(--otan-red);
    background: rgba(255, 78, 32, 0.05);
}

.payment-method:hover {
    transform: translateY(-2px);
}

.payment-button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--otan-red), var(--red-gravy));
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.payment-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 78, 32, 0.3);
}

.payment-status {
    padding: 1.5rem;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

.status-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.status-text {
    font-weight: 700;
    color: var(--web-cobblestone);
    margin-bottom: 0.25rem;
}

.status-info {
    font-size: 0.85rem;
    color: var(--midnight-smoke);
}

.parallax-cta {
    padding: 4rem 2rem 6rem;
    text-align: center;
    background: var(--web-cobblestone);
}

/* Telas grandes - 1440px+ */
@media (min-width: 1440px) {
    .catalog-showcase {
        margin-top: 150px;
        min-width: 500px;
        max-width: 500px;
        transform: scale(0.8);
    }

    .crm-dashboard {
        margin-top: 80px;
        min-width: 700px;
        max-width: 700px;
    }

    .ai-chat-demo {
        margin-top: 150px;
        min-width: 400px;
        max-width: 400px;
    }

    .payment-flow-demo {
        margin-top: 100px;
        padding: 0px;
        min-width: 400px;
        max-width: 400px;
    }

    .motor-title,
    .motor-description,
    .motor-features,
    .motor-number,
    .motor-result {
        margin-left: 100px;
    }

    .parallax-header {
        height: 100px;
    }

    .motor-content {
        margin-top: 50px;
    }
}

/* Telas médias - 1024px a 1439px */
@media (min-width: 1024px) and (max-width: 1439px) {
    .catalog-showcase {
        margin-top: 200px;
        min-width: 100px;
        --visual-scale: 0.8;
    }

    .crm-dashboard {
        margin-top: 100px;
        min-width: 100px;
        --visual-scale: 0.8;
    }

    .ai-chat-demo {
        margin-top: 200px;
        min-width: 300px;
        --visual-scale: 0.68;
    }

    .payment-flow-demo {
        margin-top: 200px;
        padding: 0px;
        min-width: 300px;
        --visual-scale: 0.7;
    }

    .parallax-header {
        height: 100px;
    }

    .motor-title,
    .motor-description,
    .motor-features,
    .motor-number,
    .motor-result {
        margin-left: 120px;
    }

    .motor-content {
        margin-top: 50px;
    }
}

/* Telas menores - 1023px e abaixo */
@media (max-width: 1023px) {
    .motors-container {
        padding: 2rem 1.5rem 0 6rem;
    }

    .motor-slide {
        grid-template-columns: 55% 45%;
        gap: 1.5rem;
    }

    .motor-number,
    .motor-title,
    .motor-description,
    .motor-features,
    .motor-result {
        margin-left: 50px;
    }

    .motor-number {
        font-size: 2.25rem;
    }

    .motor-title {
        font-size: 1.5rem;
    }

    .motor-description {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    .motor-features {
        margin-bottom: 1.25rem;
    }

    .motor-features li {
        font-size: 0.85rem;
        padding: 0.45rem 0;
    }

    .motor-result {
        font-size: 0.9rem;
        padding: 0.75rem 1.25rem;
    }

    .crm-dashboard {
        min-width: 450px;
        max-width: 450px;
        margin-top: 45px;
        padding: 1.25rem;
        --visual-scale: 0.7;
    }

    .catalog-showcase {
        min-width: 360px;
        max-width: 360px;
        margin-top: 95px;
        padding: 1.25rem;
        --visual-scale: 0.7;
    }

    .ai-chat-demo {
        min-width: 290px;
        max-width: 290px;
        margin-top: 95px;
        --visual-scale: 0.7;
    }

    .payment-flow-demo {
        min-width: 290px;
        max-width: 290px;
        margin-top: 60px;
        padding: 0;
        --visual-scale: 0.7;
    }

    .motor-progress {
        left: 0.75rem;
    }

    .progress-dot {
        width: 42px;
        height: 42px;
        font-size: 0.8rem;
    }
}

/* ========================================
   13. ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatUp {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Keep a constant scale while floating */
@keyframes floatUpScaled {
    0%, 100% {
        transform: translateY(0) scale(var(--visual-scale, 0.7));
    }
    50% {
        transform: translateY(-20px) scale(var(--visual-scale, 0.7));
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes typing {
    0%, 60%, 100% {
        opacity: 0.3;
        transform: translateY(0);
    }
    30% {
        opacity: 1;
        transform: translateY(-10px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ========================================
   7. TESTIMONIAL PARALLAX & CLIENTS SECTION
   ======================================== */

/* Testimonial Parallax Section */
.testimonial-parallax {
    position: relative;
    /* Altura maior para permitir scroll enquanto o texto fica fixo */
    min-height: 200vh;
    background: var(--web-cobblestone);
    /* overflow: hidden removido - impede sticky de funcionar */
}

.testimonial-container {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

.testimonial-quote {
    font-size: 2.5rem;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 3rem;
    font-style: italic;
    letter-spacing: -0.02em;
}

.testimonial-quote .word {
    position: relative;
    display: inline-flex;
    color: rgba(255, 255, 255, 0.15);
    transition: color 0.3s ease-out;
    margin-right: 0.15em;
}

.testimonial-quote .word.painted {
    color: rgba(255, 255, 255, 1);
}

.testimonial-author {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.testimonial-author.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-author strong {
    color: var(--otan-red);
    font-weight: 700;
}

/* Clients Section */
.clients-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--dusty-cotton) 0%, var(--bright-sandstone) 100%);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.client-logo {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--midnight-smoke);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(31, 40, 46, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.client-logo:hover {
    border-color: var(--otan-red);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 78, 32, 0.2);
}

/* Mobile responsiveness for testimonial and clients */
@media (max-width: 968px) {
    .testimonial-quote {
        font-size: 1.5rem;
        line-height: 1.6;
    }

    .testimonial-author {
        font-size: 1rem;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .client-logo {
        padding: 1.5rem 1rem;
        font-size: 0.95rem;
        min-height: 80px;
    }
}

/* ========================================
   8. COMPARISON TABLE
   ======================================== */
.comparison {
    padding: 6rem 2rem;
    background: white;
}

.comparison-table {
    max-width: 900px;
    margin: 3rem auto;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(31, 40, 46, 0.08);
    border: 1px solid rgba(31, 40, 46, 0.06);
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    border-bottom: 1px solid var(--dusty-cotton);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-header {
    background: var(--web-cobblestone);
    color: white;
    font-weight: 600;
}

.comparison-cell {
    padding: 1.5rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-cell:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--web-cobblestone);
}

.check-mark {
    color: var(--otan-red);
    font-size: 1.5rem;
    font-weight: 700;
}

.x-mark {
    color: #D0D0D0;
    font-size: 1.5rem;
}

.warning-mark {
    color: #FFA500;
    font-size: 1.5rem;
}

/* ========================================
   9. PRICING SECTION
   ======================================== */
.pricing {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--light-gray) 0%, white 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto;
}

.pricing-card {
    background: white;
    border: 2px solid var(--dusty-cotton);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--otan-red);
    transform: scale(1.05);
    box-shadow: 0 25px 60px rgba(255, 78, 32, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--otan-red);
    color: white;
    padding: 0.4rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.plan-name {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--web-cobblestone);
    font-weight: 700;
}

.plan-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--otan-red);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.plan-period {
    color: var(--midnight-smoke);
    margin-bottom: 2rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.plan-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--dusty-cotton);
    color: var(--midnight-smoke);
    font-size: 0.95rem;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-roi {
    background: linear-gradient(135deg, var(--dusty-cotton), var(--bright-sandstone));
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--web-cobblestone);
}

/* ========================================
   10. FAQ SECTION
   ======================================== */
.faq {
    padding: 6rem 2rem;
    background: var(--midnight-smoke);
    color: white;
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

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

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* ========================================
   11. FINAL CTA SECTION
   ======================================== */
.final-cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--otan-red) 0%, var(--red-gravy) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
    pointer-events: none;
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    position: relative;
}

.choice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 3rem auto;
    position: relative;
}

.choice-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.choice-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.choice-list {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.choice-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.choice-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 700;
    font-size: 1.2rem;
}

.choice-card.bad {
    opacity: 0.7;
}

.choice-card.good {
    background: rgba(255, 255, 255, 0.12);
    border-color: white;
}

.cta-button-large {
    background: white;
    color: var(--red-gravy);
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    margin-top: 2rem;
    transition: all 0.3s;
    letter-spacing: -0.01em;
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.guarantee {
    margin-top: 2rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ========================================
   12. FOOTER
   ======================================== */
.footer {
    background: var(--web-cobblestone);
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--bright-sandstone);
}

.footer-links {
    list-style: none;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--otan-red);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* Button Variants (usado em várias seções) */
.cta-button-secondary {
    background: transparent;
    color: var(--otan-red);
    border: 2px solid var(--otan-red);
    padding: 0.75rem 1.75rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    font-size: 0.95rem;
}

.cta-button-secondary:hover {
    background: var(--otan-red);
    color: white;
    transform: translateY(-2px);
}

/* ========================================
   14. RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    /* Ecosystem Mobile Styles */
    .hero-visual {
        padding: 1rem;
        margin-bottom: 2rem;
    }

    .ecosystem-container {
        max-width: 100%;
        height: 380px;
        margin: 0 auto;
    }

    .ecosystem-hub {
        width: 110px;
        height: 110px;
        padding: 15px;
    }

    .hub-logo {
        width: 100%;
        height: 100%;
    }

    .ecosystem-node {
        width: 70px;
        height: 70px;
    }

    .node-icon {
        font-size: 1.275rem;
    }

    .node-label {
        font-size: 0.6rem;
    }

    .node-indicator {
        width: 14px;
        height: 14px;
        border-width: 2px;
    }

    .node-whatsapp {
        top: 15px;
    }

    .node-catalog {
        top: 65px;
        right: 25px;
    }

    .node-erp {
        bottom: 65px;
        right: 25px;
    }

    .node-crm {
        bottom: 65px;
        left: 25px;
    }

    .node-ai {
        top: 65px;
        left: 25px;
    }

    /* Parallax Mobile Adjustments */
    .motors-wrapper {
        height: auto !important;
    }

    .motors-sticky-container {
        position: relative !important;
        height: auto !important;
    }

    .motors-container {
        padding: 2rem 1rem !important;
        height: auto !important;
        display: block !important;
    }

    .motor-slide {
        position: relative !important;
        display: block !important;
        width: 100% !important;
        height: auto !important;
        gap: 2rem;
        margin-bottom: 4rem;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    .motor-progress {
        display: none;
    }

    .motor-content {
        padding: 1rem;
        height: auto !important;
        display: block !important;
        width: 100% !important;
    }

    .motor-number,
    .motor-title,
    .motor-description,
    .motor-features,
    .motor-result {
        margin-left: 0 !important;
    }

    .motor-number {
        font-size: 2.5rem;
    }

    .motor-title {
        font-size: 1.75rem;
    }

    .motor-description {
        font-size: 1rem;
    }

    .motor-features li {
        font-size: 0.95rem;
        padding: 0.5rem 0;
        transform: none !important;
        opacity: 1 !important;
    }

    .motor-result {
        font-size: 1rem;
        padding: 1rem 1.5rem;
        transform: scale(1) !important;
    }

    .motor-visual {
        padding: 1rem;
        min-height: auto;
        display: block !important;
        width: 100% !important;
    }

    /* Mobile Dashboard Styles */
    .crm-dashboard,
    .catalog-showcase,
    .ai-chat-demo,
    .payment-flow-demo {
        max-width: 100%;
        min-width: 100%;
        padding: 1rem;
        margin-top: 0 !important;
        transform: none !important;
        animation: none !important;
    }

    .risk-indicators {
        grid-template-columns: 1fr;
    }

    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .payment-methods {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .automation-flow {
        flex-direction: column;
        gap: 1rem;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    /* General Mobile Adjustments */
    .problems-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .choice-grid {
        grid-template-columns: 1fr;
    }

    .comparison-row {
        font-size: 0.85rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .nav-links {
        display: none;
    }

    /* Meta Certification Mobile */
    .meta-certification {
        flex-direction: column !important;
        padding: 1.5rem;
        gap: 1rem;
        align-items: center;
    }

    .meta-cert-content {
        width: 100%;
        display: block !important;
        text-align: center;
    }

    .meta-cert-text {
        font-size: 0.85rem;
        text-align: center;
        line-height: 1.6;
        width: 100%;
        margin: 0;
    }

    .meta-cert-text br {
        display: inline;
    }

    .meta-badge-large {
        height: 16px;
        margin: 0 auto;
    }
}
