/* ==========================================================================
   OPTIMUS BRAND DESIGN SYSTEM & ESTÉTICA PREMIUM (INSPIRADO NA APPLE)
   ========================================================================== */

:root {
    /* Cores do Core Optimus (Light Mode - Option B: Jade Tech & Deep Pine) */
    --color-bg: #FAFAFA;
    --color-bg-alt: #F3F4F6;
    --color-surface: #FFFFFF;
    --color-surface-hover: #F9FAFB;
    --color-border: #E5E7EB;
    --color-border-hover: #D1D5DB;
    
    --color-text: #111827;
    --color-text-muted: #4B5563;
    --color-text-dim: #6B7280;
    
    /* Cores de Acento (Emerald / Jade / Pine) */
    --color-accent-emerald: #059669;
    --color-accent-mint: #10B981;
    --color-accent-pine: #064E3B;
    
    /* Compatibilidade com nomes legados */
    --color-accent-purple: #059669;
    --color-accent-blue: #10B981;
    --color-accent-purple-glow: rgba(5, 150, 105, 0.15);
    --color-accent-blue-glow: rgba(16, 185, 129, 0.15);
    
    /* Gradientes análogos (Pine -> Jade -> Mint) */
    --color-gradient-primary: linear-gradient(135deg, #064E3B 0%, #059669 60%, #10B981 100%);
    --color-gradient-hero: linear-gradient(135deg, #064E3B 0%, #059669 60%, #10B981 100%);
    
    /* Tipografia */
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-heading: 'Sora', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    
    /* Layout & Efeitos */
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    --border-radius-lg: 20px;
    --border-radius-md: 12px;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--color-bg);
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-sans);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Tipografia */
h1, h2, h3, h4, .brand-name, .logo-text {
    font-family: var(--font-heading);
}

.text-huge {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    font-weight: 600;
}

.text-lead {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--color-text);
    line-height: 1.5;
    font-weight: 300;
}

.text-muted {
    color: var(--color-text-muted);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

/* Containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--color-gradient-primary);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(5, 150, 105, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(5, 150, 105, 0.35), 0 0 15px rgba(16, 185, 129, 0.3);
}

.btn-secondary {
    background-color: #FFFFFF;
    color: var(--color-text);
    border: 1px solid var(--color-border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.btn-secondary:hover {
    background-color: #F9FAFB;
    border-color: var(--color-border-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.w-full {
    width: 100%;
}

/* Badges e Tags */
.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent-emerald);
    margin-bottom: 12px;
}

.badge-tag {
    display: inline-block;
    padding: 6px 16px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    background-color: rgba(5, 150, 105, 0.08);
    border: 1px solid rgba(5, 150, 105, 0.25);
    color: var(--color-accent-emerald);
    border-radius: 20px;
    margin-bottom: 24px;
}

/* Glassmorphism Cards */
.glass-card {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    transition: var(--transition-smooth);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.glass-card:hover {
    border-color: var(--color-border-hover);
    background-color: #FFFFFF;
    box-shadow: 0 12px 40px rgba(5, 150, 105, 0.08);
}

/* Announcement Banner */
.promo-banner {
    background: linear-gradient(90deg, #064E3B, #059669);
    color: #ffffff;
    font-size: 13px;
    padding: 10px 40px 10px 20px;
    text-align: center;
    position: relative;
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-weight: 500;
}

.banner-link {
    font-weight: 700;
    border-bottom: 1px solid #ffffff;
}

.banner-link:hover {
    color: #A7F3D0;
    border-color: #A7F3D0;
}

.banner-close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.banner-close:hover {
    opacity: 1;
}

/* Navigation Header */
.navbar-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition-smooth);
}

.navbar-wrapper.scrolled {
    background-color: rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding-top: 4px;
    padding-bottom: 4px;
}

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

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo-img {
    height: 32px;
    width: 32px;
    object-fit: contain;
}

.brand-name {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-text);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-item {
    font-size: 13px;
    color: var(--color-text-muted);
    font-weight: 500;
}

.nav-item:hover {
    color: var(--color-text);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger-bar {
    width: 22px;
    height: 1.5px;
    background-color: var(--color-text);
    transition: var(--transition-fast);
}

/* Background Ambient Glows */
.ambient-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
}

