/* ==========================================================================
   DESIGN SYSTEM & CONFIGURAÇÕES BASE (TEMA CLARO)
   ========================================================================== */

:root {
    /* Paleta de Cores Oficial (Fornecida) */
    --color-mint: #DAF1DD;         /* Verde Claro / Menta Suave */
    --color-sage: #8EB69B;         /* Verde Médio / Sálvia */
    --color-forest: #235347;       /* Verde Escuro Floresta */
    --color-deep-forest: #153832;  /* Verde Muito Escuro / Quase Preto */
    
    /* Cores de Interface */
    --bg-light: #ffffff;
    --bg-section-alt: #f3f7f4;     /* Fundo alternado esverdeado claro */
    --bg-card: #ffffff;
    --bg-card-hover: #fafdfb;
    --primary: var(--color-forest);
    --primary-light: var(--color-mint);
    --primary-glow: rgba(35, 83, 71, 0.08);
    --primary-glow-strong: rgba(35, 83, 71, 0.15);
    
    --text-dark: var(--color-deep-forest);
    --text-main: #2d3e3a;          /* Texto corrido de alto contraste */
    --text-muted: #5a6e69;         /* Texto secundário */
    --text-light: #ffffff;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, var(--color-forest) 0%, var(--color-deep-forest) 100%);
    --gradient-soft: linear-gradient(135deg, var(--color-mint) 0%, #ffffff 100%);
    --gradient-neon: linear-gradient(90deg, var(--color-forest) 0%, var(--color-sage) 100%);
    --gradient-text: linear-gradient(135deg, var(--color-deep-forest) 0%, var(--color-forest) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);
    
    /* Elementos visuais */
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --font-display: 'Inter', sans-serif;
    --border-glass: 1px solid rgba(142, 182, 155, 0.18);
    --border-neon: 1px solid rgba(35, 83, 71, 0.1);
    --border-neon-hover: 1px solid var(--color-forest);
    --border-radius-sm: 10px;
    --border-radius-md: 18px;
    --border-radius-lg: 28px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-soft: 0 8px 40px rgba(21, 56, 50, 0.04);
    --shadow-accent: 0 16px 48px rgba(35, 83, 71, 0.08);
    
    /* Espaçamentos Premium */
    --section-padding: 140px;
    --section-padding-sm: 100px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
}

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

/* ==========================================================================
   COMPONENTES GERAIS
   ========================================================================== */

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    letter-spacing: 0.2px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-light);
    box-shadow: 0 6px 20px rgba(35, 83, 71, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(35, 83, 71, 0.4);
    color: var(--text-light);
}

.btn-secondary {
    background: transparent;
    color: var(--color-forest);
    border: 2px solid var(--color-forest);
}

.btn-secondary:hover {
    background: rgba(35, 83, 71, 0.05);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Botão Flutuante do WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    z-index: 99;
    text-decoration: none;
    font-size: 1.8rem;
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: #20ba5a;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Orbs de Fundo Claro */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.45;
    pointer-events: none;
    z-index: 0;
}

.orb-1 {
    width: 450px;
    height: 450px;
    background: var(--color-mint);
    top: 10%;
    right: -100px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--color-sage);
    top: 40%;
    left: -200px;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: var(--color-mint);
    bottom: 20%;
    right: -150px;
}

/* Títulos & Tags */
.section-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-forest);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 20px;
    background: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
}

.section-tag.style-white {
    color: var(--color-sage);
    background: transparent;
    border: none;
}

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3rem);
    color: var(--color-deep-forest);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-header {
    margin-bottom: 80px;
}

.text-center {
    text-align: center;
}

/* Grids e Layouts */
.grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

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

/* ==========================================================================
   HEADER / NAVBAR (Dark Premium)
   ========================================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: var(--color-deep-forest);
    border-bottom: 1px solid rgba(142, 182, 155, 0.12);
    transition: var(--transition);
}

.header.scrolled {
    background: var(--color-deep-forest);
    border-bottom-color: rgba(142, 182, 155, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo-img {
    height: 60px;
    width: auto;
}

.logo-tagline {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-tagline span {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--color-sage);
    letter-spacing: 0.3px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.3px;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-sage);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link:hover::after {
    width: 100%;
}

/* CTA Outline Light para menu dark */
.btn-outline-light {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(142, 182, 155, 0.4);
}

.btn-outline-light:hover {
    background: var(--color-forest);
    border-color: var(--color-forest);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(35, 83, 71, 0.3);
}

.nav-cta {
    margin-left: 10px;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 102;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: var(--transition);
}

