/* ============================================
           CSS VARIABLES & RESET
        ============================================ */
        :root {
            --color-bg-primary: #000000;
            --color-bg-secondary: #0a0a0a;
            --color-accent-orange: #FF6600;
            --color-accent-orange-light: #FF8833;
            --color-accent-orange-dark: #CC5200;
            --color-text-primary: #FFFFFF;
            --color-text-secondary: #B3B3B3;
            --color-text-muted: #808080;
            --color-border: #1a1a1a;
            --color-border-light: #2a2a2a;
            
            --gradient-orange: linear-gradient(135deg, var(--color-accent-orange) 0%, var(--color-accent-orange-dark) 100%);
            --gradient-hero: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, rgba(0, 0, 0, 0.9) 100%);
            
            --border-radius-sm: 8px;
            --border-radius-md: 12px;
            --border-radius-lg: 16px;
            --border-radius-xl: 24px;
            
            --spacing-xs: 0.5rem;
            --spacing-sm: 1rem;
            --spacing-md: 2rem;
            --spacing-lg: 4rem;
            --spacing-xl: 6rem;
            
            /* Responsive Spacing */
            --spacing-section-mobile: 3rem;
            --spacing-section-tablet: 4rem;
            --spacing-section-desktop: 6rem;
            
            --font-family-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            --font-weight-normal: 400;
            --font-weight-medium: 500;
            --font-weight-semibold: 600;
            --font-weight-bold: 700;
            
            --transition-default: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --shadow-sm: 0 2px 8px rgba(255, 102, 0, 0.1);
            --shadow-md: 0 4px 16px rgba(255, 102, 0, 0.15);
            --shadow-lg: 0 8px 32px rgba(255, 102, 0, 0.2);
        }
        
        /* ============================================
           TAILWIND CAROUSEL CUSTOMIZATIONS
        ============================================ */
        
        /* Esconder scrollbar (mantém funcionalidade de scroll) */
        .scrollbar-none {
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none; /* IE/Edge */
        }
        
        .scrollbar-none::-webkit-scrollbar {
            display: none; /* Chrome, Safari, Opera */
        }
        
        /* Efeito de brilho laranja no card ativo */
        .recurso-card-tw.active-card-tw {
            transform: scale(1.05);
            box-shadow: 
                0 0 30px rgba(255, 107, 0, 0.5),
                0 0 60px rgba(255, 107, 0, 0.3),
                0 10px 40px rgba(0, 0, 0, 0.4);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 10;
        }
        
        /* Indicadores do carrossel */
        .carousel-indicator-tw {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.3);
            border: 2px solid transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .carousel-indicator-tw:hover {
            background-color: rgba(255, 255, 255, 0.5);
            transform: scale(1.2);
        }
        
        .carousel-indicator-tw.active {
            background-color: #FF6600;
            border-color: #FF6600;
            box-shadow: 0 0 10px rgba(255, 102, 0, 0.6);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        /* Prevent horizontal overflow globally */
        *, *::before, *::after {
            max-width: 100%;
        }
        
        /* Allow specific elements to exceed */
        img, video, canvas, svg {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        /* Ensure grid and flex children respect container width */
        .container > *,
        .section > * {
            min-width: 0;
            min-height: 0;
        }
        
        html {
            scroll-behavior: smooth;
            font-size: 16px;
            overflow-x: hidden;
            max-width: 100vw;
            /* iOS viewport fix */
            min-height: 100vh;
            min-height: -webkit-fill-available;
        }
        
        @media (max-width: 380px) {
            html {
                font-size: 14px;
            }
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: var(--color-bg-primary);
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--color-accent-orange);
            border-radius: 5px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: var(--color-accent-orange-light);
        }
        
        body {
            font-family: var(--font-family-primary);
            background-color: var(--color-bg-primary);
            color: var(--color-text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
            min-height: 100vh;
            min-height: -webkit-fill-available; /* iOS fix */
            width: 100%;
            max-width: 100vw;
        }
        
        body.menu-open {
            overflow: hidden;
        }
        
        @media (max-width: 768px) {
            body {
                background-attachment: scroll;
            }
        }
        
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            z-index: -1;
        }
        
        /* ============================================
           TYPOGRAPHY
        ============================================ */
        h1, h2, h3, h4, h5, h6 {
            font-weight: var(--font-weight-bold);
            line-height: 1.2;
        }
        
        h1 {
            font-size: clamp(2rem, 6vw + 0.5rem, 4rem);
            line-height: 1.1;
        }
        
        h2 {
            font-size: clamp(1.75rem, 5vw + 0.25rem, 3rem);
            line-height: 1.2;
        }
        
        h3 {
            font-size: clamp(1.25rem, 3vw + 0.25rem, 2rem);
            line-height: 1.3;
        }
        
        h4 {
            font-size: clamp(1.125rem, 2.5vw, 1.5rem);
            line-height: 1.4;
        }
        
        p {
            font-size: clamp(0.9375rem, 1.5vw + 0.25rem, 1.125rem);
            color: var(--color-text-secondary);
            line-height: 1.6;
        }
        
        .text-gradient {
            background: var(--gradient-orange);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* ============================================
           UTILITY CLASSES
        ============================================ */
        .container {
            max-width: min(1280px, 100%);
            margin: 0 auto;
            padding: 0 clamp(1rem, 3vw, 2rem);
            box-sizing: border-box;
            width: 100%;
            /* CORREÇÃO: overflow-x hidden apenas, overflow-y visible para shadows */
            overflow-x: hidden;
            overflow-y: visible;
        }
        
        .section {
            padding: clamp(3rem, 8vw, 6rem) 0;
            position: relative;
            /* CORREÇÃO CRÍTICA: overflow visible para não clipar elementos filhos como carrossel */
            overflow: visible;
        }
        
        .section > .container {
            background: rgba(0, 0, 0, 0.4);
            border-radius: clamp(8px, 2vw, 16px);
            padding: clamp(1.5rem, 3vw, 2rem);
            backdrop-filter: blur(5px);
            box-sizing: border-box;
            width: 100%;
            /* CORREÇÃO CRÍTICA: overflow visible para não clipar carrossel */
            overflow: visible;
        }
        
        .btn {
            display: inline-block;
            padding: clamp(0.75rem, 2vw, 1rem) clamp(1.25rem, 3vw, 2rem);
            border-radius: var(--border-radius-md);
            font-weight: var(--font-weight-semibold);
            text-decoration: none;
            transition: var(--transition-default);
            cursor: pointer;
            border: none;
            font-size: clamp(0.9rem, 2vw, 1rem);
            text-align: center;
            min-height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            white-space: nowrap;
            box-sizing: border-box;
        }
        
        .btn-primary {
            background: var(--gradient-orange);
            color: var(--color-text-primary);
            box-shadow: var(--shadow-md);
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }
        
        .btn-outline {
            background: transparent;
            color: var(--color-accent-orange);
            border: 2px solid var(--color-accent-orange);
        }
        
        .btn-outline:hover {
            background: var(--color-accent-orange);
            color: var(--color-text-primary);
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
        }
        
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        
        .animate-on-scroll.is-visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* ============================================
           HEADER MOBILE-FIRST - REFINADO
        ============================================ */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1100;
            /* MOBILE: Fundo sólido #0a0a0a */
            background: #0a0a0a;
            /* MOBILE: Border bottom sutil */
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            width: 100%;
            /* MOBILE: Altura mínima 64px */
            min-height: 64px;
            /* Transição suave para scroll effect */
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        /* SCROLL EFFECT - Backdrop blur + shadow quando rolar */
        header.scrolled {
            background: rgba(10, 10, 10, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            border-bottom-color: rgba(232, 119, 34, 0.2);
        }
        
        /* HEADER CONTAINER - Mobile First */
        .header-container {
            display: flex;
            align-items: center;
            gap: 1rem;
            /* MOBILE: Padding lateral 16px conforme spec */
            padding: 0 1rem;
            min-height: 64px;
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            position: relative;
        }
        
        @media (min-width: 768px) {
            .header-container {
                padding: 0 2rem;
                min-height: 72px;
            }
        }
        
        @media (min-width: 1024px) {
            .header-container {
                padding: 0 2rem;
                gap: 1.5rem;
            }
        }
        
        /* MOBILE: Container para agrupar logo + hamburguer à esquerda */
        .header-left-group {
            display: flex;
            align-items: center;
            gap: 0.75rem; /* 12px entre logo e hamburguer */
        }
        
        /* LOGO - Container Estilizado Mobile */
        .logo {
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-text-primary);
            text-decoration: none;
            z-index: 1101;
            flex-shrink: 0;
            /* MOBILE: Container com borda + background */
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 8px;
            padding: 0.5rem;
            background: #1a1a1a;
            transition: all 0.25s ease;
            position: relative;
            overflow: hidden;
        }
        
        .logo::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(232, 119, 34, 0.1) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.25s ease;
        }
        
        .logo:active {
            background: rgba(232, 119, 34, 0.1);
            border-color: rgba(232, 119, 34, 0.3);
        }
        
        .logo:active::before {
            opacity: 1;
        }
        
        /* MOBILE: Altura da logo 32px, nunca distorcida */
        .logo img {
            height: 32px;
            width: auto;
            object-fit: contain;
            display: block;
            position: relative;
            z-index: 1;
        }
        
        @media (min-width: 768px) {
            .logo {
                padding: 0.625rem;
            }
            
            .logo img {
                height: 36px;
            }
            
            .logo:hover {
                border-color: rgba(232, 119, 34, 0.3);
                background: rgba(232, 119, 34, 0.05);
            }
            
            .logo:hover::before {
                opacity: 0.7;
            }
        }
        
        @media (min-width: 1024px) {
            .logo {
                padding: 0.75rem;
            }
            
            .logo img {
                height: 40px;
            }
        }
        
        /* MENU TOGGLE (Hamburguer) - Touch Friendly 44x44px */
        .menu-toggle {
            /* MOBILE: Tamanho mínimo touch 44x44px */
            min-width: 44px;
            min-height: 44px;
            width: 44px;
            height: 44px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 5px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 1101;
            /* MOBILE: Transição leve */
            transition: all 0.25s ease;
        }
        
        /* MOBILE: 3 linhas CSS puras, cor laranja #e87722 */
        .menu-toggle span {
            display: block;
            width: 22px;
            height: 2px;
            background: #e87722;
            border-radius: 2px;
            transition: all 0.25s ease;
        }
        
        .menu-toggle:active {
            opacity: 0.7;
        }
        
        /* Animação do hamburguer ao abrir */
        .menu-toggle.active span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }
        
        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        
        .menu-toggle.active span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }
        
        @media (min-width: 1024px) {
            .menu-toggle {
                display: none;
            }
        }
        
        /* NAV WRAPPER - Oculto no mobile, visível no desktop */
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-left: auto;
        }
        
        @media (min-width: 1024px) {
            .nav-wrapper {
                gap: 1rem;
            }
        }
        
        /* LANGUAGE SWITCHER - Pill à Direita */
        .language-switcher {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            /* MOBILE: Borda laranja sutil */
            border: 1px solid rgba(232, 119, 34, 0.5);
            border-radius: 20px;
            /* MOBILE: Padding 6px 12px */
            padding: 0.375rem 0.75rem;
            background: transparent;
            cursor: pointer;
            transition: all 0.25s ease;
            /* MOBILE: Font 12px, weight 600 */
            font-size: 0.75rem;
            font-weight: 600;
            color: #e87722;
            z-index: 1101;
            flex-shrink: 0;
            position: relative;
        }
        
        .language-switcher:active {
            background: rgba(232, 119, 34, 0.15);
            border-color: rgba(232, 119, 34, 0.8);
        }
        
        @media (min-width: 768px) {
            .language-switcher {
                padding: 0.5rem 0.875rem;
                font-size: 0.8125rem;
            }
        }
        
        @media (min-width: 1024px) {
            .language-switcher {
                /* Desktop: Divider visual à esquerda */
                margin-left: 0.75rem;
            }
            
            .language-switcher::before {
                content: '';
                position: absolute;
                left: -0.75rem;
                top: 50%;
                transform: translateY(-50%);
                width: 1px;
                height: 24px;
                background: rgba(255, 255, 255, 0.1);
            }
            
            .language-switcher:hover {
                border-color: rgba(232, 119, 34, 0.7);
                background: rgba(232, 119, 34, 0.08);
            }
        }
        
        .language-switcher-icon {
            font-size: 1rem;
        }
        
        /* ============================================
           HERO SECTION
        ============================================ */
        .hero {
            min-height: 100vh;
            min-height: 100dvh; /* Dynamic viewport height for mobile */
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding-top: clamp(70px, 10vh, 80px);
            padding-bottom: clamp(2rem, 5vh, 3rem);
        }
        
        .hero .container {
            background: rgba(0, 0, 0, 0.5);
            border-radius: var(--border-radius-md);
            padding: 2rem 1.5rem;
            backdrop-filter: blur(8px);
        }
        
        @media (min-width: 768px) {
            .hero .container {
                border-radius: var(--border-radius-xl);
                padding: var(--spacing-lg);
            }
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: radial-gradient(circle at 80% 50%, rgba(255, 102, 0, 0.15) 0%, transparent 70%);
            pointer-events: none;
        }
        
        .hero-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            align-items: center;
        }
        
        @media (min-width: 768px) {
            .hero-content {
                gap: 3rem;
            }
        }
        
        @media (min-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr 1fr;
                gap: 4rem;
            }
        }
        
        .hero-text h1 {
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.8s ease-out;
        }
        
        .hero-text .subheadline {
            font-size: clamp(1.125rem, 2vw, 1.5rem);
            color: var(--color-text-secondary);
            margin-bottom: 2rem;
            line-height: 1.6;
            animation: fadeInUp 0.8s ease-out 0.2s backwards;
        }
        
        .hero-text .highlight {
            color: var(--color-accent-orange);
            font-weight: var(--font-weight-semibold);
        }
        
        .hero-cta {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease-out 0.4s backwards;
        }
        
        @media (min-width: 480px) {
            .hero-cta {
                gap: 1rem;
            }
        }
        
        .hero-image {
            position: relative;
            animation: fadeIn 1s ease-out 0.6s backwards;
        }
        
        .hero-image-placeholder {
            width: 100%;
            height: clamp(280px, 40vh, 500px);
            background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, rgba(255, 102, 0, 0.05) 100%);
            border-radius: clamp(12px, 3vw, 24px);
            border: 1px solid var(--color-border-light);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-image-placeholder::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255, 102, 0, 0.3) 0%, transparent 70%);
            border-radius: 50%;
            animation: pulse 4s ease-in-out infinite;
        }
        
        /* ============================================
           HOUSE LEARNING
        ============================================ */
        .house-learning {
            background: linear-gradient(135deg, rgba(255, 102, 0, 0.05) 0%, var(--color-bg-primary) 100%);
        }
        
        .house-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            align-items: center;
        }
        
        @media (min-width: 768px) {
            .house-content {
                gap: 3rem;
            }
        }
        
        @media (min-width: 1024px) {
            .house-content {
                grid-template-columns: 1fr 1fr;
                gap: 4rem;
            }
        }
        
        .house-subtitle {
            color: var(--color-accent-orange);
            font-size: clamp(1.5rem, 3vw, 2rem);
            margin-bottom: 1.5rem;
        }
        
        .house-text p {
            font-size: 1.125rem;
            margin-bottom: 2rem;
            line-height: 1.8;
        }
        
        .house-quote {
            background: rgba(255, 102, 0, 0.1);
            border-left: 4px solid var(--color-accent-orange);
            padding: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: var(--color-text-secondary);
            border-radius: var(--border-radius-sm);
        }
        
        .house-visual {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .house-icon-large {
            font-size: 15rem;
            opacity: 0.2;
            animation: pulse 4s ease-in-out infinite;
        }
        
        /* ============================================
           PRODUTORA AUDIOVISUAL
        ============================================ */
        .produtora {
            background: var(--color-bg-secondary);
        }
        
        .produtora-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: clamp(0.75rem, 2vw, 1.5rem);
            margin-top: 2rem;
        }
        
        @media (min-width: 640px) {
            .produtora-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (min-width: 1024px) {
            .produtora-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                margin-top: 3rem;
            }
        }
        
        .produtora-card {
            background: rgba(0, 0, 0, 0.7);
            border: 2px solid var(--color-border-light);
            border-radius: var(--border-radius-md);
            padding: clamp(1.25rem, 3vw, 2rem);
            text-align: center;
            transition: var(--transition-default);
            cursor: pointer;
            backdrop-filter: blur(5px);
        }
        
        .produtora-card:hover {
            border-color: var(--color-accent-orange);
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        
        .produtora-icon {
            font-size: clamp(2.5rem, 6vw, 3rem);
            margin-bottom: clamp(0.75rem, 2vw, 1rem);
        }
        
        .produtora-card h3 {
            font-size: 1.125rem;
            color: var(--color-text-primary);
        }
        
        /* ============================================
           PORTFÓLIO DE RECURSOS - CARROSSEL
        ============================================ */
        .portfolio-recursos {
            background: var(--color-bg-primary);
            /* CORREÇÃO CRÍTICA: overflow visible para não clipar cards */
            overflow: visible;
        }
        
        /* CORREÇÃO CRÍTICA: Remover border-radius que estava clipando visualmente os cards */
        .portfolio-recursos > .container {
            border-radius: 0 !important;
            /* Padding EXTRA para dar espaço real aos cards com shadows */
            padding: clamp(3rem, 5vw, 4rem) clamp(1.5rem, 3vw, 2rem) !important;
            /* Garantir que backdrop-filter não crie contexto de clipping */
            backdrop-filter: none !important;
            background: transparent !important;
        }
        
        /* CORREÇÃO: Container pai com overflow visible E padding extra para shadows */
        .recursos-carousel-container {
            position: relative;
            margin-top: 0;
            /* CORREÇÃO: Padding vertical MASSIVO para garantir espaço para shadows */
            padding: clamp(4rem, 8vw, 6rem) 0;
            /* CRÍTICO: overflow visible para não cortar cards laterais */
            overflow: visible !important;
            width: 100%;
        }
        
        @media (min-width: 1024px) {
            .recursos-carousel-container {
                margin-top: 0;
                padding: clamp(5rem, 8vw, 7rem) 0;
            }
        }
        
        /* CORREÇÃO: Wrapper interno sem clipping */
        .recursos-carousel {
            /* CRÍTICO: overflow visible para não cortar cards */
            overflow: visible !important;
            /* CORREÇÃO: Padding vertical para acomodar transform scale e shadows */
            padding: clamp(2rem, 4vw, 3rem) 0;
            position: relative;
            width: 100%;
        }
        
        /* CORREÇÃO CRÍTICA: Track de scroll com espaço para shadows */
        .recursos-grid {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            gap: clamp(1rem, 2vw, 2rem);
            will-change: transform;
            /* CORREÇÃO: Padding EXTRA top/bottom para acomodar shadows e scale */
            padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1rem, 3vw, 2rem);
            /* Scroll snapping para navegação suave */
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            /* CORREÇÃO: scroll-padding para respeitar o padding nas laterais */
            scroll-padding-inline: clamp(1rem, 3vw, 2rem);
            /* CRÍTICO: overflow-x auto para scroll, overflow-y visible para shadows */
            overflow-x: auto;
            overflow-y: visible !important;
            /* Esconder scrollbar nativa */
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none; /* IE/Edge */
            -webkit-overflow-scrolling: touch;
        }
        
        /* Esconder scrollbar WebKit (Chrome, Safari) */
        .recursos-grid::-webkit-scrollbar {
            display: none;
            width: 0 !important;
            height: 0 !important;
        }
        
        /* CORREÇÃO AVANÇADA: Cards com espaço para shadows e transform */
        .recurso-card {
            /* Mobile: 1 card de ~90% da largura */
            min-width: 85%;
            max-width: 85%;
            /* CORREÇÃO: Altura mínima maior para evitar achatamento */
            min-height: 240px;
            /* CORREÇÃO: Altura fixa para mobile evita distorções */
            height: auto;
            /* CORREÇÃO: Aspect ratio mantém proporções */
            aspect-ratio: 3 / 4;
            background: rgba(10, 10, 10, 0.85);
            border-radius: var(--border-radius-lg);
            /* CORREÇÃO: Padding vertical maior para evitar conteúdo espremido */
            padding: clamp(2.5rem, 6vw, 3rem) clamp(1.5rem, 4vw, 2rem);
            text-align: center;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                        transform 0.3s ease,
                        box-shadow 0.4s ease,
                        opacity 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(8px);
            flex-shrink: 0;
            will-change: transform, box-shadow;
            opacity: 0.7;
            /* Scroll snap alignment para centralizar cards */
            scroll-snap-align: center;
            scroll-snap-stop: always;
            /* CORREÇÃO: Flexbox para distribuir conteúdo verticalmente */
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: clamp(0.75rem, 2vw, 1rem);
            box-sizing: border-box;
            /* CORREÇÃO CRÍTICA: Margin para que shadows não sejam clipados */
            margin: clamp(1rem, 2vw, 1.5rem) 0;
        }
        
        .recurso-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 102, 0, 0.15), transparent);
            transition: left 0.5s ease;
        }
        
        .recurso-card:hover::before {
            left: 100%;
        }
        
        .recurso-card:hover {
            border-color: var(--color-accent-orange);
            transform: scale(1.03);
            box-shadow: 0 15px 40px rgba(255, 102, 0, 0.3);
            z-index: 5;
            opacity: 1;
        }
        
        /* DESTAQUE DO CARD CENTRAL/ATIVO */
        .recurso-card.active-card {
            opacity: 1;
            transform: scale(1.05);
            border-color: var(--color-accent-orange);
            box-shadow: 0 0 30px rgba(255, 107, 0, 0.4),
                        0 0 60px rgba(255, 107, 0, 0.2),
                        0 10px 40px rgba(0, 0, 0, 0.3);
            z-index: 10;
        }
        
        .recurso-card.active-card::after {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(135deg, 
                        rgba(255, 107, 0, 0.3) 0%, 
                        rgba(255, 107, 0, 0.1) 50%,
                        rgba(255, 107, 0, 0.3) 100%);
            border-radius: var(--border-radius-lg);
            z-index: -1;
            opacity: 0;
            animation: pulse-glow 2s ease-in-out infinite;
        }
        
        @keyframes pulse-glow {
            0%, 100% {
                opacity: 0.3;
                transform: scale(1);
            }
            50% {
                opacity: 0.6;
                transform: scale(1.02);
            }
        }
        
        /* CORREÇÃO: Ícone com tamanho proporcional */
        .recurso-icon {
            font-size: clamp(3.5rem, 9vw, 5rem);
            margin-bottom: 0;
            display: block;
            flex-shrink: 0;
            line-height: 1;
        }
        
        /* CORREÇÃO: Título com espaçamento otimizado */
        .recurso-card h3 {
            font-size: clamp(1.125rem, 2.8vw, 1.35rem);
            color: var(--color-text-primary);
            font-weight: var(--font-weight-bold);
            line-height: 1.25;
            margin: 0;
            text-align: center;
        }
        
        /* CORREÇÃO: Botões posicionados FORA do track, não competindo com espaço dos cards */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 102, 0, 0.95);
            border: none;
            /* Tamanho mínimo touch-friendly */
            width: clamp(44px, 10vw, 60px);
            height: clamp(44px, 10vw, 60px);
            min-width: 44px;
            min-height: 44px;
            border-radius: 50%;
            color: white;
            font-size: clamp(1.25rem, 3vw, 1.75rem);
            font-weight: bold;
            cursor: pointer;
            z-index: 100;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(255, 102, 0, 0.5),
                        0 0 0 0 rgba(255, 102, 0, 0);
            backdrop-filter: blur(5px);
            /* CRÍTICO: Posicionados fora do track, relativo ao container pai */
            margin: 0;
        }
        
        @media (min-width: 768px) {
            .carousel-btn {
                box-shadow: 0 6px 25px rgba(255, 102, 0, 0.5);
            }
        }
        
        .carousel-btn:hover {
            background: rgba(255, 102, 0, 1);
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 8px 30px rgba(255, 102, 0, 0.5),
                        0 0 20px rgba(255, 102, 0, 0.3);
        }
        
        .carousel-btn:active {
            transform: translateY(-50%) scale(0.95);
        }
        
        /* CORREÇÃO: Posicionamento absoluto fora do track para não cortar cards */
        .carousel-btn.prev {
            /* CRÍTICO: Posicionado fora do container de cards */
            left: clamp(-5px, -1vw, -10px);
        }
        
        .carousel-btn.next {
            /* CRÍTICO: Posicionado fora do container de cards */
            right: clamp(-5px, -1vw, -10px);
        }
        
        @media (min-width: 768px) {
            .carousel-btn.prev {
                left: clamp(-10px, -1.5vw, -20px);
            }
            
            .carousel-btn.next {
                right: clamp(-10px, -1.5vw, -20px);
            }
        }
        
        /* CORREÇÃO RESPONSIVIDADE: Indicadores com espaçamento adequado */
        .carousel-indicators {
            display: flex;
            justify-content: center;
            gap: clamp(0.5rem, 1.5vw, 0.75rem);
            margin-top: clamp(1.5rem, 3vw, 2rem);
            padding: 0 1rem;
        }
        
        .carousel-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            border: none;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }
        
        .carousel-indicator.active {
            background: var(--color-accent-orange);
            width: 30px;
            border-radius: 6px;
            box-shadow: 0 0 15px rgba(255, 107, 0, 0.5),
                        0 0 30px rgba(255, 107, 0, 0.3);
        }
        
        .carousel-indicator:hover {
            background: rgba(255, 102, 0, 0.6);
            transform: scale(1.2);
        }
        
        .carousel-indicator:not(.active):hover {
            box-shadow: 0 0 10px rgba(255, 107, 0, 0.4);
        }
        
        /* ============================================
           PEÇAS DIGITAIS DESTAQUE
        ============================================ */
        .pecas-digitais {
            background: var(--color-bg-secondary);
        }
        
        .pecas-showcase {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        @media (min-width: 768px) {
            .pecas-showcase {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
        }
        
        @media (min-width: 1024px) {
            .pecas-showcase {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                margin-top: 3rem;
            }
        }
        
        .peca-destaque {
            background: rgba(0, 0, 0, 0.75);
            border: 1px solid var(--color-border-light);
            border-radius: var(--border-radius-lg);
            padding: clamp(1.5rem, 3vw, 2.5rem);
            transition: var(--transition-default);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(5px);
        }
        
        .peca-destaque:hover {
            border-color: var(--color-accent-orange);
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }
        
        .peca-tag {
            display: inline-block;
            background: var(--gradient-orange);
            color: var(--color-text-primary);
            padding: 0.4rem 1rem;
            border-radius: var(--border-radius-sm);
            font-size: 0.75rem;
            font-weight: var(--font-weight-semibold);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }
        
        .peca-content h3 {
            margin-bottom: 1rem;
            color: var(--color-text-primary);
            font-size: 1.5rem;
        }
        
        .peca-content p {
            color: var(--color-text-secondary);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }
        
        .peca-icon-display {
            position: absolute;
            right: -30px;
            bottom: -30px;
            font-size: 8rem;
            opacity: 0.08;
            pointer-events: none;
        }
        
        /* ============================================
           DIFERENCIAIS (CRENÇAS)
        ============================================ */
        .diferenciais {
            background: var(--color-bg-secondary);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 2rem;
        }
        
        @media (min-width: 768px) {
            .section-header {
                margin-bottom: 3rem;
            }
        }
        
        @media (min-width: 1024px) {
            .section-header {
                margin-bottom: var(--spacing-lg);
            }
        }
        
        .section-header h2 {
            margin-bottom: 1rem;
        }
        
        .section-header p {
            max-width: 700px;
            margin: 0 auto;
        }
        
        .diferenciais-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        
        @media (min-width: 768px) {
            .diferenciais-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
        }
        
        @media (min-width: 1024px) {
            .diferenciais-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        .diferencial-card {
            background: rgba(0, 0, 0, 0.7);
            border: 1px solid var(--color-border-light);
            border-radius: var(--border-radius-lg);
            padding: clamp(1.5rem, 3vw, 2.5rem);
            text-align: center;
            transition: var(--transition-default);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(5px);
        }
        
        .diferencial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-orange);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
        .diferencial-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: var(--color-accent-orange);
        }
        
        .diferencial-card:hover::before {
            transform: scaleX(1);
        }
        
        .diferencial-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: rgba(255, 102, 0, 0.1);
            border-radius: var(--border-radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            transition: var(--transition-default);
        }
        
        .diferencial-card:hover .diferencial-icon {
            background: var(--gradient-orange);
            transform: scale(1.1);
        }
        
        .diferencial-card h3 {
            margin-bottom: 1rem;
            color: var(--color-text-primary);
        }
        
        .diferencial-card p {
            color: var(--color-text-secondary);
        }
        
        /* ============================================
           LABORATÓRIO DE SOLUÇÕES
        ============================================ */
        .laboratorio {
            position: relative;
        }
        
        .solucoes-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        @media (min-width: 480px) {
            .solucoes-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (min-width: 1024px) {
            .solucoes-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 2rem;
                margin-top: 3rem;
            }
        }
        
        .solucao-card {
            background: rgba(10, 10, 10, 0.7);
            border: 1px solid var(--color-border-light);
            border-radius: var(--border-radius-lg);
            padding: clamp(1.5rem, 3vw, 2.5rem);
            text-align: center;
            transition: var(--transition-default);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(5px);
        }
        
        .solucao-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--gradient-orange);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 0;
        }
        
        .solucao-card:hover::after {
            opacity: 0.05;
        }
        
        .solucao-card > * {
            position: relative;
            z-index: 1;
        }
        
        .solucao-icon {
            width: 100px;
            height: 100px;
            margin: 0 auto 1.5rem;
            background: rgba(255, 102, 0, 0.08);
            border: 2px solid var(--color-accent-orange);
            border-radius: var(--border-radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            transition: var(--transition-default);
        }
        
        .solucao-card:hover .solucao-icon {
            transform: scale(1.05) rotate(5deg);
            box-shadow: var(--shadow-lg);
        }
        
        .solucao-card h3 {
            margin-bottom: 1rem;
        }
        
        .solucao-card p {
            font-size: 0.95rem;
        }
        
        /* ============================================
           MODELOS DE ATUAÇÃO
        ============================================ */
        .modelos {
            background: var(--color-bg-secondary);
        }
        
        .tabs-container {
            max-width: 900px;
            margin: 2rem auto 0;
            background: rgba(0, 0, 0, 0.3);
            padding: 1.5rem;
            border-radius: var(--border-radius-md);
            backdrop-filter: blur(5px);
        }
        
        @media (min-width: 768px) {
            .tabs-container {
                margin: 3rem auto 0;
                padding: 2rem;
                border-radius: var(--border-radius-lg);
            }
        }
        
        .tabs-nav {
            display: flex;
            gap: clamp(0.5rem, 2vw, 1rem);
            margin-bottom: 2rem;
            border-bottom: 2px solid var(--color-border-light);
            flex-direction: column;
            overflow-x: auto;
            overflow-y: hidden;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
            scrollbar-color: var(--color-accent-orange) transparent;
            scroll-padding: 1rem;
        }
        
        @media (min-width: 640px) {
            .tabs-nav {
                flex-direction: row;
                flex-wrap: nowrap;
            }
        }
        
        .tabs-nav::-webkit-scrollbar {
            height: 3px;
        }
        
        .tabs-nav::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.05);
        }
        
        .tabs-nav::-webkit-scrollbar-thumb {
            background: var(--color-accent-orange);
            border-radius: 2px;
        }
        
        .tab-button {
            background: transparent;
            border: none;
            color: var(--color-text-secondary);
            font-size: clamp(0.875rem, 2vw, 1rem);
            font-weight: var(--font-weight-semibold);
            padding: clamp(0.625rem, 2vw, 1rem) clamp(0.75rem, 2vw, 1.5rem);
            cursor: pointer;
            transition: var(--transition-default);
            border-bottom: 3px solid transparent;
            white-space: nowrap;
            min-height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .tab-button:hover {
            color: var(--color-accent-orange);
        }
        
        .tab-button.active {
            color: var(--color-accent-orange);
            border-bottom-color: var(--color-accent-orange);
        }
        
        .tab-content {
            display: none;
            animation: fadeInUp 0.5s ease-out;
        }
        
        .tab-content.active {
            display: block;
        }
        
        .tab-panel {
            background: rgba(0, 0, 0, 0.7);
            border: 1px solid var(--color-border-light);
            border-radius: var(--border-radius-lg);
            padding: 1.5rem;
            backdrop-filter: blur(5px);
        }
        
        @media (min-width: 768px) {
            .tab-panel {
                padding: 2.5rem;
            }
        }
        
        .tab-panel h3 {
            margin-bottom: 1.5rem;
            color: var(--color-accent-orange);
        }
        
        .tab-panel p {
            font-size: 1.125rem;
            line-height: 1.8;
        }
        
        /* ============================================
           PRODUÇÃO DE CONTEÚDOS
        ============================================ */
        .producao-conteudos {
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%);
        }
        
        .producao-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            align-items: center;
        }
        
        @media (min-width: 1024px) {
            .producao-content {
                grid-template-columns: 1fr 1fr;
                gap: 3rem;
            }
        }
        
        .producao-text h2 {
            font-size: clamp(2rem, 4vw, 3.5rem);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .producao-text p {
            font-size: 1.125rem;
            line-height: 1.8;
            margin-bottom: 1rem;
        }
        
        .producao-examples {
            display: grid;
            gap: 1.5rem;
        }
        
        .producao-example {
            background: rgba(0, 0, 0, 0.75);
            border: 1px solid var(--color-border-light);
            border-radius: var(--border-radius-lg);
            padding: 1.5rem;
            transition: var(--transition-default);
            position: relative;
            overflow: hidden;
        }
        
        .producao-example:hover {
            transform: translateY(-4px);
            border-color: var(--color-accent-orange);
            box-shadow: var(--shadow-md);
        }
        
        .producao-example h4 {
            color: var(--color-text-primary);
            margin-bottom: 0.75rem;
            font-size: 1.125rem;
        }
        
        .producao-example p {
            font-size: 0.95rem;
            color: var(--color-text-secondary);
        }
        
        .producao-button {
            display: inline-block;
            margin-top: 0.75rem;
            padding: 0.5rem 1.5rem;
            background: #DC143C;
            color: white;
            border-radius: 25px;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: var(--font-weight-semibold);
            transition: var(--transition-default);
        }
        
        .producao-button:hover {
            background: #B01030;
            transform: scale(1.05);
        }
        
        /* ============================================
           DEPOIMENTOS
        ============================================ */
        .depoimentos {
            overflow-x: hidden;
        }
        
        .depoimentos-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin-top: 2rem;
            width: 100%;
        }
        
        @media (min-width: 480px) {
            .depoimentos-grid {
                gap: 2rem;
            }
        }
        
        @media (min-width: 768px) {
            .depoimentos-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
        }
        
        @media (min-width: 1024px) {
            .depoimentos-grid {
                grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
                margin-top: 3rem;
            }
        }
        
        .depoimento-card {
            background: rgba(0, 0, 0, 0.75);
            border: 3px solid var(--color-accent-orange);
            border-radius: 30px;
            padding: 1.5rem;
            position: relative;
            transition: var(--transition-default);
            backdrop-filter: blur(5px);
            overflow: hidden;
            width: 100%;
            box-sizing: border-box;
        }
        
        @media (min-width: 769px) {
            .depoimento-card {
                padding: 2rem;
            }
        }
        
        .depoimento-card::before {
            display: none;
        }
        
        .depoimento-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 32px rgba(255, 102, 0, 0.3);
            border-color: var(--color-accent-orange-light);
        }
        
        .depoimento-whatsapp {
            background: white;
            border-radius: var(--border-radius-md);
            padding: 1rem;
            margin-bottom: 1.5rem;
            min-height: 120px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            overflow: hidden;
            position: relative;
        }
        
        .depoimento-whatsapp img {
            width: 100%;
            height: auto;
            object-fit: contain;
            border-radius: clamp(6px, 1.5vw, 8px);
            max-width: 100%;
            max-height: 300px;
            display: block;
            margin: 0 auto;
        }
        
        @media (max-width: 380px) {
            .depoimento-whatsapp img {
                max-height: 250px;
            }
        }
        
        @media (min-width: 769px) {
            .depoimento-whatsapp {
                padding: 1.5rem;
            }
        }
        
        .depoimento-text {
            font-style: normal;
            color: #333;
            margin-bottom: 0;
            position: relative;
            z-index: 1;
            font-size: 0.95rem;
            line-height: 1.5;
        }
        
        .depoimento-whatsapp-time {
            font-size: 0.75rem;
            color: #666;
            text-align: right;
            margin-top: 0.5rem;
        }
        
        .depoimento-whatsapp-icon {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }
        
        .depoimento-author {
            display: block;
            text-align: center;
        }
        
        .author-avatar {
            display: none;
        }
        
        .author-info {
            text-align: center;
        }
        
        .author-info h4 {
            color: white;
            font-size: 1.125rem;
            margin-bottom: 0;
            font-weight: var(--font-weight-bold);
        }
        
        .author-info p {
            display: none;
        }
        
        /* ============================================
           SEÇÃO DE CONTATO / CAPTAÇÃO DE LEADS
        ============================================ */
        .contato-section {
            background: linear-gradient(135deg, rgba(255, 102, 0, 0.05) 0%, rgba(0, 0, 0, 0.3) 100%);
            position: relative;
        }
        
        .contato-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            align-items: start;
            width: 100%;
            max-width: 100%;
        }
        
        @media (min-width: 1024px) {
            .contato-content {
                grid-template-columns: 1fr 1fr;
                gap: 4rem;
            }
        }
        
        .contato-info h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 1.5rem;
        }
        
        .contato-info p {
            font-size: 1.125rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            color: var(--color-text-secondary);
        }
        
        .contato-details {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .contato-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: rgba(0, 0, 0, 0.5);
            border-radius: var(--border-radius-md);
            border-left: 4px solid var(--color-accent-orange);
            transition: var(--transition-default);
        }
        
        .contato-item:hover {
            background: rgba(0, 0, 0, 0.7);
            transform: translateX(10px);
        }
        
        .contato-item-icon {
            font-size: 1.5rem;
            color: var(--color-accent-orange);
        }
        
        .contato-item-text h4 {
            color: var(--color-text-primary);
            font-size: 1rem;
            margin-bottom: 0.25rem;
        }
        
        .contato-item-text p {
            color: var(--color-text-secondary);
            font-size: 0.95rem;
            margin: 0;
        }
        
        .contato-form {
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            border: 2px solid var(--color-border-light);
            border-radius: var(--border-radius-lg);
            padding: clamp(1rem, 3vw, 3rem);
            box-shadow: var(--shadow-lg);
            max-width: 100%;
            overflow: hidden;
            box-sizing: border-box;
        }
        
        .contato-form h3 {
            color: var(--color-text-primary);
            font-size: clamp(1.25rem, 4vw, 1.75rem);
            margin-bottom: 0.5rem;
        }
        
        .contato-form-subtitle {
            color: var(--color-text-secondary);
            font-size: clamp(0.875rem, 2vw, 1rem);
            margin-bottom: 1.5rem;
        }
        
        @media (min-width: 768px) {
            .contato-form-subtitle {
                margin-bottom: 2rem;
            }
        }
        
        .form-group {
            margin-bottom: 1.5rem;
            width: 100%;
            max-width: 100%;
        }
        
        .form-group label {
            display: block;
            color: var(--color-text-primary);
            font-weight: var(--font-weight-semibold);
            margin-bottom: clamp(0.375rem, 1vw, 0.5rem);
            font-size: clamp(0.875rem, 1.5vw, 0.95rem);
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            max-width: 100%;
            padding: clamp(0.625rem, 2vw, 1rem);
            background: rgba(0, 0, 0, 0.7);
            border: 1px solid var(--color-border-light);
            border-radius: var(--border-radius-md);
            color: var(--color-text-primary);
            font-family: var(--font-family-primary);
            font-size: clamp(0.875rem, 2vw, 1rem);
            transition: var(--transition-default);
            box-sizing: border-box;
        }
        
        @media (min-width: 768px) {
            .form-group input,
            .form-group select,
            .form-group textarea {
                padding: 1rem;
                font-size: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .form-group input,
            .form-group select,
            .form-group textarea {
                padding: 0.625rem 0.5rem;
                font-size: 0.875rem;
            }
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--color-accent-orange);
            background: rgba(0, 0, 0, 0.85);
            box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        .form-group select {
            cursor: pointer;
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23FF6600' d='M1.41 0L6 4.58L10.59 0L12 1.41l-6 6l-6-6z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right clamp(0.5rem, 2vw, 1rem) center;
            background-size: clamp(10px, 2vw, 12px);
            padding-right: clamp(2rem, 8vw, 3rem);
        }
        
        @media (max-width: 480px) {
            .form-group select {
                background-position: right 0.5rem center;
                padding-right: 1.75rem;
            }
        }
        
        .form-group select:invalid {
            color: rgba(255, 255, 255, 0.4);
        }
        
        .form-group select option {
            background: #1a1a1a;
            color: var(--color-text-primary);
            padding: 1rem 0.75rem;
            font-size: 0.95rem;
        }
        
        .form-group select option:first-child {
            color: rgba(255, 255, 255, 0.4);
        }
        
        .form-group select option:not(:first-child) {
            color: #ffffff;
        }
        
        .form-group select option:hover,
        .form-group select option:checked {
            background: linear-gradient(135deg, rgba(255, 102, 0, 0.2) 0%, rgba(255, 102, 0, 0.1) 100%);
        }
        
        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }
        
        .form-group input:valid,
        .form-group select:valid,
        .form-group textarea:valid {
            border-color: rgba(40, 167, 69, 0.5);
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr;
            gap: clamp(0.75rem, 2vw, 1rem);
            width: 100%;
            max-width: 100%;
        }
        
        @media (min-width: 560px) {
            .form-row {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        .form-checkbox {
            display: flex;
            align-items: start;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
        }
        
        .form-checkbox input[type="checkbox"] {
            width: auto;
            margin-top: 0.25rem;
            cursor: pointer;
        }
        
        .form-checkbox label {
            color: var(--color-text-secondary);
            font-size: 0.875rem;
            font-weight: var(--font-weight-normal);
            line-height: 1.5;
            margin: 0;
        }
        
        .form-checkbox label a {
            color: var(--color-accent-orange);
            text-decoration: underline;
        }
        
        .form-submit {
            width: 100%;
            padding: clamp(1rem, 2.5vw, 1.25rem);
            background: var(--gradient-orange);
            border: none;
            border-radius: var(--border-radius-md);
            color: white;
            font-size: clamp(1rem, 2.5vw, 1.125rem);
            font-weight: var(--font-weight-bold);
            cursor: pointer;
            transition: var(--transition-default);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            min-height: 48px;
            box-sizing: border-box;
        }
        
        .form-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4);
        }
        
        .form-submit:active {
            transform: translateY(0);
        }
        
        .form-success-message {
            display: none;
            background: rgba(40, 167, 69, 0.2);
            border: 2px solid #28a745;
            border-radius: var(--border-radius-md);
            padding: 1rem;
            margin-bottom: 1.5rem;
            color: #28a745;
            text-align: center;
            font-weight: var(--font-weight-semibold);
        }
        
        .form-success-message.show {
            display: block;
            animation: fadeInUp 0.5s ease-out;
        }
        
        /* ============================================
           FOOTER
        ============================================ */
        footer {
            background: rgba(10, 10, 10, 0.8);
            backdrop-filter: blur(10px);
            border-top: 1px solid var(--color-border);
            padding: 3rem 0 2rem;
        }
        
        @media (min-width: 768px) {
            footer {
                padding: var(--spacing-lg) 0 var(--spacing-md);
            }
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        @media (min-width: 480px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (min-width: 1024px) {
            .footer-content {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 3rem;
            }
        }
        
        .footer-section h3 {
            margin-bottom: 1rem;
            font-size: 1.25rem;
        }
        
        .footer-section p,
        .footer-section a {
            color: var(--color-text-secondary);
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: var(--transition-default);
        }
        
        .footer-section a:hover {
            color: var(--color-accent-orange);
            transform: translateX(5px);
        }
        
        .social-links {
            display: flex;
            gap: clamp(0.75rem, 2vw, 1rem);
            margin-top: 1rem;
            flex-wrap: wrap;
        }
        
        .social-link {
            width: clamp(40px, 8vw, 48px);
            height: clamp(40px, 8vw, 48px);
            border-radius: 50%;
            background: rgba(255, 102, 0, 0.1);
            border: 1px solid var(--color-accent-orange);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--color-accent-orange);
            text-decoration: none;
            transition: var(--transition-default);
            font-size: clamp(1.125rem, 2.5vw, 1.25rem);
            padding: clamp(8px, 2vw, 10px);
            box-sizing: border-box;
            flex-shrink: 0;
        }
        
        .social-link svg {
            width: clamp(18px, 4vw, 20px);
            height: clamp(18px, 4vw, 20px);
            display: block;
            flex-shrink: 0;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--color-border);
        }
        
        .footer-bottom p {
            color: var(--color-text-muted);
            font-size: 0.875rem;
        }
        
        /* ============================================
           NAVIGATION MOBILE - DRAWER REFINADO
        ============================================ */
        
        /* MOBILE DRAWER - Desliza da esquerda */
        nav {
            position: fixed;
            top: 64px; /* Abaixo do header */
            left: 0;
            right: 0;
            bottom: 0;
            height: calc(100vh - 64px);
            height: calc(100dvh - 64px);
            /* MOBILE: Fundo #111 */
            background: #111;
            /* MOBILE: Desliza da esquerda */
            transform: translateX(-100%);
            opacity: 0;
            visibility: hidden;
            /* MOBILE: Transição leve 0.25s */
            transition: transform 0.25s ease, opacity 0.25s ease, visibility 0s 0.25s;
            overflow-y: auto;
            z-index: 1050;
            -webkit-overflow-scrolling: touch;
        }
        
        nav.active {
            transform: translateX(0);
            opacity: 1;
            visibility: visible;
            transition: transform 0.25s ease, opacity 0.25s ease, visibility 0s;
        }
        
        nav ul {
            display: flex;
            flex-direction: column;
            gap: 0;
            align-items: stretch;
            list-style: none;
            margin: 0;
            padding: 0;
            width: 100%;
        }
        
        nav ul li {
            width: 100%;
        }
        
        /* MOBILE: Links com padding 16px 20px, fonte 15px */
        nav a {
            display: flex;
            align-items: center;
            padding: 1rem 1.25rem; /* 16px 20px */
            font-size: 0.9375rem; /* 15px */
            /* MOBILE: Separador entre links */
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            font-weight: 400;
            transition: all 0.2s ease;
            min-height: 52px;
        }
        
        /* MOBILE: Link ativo em laranja */
        nav a.active {
            color: #e87722;
            background: rgba(232, 119, 34, 0.08);
            border-left: 3px solid #e87722;
        }
        
        nav a:active {
            background: rgba(255, 255, 255, 0.05);
        }
        
        /* MOBILE: Botão CTA largura total no final do drawer */
        nav a.btn {
            margin: 1rem;
            padding: 1rem;
            border-bottom: none;
            /* MOBILE: Background #e87722 */
            background: #e87722;
            color: white;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.9375rem; /* 15px */
            text-align: center;
            justify-content: center;
            min-height: 48px;
        }
        
        nav a.btn:active {
            background: #d06518;
            transform: scale(0.98);
        }
        
        /* DESKTOP NAVIGATION - Refinado */
        @media (min-width: 1024px) {
            nav {
                position: static;
                background: transparent;
                padding: 0;
                transform: none;
                opacity: 1;
                visibility: visible;
                height: auto;
                overflow: visible;
                flex: 1;
                display: flex;
                justify-content: center;
            }
            
            nav ul {
                flex-direction: row;
                gap: 0.375rem;
                align-items: center;
                justify-content: center;
            }
            
            nav ul li {
                width: auto;
            }
            
            nav a {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                padding: 0.375rem 0.875rem; /* 6px 14px */
                font-size: 0.84375rem; /* 13.5px */
                font-weight: 400;
                text-align: center;
                border-bottom: none;
                background: transparent;
                color: rgba(255, 255, 255, 0.65);
                border-radius: 6px;
                position: relative;
                transition: all 0.25s ease;
                min-height: auto;
            }
            
            nav a:hover {
                background: rgba(255, 255, 255, 0.06);
                color: #ffffff;
            }
            
            nav a.active,
            nav a:focus-visible {
                color: #e87722;
                background: rgba(232, 119, 34, 0.1);
                border-left: none;
            }
            
            nav a.btn {
                margin: 0;
                margin-left: 0.75rem;
                padding: 0.5625rem 1.125rem; /* 9px 18px */
                background: #e87722;
                color: white;
                border-radius: 8px;
                font-size: 0.8125rem; /* 13px */
                font-weight: 600;
                box-shadow: 0 2px 8px rgba(232, 119, 34, 0.25);
            }
            
            nav a.btn:hover {
                background: #d06518;
                transform: translateY(-1px);
                box-shadow: 0 4px 12px rgba(232, 119, 34, 0.35);
            }
            
            nav a.btn:active {
                transform: scale(0.98);
            }
        }
        
        @media (min-width: 1280px) {
            nav ul {
                gap: 0.5rem;
            }
            
            nav a {
                padding: 0.4375rem 1rem;
                font-size: 0.875rem;
            }
            
            nav a.btn {
                padding: 0.625rem 1.25rem;
                font-size: 0.8125rem;
            }
        }
        
        /* ============================================
           RESPONSIVE OPTIMIZATIONS - MOBILE FIRST
        ============================================ */
        
        /* BUTTONS - Full width on mobile */
        @media (max-width: 480px) {
            .hero-cta .btn {
                width: 100%;
            }
        }
        
        /* HERO IMAGE - Reorder on mobile */
        .hero-image {
            display: block;
        }
        
        @media (max-width: 1023px) {
            .hero-image {
                order: -1;
            }
        }
        
        /* HOUSE VISUAL - Hide on mobile/tablet */
        .house-visual {
            display: none;
        }
        
        @media (min-width: 1024px) {
            .house-visual {
                display: flex;
            }
        }
        
        /* CARDS PADDING - Responsive */
        .peca-destaque,
        .producao-example {
            padding: 1.5rem;
        }
        
        @media (min-width: 768px) {
            .peca-destaque,
            .producao-example {
                padding: 2rem;
            }
        }
        
        @media (min-width: 1024px) {
            .peca-destaque,
            .producao-example {
                padding: 2.5rem;
            }
        }
        
        .house-quote {
            padding: 1rem;
            font-size: 0.95rem;
        }
        
        @media (min-width: 768px) {
            .house-quote {
                padding: 1.5rem;
                font-size: 1rem;
            }
        }
        
        /* ============================================
           RECURSO CARDS - RESPONSIVIDADE CORRIGIDA
        ============================================ */
        
        /* Mobile: 1 card por vez (~85% width) - JÁ DEFINIDO ACIMA */
        
        /* CORREÇÃO: Tablet - 2 cards visíveis com altura adequada */
        @media (min-width: 560px) {
            .recurso-card {
                min-width: calc(50% - 1rem);
                max-width: calc(50% - 1rem);
                min-height: 260px;
                height: auto;
            }
        }
        
        /* CORREÇÃO: Tablet grande - 3 cards visíveis com altura maior */
        @media (min-width: 768px) {
            .recurso-card {
                min-width: calc(33.333% - 1.35rem);
                max-width: calc(33.333% - 1.35rem);
                min-height: 280px;
                height: auto;
            }
        }
        
        /* CORREÇÃO: Desktop pequeno - 4 cards com altura fixa */
        @media (min-width: 1024px) {
            .recurso-card {
                min-width: calc(25% - 1.5rem);
                max-width: calc(25% - 1.5rem);
                min-height: 300px;
                height: 320px;
                aspect-ratio: auto;
            }
        }
        
        /* CORREÇÃO: Desktop grande - 5 cards com altura otimizada */
        @media (min-width: 1280px) {
            .recurso-card {
                min-width: calc(20% - 1.6rem);
                max-width: calc(20% - 1.6rem);
                min-height: 320px;
                height: 340px;
            }
        }
        
        /* CORREÇÃO: Remover overflow hidden que estava cortando cards */
        .recursos-carousel-container {
            overflow: visible !important; /* Crítico: permite cards laterais + shadows serem visíveis */
            width: 100%;
            position: relative;
        }
        
        .recursos-carousel {
            overflow: visible !important; /* Crítico: não cortar cards na altura + shadows */
        }
        
        /* CORREÇÃO: Track de scroll com overflow correto */
        .recursos-grid {
            /* CRÍTICO: overflow-y visible para não cortar altura dos cards */
            overflow-x: auto !important;
            overflow-y: visible !important;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none !important;
            -ms-overflow-style: none !important;
        }
        
        .recursos-grid::-webkit-scrollbar {
            display: none !important;
            width: 0 !important;
            height: 0 !important;
        }
        
        /* TABS NAV - Horizontal scroll on mobile */
        .tabs-nav {
            overflow-x: auto;
            overflow-y: hidden;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
            scrollbar-color: var(--color-accent-orange) transparent;
        }
        
        /* TABS NAV scrollbar removed - now controlled in updated tabs-nav above */
        
        /* TABS NAV scrollbar removed - now controlled in updated tabs-nav above */
        
        @media (min-width: 640px) {
            .tabs-nav {
                overflow-x: auto;
            }
        }
        
        /* PRODUTORA CARD - now uses clamp() in main definition */
        
        /* DEPOIMENTO CARD - Mobile First */
        .depoimento-card {
            padding: clamp(1rem, 2.5vw, 2rem);
            border-width: clamp(2px, 0.5vw, 3px);
            overflow: hidden;
        }
        
        .depoimento-whatsapp {
            padding: clamp(0.625rem, 2vw, 1.5rem);
            min-height: auto;
            overflow: hidden;
        }
        
        .depoimento-whatsapp img {
            max-width: 100%;
            height: auto;
            max-height: 400px;
            object-fit: contain;
        }
        
        @media (min-width: 768px) {
            .depoimento-whatsapp img {
                max-height: none;
            }
        }
        
        .author-info h4 {
            font-size: 1rem;
        }
        
        @media (min-width: 768px) {
            .author-info h4 {
                font-size: 1.125rem;
            }
        }
        
        /* EXTRA SMALL DEVICES */
        @media (max-width: 380px) {
            html {
                font-size: 14px;
            }
            
            h1 {
                font-size: 1.875rem !important;
                line-height: 1.1;
            }
            
            h2 {
                font-size: 1.5rem !important;
                line-height: 1.2;
            }
            
            h3 {
                font-size: 1.125rem !important;
            }
            
            .logo img {
                height: 28px;
            }
            
            .header-container {
                padding: clamp(0.5rem, 2vw, 0.75rem);
                gap: 0.5rem;
            }
            
            .language-switcher {
                font-size: 0.7rem;
                padding: 0.35rem 0.5rem;
                gap: 0.25rem;
            }
            
            .menu-toggle span {
                width: 22px;
                height: 2.5px;
            }
            
            nav {
                padding: clamp(70px, 12vh, 80px) 1rem 1.5rem;
            }
            
            nav a {
                font-size: 1rem;
                padding: clamp(0.875rem, 2vh, 1rem) 0.75rem;
            }
            
            .depoimento-card {
                padding: 0.75rem;
                border-radius: 15px;
            }
            
            .form-submit {
                padding: 0.875rem 1rem;
                font-size: 0.9375rem;
            }
            
            .hero-cta {
                gap: 0.5rem;
            }
            
            .hero-cta .btn {
                width: 100%;
                font-size: 0.875rem;
            }
            
            .carousel-indicators {
                gap: 0.5rem;
                margin-top: 1.5rem;
            }
        }
        
        /* LANDSCAPE MOBILE - Reduce vertical spacing */
        @media (max-width: 768px) and (orientation: landscape) {
            .hero {
                min-height: auto;
                min-height: 80vh;
                padding: clamp(80px, 12vh, 100px) 0 clamp(2rem, 5vh, 3rem);
            }
            
            .section {
                padding: clamp(1.5rem, 4vh, 2rem) 0;
            }
            
            .hero-image-placeholder {
                height: clamp(200px, 30vh, 250px);
            }
            
            nav {
                padding: clamp(60px, 10vh, 70px) 1.5rem 1.5rem;
            }
            
            nav a {
                padding: clamp(0.75rem, 2vh, 0.9rem) 1rem;
                font-size: 1rem;
            }
        }
        
        /* TABLET SPECIFIC */
        @media (min-width: 768px) and (max-width: 1023px) {
            .hero-content {
                gap: 3rem;
            }
        }
        
        /* TOUCH DEVICES - Improve tap targets */
        @media (hover: none) and (pointer: coarse) {
            .btn,
            nav a,
            .carousel-btn,
            .tab-button,
            .menu-toggle {
                min-height: 44px;
                min-width: 44px;
            }
            
            .diferencial-card,
            .solucao-card,
            .peca-destaque,
            .produtora-card {
                cursor: default;
            }
            
            /* Disable hover effects on touch devices */
            .diferencial-card:hover,
            .solucao-card:hover,
            .peca-destaque:hover,
            .produtora-card:hover {
                transform: none;
            }
            
            /* Enhanced tap feedback */
            .diferencial-card:active,
            .solucao-card:active,
            .peca-destaque:active,
            .produtora-card:active {
                transform: scale(0.98);
                opacity: 0.9;
            }
            
            .btn:active {
                transform: scale(0.97);
            }
        }
        
        /* HIGH DPI SCREENS - Improve rendering */
        @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
            body {
                -webkit-font-smoothing: antialiased;
                -moz-osx-font-smoothing: grayscale;
            }
        }
        
        /* PRINT STYLES */
        @media print {
            header,
            footer,
            .menu-toggle,
            .btn,
            .carousel-btn,
            .carousel-indicators {
                display: none !important;
            }
            
            body {
                background: white !important;
                color: black !important;
            }
            
            .section > .container {
                background: transparent !important;
                border: 1px solid #ccc !important;
            }
        }
        
        /* Logo adjustments for very small screens */
        @media (max-width: 380px) {
            .logo img {
                height: 28px;
            }
            
            .logo {
                gap: 0.4rem;
            }
        }
        
        /* ============================================
           ACCESSIBILITY & FOCUS STATES
        ============================================ */
        
        /* Skip Link for Screen Readers */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: var(--color-accent-orange);
            color: white;
            padding: 8px 16px;
            text-decoration: none;
            z-index: 9999;
            border-radius: 0 0 4px 0;
            font-weight: var(--font-weight-semibold);
        }
        
        .skip-link:focus {
            top: 0;
            outline: 2px solid white;
            outline-offset: 2px;
        }
        
        /* Enhanced Focus States for Keyboard Navigation */
        a:focus,
        button:focus,
        input:focus,
        select:focus,
        textarea:focus {
            outline: 2px solid var(--color-accent-orange);
            outline-offset: 2px;
        }
        
        /* Remove outline for mouse users, keep for keyboard */
        a:focus:not(:focus-visible),
        button:focus:not(:focus-visible) {
            outline: none;
        }
        
        a:focus-visible,
        button:focus-visible {
            outline: 2px solid var(--color-accent-orange);
            outline-offset: 2px;
        }
        
        /* Reduce Motion for users who prefer it */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
            
            .animate-on-scroll {
                animation: none !important;
                transition: none !important;
                opacity: 1 !important;
                transform: none !important;
            }
        }