.purple-glow {
    background-color: var(--color-accent-purple);
}

.blue-glow {
    background-color: var(--color-accent-blue);
}

/* Sections Base */
.section {
    padding-top: 120px;
    padding-bottom: 120px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* ==========================================================================
   SCROLL MORPH HERO SECTION STYLING
   ========================================================================== */
.hero-section {
    position: relative;
    height: 350vh; /* Drives the scroll progress */
    background-color: var(--color-bg);
}

.morph-container {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Center Intro Text */
.hero-intro-text {
    position: absolute;
    z-index: 10;
    text-align: center;
    max-width: 600px;
    pointer-events: none;
    display: flex;
    flex-col: column;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-main-title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem); /* Limita o crescimento em telas grandes para evitar sobreposição */
    line-height: 1.25;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--color-text);
    opacity: 1;
    transition: opacity 0.5s ease, filter 0.5s ease;
}

.hero-subtitle {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

.scroll-arrow {
    font-size: 24px;
    animation: bounce 2s infinite;
    color: var(--color-text-muted);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* Hero Arc Content (Fades in) */
.hero-arc-content {
    position: absolute;
    top: 10vh;
    z-index: 20;
    text-align: center;
    max-width: 700px;
    padding: 0 24px;
    pointer-events: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-arc-content.active {
    pointer-events: auto;
}

.arc-title {
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--color-text);
    margin-bottom: 16px;
}

.arc-description {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 32px;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Flip Cards Styles inside Morph Container */
.morph-card {
    position: absolute;
    width: 60px;  /* Reduced from 100 */
    height: 85px; /* Reduced from 140 */
    transform-style: preserve-3d;
    perspective: 1000px;
    cursor: pointer;
    z-index: 5;
    transition: transform 0.1s ease;
}

.morph-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.morph-card:hover .morph-card-inner {
    transform: rotateY(180deg);
}

.morph-card-front, .morph-card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    backface-visibility: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.morph-card-front {
    background-color: #222;
}

.morph-card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.morph-card-back {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6px;
}

.morph-card-back-title {
    font-size: 7px;
    font-weight: 700;
    color: var(--color-accent-blue);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2px;
}

.morph-card-back-desc {
    font-size: 8px;
    font-weight: 500;
    color: var(--color-text);
    text-align: center;
}

/* ==========================================================================
   MANIFESTO / POSITIONING STYLING (STICKY VIDEO PIN)
   ========================================================================== */
.manifesto-section {
    position: relative;
    height: 300vh; /* Multi-screen scroll track (pins user while video plays) */
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.manifesto-sticky-wrapper {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.manifesto-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.manifesto-video-bg canvas {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.manifesto-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1; /* 100% RAW VIDEO - NO BLACK OVERLAY */
}

.manifesto-section .container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-height: 94vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.manifesto-header {
    margin-bottom: 48px;
    max-width: 960px;
}

.manifesto-section .section-tag {
    display: inline-block;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #064E3B;
    border-radius: 20px;
    text-shadow: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.manifesto-section .section-title {
    color: #ffffff;
    font-size: 2.3rem;
    line-height: 1.25;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.95), 0 4px 28px rgba(0, 0, 0, 0.98);
    margin-top: 16px;
}

/* ==========================================================================
   SERVICES VALUE LADDER STYLING
   ========================================================================== */
.ladder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.ladder-card {
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.ladder-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    color: var(--color-text-muted);
}

.ladder-badge.premium {
    background-color: rgba(157, 78, 221, 0.15);
    color: var(--color-accent-purple);
    border: 1px solid rgba(157, 78, 221, 0.3);
}

.ladder-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.ladder-desc {
    color: var(--color-text-muted);
    font-size: 14px;
    margin-bottom: 32px;
}

.ladder-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 48px;
}

.ladder-features li {
    font-size: 14px;
    color: var(--color-text-muted);
    padding-left: 24px;
    position: relative;
}

.ladder-features li::before {
    content: "+";
    position: absolute;
    left: 0;
    color: var(--color-accent-emerald);
    font-weight: 700;
}

.ladder-card.highlight-card {
    border-color: rgba(5, 150, 105, 0.3);
    box-shadow: 0 10px 40px rgba(5, 150, 105, 0.08);
}

.ladder-card.highlight-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--color-gradient-primary);
}

.ladder-price {
    font-weight: 700;
    font-size: 15px;
    color: var(--color-text);
}

/* ==========================================================================
   SHOWCASE SECTION STYLING
   ========================================================================== */
.showcase-container {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 80px;
    align-items: center;
}

.accordion-group {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.accordion-item {
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 24px;
    transition: var(--transition-smooth);
}

.accordion-trigger {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    color: var(--color-text-muted);
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    transition: var(--transition-fast);
}

.accordion-num-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.accordion-num {
    font-size: 12px;
    font-weight: 700;
}

.progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg);
}

.progress-ring-circle {
    stroke-dasharray: 69.11;
    stroke-dashoffset: 69.11;
    transition: stroke-dashoffset 0.1s linear;
}

.accordion-item.active .accordion-trigger {
    color: var(--color-text);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
    opacity: 0;
    padding-left: 44px;
}

.accordion-item.active .accordion-content {
    max-height: 120px;
    opacity: 1;
    margin-top: 12px;
}

.accordion-content p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Mockup Frame */
.mockup-frame {
    background-color: #0A0A0A;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

.mockup-header {
    background-color: #0F0F10;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--color-border);
    position: relative;
}

.mockup-header .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 6px;
}

.mockup-header .dot.red { background-color: #FF5F56; }
.mockup-header .dot.yellow { background-color: #FFBD2E; }
.mockup-header .dot.green { background-color: #27C93F; }

.mockup-title-tab {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-text-muted);
    margin-left: 20px;
    letter-spacing: 0.05em;
}

.mockup-body {
    padding: 40px;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.service-mockup-content {
    position: absolute;
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    width: calc(100% - 80px);
    display: flex;
    justify-content: center;
}

.service-mockup-content.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

/* Simulated Post Mockup */
.social-post-mockup {
    width: 280px;
}

.mockup-card {
    background-color: #161618;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.mockup-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
}

.user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-gradient-primary);
}

.user-info-text {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-size: 11px;
    font-weight: 700;
    color: var(--color-text);
}

.post-time {
    font-size: 8px;
    color: var(--color-text-muted);
}

.mockup-card-image {
    width: 100%;
    height: 180px;
    background-color: #F3F4F6;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: linear-gradient(45deg, #E5E7EB 25%, #F3F4F6 25%, #F3F4F6 50%, #E5E7EB 50%, #E5E7EB 75%, #F3F4F6 75%, #F3F4F6 100%);
    background-size: 40px 40px;
}

.mockup-img-placeholder {
    font-size: 11px;
    font-weight: 600;
    color: #4B5563;
    background-color: rgba(255, 255, 255, 0.85);
    padding: 6px 12px;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
}

.mockup-card-footer {
    padding: 12px;
}

.badge {
    display: inline-block;
    padding: 2px 8px;
    font-size: 8px;
    font-weight: 700;
    border-radius: 4px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.badge-purple {
    background-color: rgba(5, 150, 105, 0.12);
    color: #047857;
}

.post-caption {
    font-size: 10px;
    color: var(--color-text-muted);
    line-height: 1.4;
}

/* Finance Chart Mockup */
.finance-chart-mockup {
    width: 320px;
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-radius: var(--border-radius-md);
    padding: 20px;
}

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

.chart-header span {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text);
}

.chart-profit {
    color: #059669;
}

.chart-bars {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 100px;
    margin-bottom: 20px;
    padding: 0 10px;
    border-bottom: 1px solid #E5E7EB;
}

.chart-bar {
    width: 40px;
    background-color: #F3F4F6;
    border-radius: 4px 4px 0 0;
    position: relative;
    transition: var(--transition-smooth);
}

.chart-bar.active {
    background: var(--color-gradient-primary);
}

.chart-bar span {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8px;
    color: var(--color-text-muted);
}

.recent-trans {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.trans-row {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: var(--color-text-muted);
}

.val-pos { color: #059669; }
.val-neg { color: #DC2626; }

/* Dashboard Mockup */
.dashboard-mockup {
    width: 340px;
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-radius: var(--border-radius-md);
    padding: 20px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.db-card {
    background-color: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    flex-direction: column;
}

.db-label {
    font-size: 9px;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.db-val {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
}

.db-card.highlight {
    background-color: rgba(5, 150, 105, 0.08);
    border-color: rgba(5, 150, 105, 0.2);
}

.db-card.highlight .db-val {
    color: var(--color-accent-emerald);
}

.dashboard-chart-line {
    height: 40px;
    margin-top: 16px;
    border-bottom: 1px solid #E5E7EB;
    position: relative;
    background-image: linear-gradient(rgba(16, 185, 129, 0.08), transparent);
}

.dashboard-chart-line::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-accent-mint), transparent);
}

/* ==========================================================================
   INTEGRATIONS MARQUEE STYLING (NARROW COMPACT STRIP)
   ========================================================================== */
.integrations-section {
    padding-top: 48px;
    padding-bottom: 48px;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    background-color: var(--color-bg-alt);
}

.integrations-section .section-tag {
    margin-bottom: 4px;
}

.integrations-section .section-title {
    margin-bottom: 6px;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.integrations-section .section-desc {
    margin-bottom: 20px;
}

.integrations-marquee-track {
    overflow: hidden;
    white-space: nowrap;
    padding: 8px 0;
    position: relative;
    width: 100%;
}

.integrations-marquee-track::before,
.integrations-marquee-track::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.integrations-marquee-track::before {
    left: 0;
    background: linear-gradient(90deg, var(--color-bg-alt), transparent);
}

.integrations-marquee-track::after {
    right: 0;
    background: linear-gradient(-90deg, var(--color-bg-alt), transparent);
}

.marquee-track-inner {
    display: inline-flex;
    gap: 16px;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-icon-box {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

/* ==========================================================================
   SPECIFICATIONS GRID (APPLE WATCH SPEC STYLE)
   ========================================================================== */
.specs-section {
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    background-color: var(--color-bg-alt);
}

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

.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
}

.spec-block {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--color-border);
    padding-top: 24px;
}

.spec-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.spec-value {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 12px;
}

.spec-desc {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   TROJAN HORSE AUDIT FORM STYLING
   ========================================================================== */
.audit-card {
    padding: 60px;
}

.audit-grid {
    display: grid;
    grid-template-columns: 1.3fr 1.7fr;
    gap: 60px;
    align-items: center;
}

.audit-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    line-height: 1.15;
    font-weight: 600;
    margin-bottom: 16px;
}

.audit-desc {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 32px;
}

.audit-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.audit-point-item {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
}

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

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

.form-group label {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-muted);
}

.form-group input {
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 14px 16px;
    color: var(--color-text);
    font-family: var(--font-sans);
    font-size: 14px;
    transition: var(--transition-fast);
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-accent-blue);
    box-shadow: 0 0 10px rgba(0, 180, 216, 0.15);
}

.form-disclaimer {
    font-size: 10px;
    color: var(--color-text-muted);
    text-align: center;
}

.form-success-message {
    padding: 32px;
    text-align: center;
    background-color: rgba(39, 201, 63, 0.05);
    border: 1px solid rgba(39, 201, 63, 0.2);
    border-radius: var(--border-radius-md);
}

.form-success-message h3 {
    font-size: 20px;
    color: #27C93F;
    margin-bottom: 12px;
}

.form-success-message p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.hidden {
    display: none !important;
}

/* ==========================================================================
   FAQ SECTION STYLING
   ========================================================================== */
.faq-list {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 16px;
}

.faq-trigger {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    color: var(--color-text);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-heading);
    text-align: left;
}

.faq-icon {
    font-size: 20px;
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}

.faq-item.active .faq-content {
    max-height: 120px;
    opacity: 1;
    padding-bottom: 12px;
}

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

.faq-content p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   FOOTER STYLING
   ========================================================================== */
.footer {
    border-top: 1px solid var(--color-border);
    background-color: var(--color-bg-alt);
    padding-top: 80px;
}

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

.footer-logo-block {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.footer-logo-block .logo-img {
    height: 28px;
    width: 28px;
    object-fit: contain;
}

.footer-logo-block .logo-text {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-text);
}

.footer-tagline {
    font-size: 14px;
    color: var(--color-text-muted);
    max-width: 320px;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text);
    margin-bottom: 20px;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-col a, .footer-links-col span {
    font-size: 13px;
    color: var(--color-text-muted);
}

.footer-links-col a:hover {
    color: var(--color-text);
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding: 30px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--color-text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a:hover {
    color: var(--color-text);
}

/* ==========================================================================
   RESPONSIVIDADE (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar-container {
        padding: 0 16px;
    }
    
    .nav-links {
        display: none; /* Mobile menu handles this */
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background-color: var(--color-bg);
        border-bottom: 1px solid var(--color-border);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger-menu {
        display: flex;
    }

    .manifesto-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .showcase-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .audit-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .audit-card {
        padding: 32px;
    }

    .specs-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

/* ==========================================================================
   PAIN CARDS & ICP SEGMENTS STYLING
   ========================================================================== */
.pain-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pain-card {
    padding: 20px 24px;
    border-radius: 16px;
    background: rgba(10, 10, 15, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.pain-card:hover,
.pain-card.active {
    transform: translateY(-4px);
    background: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.25);
}

.pain-card:hover h3,
.pain-card.active h3 {
    color: #111827;
    text-shadow: none;
}

.pain-card:hover p,
.pain-card.active p {
    color: #374151;
    text-shadow: none;
}

.pain-card:hover .pain-num,
.pain-card.active .pain-num {
    color: #064E3B;
    background: rgba(6, 78, 59, 0.1);
    border-color: rgba(6, 78, 59, 0.25);
    text-shadow: none;
}

.pain-num {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--color-accent-emerald);
    background: rgba(5, 150, 105, 0.15);
    border: 1px solid rgba(5, 150, 105, 0.4);
    padding: 3px 10px;
    border-radius: 12px;
    margin-bottom: 12px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
    transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.pain-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95);
    transition: color 0.3s ease;
}

.pain-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.9);
    transition: color 0.3s ease;
}