/* Animação do menu hambúrguer */
.nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
    position: relative;
    padding-top: 170px;
    padding-bottom: 110px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(circle at 80% 20%, rgba(218, 241, 221, 0.4) 0%, rgba(255, 255, 255, 0) 60%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--color-forest);
    letter-spacing: 2px;
    margin-bottom: 24px;
    text-transform: uppercase;
    background: var(--color-mint);
    padding: 6px 16px;
    border-radius: 50px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--color-deep-forest);
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

/* Mockup da Hero - Light Theme */
.hero-mockup {
    position: relative;
    width: 100%;
}

.mockup-frame {
    background: rgba(255, 255, 255, 0.9);
    border: var(--border-glass);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-accent);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
    transition: var(--transition);
}

.mockup-frame:hover {
    border-color: var(--color-sage);
    transform: translateY(-2px);
}

.mockup-header {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: rgba(35, 83, 71, 0.02);
    border-bottom: var(--border-glass);
    gap: 8px;
}

.mockup-header .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mockup-header .dot.red { background: #ff5f56; }
.mockup-header .dot.yellow { background: #ffbd2e; }
.mockup-header .dot.green { background: #27c93f; }

.mockup-title {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-left: 12px;
    font-weight: 600;
}

.mockup-body {
    display: grid;
    grid-template-columns: 85px 1fr;
    height: 330px;
}

.mockup-sidebar {
    background: rgba(35, 83, 71, 0.01);
    border-right: var(--border-glass);
    padding: 16px 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-item {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-muted);
    padding: 10px 8px;
    border-radius: var(--border-radius-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
    transition: var(--transition);
}

.sidebar-item.active {
    background: var(--color-mint);
    color: var(--color-forest);
}

.sidebar-item .icon {
    font-size: 0.95rem;
}

.mockup-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow-y: auto;
}

.mockup-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.stat-card {
    background: #ffffff;
    border: var(--border-glass);
    border-radius: var(--border-radius-sm);
    padding: 12px;
    box-shadow: 0 4px 10px rgba(21, 56, 50, 0.02);
}

.stat-title {
    display: block;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 4px;
    font-weight: 600;
}

.stat-value {
    display: block;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--color-deep-forest);
    margin-bottom: 2px;
}

.stat-change {
    font-size: 0.55rem;
    font-weight: 700;
}

.stat-change.positive { color: var(--color-forest); }
.stat-change.neutral { color: var(--text-muted); }

/* Gráfico Simulado Claro */
.mockup-chart-container {
    background: #ffffff;
    border: var(--border-glass);
    border-radius: var(--border-radius-sm);
    padding: 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.chart-title {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--color-deep-forest);
}

.chart-legend {
    display: flex;
    gap: 10px;
}

.legend-item {
    font-size: 0.55rem;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
}

.legend-color {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.legend-color.site { background: var(--color-forest); }
.legend-color.mkt { background: var(--color-sage); }

.chart-bars {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 105px;
    padding-top: 10px;
    border-bottom: 1px solid rgba(142, 182, 155, 0.15);
}

.chart-bar-group {
    display: flex;
    gap: 4px;
    align-items: flex-end;
    height: 100%;
    position: relative;
}

.bar {
    width: 12px;
    border-radius: 3px 3px 0 0;
    transition: height 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.bar-site { background: var(--color-forest); }
.bar-mkt { background: var(--color-sage); }

.bar-label {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.5rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Indicador de scroll */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    color: var(--color-forest);
    transition: var(--transition);
}

.scroll-indicator a:hover {
    color: var(--color-deep-forest);
}

/* ==========================================================================
   PROBLEM SECTION (MUDANÇA DE DARK PARA LIGHT)
   ========================================================================== */

.problem-section {
    padding: var(--section-padding) 0;
    position: relative;
    background-color: var(--bg-section-alt);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

.problem-card {
    background: var(--bg-card);
    border: var(--border-glass);
    border-radius: var(--border-radius-md);
    padding: 36px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.problem-card:hover {
    border-color: rgba(35, 83, 71, 0.3);
    transform: translateY(-5px);
    box-shadow: var(--shadow-accent);
}

.problem-icon {
    font-size: 2.2rem;
    margin-bottom: 20px;
    background: var(--color-mint);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-card h3 {
    font-size: 1.25rem;
    color: var(--color-deep-forest);
    margin-bottom: 12px;
    font-weight: 800;
}

.problem-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Banner de Solução */
.solution-intro-card {
    background: linear-gradient(135deg, var(--color-mint) 0%, #ffffff 100%);
    border: 1px solid rgba(142, 182, 155, 0.35);
    border-radius: var(--border-radius-md);
    padding: 45px;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.solution-intro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-primary);
}

.solution-intro-content {
    max-width: 900px;
}

.solution-intro-content h3 {
    font-size: 1.6rem;
    color: var(--color-deep-forest);
    margin-bottom: 12px;
    font-weight: 800;
}

.solution-intro-content p {
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--text-main);
}

.solution-intro-content strong {
    color: var(--color-forest);
    font-weight: 700;
}

/* ==========================================================================
   DIFERENCIAL SECTION (ELEMENTOS DE ENCAIXE OPERACIONAL)
   ========================================================================== */

.diferencial-section {
    padding: var(--section-padding) 0;
    position: relative;
}

.diferencial-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.diferencial-description {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--text-muted);
}

/* Estilo Encaixe nos Pilares */
.pillars-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px; /* Gap reduzido para passar a ideia de peças conectadas */
    background: rgba(142, 182, 155, 0.05);
    padding: 12px;
    border-radius: var(--border-radius-lg);
    border: var(--border-glass);
}

.pillar-card {
    background: var(--bg-card);
    border: var(--border-glass);
    padding: 24px;
    transition: var(--transition);
    position: relative;
}

/* Bordas arredondadas estratégicas para parecerem encaixadas */
.pillars-grid .pillar-card:nth-child(1) { border-radius: var(--border-radius-md) 4px 4px 4px; }
.pillars-grid .pillar-card:nth-child(2) { border-radius: 4px var(--border-radius-md) 4px 4px; }
.pillars-grid .pillar-card:nth-child(3) { border-radius: 4px 4px 4px 4px; }
.pillars-grid .pillar-card:nth-child(4) { border-radius: 4px 4px 4px 4px; }
.pillars-grid .pillar-card:nth-child(5) { border-radius: 4px 4px 4px 4px; }
.pillars-grid .pillar-card:nth-child(6) { border-radius: 4px 4px 4px 4px; }
.pillars-grid .pillar-card.full-width { border-radius: 4px 4px var(--border-radius-md) var(--border-radius-md); }

.pillar-card:hover {
    border-color: var(--color-forest);
    background: var(--bg-card-hover);
    transform: scale(1.02);
    z-index: 2;
    box-shadow: var(--shadow-accent);
}

.pillar-num {
    display: block;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--color-sage);
    margin-bottom: 8px;
}

.pillar-card h4 {
    font-size: 1.1rem;
    color: var(--color-deep-forest);
    margin-bottom: 4px;
    font-weight: 800;
}

.pillar-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.pillar-card.full-width {
    grid-column: span 2;
}

/* ==========================================================================
   FEATURES / RECURSOS SECTION
   ========================================================================== */

.features-section {
    padding: var(--section-padding) 0;
    position: relative;
    background: var(--bg-section-alt);
}

/* Abas */
.features-tabs-container {
    margin-bottom: 80px;
}

.features-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.tab-btn {
    background: #ffffff;
    border: var(--border-glass);
    color: var(--text-muted);
    padding: 14px 28px;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.tab-btn:hover {
    color: var(--color-forest);
    background: var(--bg-section-alt);
}

.tab-btn.active {
    background: var(--color-forest);
    color: var(--text-light);
    border-color: var(--color-forest);
    box-shadow: 0 4px 15px rgba(35, 83, 71, 0.2);
}

/* Conteúdo das Abas */
.tab-content-wrapper {
    position: relative;
}

.tab-pane {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.tab-pane.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.tab-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.tab-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--color-forest);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    background: var(--color-mint);
    padding: 4px 12px;
    border-radius: 4px;
}

.tab-info h3 {
    font-size: 2.1rem;
    color: var(--color-deep-forest);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.25;
}

.tab-desc-main {
    font-size: 1.15rem;
    color: var(--text-main);
    margin-bottom: 24px;
    font-weight: 500;
}

.tab-list {
    list-style: none;
    margin-bottom: 30px;
}

.tab-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.tab-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--color-forest);
    font-weight: 800;
}

.saving-badge {
    background: var(--color-mint);
    border: 1px dashed var(--color-sage);
    padding: 16px 20px;
    border-radius: var(--border-radius-sm);
    color: var(--color-deep-forest);
    font-weight: 600;
    display: inline-block;
}

/* Áreas de Visualização Claro */
.tab-visual {
    width: 100%;
}

.card-glass-preview {
    background: #ffffff;
    border: var(--border-glass);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-accent);
}

