:root {
            --primary: #162c53;
            --primary-dark: #0f1e3a;
            --secondary: #76bc43;
            --secondary-dark: #5fa332;
            --accent: #009fe3;
            --bg-light: #f4f7f9;
            --bg-white: #ffffff;
            --text-dark: #2d3748;
            --text-muted: #718096;
            --text-light: #ffffff;
            --border-color: #e2e8f0;
        }

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

        html {
            scroll-padding-top: 90px;
            overflow-x: hidden;
            width: 100%;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-dark);
            background-color: var(--bg-light);
            line-height: 1.6;
            padding-top: 90px;
            overflow-x: hidden;
            width: 100%;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

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

        /* Product image styles */
        .specs-wrapper {
            display: flex;
            gap: 28px;
            align-items: flex-start;
            flex-wrap: wrap;
        }

        /* Header & Navigation */
        header {
            background-color: var(--primary);
            color: var(--text-light);
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            border-bottom: 3px solid var(--secondary);
        }

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

        .logo {
            display: flex;
            align-items: center;
        }

        .logo span {
            color: var(--secondary);
        }

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

        nav ul {
            display: flex;
            list-style: none;
            gap: 20px;
        }

        nav ul li a {
            font-size: 15px;
            font-weight: 500;
            transition: color 0.3s;
            padding: 5px 0;
        }

        nav ul li a:hover {
            color: var(--secondary);
        }

        .btn-header {
            background-color: var(--secondary);
            color: var(--text-light);
            padding: 8px 16px;
            border-radius: 4px;
            font-weight: 600;
            transition: background 0.3s;
        }

        .btn-header:hover {
            background-color: var(--secondary-dark);
            color: var(--text-light);
        }

        /* Language Dropdown Switcher */
        .lang-dropdown-wrapper {
            position: relative;
            display: inline-block;
        }

        .lang-btn {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: var(--text-light);
            padding: 6px 12px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: all 0.3s ease;
        }

        .lang-btn:hover {
            border-color: var(--secondary);
            color: var(--secondary);
        }

        .lang-btn svg {
            transition: fill 0.3s ease;
        }
        
        .lang-btn:hover svg {
            fill: var(--secondary) !important;
        }

        .lang-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            background: var(--primary-dark);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            list-style: none;
            padding: 5px 0;
            margin-top: 5px;
            min-width: 120px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 1010;
        }

        .lang-dropdown-wrapper:hover .lang-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .lang-dropdown li a {
            display: block;
            padding: 8px 16px;
            font-size: 14px;
            color: var(--text-light) !important;
            transition: background 0.2s, color 0.2s;
            text-align: left;
            border-bottom: none !important;
            font-weight: 500;
        }

        .lang-dropdown li a:hover {
            background-color: var(--secondary) !important;
            color: var(--text-light) !important;
        }

        .lang-dropdown li a.active {
            color: var(--secondary) !important;
            font-weight: 700;
        }
        
        .lang-dropdown li a.active:hover {
            color: var(--text-light) !important;
        }

        /* Hero Section */
        .hero {
            background-image: url('banner2.webp');
            background-size: cover;
            background-position: center center;
            color: var(--text-light);
            padding: 160px 0 100px 0;
            position: relative;
            overflow: hidden;
            min-height: 80vh;
            display: flex;
            align-items: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0, 0, 0, 0.5); /* Película para leitura do texto */
            z-index: 1;
        }

        .hero .container {
            position: relative;
            z-index: 2;
            width: 100%;
        }

        .hero-content {
            max-width: 60%;
        }

        .hero-text h1 {
            font-size: 42px;
            line-height: 1.2;
            margin-bottom: 15px;
        }

        .hero-text h1 span {
            color: var(--secondary);
        }

        .hero-text p {
            font-size: 16px;
            margin-bottom: 35px;
            color: #e2e8f0;
            max-width: 600px;
        }

        .hero-ctas {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn-primary {
            background-color: var(--secondary);
            color: var(--text-light);
            padding: 12px 28px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 16px;
            transition: background 0.3s, transform 0.2s;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            background-color: var(--secondary-dark);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--text-light);
            padding: 12px 28px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 16px;
            border: 2px solid var(--text-light);
            transition: all 0.3s;
        }

        .btn-secondary:hover {
            background-color: rgba(255,255,255,0.1);
            border-color: var(--secondary);
            color: var(--secondary);
        }

        /* Sections General */
        section {
            padding: 80px 0;
        }

        .section-bg-white {
            background-color: var(--bg-white);
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 32px;
            color: var(--primary);
            margin-bottom: 10px;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background-color: var(--secondary);
            border-radius: 2px;
        }

        .section-title p {
            color: var(--text-muted);
            font-size: 16px;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Benefits Grid */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .benefit-card {
            background-color: var(--bg-white);
            padding: 30px;
            border-radius: 6px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            border-top: 4px solid var(--primary);
            transition: transform 0.3s, border-top-color 0.3s;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            border-top-color: var(--secondary);
        }

        .benefit-icon {
            width: 50px;
            height: 50px;
            background-color: rgba(22, 44, 83, 0.05);
            border-radius: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .benefit-icon svg {
            width: 26px;
            height: 26px;
            fill: var(--primary);
        }

        .benefit-card:hover .benefit-icon svg {
            fill: var(--secondary);
        }

        .benefit-card h3 {
            font-size: 18px;
            color: var(--primary);
            margin-bottom: 12px;
        }

        .benefit-card p {
            font-size: 14px;
            color: var(--text-dark);
            text-align: justify;
        }

        /* Technical Specs Section */
        .specs-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
        }

        .specs-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--bg-white);
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            border-radius: 6px;
            overflow: hidden;
        }

        .specs-table th, .specs-table td {
            padding: 15px 20px;
            text-align: left;
        }

        .specs-table th {
            background-color: var(--primary);
            color: var(--text-light);
            font-size: 16px;
            font-weight: 600;
        }

        .specs-table tr {
            border-bottom: 1px solid var(--border-color);
        }

        .specs-table td.label {
            font-weight: 600;
            color: var(--primary);
            width: 40%;
            background-color: rgba(22, 44, 83, 0.02);
        }

        .protocol-box {
            background-color: #fffbeb;
            border-left: 4px solid #d97706;
            padding: 25px;
            border-radius: 4px;
        }

        .protocol-box h4 {
            color: #b45309;
            font-size: 18px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .protocol-box ul {
            list-style-type: none;
        }

        .protocol-box ul li {
            margin-bottom: 10px;
            font-size: 14px;
            position: relative;
            padding-left: 20px;
        }

        .protocol-box ul li::before {
            content: '•';
            color: #d97706;
            font-weight: bold;
            font-size: 18px;
            position: absolute;
            left: 0;
            top: -2px;
        }

        /* Applications / Crop Section */
        .app-table-container {
            background: var(--bg-white);
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            overflow-x: auto;
        }

        .app-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 700px;
        }

        .app-table th {
            background-color: var(--primary);
            color: var(--text-light);
            padding: 18px;
            text-align: left;
            font-size: 15px;
        }

        .app-table td {
            padding: 18px;
            border-bottom: 1px solid var(--border-color);
            vertical-align: top;
            font-size: 14px;
        }

        .crop-name {
            font-weight: bold;
            color: var(--primary);
            font-size: 16px;
        }

        .app-table ul {
            padding-left: 15px;
        }

        .app-table li {
            margin-bottom: 5px;
        }

        /* --- SEÇÃO DE REVENDAS MODIFICADA --- */
        .filter-container {
            text-align: center;
            margin-bottom: 40px;
            background: var(--bg-white);
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.03);
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
        }

        .filter-container label {
            font-weight: 600;
            color: var(--primary);
        }

        .filter-select {
            padding: 10px 20px;
            font-size: 16px;
            border: 2px solid var(--border-color);
            border-radius: 6px;
            color: var(--text-dark);
            background-color: var(--bg-light);
            cursor: pointer;
            outline: none;
            transition: border-color 0.3s;
            font-weight: 500;
        }

        .filter-select:focus {
            border-color: var(--secondary);
        }

        .revendas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
        }

        .revenda-card {
            background: var(--bg-white);
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            border-left: 5px solid var(--accent);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .revenda-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        }

        .revenda-info h4 {
            color: var(--primary);
            font-size: 18px;
            margin-bottom: 12px;
            font-weight: 700;
        }

        .revenda-meta {
            font-size: 14px;
            color: var(--text-dark);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .revenda-meta.endereco {
            color: var(--text-muted);
            font-style: normal;
            line-height: 1.4;
        }

        .badge-estado {
            background-color: rgba(0, 159, 227, 0.1);
            color: var(--accent);
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: bold;
            display: inline-block;
            margin-bottom: 15px;
        }

        .btn-wpp {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background-color: #25d366;
            color: #fff;
            padding: 10px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 14px;
            margin-top: 15px;
            transition: background 0.3s;
        }

        .btn-wpp:hover {
            background-color: #1ebd58;
        }

        .btn-wpp svg {
            fill: #fff;
            width: 18px;
            height: 18px;
        }

        .empty-state {
            grid-column: 1 / -1;
            text-align: center;
            padding: 40px;
            background: #fffbeb;
            border: 2px dashed #d97706;
            border-radius: 8px;
            color: #b45309;
            display: none;
        }

        .empty-state h4 {
            font-size: 20px;
            margin-bottom: 10px;
        }

        .empty-state a {
            color: var(--primary);
            font-weight: bold;
            text-decoration: underline;
        }

        /* --- FIM DA SEÇÃO MODIFICADA --- */

        /* Botão Veja Mais e Ocultação da Tabela */
        .btn-veja-mais {
            display: block;
            width: 100%;
            text-align: center;
            padding: 15px;
            background-color: var(--bg-light);
            color: var(--primary);
            font-weight: 600;
            border: none;
            border-top: 1px solid var(--border-color);
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .btn-veja-mais:hover {
            background-color: #e2e8f0;
        }
        .row-hidden {
            display: none !important;
        }

        /* Partnership / Distributor Form Section */
        .partner-section {
            background: linear-gradient(135deg, var(--primary-dark) 30%, var(--primary));
            color: var(--text-light);
        }

        .partner-section .section-title h2 {
            color: var(--text-light);
        }

        .partner-wrapper {
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;
            gap: 50px;
            align-items: start;
        }

        .partner-pitch h3 {
            font-size: 24px;
            color: var(--secondary);
            margin-bottom: 20px;
        }

        .partner-pitch p {
            font-size: 16px;
            color: #e2e8f0;
            margin-bottom: 30px;
        }

        .pitch-benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 20px;
        }

        .pitch-benefit-icon {
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .pitch-benefit-icon svg {
            width: 18px;
            height: 18px;
            fill: var(--secondary);
        }

        .pitch-benefit-text h4 {
            font-size: 16px;
            margin-bottom: 3px;
            color: var(--text-light);
        }

        .pitch-benefit-text p {
            font-size: 14px;
            color: #cbd5e1;
        }

        /* Form Styling */
        .form-container {
            background: var(--bg-white);
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            color: var(--text-dark);
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-group.full-width {
            grid-column: span 2;
        }

        .form-group label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 6px;
            color: var(--primary);
        }

        .form-group input, .form-group select, .form-group textarea {
            width: 100%;
            padding: 10px 14px;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            font-family: inherit;
            font-size: 14px;
            transition: border-color 0.3s;
            background-color: #fafafa;
        }

        .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
            outline: none;
            border-color: var(--secondary);
            background-color: var(--bg-white);
        }

        .btn-submit {
            width: 100%;
            background-color: var(--secondary);
            color: var(--text-light);
            border: none;
            padding: 14px;
            font-size: 16px;
            font-weight: bold;
            border-radius: 4px;
            cursor: pointer;
            transition: background 0.3s;
            margin-top: 10px;
            box-shadow: 0 4px 10px rgba(118, 188, 67, 0.3);
        }

        .btn-submit:hover {
            background-color: var(--secondary-dark);
        }

        /* Footer */
        footer {
            background-color: #0b1426;
            color: #cbd5e1;
            padding: 40px 0;
            font-size: 14px;
            border-top: 4px solid var(--primary);
        }

        .footer-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

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

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

        /* Responsive Breakpoints */
        @media (max-width: 992px) {
            .specs-wrapper, .partner-wrapper {
                grid-template-columns: 1fr;
            }
            .hero-content {
                max-width: 100%;
            }
            .hero {
                padding: 120px 0 60px 0;
                text-align: center;
            }
            .hero-text p {
                margin-left: auto;
                margin-right: auto;
            }
            .hero-ctas {
                justify-content: center;
            }
            body {
                padding-top: 140px;
            }
        }

        @media (max-width: 600px) {
            .nav-container {
                flex-direction: column;
                gap: 15px;
            }
            nav ul {
                flex-wrap: wrap;
                justify-content: center;
                gap: 12px;
            }
            .filter-container {
                flex-direction: column;
                gap: 10px;
                padding: 15px;
            }
            .form-grid {
                grid-template-columns: 1fr;
            }
            .form-group.full-width {
                grid-column: span 1;
            }
            .hero-text h1 {
                font-size: 30px;
            }
            body {
                padding-top: 140px;
            }
            .footer-wrapper {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }
            .footer-links {
                flex-wrap: wrap;
                justify-content: center;
                gap: 15px;
            }
        }

        /* Floating WhatsApp Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #25d366;
            color: #fff;
            border-radius: 50px;
            padding: 12px 24px;
            font-size: 16px;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            gap: 10px;
            z-index: 9999;
            text-decoration: none;
            transition: all 0.3s ease;
            animation: wpp-pulse 2s infinite;
        }

        .whatsapp-float:hover {
            background-color: #1ebd58;
            transform: translateY(-3px) scale(1.03);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
            color: #fff;
        }

        .whatsapp-float svg {
            fill: #fff;
            width: 22px;
            height: 22px;
        }

        @keyframes wpp-pulse {
            0% {
                box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
            }
            50% {
                box-shadow: 0 4px 25px rgba(37, 211, 102, 0.7);
            }
            100% {
                box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
            }
        }

        @media (max-width: 768px) {
            .whatsapp-float {
                bottom: 20px;
                right: 20px;
                padding: 10px 20px;
                font-size: 14px;
            }
        }

        /* --- MAPA DO BRASIL INTERATIVO --- */
        .revendas-wrapper {
            display: flex;
            gap: 40px;
            align-items: flex-start;
            margin-top: 30px;
        }

        .map-container {
            flex: 1 1 40%;
            max-width: 450px;
            background: var(--bg-white);
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .map-container svg {
            width: 100%;
            height: auto;
            max-height: 400px;
        }

        .revendas-content-wrapper {
            flex: 1 1 60%;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        /* Estados do SVG */
        .state {
            fill: #cbd5e1;
            stroke: #ffffff;
            stroke-width: 1.5;
            transition: fill 0.3s ease, stroke 0.3s ease;
            cursor: default;
        }

        /* Estados interativos (regiões com revendedores/foco) */
        .state.interactive-state {
            fill: rgba(118, 188, 67, 0.12); /* Verde Lithofort bem suave */
            cursor: pointer;
        }

        .state.interactive-state:hover {
            fill: var(--secondary); /* Verde Lithofort sólido */
        }

        /* Estado ativo selecionado no filtro */
        .state.active-filter {
            fill: var(--accent) !important; /* Azul Lithofort */
            stroke: var(--primary);
            stroke-width: 2.5;
        }

        /* Responsividade para o layout do mapa */
        @media (max-width: 992px) {
            .revendas-wrapper {
                flex-direction: column;
                align-items: center;
            }

            .map-container {
                flex: 1 1 100%;
                width: 100%;
                max-width: 400px;
                margin-bottom: 20px;
            }

            .revendas-content-wrapper {
                flex: 1 1 100%;
                width: 100%;
            }
        }

/* ==========================================================================
   RESULTS PAGE SPECIFIC STYLES
   ========================================================================== */

.hero-results {
            background: linear-gradient(135deg, var(--primary-dark) 40%, var(--primary));
            color: var(--text-light);
            padding: 80px 0 65px 0;
            position: relative;
            text-align: center;
        }

        .hero-results h1 {
            font-size: 38px;
            line-height: 1.2;
            margin-bottom: 15px;
        }

        .hero-results h1 span {
            color: var(--secondary);
        }

        .hero-results p {
            font-size: 16px;
            color: #e2e8f0;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Impact Statistics Dashboard */
        .stats-section {
            background-color: var(--bg-white);
            padding: 40px 0;
            border-bottom: 1px solid var(--border-color);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
            text-align: center;
        }

        .stat-card {
            padding: 15px;
            border-radius: 8px;
            background-color: var(--bg-light);
            transition: transform 0.3s;
        }

        .stat-card:hover {
            transform: translateY(-3px);
        }

        .stat-number {
            font-size: 36px;
            font-weight: bold;
            color: var(--secondary);
            margin-bottom: 5px;
            font-family: Arial, sans-serif;
        }

        .stat-label {
            font-size: 14px;
            color: var(--primary);
            font-weight: 700;
            margin-bottom: 5px;
        }

        .stat-desc {
            font-size: 12px;
            color: var(--text-muted);
        }

        /* Sections General */
        section {
            padding: 85px 0;
        }

        .section-bg-white {
            background-color: var(--bg-white);
        }

        .section-title {
            text-align: center;
            margin-bottom: 45px;
        }

        .section-title h2 {
            font-size: 30px;
            color: var(--primary);
            margin-bottom: 10px;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background-color: var(--secondary);
            border-radius: 2px;
        }

        .section-title p {
            color: var(--text-muted);
            font-size: 16px;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Interactive Filter Bar */
        .filter-wrapper {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .filter-btn {
            background-color: var(--bg-white);
            color: var(--primary);
            border: 2px solid var(--border-color);
            padding: 8px 20px;
            font-size: 14px;
            font-weight: 600;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .filter-btn:hover {
            border-color: var(--secondary);
            color: var(--secondary);
        }

        .filter-btn.active {
            background-color: var(--secondary);
            color: var(--text-light);
            border-color: var(--secondary);
            box-shadow: 0 4px 10px rgba(118, 188, 67, 0.2);
        }

        /* Case Studies (Antes/Depois) Grid */
        .cases-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .case-card {
            background-color: var(--bg-white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            border: 1px solid var(--border-color);
        }

        .case-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        .case-header {
            background-color: var(--primary);
            color: var(--text-light);
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .case-header-info h3 {
            font-size: 18px;
            margin-bottom: 4px;
        }

        .case-header-info p {
            font-size: 13px;
            color: #cbd5e1;
        }

        .badge-crop {
            background-color: var(--secondary);
            color: var(--text-light);
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: bold;
        }

        .case-body {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .case-comparison {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 20px;
            text-align: center;
        }

        .comparison-col {
            background-color: var(--bg-light);
            padding: 12px;
            border-radius: 6px;
        }

        .comparison-col.after {
            background-color: rgba(118, 188, 67, 0.08);
            border: 1px dashed var(--secondary);
        }

        .comparison-title {
            font-size: 11px;
            text-transform: uppercase;
            font-weight: bold;
            color: var(--text-muted);
            margin-bottom: 5px;
        }

        .comparison-val {
            font-size: 20px;
            font-weight: bold;
            color: var(--text-dark);
        }

        .comparison-col.after .comparison-val {
            color: var(--secondary-dark);
        }

        .case-indicator {
            font-size: 11px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 15px;
            text-align: center;
            background-color: rgba(22, 44, 83, 0.05);
            padding: 6px 12px;
            border-radius: 4px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border: 1px solid rgba(22, 44, 83, 0.08);
        }

        .case-text {
            font-size: 14px;
            color: var(--text-dark);
            margin-bottom: 20px;
            text-align: justify;
        }

        .case-metric-highlight {
            background: linear-gradient(90deg, rgba(22, 44, 83, 0.05) 0%, rgba(22, 44, 83, 0) 100%);
            border-left: 4px solid var(--accent);
            padding: 10px 15px;
            font-weight: 600;
            color: var(--primary);
            font-size: 14px;
            border-radius: 0 4px 4px 0;
        }

        /* YouTube Videos Testimonials Carousel */
        .video-section {
            background-color: var(--bg-white);
            border-top: 1px solid var(--border-color);
            overflow: hidden;
        }

        .video-carousel-container {
            position: relative;
            display: flex;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 50px;
        }

        .video-carousel-wrapper {
            width: 100%;
            overflow: hidden;
            padding: 10px 0;
        }

        .video-carousel-track {
            display: flex;
            gap: 30px;
            transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .video-carousel-track .video-card {
            flex: 0 0 calc((100% - 60px) / 3);
            margin: 0;
            max-width: none;
            box-sizing: border-box;
        }

        @media (max-width: 992px) {
            .video-carousel-track .video-card {
                flex: 0 0 calc((100% - 30px) / 2);
            }

            .video-carousel-container {
                padding: 0 40px;
            }
        }

        @media (max-width: 600px) {
            .video-carousel-track .video-card {
                flex: 0 0 100%;
            }

            .video-carousel-container {
                padding: 0 30px;
            }
        }

        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 44px;
            height: 44px;
            background-color: var(--primary);
            border: 2px solid var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        }

        .carousel-nav:hover {
            background-color: var(--secondary);
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-nav svg {
            width: 24px;
            height: 24px;
            fill: var(--text-light);
        }

        .carousel-nav.prev-btn {
            left: 0;
        }

        .carousel-nav.next-btn {
            right: 0;
        }

        .carousel-nav:disabled {
            background-color: var(--border-color);
            border-color: var(--border-color);
            cursor: not-allowed;
            opacity: 0.5;
            transform: translateY(-50%) scale(1);
        }

        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 25px;
        }

        .carousel-dot {
            width: 10px;
            height: 10px;
            background-color: var(--border-color);
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-dot.active {
            background-color: var(--secondary);
            width: 24px;
            border-radius: 10px;
        }

        .video-card {
            background-color: var(--bg-light);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            border: 1px solid var(--border-color);
            display: flex;
            flex-direction: column;
            width: 100%;
        }

        /* Responsive Iframe Container for YouTube Shorts (Vertical 9:16) */
        .video-wrapper {
            position: relative;
            padding-bottom: 177.78%;
            /* Proporção 9:16 nativa de Shorts */
            height: 0;
            overflow: hidden;
            background-color: #000;
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

        .video-info {
            padding: 20px;
        }

        .video-info h3 {
            font-size: 16px;
            color: var(--primary);
            margin-bottom: 6px;
        }

        .video-info p.producer {
            font-size: 13px;
            color: var(--secondary-dark);
            font-weight: 600;
            margin-bottom: 12px;
        }

        .video-info p.desc {
            font-size: 14px;
            color: var(--text-dark);
            text-align: justify;
        }

        /* Text Testimonials Slider/Cards */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 25px;
        }

        .testimonial-card {
            background-color: var(--bg-white);
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
            border: 1px solid var(--border-color);
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .testimonial-quote {
            font-size: 14px;
            color: var(--text-dark);
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.6;
            position: relative;
            z-index: 2;
        }

        .testimonial-card::before {
            content: '“';
            font-size: 80px;
            color: rgba(118, 188, 67, 0.15);
            position: absolute;
            top: -10px;
            left: 15px;
            font-family: Georgia, serif;
            line-height: 1;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            background-color: var(--primary);
            color: var(--text-light);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 16px;
            flex-shrink: 0;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .author-info h4 {
            font-size: 15px;
            color: var(--primary);
            margin-bottom: 2px;
        }

        .author-info p {
            font-size: 12px;
            color: var(--text-muted);
        }

        /* Final CTA Section */
        .cta-results-section {
            background: linear-gradient(135deg, var(--primary-dark) 30%, var(--primary));
            color: var(--text-light);
            text-align: center;
            padding: 70px 0;
        }

        .cta-results-section h2 {
            font-size: 28px;
            margin-bottom: 15px;
        }

        .cta-results-section p {
            font-size: 16px;
            color: #cbd5e1;
            max-width: 600px;
            margin: 0 auto 30px auto;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn-primary {
            background-color: var(--secondary);
            color: var(--text-light);
            padding: 12px 28px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 16px;
            transition: background 0.3s, transform 0.2s;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            background-color: var(--secondary-dark);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--text-light);
            padding: 12px 28px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 16px;
            border: 2px solid var(--text-light);
            transition: all 0.3s;
        }

        .btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.1);
            border-color: var(--secondary);
            color: var(--secondary);
        }

        /* Footer */