/* ICP Segments */
.segments-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.segment-card {
    padding: 40px;
    border-radius: 20px;
}

.segment-badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: rgba(0, 180, 216, 0.15);
    color: var(--color-accent-blue);
    border-radius: 20px;
    margin-bottom: 12px;
}

.segment-header h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}

.segment-pain, .segment-solution {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
}

.segment-pain strong, .segment-solution strong {
    color: var(--color-text);
}

.segment-metrics {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
}

.segment-metrics span {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-accent-purple);
}

/* ==========================================================================
   E-BOOK LEAD MAGNET SECTION STYLING (WHITE TEXT & BREATHING SPACE REVAMP)
   ========================================================================== */
.ebook-card {
    padding: 56px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(15, 15, 22, 0.95), rgba(28, 20, 42, 0.95));
    border: 1px solid rgba(168, 85, 247, 0.35);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(168, 85, 247, 0.15);
}

.ebook-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 56px;
    align-items: flex-start;
}

.ebook-title {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff; /* Crisp white title */
    margin-top: 14px;
    margin-bottom: 20px; /* Generous breathing space */
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.ebook-desc {
    color: rgba(255, 255, 255, 0.9); /* Crisp readable white/off-white */
    font-size: 15.5px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.ebook-bullets {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ebook-bullet-item {
    font-size: 15px;
    color: #ffffff; /* Crisp white bullet text */
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ebook-bullet-item svg {
    flex-shrink: 0;
}

/* Ebook Form & Input Breathing Space */
.ebook-form-container {
    background: rgba(10, 10, 15, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 36px 32px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.ebook-form {
    display: flex;
    flex-direction: column;
    gap: 22px; /* Generous breathing space between input groups */
}

.ebook-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Breathing space between input title/label and typing bar */
}

.ebook-form .form-group label {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff; /* Crisp white label text */
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.ebook-form .form-group input {
    background-color: rgba(15, 15, 22, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    padding: 16px 20px; /* Spacious input typing bar */
    color: #ffffff; /* Crisp white input text when typing */
    font-size: 15px;
    transition: all 0.25s ease;
}

.ebook-form .form-group input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.ebook-form .form-group input:focus {
    outline: none;
    border-color: #a855f7;
    background-color: rgba(20, 20, 30, 0.95);
    box-shadow: 0 0 18px rgba(168, 85, 247, 0.35);
}

.ebook-submit-btn {
    margin-top: 12px; /* Breathing space above submit button */
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 12px;
}

.ebook-form .form-disclaimer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75); /* Readable crisp disclaimer text */
    text-align: center;
    margin-top: 12px; /* Breathing space below button */
    line-height: 1.5;
}

/* ==========================================================================
   MODAL DIALOG STYLING
   ========================================================================== */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    transition: opacity 0.3s ease;
}

.modal-backdrop.hidden {
    display: none;
    opacity: 0;
    pointer-events: none;
}

.modal-dialog {
    position: relative;
    width: 100%;
    max-width: 480px;
    padding: 40px;
    border-radius: 24px;
    background-color: #121216;
    border: 1px solid rgba(157, 78, 221, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 28px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: var(--color-text);
}

.modal-header {
    margin-bottom: 24px;
}

.modal-header h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 8px 0;
}

.modal-header p {
    font-size: 13px;
    color: var(--color-text-muted);
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Media Queries for New Components */
@media (max-width: 900px) {
    .pain-cards-grid, .segments-grid, .ebook-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ebook-card {
        padding: 32px;
    }
}

/* ==========================================================================
   BENTO MONOCHROME GRID (CAPTURE.PNG LIGHT GRADIENT REVAMP)
   ========================================================================== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(130px, auto);
    gap: 16px;
    margin-top: 36px;
}

/* Light White/Gray Gradient Bento Cards (Capture.PNG Style) */
.bento-card-light {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 22px 26px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(241, 243, 246, 0.92) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.bento-card-light:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-color: #ffffff;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08), 0 0 24px rgba(168, 85, 247, 0.12);
}

.bento-card-span-4-2 {
    grid-column: span 4;
    grid-row: span 2;
}

.bento-card-span-2-1 {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-card-span-3-1 {
    grid-column: span 3;
    grid-row: span 1;
}

.bento-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
}

.bento-card-title-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bento-card-light .bento-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: #111827;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    flex-shrink: 0;
}

.bento-card-light .bento-title {
    font-size: 13.5px;
    font-weight: 800;
    color: #111827;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0;
    line-height: 1.2;
}

.bento-card-light .bento-meta-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #6b7280;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.7);
    border-radius: 9999px;
    padding: 2px 9px;
    flex-shrink: 0;
}

.bento-card-light .bento-blurb {
    font-size: 13px;
    line-height: 1.6;
    color: #4b5563;
    margin-top: 12px;
}

/* Sizing & Breathing Space for Section Header */
.bento-section-title {
    font-size: 2.1rem !important; /* Refined smaller title size */
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-top: 12px;
    margin-bottom: 20px; /* Generous breathing space */
}

.bento-section-desc {
    font-size: 0.98rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.75);
}

.bento-card-light .bento-preview-widget {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 12px 16px;
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bento-card-light .bento-widget-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.bento-card-light .widget-label {
    color: #6b7280;
    font-weight: 500;
}

.bento-card-light .widget-value {
    font-weight: 700;
}

.bento-card-light .widget-value.green {
    color: #059669;
}

.bento-card-light .widget-value.purple {
    color: #7c3aed;
}

/* Bento Animations matching bento-monochrome.tsx */
.icon-float {
    animation: bento-float 6s ease-in-out infinite;
}

.icon-pulse {
    animation: bento-pulse 4s ease-in-out infinite;
}

.icon-tilt {
    animation: bento-tilt 5.5s ease-in-out infinite;
}

.icon-drift {
    animation: bento-drift 8s ease-in-out infinite;
}

.icon-glow {
    animation: bento-glow 7s ease-in-out infinite;
}

@keyframes bento-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

@keyframes bento-pulse {
    0%, 100% { transform: scale(1); opacity: 0.85; }
    50% { transform: scale(1.08); opacity: 1; }
}

@keyframes bento-tilt {
    0% { transform: rotate(-2deg); }
    50% { transform: rotate(2deg); }
    100% { transform: rotate(-2deg); }
}

@keyframes bento-drift {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(4px, -4px, 0); }
}

@keyframes bento-glow {
    0%, 100% { opacity: 0.7; filter: drop-shadow(0 0 0 rgba(168,85,247,0.4)); }
    50% { opacity: 1; filter: drop-shadow(0 0 6px rgba(168,85,247,0.6)); }
}

@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-card-span-4-2,
    .bento-card-span-2-1,
    .bento-card-span-3-1 {
        grid-column: span 1;
        grid-row: span 1;
    }
}