.preview-header {
    background: rgba(35, 83, 71, 0.03);
    padding: 14px 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-deep-forest);
    border-bottom: var(--border-glass);
}

.preview-body-content {
    padding: 24px;
    min-height: 220px;
}

.preview-body-content.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.channel-status-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.channel-status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    border: var(--border-glass);
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-deep-forest);
    box-shadow: 0 2px 6px rgba(21, 56, 50, 0.01);
}

.badge {
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 50px;
}

.badge-success {
    background: var(--color-mint);
    color: var(--color-forest);
    border: 1px solid rgba(142, 182, 155, 0.3);
}

/* Comparativo em Massa */
.comparison-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comp-item {
    background: #ffffff;
    border: var(--border-glass);
    padding: 20px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 4px 12px rgba(21, 56, 50, 0.02);
}

.comp-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.time-spent {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-deep-forest);
    margin-bottom: 12px;
}

.bar-progress {
    height: 8px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.comp-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Catálogo Mockup Claro */
.catalog-mockup-item {
    background: #ffffff;
    border: var(--border-glass);
    border-radius: var(--border-radius-md);
    padding: 18px;
    display: flex;
    gap: 16px;
    width: 100%;
}

.product-placeholder-img {
    width: 60px;
    height: 60px;
    background: var(--color-mint);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.product-placeholder-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.product-placeholder-info strong {
    font-size: 0.9rem;
    color: var(--color-deep-forest);
}

.product-placeholder-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.product-badge-group {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

.mini-badge {
    font-size: 0.65rem;
    background: var(--bg-section-alt);
    padding: 2px 8px;
    border-radius: 4px;
    color: var(--color-deep-forest);
    font-weight: 600;
    border: var(--border-glass);
}

/* Fluxo de Imagens */
.image-search-flow {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.flow-step {
    background: #ffffff;
    border: var(--border-glass);
    padding: 12px 18px;
    border-radius: var(--border-radius-sm);
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--color-deep-forest);
    box-shadow: 0 4px 10px rgba(21, 56, 50, 0.02);
}

.flow-step.highlight-step {
    background: var(--color-mint);
    border-color: var(--color-sage);
    color: var(--color-forest);
}

.flow-arrow {
    color: var(--color-sage);
    font-weight: 700;
}

/* Estúdio Visual */
.studio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.studio-card-mini {
    background: #ffffff;
    border: var(--border-glass);
    border-radius: var(--border-radius-md);
    padding: 16px;
    position: relative;
    overflow: hidden;
    height: 125px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(21, 56, 50, 0.02);
}

.tag-promo {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--color-forest);
    color: var(--text-light);
    font-size: 0.6rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
}

.studio-img-mock {
    font-size: 2.5rem;
}

/* Grade Secundária */
.secondary-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.sec-feature-card {
    background: #ffffff;
    border: var(--border-glass);
    border-radius: var(--border-radius-md);
    padding: 36px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.sec-feature-card:hover {
    border-color: var(--color-sage);
    transform: translateY(-5px);
    box-shadow: var(--shadow-accent);
}

.sec-feature-icon {
    font-size: 1.8rem;
    margin-bottom: 18px;
    color: var(--color-forest);
}

.sec-feature-card h4 {
    font-size: 1.2rem;
    color: var(--color-deep-forest);
    margin-bottom: 10px;
    font-weight: 800;
}

.sec-feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ==========================================================================
   INTEGRATIONS SECTION (ANIMAÇÕES ADICIONAIS NAS LINHAS)
   ========================================================================== */

.integrations-section {
    padding: var(--section-padding) 0;
    position: relative;
    background: var(--bg-light);
}

.integrations-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.integrations-content h2 {
    margin-bottom: 20px;
}

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

.integrations-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    font-size: 1rem;
    color: var(--text-main);
    font-weight: 500;
}

.integrations-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-forest);
    font-weight: 800;
    font-size: 1.1rem;
}

