/*
Theme Name: Resultart BPO 2026
Theme URI: https://resultart.com.br
Author: Resultart Team
Description: Tema oficial Resultart BPO
Version: 1.0.0
License: GPL v2 or later
Text Domain: resultart
*/

        :root {
            --primary: #021024;
            --accent: #39ee2a;
            --white: #ffffff;
            --gray-50: #fafafa;
            --gray-100: #f5f5f5;
            --gray-200: #e5e5e5;
            --gray-400: #a3a3a3;
            --gray-600: #525252;
            --gray-700: #404040;
            --gray-800: #262626;
            --gray-900: #171717;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--gray-900);
            line-height: 1.6;
            overflow-x: hidden;
            background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            cursor: none;
            position: relative;
        }
        
        /* Animated Background Orbs */
        body::before,
        body::after {
            content: '';
            position: fixed;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.15;
            pointer-events: none;
            z-index: 0;
        }
        
        body::before {
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
            top: -300px;
            right: -200px;
            animation: float 25s ease-in-out infinite;
        }
        
        body::after {
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
            bottom: -400px;
            left: -300px;
            animation: float 30s ease-in-out infinite reverse;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            33% {
                transform: translate(100px, -100px) scale(1.1);
            }
            66% {
                transform: translate(-50px, 50px) scale(0.9);
            }
        }
        
        /* Section-specific backgrounds */
        section {
            position: relative;
            z-index: 1;
        }
        
        section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            z-index: -1;
        }
        
        /* Custom Cursor */
        .cursor {
            width: 24px;
            height: 24px;
            border: 2px solid var(--accent);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            transition: all 0.1s ease;
            transition-property: width, height, border;
            mix-blend-mode: difference;
            background: transparent;
        }
        
        .cursor::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 4px;
            height: 4px;
            background: var(--accent);
            border-radius: 50%;
        }
        
        .cursor-dot {
            width: 8px;
            height: 8px;
            background: var(--accent);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            transition: all 0.05s ease;
            box-shadow: 0 0 10px rgba(57, 238, 42, 0.6);
        }
        
        .cursor.hover {
            width: 50px;
            height: 50px;
            border-color: var(--accent);
            background: rgba(57, 238, 42, 0.1);
        }
        
        .cursor.hover::before {
            width: 6px;
            height: 6px;
        }
        
        .cursor.click {
            width: 18px;
            height: 18px;
            border-width: 3px;
        }
        
        /* Restore cursor for mobile */
        @media (max-width: 968px) {
            body {
                cursor: auto;
            }
            
            .cursor,
            .cursor-dot {
                display: none;
            }
        }
        
        /* WhatsApp Floating Button */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 30px;
            right: 30px;
            background-color: #25d366;
            color: #fff;
            border-radius: 50%;
            text-align: center;
            font-size: 30px;
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
            z-index: 999;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .whatsapp-float:hover {
            background-color: #20ba5a;
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
        }
        
        .whatsapp-float svg {
            width: 32px;
            height: 32px;
            fill: white;
        }
        
        /* Navigation */
        .nav {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(2, 16, 36, 0.95);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }
        
        .nav.scrolled {
            background: rgba(2, 16, 36, 0.98);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }
        
        .nav-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            height: 84px;
            width: auto;
            transition: opacity 0.3s ease;
        }
        
        .logo:hover {
            opacity: 0.9;
        }
        
        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            align-items: center;
        }
        
        .nav-links a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9375rem;
            position: relative;
            transition: color 0.2s ease;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.2s ease;
        }
        
        .nav-links a:hover {
            color: var(--accent);
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .cta-nav {
            background: var(--accent);
            color: var(--primary);
            padding: 0.625rem 1.25rem;
            border-radius: 6px;
            font-weight: 600;
            transition: all 0.2s ease;
        }
        
        .cta-nav:hover {
            background: #2dd624;
            transform: translateY(-1px);
        }
        
        .cta-nav:hover::after {
            display: none;
        }
        
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, var(--primary) 0%, #041e3a 100%);
            position: relative;
            display: flex;
            align-items: center;
            padding: 7rem 2rem 4rem;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(57, 238, 42, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }
        
        .hero-container {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 5rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        
        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--white);
            line-height: 1.15;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }
        
        .hero-content h1 .accent {
            color: var(--accent);
        }
        
        .hero-content p {
            font-size: 1.125rem;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 2rem;
            line-height: 1.7;
            font-weight: 400;
        }
        
        .hero-cta {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        .btn {
            padding: 0.875rem 1.75rem;
            border-radius: 6px;
            font-weight: 600;
            font-size: 0.9375rem;
            text-decoration: none;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            cursor: pointer;
            border: none;
        }
        
        .btn-primary {
            background: var(--accent);
            color: var(--primary);
        }
        
        .btn-primary:hover {
            background: #2dd624;
            transform: translateY(-2px);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--white);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.5);
        }
        
        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .stat {
            text-align: left;
        }
        
        .stat-number {
            font-size: 2.25rem;
            font-weight: 700;
            color: var(--accent);
            line-height: 1;
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 400;
        }
        
        .hero-visual img {
            width: 100%;
            height: auto;
            border-radius: 12px;
        }
        
        /* Section Divider */
        .section-divider {
            height: 60px;
            background: linear-gradient(180deg, transparent 0%, rgba(57, 238, 42, 0.02) 50%, transparent 100%);
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }
        
        .section-divider::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 150px;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, rgba(57, 238, 42, 0.3) 50%, transparent 100%);
        }
        
        /* Services Section */
        .services {
            padding: 6rem 2rem;
            background: linear-gradient(180deg, #fafafa 0%, #f5f7fa 50%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }
        
        .services::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(57, 238, 42, 0.06) 0%, transparent 70%);
            top: 10%;
            right: 5%;
            filter: blur(100px);
            pointer-events: none;
            animation: float 20s ease-in-out infinite;
        }
        
        .services::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(2, 16, 36, 0.04) 0%, transparent 70%);
            bottom: 10%;
            left: 10%;
            filter: blur(80px);
            pointer-events: none;
            animation: pulse 15s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 0.3;
            }
            50% {
                transform: scale(1.2);
                opacity: 0.5;
            }
        }
        
        .section-container {
            max-width: 1280px;
            margin: 0 auto;
        }
        
        .section-header {
            max-width: 700px;
            margin: 0 auto 4rem;
            text-align: center;
        }
        
        .section-subtitle {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 0.75rem;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }
        
        .section-description {
            font-size: 1.0625rem;
            color: var(--gray-700);
            line-height: 1.7;
            font-weight: 400;
        }
        
        /* Dark section headers */
        .process .section-title,
        .results .section-title,
        .cta-content h2 {
            color: var(--white);
        }
        
        .process .section-description,
        .results .section-description,
        .cta-content p {
            color: rgba(255, 255, 255, 0.95);
        }
        
        .process .section-subtitle,
        .results .section-subtitle {
            color: var(--accent);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        
        .service-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 2.5rem;
            border-radius: 12px;
            transition: all 0.3s ease;
            border: 1px solid rgba(2, 16, 36, 0.08);
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
            position: relative;
            overflow: hidden;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            border-color: rgba(57, 238, 42, 0.2);
            background: rgba(255, 255, 255, 1);
        }
        
        .service-card:hover::before {
            opacity: 1;
        }
        
        .service-number {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--accent);
            margin-bottom: 1.25rem;
        }
        
        .service-card h3 {
            font-size: 1.375rem;
            color: var(--primary);
            margin-bottom: 1rem;
            font-weight: 600;
            line-height: 1.3;
        }
        
        .service-card p {
            color: var(--gray-700);
            line-height: 1.7;
            font-size: 0.9375rem;
        }
        
        /* Process Section */
        .process {
            padding: 6rem 2rem;
            background: linear-gradient(180deg, #021024 0%, #031a30 50%, #052545 100%);
            position: relative;
            overflow: hidden;
            color: var(--white);
        }
        
        .process::before {
            content: '';
            position: absolute;
            width: 800px;
            height: 800px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(57, 238, 42, 0.2) 0%, transparent 70%);
            top: -300px;
            right: -200px;
            filter: blur(150px);
            pointer-events: none;
            animation: float 25s ease-in-out infinite;
        }
        
        .process::after {
            content: '';
            position: absolute;
            width: 700px;
            height: 700px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(57, 238, 42, 0.15) 0%, transparent 70%);
            bottom: -300px;
            left: -200px;
            filter: blur(130px);
            pointer-events: none;
            animation: pulse 20s ease-in-out infinite;
        }
        
        .process-flow {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            margin-top: 4rem;
            position: relative;
        }
        
        .process-flow::before {
            content: '';
            position: absolute;
            top: 24px;
            left: 12.5%;
            right: 12.5%;
            height: 2px;
            background: linear-gradient(90deg, var(--accent) 0%, var(--accent) 25%, rgba(255, 255, 255, 0.2) 25%, rgba(255, 255, 255, 0.2) 100%);
            z-index: 0;
        }
        
        .process-step {
            text-align: center;
            position: relative;
            z-index: 1;
            padding: 0 1rem;
        }
        
        .process-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            background: var(--white);
            border: 3px solid var(--accent);
            border-radius: 50%;
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 1.25rem;
            position: relative;
            box-shadow: 0 4px 20px rgba(57, 238, 42, 0.4);
        }
        
        .process-step h3 {
            font-size: 1.125rem;
            color: var(--white);
            margin-bottom: 0.75rem;
            font-weight: 600;
            line-height: 1.4;
        }
        
        .process-step p {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.7;
            font-size: 0.9375rem;
        }
        
        /* Testimonials Section */
        .testimonials {
            padding: 6rem 2rem;
            background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 50%, #f5f7fa 100%);
            position: relative;
            overflow: hidden;
        }
        
        .testimonials::before {
            content: '';
            position: absolute;
            width: 550px;
            height: 550px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(2, 16, 36, 0.05) 0%, transparent 70%);
            top: 15%;
            left: 5%;
            filter: blur(90px);
            pointer-events: none;
            animation: float 22s ease-in-out infinite;
        }
        
        .testimonials::after {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(57, 238, 42, 0.05) 0%, transparent 70%);
            bottom: 10%;
            right: 10%;
            filter: blur(100px);
            pointer-events: none;
            animation: pulse 18s ease-in-out infinite;
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 4rem;
        }
        
        .testimonial-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 2.5rem;
            border-radius: 12px;
            transition: all 0.3s ease;
            border: 1px solid rgba(2, 16, 36, 0.08);
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        
        .testimonial-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            border-color: rgba(57, 238, 42, 0.2);
            background: rgba(255, 255, 255, 1);
        }
        
        .testimonial-rating {
            color: #f59e0b;
            font-size: 1rem;
            margin-bottom: 1.25rem;
            letter-spacing: 0.125rem;
        }
        
        .testimonial-text {
            color: var(--gray-800);
            line-height: 1.7;
            font-size: 0.9375rem;
            margin-bottom: 1.5rem;
            font-weight: 400;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 0.875rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--gray-200);
        }
        
        .author-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent) 0%, #2bc91d 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            color: var(--primary);
            font-size: 1rem;
        }
        
        .author-info h4 {
            font-size: 0.9375rem;
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 0.125rem;
        }
        
        .author-info p {
            font-size: 0.8125rem;
            color: var(--gray-700);
        }
        
        /* Clients Section */
        .clients {
            padding: 5rem 2rem;
            background: linear-gradient(180deg, #f5f7fa 0%, #ffffff 50%, #f8f9fb 100%);
            overflow: hidden;
            position: relative;
        }
        
        .clients::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(57, 238, 42, 0.05) 0%, transparent 70%);
            top: 50%;
            left: 10%;
            transform: translateY(-50%);
            filter: blur(100px);
            pointer-events: none;
            animation: pulse 16s ease-in-out infinite;
        }
        
        .clients::after {
            content: '';
            position: absolute;
            width: 450px;
            height: 450px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(2, 16, 36, 0.04) 0%, transparent 70%);
            top: 50%;
            right: 10%;
            transform: translateY(-50%);
            filter: blur(90px);
            pointer-events: none;
            animation: float 18s ease-in-out infinite reverse;
        }
        
        .clients-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .clients-header h2 {
            font-size: 2rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        
        .clients-header p {
            color: var(--gray-700);
            font-size: 1rem;
        }
        
        .clients-slider {
            position: relative;
            overflow: hidden;
            padding: 2rem 0;
        }
        
        .clients-track {
            display: flex;
            gap: 4rem;
            animation: scroll 30s linear infinite;
        }
        
        .clients-track:hover {
            animation-play-state: paused;
        }
        
        .client-logo {
            height: 180px;
            width: auto;
            filter: grayscale(100%) opacity(0.5);
            transition: all 0.3s ease;
            flex-shrink: 0;
        }
        
        .client-logo:hover {
            filter: grayscale(0%) opacity(1);
            transform: scale(1.05);
        }
        
        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        
        /* Results Section */
        .results {
            padding: 6rem 2rem;
            background: linear-gradient(180deg, #052545 0%, #031a30 50%, #021024 100%);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }
        
        .results::before {
            content: '';
            position: absolute;
            width: 900px;
            height: 900px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(57, 238, 42, 0.2) 0%, transparent 70%);
            top: -400px;
            left: -300px;
            filter: blur(150px);
            pointer-events: none;
            animation: float 20s ease-in-out infinite;
        }
        
        .results::after {
            content: '';
            position: absolute;
            width: 800px;
            height: 800px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(57, 238, 42, 0.18) 0%, transparent 70%);
            bottom: -350px;
            right: -250px;
            filter: blur(140px);
            pointer-events: none;
            animation: pulse 15s ease-in-out infinite;
        }
        
        .results-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2.5rem;
            margin-top: 4rem;
        }
        
        .result-card {
            text-align: center;
            padding: 2rem 1.5rem;
        }
        
        .result-number {
            font-size: 2.75rem;
            color: var(--accent);
            font-weight: 700;
            line-height: 1;
            margin-bottom: 0.75rem;
            letter-spacing: -0.02em;
            text-shadow: 0 0 30px rgba(57, 238, 42, 0.5);
        }
        
        .result-label {
            font-size: 0.9375rem;
            color: rgba(255, 255, 255, 0.95);
            line-height: 1.5;
            font-weight: 400;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 6rem 2rem;
            background: linear-gradient(180deg, #021024 0%, #031a30 50%, #052545 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            width: 1000px;
            height: 1000px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(57, 238, 42, 0.25) 0%, transparent 70%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            filter: blur(160px);
            pointer-events: none;
            animation: pulse 18s ease-in-out infinite;
        }
        
        .cta-section::after {
            content: '';
            position: absolute;
            width: 700px;
            height: 700px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(57, 238, 42, 0.15) 0%, transparent 70%);
            bottom: -300px;
            right: -200px;
            filter: blur(120px);
            pointer-events: none;
            animation: float 22s ease-in-out infinite reverse;
        }
        
        .cta-content {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .cta-content h2 {
            font-size: 2.5rem;
            color: var(--white);
            margin-bottom: 1.25rem;
            font-weight: 600;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }
        
        .cta-content p {
            font-size: 1.125rem;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 2.5rem;
            line-height: 1.6;
        }
        
        .contact-form {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            padding: 3rem;
            border-radius: 16px;
            max-width: 700px;
            margin: 0 auto;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            z-index: 1;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.25rem;
        }
        
        .form-group {
            margin-bottom: 1.25rem;
        }
        
        .form-group label {
            display: block;
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 0.5rem;
            font-size: 0.875rem;
        }
        
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.875rem 1rem;
            border: 1px solid var(--gray-200);
            border-radius: 6px;
            font-family: inherit;
            font-size: 0.9375rem;
            transition: all 0.2s ease;
            background: var(--white);
        }
        
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(57, 238, 42, 0.1);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        .form-submit {
            width: 100%;
            background: var(--accent);
            color: var(--primary);
            padding: 1rem;
            border: none;
            border-radius: 6px;
            font-size: 0.9375rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            margin-top: 0.5rem;
        }
        
        .form-submit:hover {
            background: #2dd624;
            transform: translateY(-1px);
        }
        
        /* FAQ Section */
        .faq {
            padding: 6rem 2rem;
            background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 50%, #f5f7fa 100%);
            position: relative;
            overflow: hidden;
        }
        
        .faq::before {
            content: '';
            position: absolute;
            width: 550px;
            height: 550px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(2, 16, 36, 0.05) 0%, transparent 70%);
            top: 20%;
            left: 10%;
            filter: blur(100px);
            pointer-events: none;
            animation: float 22s ease-in-out infinite;
        }
        
        .faq::after {
            content: '';
            position: absolute;
            width: 550px;
            height: 550px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(57, 238, 42, 0.06) 0%, transparent 70%);
            bottom: 15%;
            right: 5%;
            filter: blur(110px);
            pointer-events: none;
            animation: pulse 20s ease-in-out infinite;
        }
        
        .faq-container {
            max-width: 900px;
            margin: 4rem auto 0;
        }
        
        .faq-item {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 8px;
            margin-bottom: 1rem;
            overflow: hidden;
            border: 1px solid rgba(2, 16, 36, 0.08);
            transition: all 0.2s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
        }
        
        .faq-item:hover {
            border-color: rgba(57, 238, 42, 0.2);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
        }
        
        .faq-question {
            width: 100%;
            padding: 1.5rem 2rem;
            background: none;
            border: none;
            text-align: left;
            font-size: 1rem;
            font-weight: 600;
            color: var(--primary);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: inherit;
            transition: all 0.2s ease;
        }
        
        .faq-question:hover {
            color: var(--accent);
        }
        
        .faq-icon {
            font-size: 1.25rem;
            color: var(--accent);
            transition: transform 0.2s ease;
            font-weight: 400;
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            padding: 0 2rem;
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 2rem 1.5rem;
        }
        
        .faq-answer p {
            color: var(--gray-800);
            line-height: 1.7;
            font-size: 0.9375rem;
        }
        
        /* Footer */
        .footer {
            background: var(--primary);
            color: var(--white);
            padding: 4rem 2rem 2rem;
        }
        
        .footer-container {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        
        .footer-brand img {
            height: 88px;
            margin-bottom: 1.25rem;
        }
        
        .footer-brand p {
            opacity: 0.8;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            font-size: 0.9375rem;
        }
        
        .footer h4 {
            font-size: 1rem;
            margin-bottom: 1.25rem;
            color: var(--accent);
            font-weight: 600;
        }
        
        .footer ul {
            list-style: none;
        }
        
        .footer ul li {
            margin-bottom: 0.75rem;
        }
        
        .footer ul li a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.2s ease;
            font-size: 0.9375rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .footer ul li a:hover {
            color: var(--accent);
        }
        
        .footer-contact {
            background: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: 8px;
            border: 1px solid rgba(57, 238, 42, 0.2);
        }
        
        .footer-contact h4 {
            color: var(--white);
            margin-bottom: 1rem;
        }
        
        .social-links {
            display: flex;
            gap: 0.75rem;
            margin-top: 1.25rem;
        }
        
        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: all 0.2s ease;
        }
        
        .social-links a:hover {
            background: var(--accent);
            color: var(--primary);
        }
        
        .social-links svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
            text-align: center;
            opacity: 0.7;
            font-size: 0.875rem;
        }
        
        /* Responsive */
        @media (max-width: 1200px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .results-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 968px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                width: 70%;
                background: var(--primary);
                flex-direction: column;
                justify-content: center;
                transition: right 0.3s ease;
                box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
            }
            
            .nav-links.active {
                right: 0;
            }
            
            .mobile-toggle {
                display: block;
            }
            
            .hero-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .hero-stats {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .process-flow {
                grid-template-columns: 1fr;
            }
            
            .process-flow::before {
                display: none;
            }
            
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            
            .results-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .whatsapp-float {
                width: 56px;
                height: 56px;
                bottom: 20px;
                right: 20px;
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .fade-in {
            animation: fadeInUp 0.6s ease forwards;
        }
        
        .reveal {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease;
        }
        
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }
