        /* Reset e configurações gerais */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            overflow-x: hidden;
            width: 100%;
        }

        body {
            font-family: 'Inter', sans-serif;
            font-weight: 400;
            line-height: 1.6;
            color: #555555;
            background-color: #FAFAFA;
            overflow-x: hidden;
            width: 100%;
            max-width: 100%;
        }

        :root {
            --red-primary: #e61919;
            --red-dark: #b81414;
            --red-btn-gradient: linear-gradient(135deg, #e61919 0%, #ff2a2a 100%);
            --gray-dark: #333333;
            --gray-medium: #555555;
            --gray-light: #757575;
            --graphite: #F5F5F5;
            --white: #FFFFFF;
            --off-white: #F8F9FA;
            --premium-white: #F8F9FA;
            --gray-text: #666666;
            --gray-border: #E5E5E5;
            --transition: all 0.3s ease;
            --light-gradient: linear-gradient(135deg, #FFFFFF 0%, #F8F8F8 100%);
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 600;
            color: var(--gray-dark);
            line-height: 1.3;
            margin-bottom: 1rem;
        }

        h1 {
            font-size: 2.5rem;
        }

        h2 {
            font-size: 2rem;
            text-align: center;
            margin-bottom: 3rem;
            color: var(--gray-dark);
        }

        h3 {
            font-size: 1.5rem;
            color: var(--gray-dark);
        }

        p {
            margin-bottom: 1.5rem;
            color: var(--gray-medium);
        }

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

        ul {
            list-style: none;
        }

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

        section {
            padding: 5rem 0;
            background-color: var(--white);
        }

        .btn {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            border-radius: 4px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            text-align: center;
            white-space: nowrap;
        }

        .btn-red {
            background: var(--red-btn-gradient);
            color: var(--white);
            font-weight: 600;
        }

        .btn-red:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(230, 25, 25, 0.3);
            background: linear-gradient(135deg, #ff2a2a 0%, #e61919 100%);
        }

        .btn-outline {
            background: transparent;
            color: var(--red-primary);
            border: 1px solid var(--red-primary);
        }

        .btn-outline:hover {
            background: rgba(230, 25, 25, 0.08);
            border-color: var(--red-dark);
            color: var(--red-dark);
            transform: translateY(-2px);
        }

        /* Header */
        header {
            background-color: var(--off-white);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            z-index: 1000;
            padding: 0.75rem 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
        }

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

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--red-primary);
            letter-spacing: -0.5px;
        }

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

        nav ul {
            display: flex;
            gap: 2rem;
        }

        nav a {
            color: var(--gray-dark);
            font-weight: 500;
            font-size: 0.9rem;
            padding: 0.5rem 0;
            position: relative;
        }

        nav a:hover {
            color: var(--red-primary);
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--red-primary);
            transition: var(--transition);
        }

        nav a:hover::after {
            width: 100%;
        }

        .header-cta .btn {
            padding: 0.5rem 1.2rem;
            font-size: 0.85rem;
            background: var(--red-btn-gradient);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--gray-dark);
            font-size: 1.3rem;
            cursor: pointer;
            padding: 0.25rem;
        }

        /* Hero Section */
        .hero {
            background: var(--premium-white);
            color: var(--gray-dark);
            padding-top: 8rem;
            padding-bottom: 6rem;
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid var(--gray-border);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 80%, rgba(230, 25, 25, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(230, 25, 25, 0.03) 0%, transparent 50%);
            z-index: 1;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(230, 25, 25, 0.1);
            color: var(--red-primary);
            padding: 0.4rem 0.9rem;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.8px;
            margin-bottom: 2rem;
            border: 1px solid rgba(230, 25, 25, 0.2);
            text-transform: uppercase;
        }

        .hero-badge i {
            color: var(--red-primary);
        }

        .hero h1 {
            color: var(--gray-dark);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.15rem;
            color: var(--gray-medium);
            max-width: 700px;
            margin: 0 auto 3rem;
            line-height: 1.7;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 4rem;
        }

        .hero-buttons .btn {
            padding: 0.8rem 1.8rem;
        }

        /* Logo Carousel */
        .logo-section {
            background-color: var(--premium-white);
            padding: 2.5rem 0;
            position: relative;
            z-index: 2;
            border-bottom: 1px solid var(--gray-border);
        }

        .logo-section h3 {
            text-align: center;
            color: var(--gray-medium);
            font-weight: 500;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .logo-carousel-container {
            width: 100%;
            overflow: hidden;
            position: relative;
        }

        .logo-carousel {
            display: flex;
            animation: scroll 30s linear infinite;
            width: max-content;
        }

        .logo-item {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 1.5rem;
            filter: grayscale(100%);
            opacity: 0.6;
            transition: var(--transition);
        }

        .logo-item:hover {
            filter: grayscale(0%);
            opacity: 1;
        }

        .logo-img {
            height: 25px;
            width: auto;
            object-fit: contain;
        }

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

        /* Badge Legal */
        .legal-badge {
            background-color: var(--premium-white);
            border-top: 1px solid var(--gray-border);
            padding: 1.5rem 0;
            font-size: 0.8rem;
            line-height: 1.5;
        }

        .legal-badge .container {
            max-width: 900px;
        }

        .legal-badge p {
            margin-bottom: 0.5rem;
            color: var(--gray-medium);
        }

        .legal-badge strong {
            color: var(--gray-dark);
            font-weight: 600;
        }

        /* Seções com alternância de cores */
        .services {
            background-color: var(--white);
        }

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

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

        .differentiator {
            background-color: var(--premium-white);
        }

        .final-cta {
            background-color: var(--white);
            border-top: 1px solid var(--gray-border);
            border-bottom: 1px solid var(--gray-border);
        }

        /* CTA Final - Corrigido o alinhamento */
        .final-cta .container {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .final-cta h2 {
            margin-bottom: 1.5rem;
        }

        .final-cta p {
            max-width: 600px;
            margin: 0 auto 2rem;
            color: var(--gray-medium);
        }

        .final-cta .btn {
            margin-top: 1rem;
        }

        /* O Que Fazemos */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: var(--white);
            border: 1px solid var(--gray-border);
            border-radius: 8px;
            padding: 2rem;
            transition: var(--transition);
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            border-color: rgba(230, 25, 25, 0.3);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 0;
            background: var(--red-primary);
            transition: var(--transition);
        }

        .service-card:hover::before {
            height: 100%;
        }

        .service-icon {
            font-size: 1.8rem;
            color: var(--red-primary);
            margin-bottom: 1.5rem;
        }

        .service-card h3 {
            margin-bottom: 1rem;
            color: var(--gray-dark);
        }

        .service-card p {
            font-size: 0.95rem;
            color: var(--gray-medium);
        }

        /* Seção Visual */
        .visual-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .visual-item {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            height: 350px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .visual-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .visual-item:hover img {
            transform: scale(1.05);
        }

        .visual-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 2rem;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
            color: var(--white);
        }

        .visual-overlay h3 {
            color: var(--white);
            margin-bottom: 0.5rem;
        }

        .visual-overlay p {
            color: rgba(255, 255, 255, 0.85);
            font-size: 0.9rem;
            margin-bottom: 0;
            line-height: 1.5;
        }

        .visual-overlay .tech-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 0.8rem;
        }

        .tech-tag {
            background: rgba(230, 25, 25, 0.9);
            color: rgba(255, 255, 255, 0.95);
            padding: 0.25rem 0.7rem;
            border-radius: 4px;
            font-size: 0.7rem;
            font-weight: 500;
        }

        /* Seção Relatório Técnico */
        .report-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .report-text h2 {
            text-align: left;
        }

        .report-text p {
            color: var(--gray-medium);
            margin-bottom: 2rem;
        }

        .chart-container {
            background: var(--white);
            border: 1px solid var(--gray-border);
            border-radius: 8px;
            padding: 2rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }

        .chart-title {
            color: var(--gray-dark);
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .chart-legend {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 1.5rem;
        }

        .legend-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
        }

        .legend-color {
            width: 12px;
            height: 12px;
            border-radius: 2px;
        }

        .legend-tech {
            background: var(--red-primary);
        }

        .legend-no-tech {
            background: var(--gray-text);
        }

        /* Diferencial */
        .differentiator-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .differentiator p {
            font-size: 1.15rem;
            color: var(--gray-medium);
            line-height: 1.8;
        }

        /* Modais */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            padding: 1rem;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal {
            background: var(--white);
            border-radius: 12px;
            width: 90%;
            max-width: 450px;
            padding: 2rem;
            position: relative;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
            transform: translateY(20px);
            transition: transform 0.3s ease;
            max-height: 90vh;
            overflow-y: auto;
        }

        .modal-overlay.active .modal {
            transform: translateY(0);
        }

        .modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--gray-medium);
            cursor: pointer;
            transition: var(--transition);
            line-height: 1;
            padding: 0.25rem;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .modal-close:hover {
            color: var(--red-primary);
            background: rgba(0, 0, 0, 0.05);
        }

        .modal h3 {
            margin-bottom: 1rem;
            text-align: center;
            font-size: 1.4rem;
        }

        .modal p {
            text-align: center;
            margin-bottom: 1.5rem;
            color: var(--gray-medium);
            font-size: 0.95rem;
        }

        .form-group {
            margin-bottom: 1.2rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--gray-dark);
            font-size: 0.9rem;
        }

        .form-control {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 1px solid var(--gray-border);
            border-radius: 6px;
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            transition: var(--transition);
            background: var(--white);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--red-primary);
            box-shadow: 0 0 0 3px rgba(230, 25, 25, 0.1);
        }

        textarea.form-control {
            min-height: 100px;
            resize: vertical;
        }

        .modal-buttons {
            display: flex;
            gap: 0.75rem;
            margin-top: 1.5rem;
        }

        .modal-buttons .btn {
            flex: 1;
            padding: 0.7rem;
        }

        .whatsapp-icon {
            display: flex;
            justify-content: center;
            margin-bottom: 1.2rem;
            color: #25D366;
            font-size: 2.5rem;
        }

        /* Footer */
        footer {
            background-color: var(--premium-white);
            color: var(--gray-medium);
            padding: 4rem 0 2rem;
            border-top: 1px solid var(--gray-border);
        }

        .footer-container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--red-primary);
            margin-bottom: 1rem;
        }

        .footer-logo span {
            color: var(--red-primary);
        }

        .footer-about p {
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
            line-height: 1.7;
            color: var(--gray-medium);
        }

        .footer-heading {
            color: var(--gray-dark);
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: var(--gray-medium);
            font-size: 0.9rem;
        }

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

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
        }

        .footer-bottom p {
            margin-bottom: 0;
            color: var(--gray-light);
        }

        .legal-links {
            display: flex;
            gap: 1.5rem;
        }

        .legal-links a {
            color: var(--gray-light);
        }

        .legal-links a:hover {
            color: var(--red-primary);
        }

        /* Responsividade */
        @media (max-width: 992px) {
            h1 {
                font-size: 2.2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .hero h1 {
                font-size: 2.4rem;
            }
            
            .report-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .report-text h2 {
                text-align: center;
            }
            
            .footer-container {
                grid-template-columns: 1fr 1fr;
            }
            
            .footer-about {
                grid-column: 1 / span 2;
                margin-bottom: 2rem;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            nav {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--off-white);
                backdrop-filter: blur(10px);
                padding: 1rem;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: var(--transition);
                z-index: 999;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                border-top: 1px solid rgba(0, 0, 0, 0.1);
            }
            
            nav.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            
            nav ul {
                flex-direction: column;
                gap: 0;
            }
            
            nav li {
                margin-bottom: 0;
            }
            
            nav a {
                display: block;
                padding: 1rem;
                color: var(--gray-dark);
                border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            }
            
            nav a::after {
                display: none;
            }
            
            .header-cta {
                display: none;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .hero-buttons .btn {
                width: 100%;
                max-width: 250px;
            }
            
            .modal-buttons {
                flex-direction: column;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
            }
            
            .footer-about {
                grid-column: 1;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }
            
            .legal-links {
                justify-content: center;
                flex-wrap: wrap;
            }
            
            .logo-img {
                height: 18px;
            }
            
            .logo-item {
                padding: 0 1rem;
            }
        }

        @media (max-width: 576px) {
            .container {
                padding: 0 1.25rem;
            }
            
            section {
                padding: 3.5rem 0;
            }
            
            h1 {
                font-size: 1.8rem;
            }
            
            h2 {
                font-size: 1.6rem;
                margin-bottom: 2.5rem;
            }
            
            .hero {
                padding-top: 7rem;
                padding-bottom: 4rem;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1.05rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .visual-grid {
                grid-template-columns: 1fr;
            }
            
            .visual-item {
                height: 280px;
            }
            
            .modal {
                padding: 1.5rem;
                width: 95%;
            }
            
            body, html, .container, section, .hero-content {
                max-width: 100vw;
                overflow-x: hidden;
            }
            
            .logo-section {
                padding: 2rem 0;
            }
            
            .logo-img {
                height: 16px;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 1rem;
            }
            
            .hero-buttons .btn {
                padding: 0.7rem 1.5rem;
                font-size: 0.9rem;
            }
            
            .logo-carousel-container {
                margin: 0 -1rem;
            }
        }