/* Integration Cards Grid */
.integration-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.integration-card-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #ffffff;
    border: 1px solid rgba(142, 182, 155, 0.15);
    border-radius: 14px;
    padding: 22px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.integration-card-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(35, 83, 71, 0.08);
    border-color: rgba(142, 182, 155, 0.3);
}

.integ-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--color-mint);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.integ-icon svg {
    width: 22px;
    height: 22px;
}

.integ-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #153832;
    margin-bottom: 4px;
}

.integ-text p {
    font-size: 0.85rem;
    color: #5a6e69;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .integration-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* Diagrama de Integrações Moderno */
.integrations-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 450px;
    width: 100%;
}

.integration-diagram {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 400px;
    margin: 0 auto;
}

.diagram-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.connection-line {
    stroke: rgba(142, 182, 155, 0.25);
    stroke-width: 2px;
    fill: none;
}

.connection-flow {
    stroke: var(--color-forest);
    stroke-width: 2px;
    stroke-dasharray: 6 12;
    fill: none;
    animation: flow-particles 1.5s linear infinite;
}

@keyframes flow-particles {
    to {
        stroke-dashoffset: -18;
    }
}

.diagram-node {
    position: absolute;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: var(--border-glass);
    border-radius: var(--border-radius-md);
    padding: 10px 14px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    width: 110px;
    height: 75px;
    text-align: center;
}

.diagram-node:hover {
    border-color: var(--color-forest);
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-accent);
}

.diagram-node .node-icon {
    font-size: 1.4rem;
    margin-bottom: 2px;
}

.diagram-node .node-name {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--color-deep-forest);
}

/* Central Node */
.diagram-node.node-center {
    top: 145px;
    left: 170px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #ffffff;
    border: none;
    box-shadow: 0 0 25px rgba(35, 83, 71, 0.25);
    animation: center-pulse 3s infinite;
}

.diagram-node.node-center:hover {
    transform: scale(1.08);
}

.diagram-node.node-center .node-icon {
    font-size: 2rem;
}

.diagram-node.node-center .node-name {
    color: #ffffff;
    font-size: 0.85rem;
}

@keyframes center-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(35, 83, 71, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(35, 83, 71, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(35, 83, 71, 0);
    }
}


/* ==========================================================================
   PERFORMANCE & MULTICHANNEL SECTION (MUDANÇA DE DARK PARA LIGHT)
   ========================================================================== */

.performance-section {
    padding: 80px 0 var(--section-padding) 0;
    position: relative;
}

.performance-highlight-card {
    background: linear-gradient(135deg, var(--color-mint) 0%, #ffffff 100%);
    border: 1px solid rgba(142, 182, 155, 0.35);
    border-radius: var(--border-radius-lg);
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 50px;
    box-shadow: var(--shadow-soft);
}

.perf-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-tag {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--color-forest);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.performance-highlight-card h3 {
    font-size: 1.8rem;
    color: var(--color-deep-forest);
    font-weight: 800;
    margin-bottom: 16px;
}

.performance-highlight-card p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.perf-divider {
    width: 1px;
    background: rgba(142, 182, 155, 0.25);
}

/* ==========================================================================
   TARGET SECTION (PARA QUEM)
   ========================================================================== */

.target-section {
    padding: var(--section-padding) 0;
    position: relative;
    background: var(--bg-section-alt);
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.target-card {
    background: #ffffff;
    border: var(--border-glass);
    border-radius: var(--border-radius-md);
    padding: 26px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.target-card:hover {
    border-color: var(--color-forest);
    background: var(--bg-card-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-accent);
}

.target-check {
    width: 42px;
    height: 42px;
    background: var(--color-mint);
    border: 1px solid rgba(142, 182, 155, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-forest);
    font-weight: 800;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.target-card p {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.5;
    font-weight: 600;
}

/* ==========================================================================
   CONTACT & FORM (FOCO EM VENDAS NO LIGHT MODE)
   ========================================================================== */

.contact-section {
    padding: var(--section-padding) 0;
    position: relative;
}

.contact-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    background: var(--bg-card);
    border: var(--border-glass);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-accent);
    position: relative;
    z-index: 1;
}

.contact-info {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-section-alt);
}

.contact-info h2 {
    font-size: 2.2rem;
    color: var(--color-deep-forest);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 8px;
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-forest);
    margin-bottom: 24px;
}

.contact-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 32px;
    color: var(--text-muted);
}

.contact-desc strong {
    color: var(--color-deep-forest);
}

.trust-points {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-point {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-deep-forest);
    background: #ffffff;
    border: var(--border-glass);
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: 0 2px 6px rgba(21, 56, 50, 0.02);
}

/* Formulário de leads */
.contact-form-container {
    background: #ffffff;
    border-left: var(--border-glass);
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-container h3 {
    font-size: 1.6rem;
    color: var(--color-deep-forest);
    margin-bottom: 8px;
    font-weight: 800;
}

.contact-form-container p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-deep-forest);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input {
    background: #ffffff;
    border: var(--border-glass);
    color: var(--color-deep-forest);
    padding: 14px 18px;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-forest);
    box-shadow: 0 0 10px rgba(35, 83, 71, 0.1);
}

.form-feedback {
    margin-top: 15px;
    font-size: 0.85rem;
    text-align: center;
    font-weight: 700;
    display: none;
}

.form-feedback.success {
    color: var(--color-forest);
    display: block;
}

.form-feedback.error {
    color: #cc3333;
    display: block;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
    background: var(--color-deep-forest);
    border-top: 1px solid rgba(142, 182, 155, 0.08);
    padding: 80px 0 0 0;
    color: rgba(255, 255, 255, 0.6);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    height: 48px;
    width: auto;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.45);
}

.footer-col h4 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.88rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-col ul li a:hover {
    color: var(--color-mint);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 28px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 0.3px;
}

/* Footer Responsivo */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
    
    .footer-brand {
        grid-column: span 2;
        max-width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        grid-column: span 1;
        align-items: center;
    }

    .footer-col ul {
        align-items: center;
    }
}

/* ==========================================================================
   RESPONSIVIDADE (MEDIA QUERIES)
   ========================================================================== */

@media (max-width: 1024px) {
    .grid-2col {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 20px;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-mockup {
        max-width: 580px;
        margin: 0 auto;
    }
    
    .tab-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .performance-highlight-card {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px;
    }
    
    .perf-divider {
        width: 100%;
        height: 1px;
    }
    
    .contact-card {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        border-left: none;
        border-top: var(--border-glass);
        padding: 40px;
    }
    
    .contact-info {
        padding: 40px;
    }
    
    .pillars-grid {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 78px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 78px);
        background: var(--color-deep-forest);
        flex-direction: column;
        padding: 40px 24px;
        gap: 0;
        transition: var(--transition);
        border-top: 1px solid rgba(142, 182, 155, 0.15);
        z-index: 101;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu .nav-link {
        display: block;
        padding: 18px 0;
        border-bottom: 1px solid rgba(142, 182, 155, 0.08);
        font-size: 1.05rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.85);
        width: 100%;
    }

    .nav-menu .nav-link::after {
        display: none;
    }

    .nav-menu .nav-link:hover {
        color: var(--color-mint);
        padding-left: 8px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-cta {
        margin-left: 0;
        width: 100%;
        margin-top: 24px;
        text-align: center;
    }

    .logo-tagline {
        display: none;
    }
    
    .hero-section {
        padding-top: 130px;
        padding-bottom: 70px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .tab-info h3 {
        font-size: 1.6rem;
    }
    
    .contact-info h2 {
        font-size: 1.8rem;
    }
    
    .contact-info h3 {
        font-size: 1.5rem;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .mockup-body {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .mockup-sidebar {
        flex-direction: row;
        overflow-x: auto;
        padding: 8px;
        border-right: none;
        border-bottom: var(--border-glass);
    }
    
    .sidebar-item {
        flex-direction: row;
        padding: 8px 12px;
        white-space: nowrap;
    }
    
    .mockup-stats {
        grid-template-columns: 1fr;
    }
    
    .chart-bars {
        height: 80px;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    
    .pillar-card.full-width {
        grid-column: span 1;
    }
    
    .features-tabs {
        gap: 8px;
    }
    
    .tab-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
        width: 100%;
    }
    
    .contact-info,
    .contact-form-container {
        padding: 24px;
    }
    
    .studio-grid {
        grid-template-columns: 1fr;
    }
    
    .image-search-flow {
        flex-direction: column;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        margin: 4px 0;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   ANIMAÇÕES DE ENTRADA E ROLAGEM
   ========================================================================== */

.animate-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-content .animate-in:nth-child(1) { transition-delay: 0.1s; }
.hero-content .animate-in:nth-child(2) { transition-delay: 0.2s; }
.hero-content .animate-in:nth-child(3) { transition-delay: 0.3s; }
.hero-content .animate-in:nth-child(4) { transition-delay: 0.4s; }
.hero-mockup.animate-in { transition-delay: 0.5s; }

/* ==========================================================================
   FAIXA DE LOGOS DE ERPS (MARQUEE INFINITO)
   ========================================================================== */

.erp-band-section {
    padding: 50px 0;
    background: var(--bg-section-alt);
    border-top: var(--border-glass);
    border-bottom: var(--border-glass);
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.erp-band-title {
    font-family: var(--font-display);
    text-align: center;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.erp-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Criando o efeito de fade nas bordas do carrossel */
.erp-slider-container::before,
.erp-slider-container::after {
    content: "";
    height: 100%;
    position: absolute;
    width: 120px;
    z-index: 2;
    pointer-events: none;
    top: 0;
}

.erp-slider-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-section-alt) 0%, rgba(243, 247, 244, 0) 100%);
}

.erp-slider-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-section-alt) 0%, rgba(243, 247, 244, 0) 100%);
}

.erp-slider-track {
    display: flex;
    gap: 30px;
    width: calc(240px * 14);
    animation: scroll-marquee 25s linear infinite;
}

@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-240px * 7));
    }
}

.erp-logo-card {
    width: 210px;
    height: 70px;
    background: #ffffff;
    border: var(--border-glass);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(21, 56, 50, 0.02);
    transition: var(--transition);
    flex-shrink: 0;
}

.erp-logo-card:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: var(--color-forest);
    box-shadow: var(--shadow-accent);
}

.erp-logo-img {
    max-width: 130px;
    max-height: 40px;
    object-fit: contain;
    filter: grayscale(1) opacity(0.7);
    transition: var(--transition);
    user-select: none;
}

.erp-logo-card:hover .erp-logo-img {
    filter: grayscale(0) opacity(1);
    transform: scale(1.05);
}

.erp-logo-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 900;
    color: #235347;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ==========================================================================
   COMPARAÇÃO DE IMPLANTAÇÃO (TRADICIONAL VS R MKT)
   ========================================================================== */

.implant-compare-section {
    padding: var(--section-padding) 0;
    background: var(--bg-section-alt);
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.implant-compare-section::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(142, 182, 155, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.implant-compare-section .section-tag {
    color: var(--color-forest);
}

.implant-compare-section .section-title {
    color: var(--color-deep-forest);
}

.implant-compare-section .section-subtitle {
    color: var(--text-muted);
}

.implant-compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    margin-top: 0;
}

/* Cards */
.implant-card {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.implant-card:hover {
    transform: translateY(-6px);
}

/* Tradicional */
.implant-card.traditional {
    background: #ffffff;
    border: 1px solid rgba(142, 182, 155, 0.2);
    box-shadow: var(--shadow-soft);
}

.implant-card.traditional .implant-card-header {
    background: rgba(255, 75, 75, 0.05);
    border-bottom: 1px solid rgba(255, 75, 75, 0.1);
}

.implant-card.traditional .implant-label {
    color: #e04545;
}

/* R MKT */
.implant-card.rmkt {
    background: #ffffff;
    border: 2px solid var(--color-forest);
    box-shadow: var(--shadow-accent);
}

.implant-card.rmkt .implant-card-header {
    background: rgba(35, 83, 71, 0.04);
    border-bottom: 1px solid rgba(35, 83, 71, 0.1);
}

.implant-card.rmkt .implant-label {
    color: var(--color-forest);
}

/* Header */
.implant-card-header {
    padding: 22px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.implant-label {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.implant-badge-fast {
    background: var(--color-forest);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    animation: pulse-badge 2.5s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { box-shadow: 0 0 0 0 rgba(35, 83, 71, 0.3); }
    50% { box-shadow: 0 0 0 10px rgba(35, 83, 71, 0); }
}

/* Body */
.implant-card-body {
    padding: 36px 32px;
}

/* Metrics */
.implant-metric {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 8px 0;
}

.metric-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--bg-section-alt);
}

.metric-data {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-shrink: 0;
}

.metric-value {
    font-size: 2.8rem;
    font-weight: 800;
    color: #153832;
    line-height: 1;
    letter-spacing: -1px;
}

.metric-unit {
    font-size: 1.1rem;
    font-weight: 600;
    color: #5a6e69;
}

.metric-desc {
    font-size: 0.85rem;
    color: #5a6e69;
    margin-left: auto;
    text-align: right;
    flex-shrink: 1;
}

/* Divider */
.implant-divider {
    height: 1px;
    background: rgba(142, 182, 155, 0.15);
    margin: 18px 0;
}

/* Progress bar */
.implant-bar-container {
    margin: 8px 0 24px 0;
}

.implant-bar-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: #5a6e69;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.implant-bar-track {
    width: 100%;
    height: 10px;
    background: rgba(142, 182, 155, 0.12);
    border-radius: 50px;
    overflow: hidden;
}

.implant-bar-fill {
    height: 100%;
    border-radius: 50px;
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.traditional-fill {
    background: linear-gradient(90deg, #ff4d4d, #ff6b6b);
}

.rmkt-fill {
    background: var(--gradient-neon);
    box-shadow: 0 0 16px rgba(142, 182, 155, 0.3);
}

.implant-bar-percent {
    display: block;
    margin-top: 8px;
    font-size: 0.85rem;
    font-weight: 800;
    color: #5a6e69;
    text-align: right;
}

.implant-card.rmkt .implant-bar-percent {
    color: #235347;
}

/* Lists */
.implant-pain-list,
.implant-advantage-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.implant-pain-list li,
.implant-advantage-list li {
    font-size: 0.9rem;
    color: #5a6e69;
    padding-left: 24px;
    position: relative;
    line-height: 1.5;
}

.implant-pain-list li::before {
    content: "✕";
    position: absolute;
    left: 0;
    color: #e04545;
    font-weight: 800;
    font-size: 0.75rem;
    top: 2px;
}

.implant-advantage-list li {
    color: #2d3e3a;
}

.implant-advantage-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #235347;
    font-weight: 800;
    font-size: 0.85rem;
    top: 1px;
}

/* Footnote */
.implant-footnote {
    text-align: center;
    font-size: 0.82rem;
    color: #5a6e69;
    margin-top: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.implant-footnote strong {
    color: #153832;
}

/* Responsivo */
@media (max-width: 768px) {
    .implant-compare-grid {
        grid-template-columns: 1fr;
    }

    .implant-metric {
        flex-wrap: wrap;
        gap: 12px;
    }

    .metric-desc {
        margin-left: 0;
        text-align: left;
        width: 100%;
    }

    .metric-value {
        font-size: 2.2rem;
    }

    .implant-card-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
}

/* ==========================================================================
   SEÇÃO DE PREÇOS & INFRAESTRUTURA
   ========================================================================== */

.pricing-section {
    padding: var(--section-padding) 0;
    background-color: var(--bg-light);
    position: relative;
    z-index: 10;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px;
    align-items: stretch;
    perspective: 1200px;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid rgba(142, 182, 155, 0.15);
    border-radius: 22px;
    padding: 48px 34px 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow:
        0 2px 4px rgba(21, 56, 50, 0.02),
        0 8px 16px rgba(21, 56, 50, 0.03),
        0 20px 40px rgba(21, 56, 50, 0.04);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    transform-style: preserve-3d;
    transform: translateZ(0);
}

.pricing-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(243, 247, 244, 0.5) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.pricing-card > * {
    position: relative;
    z-index: 1;
}

.pricing-card:hover {
    transform: translateY(-12px) rotateX(2deg);
    box-shadow:
        0 4px 8px rgba(21, 56, 50, 0.03),
        0 16px 32px rgba(21, 56, 50, 0.06),
        0 32px 64px rgba(21, 56, 50, 0.08);
    border-color: rgba(142, 182, 155, 0.3);
}

/* Card central em destaque */
.pricing-card.featured {
    border: 2px solid var(--color-forest);
    transform: scale(1.04) translateZ(20px);
    box-shadow:
        0 4px 8px rgba(35, 83, 71, 0.04),
        0 16px 32px rgba(35, 83, 71, 0.08),
        0 32px 64px rgba(35, 83, 71, 0.1),
        0 0 0 1px rgba(35, 83, 71, 0.05);
}

.pricing-card.featured::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-neon);
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: scale(1.06) translateY(-8px) rotateX(2deg) translateZ(30px);
    box-shadow:
        0 8px 16px rgba(35, 83, 71, 0.06),
        0 24px 48px rgba(35, 83, 71, 0.1),
        0 48px 80px rgba(35, 83, 71, 0.12);
}

.featured-ribbon {
    position: absolute;
    top: 18px;
    right: -32px;
    background: var(--color-forest);
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 7px 36px;
    transform: rotate(45deg);
    box-shadow: 0 3px 12px rgba(35, 83, 71, 0.2);
    z-index: 3;
}

.pricing-badge {
    align-self: flex-start;
    background: rgba(35, 83, 71, 0.06);
    color: var(--color-forest);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 24px;
    border: 1px solid rgba(35, 83, 71, 0.08);
}

.pricing-card.featured .pricing-badge {
    background: var(--color-forest);
    color: #ffffff;
    border-color: var(--color-forest);
}

.pricing-plan-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: #153832;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.pricing-plan-desc {
    font-size: 0.9rem;
    color: #5a6e69;
    line-height: 1.6;
    margin-bottom: 32px;
    min-height: 45px;
}

.pricing-features-list {
    margin-bottom: 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing-feature-item {
    display: flex;
    gap: 12px;
    font-size: 0.92rem;
    color: #2d3e3a;
    line-height: 1.45;
}

.pricing-feature-item .feature-icon {
    font-size: 1.15rem;
    flex-shrink: 0;
}

.pricing-price-box {
    border-top: 1px solid rgba(142, 182, 155, 0.15);
    padding-top: 28px;
    margin-bottom: 28px;
    text-align: center;
}

.price-label {
    display: block;
    font-size: 0.72rem;
    color: #5a6e69;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    font-weight: 700;
}

.price-val {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 900;
    color: #153832;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 8px;
}

.price-plus {
    font-size: 1.8rem;
    color: var(--color-sage);
    vertical-align: super;
}

.price-info {
    display: block;
    font-size: 0.82rem;
    color: #5a6e69;
}

/* Rodapé de notas e alertas */
.pricing-footer-notes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    border-top: var(--border-glass);
    padding-top: 50px;
}

.note-box {
    background: var(--bg-section-alt);
    border-radius: var(--border-radius-md);
    padding: 24px;
    border: var(--border-glass);
    transition: var(--transition);
}

.note-box:hover {
    border-color: var(--color-sage);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.note-box h4 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--color-deep-forest);
    margin-bottom: 12px;
}

.note-box p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Responsivo para os planos */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 50px auto 0 auto;
    }
    
    .pricing-footer-notes {
        grid-template-columns: 1fr;
    }
}
