﻿
        :root {
            --primary-red: #eb3d3d;
            --secondary-red: #ef4444;
            --light-red: #fef2f2;
            --dark-red: #b91c1c;
            --gray-50: #f9fafb;
            --gray-100: #f3f4f6;
            --gray-900: #111827;
        }

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

body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            background-image: url('img/fundobranco.png');
            background-size: 100% auto;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            font-size: 18px; /* Aumentado de 16px padrÃ£o para 18px */
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: #b91c1c;
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.3s ease;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
        }

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

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary-red);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: white;
            font-weight: 500;
            transition: color 0.3s ease, transform 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: white;
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: #f3f4f6; /* Um branco um pouco mais suave para o hover */
            transform: translateY(-2px);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            height: 75vh; /* Aumentado de 70vh para 75vh */
            background-image: url('img/fundobranco2.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding: 2rem;
            border-bottom: 1px solid #e5e7eb;
            margin-bottom: 3rem; /* Aumentado de 2rem para 3rem */
        }

        .hero-container {
            display: flex;
            max-width: 1200px;
            width: 100%;
            align-items: center;
            justify-content: space-between;
            gap: 2rem; /* Reduzido de 3rem para 2rem para dar mais espaÃ§o Ã  imagem */
            text-align: left;
        }

        .hero-text {
            flex: 0 0 50%; /* Reduzido de 55% para 50% */
            max-width: 50%;
        }

        .hero-image {
            flex: 0 0 45%; /* Aumentado de 40% para 45% */
            max-width: 45%; /* Aumentado de 40% para 45% */
            display: flex;
            justify-content: center;
        }

        .hero-image img {
            max-width: 100%; /* Aumentado de 90% para 100% */
            height: auto;
            border-radius: 12px;
            max-height: 450px; /* Aumentado de 400px para 450px */
            object-fit: contain;
        }

        @media (max-width: 768px) {
            .hero {
                height: auto;
                padding: 8rem 2rem 4rem;
                text-align: center;
            }
            .hero-container {
                flex-direction: column;
                gap: 2rem;
            }
            .hero-text, .hero-image { flex: 1; max-width: 100%; }
        }

        .hero-content {
            max-width: 600px;
            padding: 0;
            z-index: 2;
            position: relative;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            color: var(--primary-red);
            margin-bottom: 1rem;
            font-weight: 800;
            line-height: 1.2;
            text-shadow: 1px 1px 3px rgba(235, 61, 61, 0.3);
            animation: none;
        }

        .hero p {
            font-size: 1.1rem;
            color: #7f1d1d;
            margin-bottom: 2rem;
            animation: none;
        }

        .cta-button {
            display: inline-block;
            padding: 0.85rem 2rem;
            background: var(--primary-red);
            color: white;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 700;
            transition: background 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 15px rgba(235, 61, 61, 0.4);
            animation: none;
        }

        .cta-button:hover {
            background: var(--dark-red);
            box-shadow: 0 6px 20px rgba(185, 28, 28, 0.6);
            transform: translateY(-2px);
        }

        /* Floating Animation */
        .floating-elements {
            display: none;
        }

        /* About Section */
        .about {
            padding: 6rem 0; /* Aumentado de 5rem para 6rem */
            background: transparent;
            margin-top: 2rem; /* Adicionado margin-top */
        }

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

        .section-title {
            text-align: center;
            font-size: 3rem; /* Aumentado de 2.5rem para 3rem */
            color: var(--gray-900);
            margin-bottom: 1rem;
            position: relative;
        }

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

        .section-subtitle {
            text-align: center;
            color: #666;
            margin-bottom: 3rem;
            font-size: 1.3rem; /* Aumentado de 1.1rem para 1.3rem */
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-bottom: 4rem;
        }

        .about-text {
            font-size: 1.3rem; /* Aumentado de 1.1rem para 1.3rem */
            line-height: 1.8;
            color: #555;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .stat-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

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

        .stat-number {
            font-size: 3rem; /* Aumentado de 2.5rem para 3rem */
            font-weight: bold;
            color: var(--primary-red);
            display: block;
        }

        .stat-label {
            color: #666;
            font-size: 1.1rem; /* Aumentado de 0.9rem para 1.1rem */
            margin-top: 0.5rem;
        }

        /* Services Section */
        .services {
            padding: 5rem 0;
            background: transparent;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(235, 61, 61, 0.1), transparent);
            transition: left 0.5s ease;
        }

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

        .service-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-red);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
            font-size: 2rem;
        }

        .service-card h3 {
            font-size: 1.5rem; /* Aumentado de 1.3rem para 1.5rem */
            margin-bottom: 1rem;
            color: var(--gray-900);
        }

        .service-card p {
            color: #666;
            line-height: 1.6;
            font-size: 1.1rem; /* Aumentado de 1rem para 1.1rem */
        }

        /* Environments Section */
        .environments {
            padding: 5rem 0;
            background-image: url('img/fundovermelho.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            color: ee4242;
        }

        .environments-grid {
            display: grid;
            grid-template-columns:(255, 0, 0);
        }

        .env-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .env-item {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .env-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgb(124, 1, 1);
            background: var(--primary-red);
            color: white;
            border-color: var(--dark-red);
            cursor: pointer;
        }

        .env-item i {
            font-size: 2rem;
            color: var(--primary-red);
            margin-bottom: 1rem;
        }

        .env-item:hover i {
            color: white;
        }
        
        .environments .section-title,
        .environments .section-subtitle {
            color: white;
        }

        /* Contact Section */
        .contact {
            padding: 5rem 0;
            background: linear-gradient(135deg, var(--gray-900) 0%, #1f2937 100%);
            color: white;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .contact-info h3 {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            color: var(--primary-red);
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .contact-item i {
            width: 50px;
            height: 50px;
            background: var(--primary-red);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .demo-form {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .demo-form h3 {
            color: var(--primary-red);
            margin-bottom: 1.5rem;
            text-align: center;
        }

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

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            backdrop-filter: blur(5px);
        }

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

        .submit-btn {
            width: 100%;
            padding: 1rem;
            background: var(--primary-red);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            background: var(--dark-red);
            transform: translateY(-2px);
        }

    /* Footer */
    .footer {
        background: linear-gradient(135deg, var(--gray-900) 0%, #1a1a1a 50%, #2d2d2d 100%);
        color: white;
        position: relative;
        overflow: hidden;
        padding: 3rem 2rem 1.5rem; /* Reduzido de 4rem 2rem 2rem para 3rem 2rem 1.5rem */
        margin-top: auto;
    }

    .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-red), #ff6b6b, var(--primary-red));
    }

    .footer::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="10" cy="50" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="90" cy="30" r="0.5" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
        opacity: 0.5;
        pointer-events: none;
    }

    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        gap: 2.5rem; /* Reduzido de 3rem para 2.5rem */
        margin-bottom: 2rem; /* Reduzido de 3rem para 2rem */
        position: relative;
        z-index: 1;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-logo {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .footer-logo img {
        height: 50px;
        width: auto;
        filter: brightness(0) invert(1);
    }

    .footer-logo h3 {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--primary-red);
        margin: 0;
    }

    .footer-description {
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.6;
        font-size: 1rem;
    }

    .footer-links h4 {
        color: white;
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
        position: relative;
    }

    .footer-links h4::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 30px;
        height: 2px;
        background: var(--primary-red);
    }

    .footer-links ul {
        list-style: none;
        padding: 0;
    }

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

    .footer-links a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

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

    .footer-contact h4 {
        color: white;
        font-size: 1.3rem; /* Reduzido de 1.4rem para 1.3rem */
        font-weight: 600;
        margin-bottom: 1.5rem; /* Reduzido de 2rem para 1.5rem */
        position: relative;
    }

    .footer-contact h4::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 30px;
        height: 2px;
        background: var(--primary-red);
    }

    .footer-contact-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem; /* Reduzido de 1.5rem para 1rem */
        margin-bottom: 1.5rem; /* Reduzido de 2.5rem para 1.5rem */
        color: rgba(255, 255, 255, 0.8);
        padding: 0.2rem 0; /* Reduzido de 0.5rem para 0.2rem */
    }

    .footer-contact-item i {
        color: var(--primary-red);
        font-size: 1.2rem; /* Reduzido de 1.4rem para 1.2rem */
        margin-top: 0.2rem; /* Reduzido de 0.3rem para 0.2rem */
        min-width: 22px; /* Reduzido de 25px para 22px */
        flex-shrink: 0; /* Evita que o Ã­cone encolha */
    }

    .footer-contact-item div strong {
        color: white;
        display: block;
        margin-bottom: 0.3rem; /* Reduzido de 0.5rem para 0.3rem */
        font-size: 0.95rem; /* Reduzido de 1rem para 0.95rem */
        font-weight: 600;
    }

    .footer-contact-item div {
        line-height: 1.4; /* Reduzido de 1.6 para 1.4 */
        font-size: 0.9rem; /* Adicionado tamanho menor para o texto */
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 2rem;
        text-align: center;
        position: relative;
        z-index: 1;
    }

    .footer-bottom-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .footer-copyright {
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.9rem;
    }

    .footer-social {
        display: flex;
        gap: 1rem;
    }

    .footer-social a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 1.1rem;
    }

    .footer-social a:hover {
        background: var(--primary-red);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(235, 61, 61, 0.3);
    }

    @media (max-width: 768px) {
        .footer-content {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .footer-bottom-content {
            flex-direction: column;
            gap: 1.5rem;
        }

        .footer-social {
            order: -1;
        }
    }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        

        @keyframes typing {
            from { width: 0; }
            to { width: 100%; }
        }

        @keyframes blink {
            50% { border-color: transparent; }
        }

        /* Animation classes */
        .animate-fade-in-up {
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .animate-fade-in-left {
            animation: fadeInLeft 0.8s ease-out forwards;
        }

        .animate-fade-in-right {
            animation: fadeInRight 0.8s ease-out forwards;
        }

        .animate-float {
            animation: float 3s ease-in-out infinite;
        }

        .typing-effect {
            overflow: hidden;
            border-right: 3px solid var(--primary-red);
            white-space: nowrap;
            animation: typing 3.5s steps(40, end), blink 0.75s step-end infinite;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .contact-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .services-grid,
            .env-grid {
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            /* Ajuste de background para mobile */
            body,
            .environments,
            .benefits,
            .testimonials {
                background-attachment: scroll;
                background-size: cover;
                background-position: center center;
            }
        }

        /* Estilos para o menu mobile */
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: white;
            cursor: pointer;
        }

        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
                z-index: 1100; /* Para ficar acima do menu */
            }
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Loading animation */
        .loading {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .loading.loaded {
            opacity: 1;
            transform: translateY(0);
        }

        /* Benefits Section */
        .benefits {
            padding: 5rem 0;
            background-image: url('img/fundovermelho.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            color: white;
        }

        .benefits-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .benefits .section-title,
        .benefits .section-subtitle,
        .benefits .benefits-text h3,
        .benefits .benefits-list li {
            color: white;
        }

        .benefits-text h3 {
            color: var(--gray-900);
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .benefits-list {
            list-style: none;
            padding: 0;
            margin-bottom: 2rem;
        }

        .benefits-list li {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            color: #555;
            font-size: 1rem;
        }

        .benefits-list li i {
            color: white;
            width: 20px;
            font-size: 1.1rem;
        }

        .benefits-sources {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid var(--primary-red);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .benefits-sources p {
            margin-bottom: 0.5rem;
            color: #666;
            font-size: 0.9rem;
            line-height: 1.4;
        }

        .benefits-sources em {
            color: var(--gray-900);
            font-style: italic;
        }

        .benefits-stats {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .benefit-stat-card {
            background: white;
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            gap: 1rem;
            transition: transform 0.3s ease;
        }

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

        .stat-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .stat-content h4 {
            font-size: 1.1rem;
            color: var(--gray-900);
            margin-bottom: 0.5rem;
        }

        .stat-content p {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.4;
        }

        /* Blog Section Improvements */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .blog-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding: 1.5rem;
            display: flex;
            gap: 1rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .blog-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .blog-image {
            flex-shrink: 0;
            width: 60px;
            height: 60px;
            background: var(--primary-red);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
        }

        .blog-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .blog-category {
            font-size: 0.85rem;
            color: var(--primary-red);
            font-weight: 600;
            margin-bottom: 0.3rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .blog-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 0.5rem;
        }

        .blog-excerpt {
            font-size: 0.95rem;
            color: #555;
            margin-bottom: 0.8rem;
            line-height: 1.4;
        }

        .read-more {
            font-weight: 600;
            color: var(--primary-red);
            text-decoration: none;
            font-size: 0.9rem;
            align-self: flex-start;
            display: flex;
            align-items: center;
            gap: 0.3rem;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .read-more:hover {
            color: var(--dark-red);
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            .benefits-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .benefits-stats {
                flex-direction: row;
                overflow-x: auto;
                gap: 1rem;
                padding: 0 1rem;
            }

            .benefit-stat-card {
                min-width: 250px;
                flex-shrink: 0;
            }
        }

        /* Legal Section */
        .legal {
            padding: 5rem 0;
            background: transparent;
        }

        .legal-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .legal-card {
            background: white; /* Alterado de var(--light-red) para white */
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 2px solid transparent;
        }

        .legal-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(235, 61, 61, 0.2);
            border-color: var(--primary-red);
        }

        .legal-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            margin: 0 auto 1.5rem;
        }

        .legal-text h3 {
            font-size: 1.3rem;
            color: var(--gray-900);
            margin-bottom: 1rem;
        }

        .legal-text p {
            color: #666;
            line-height: 1.6;
            font-size: 1rem;
        }

        /* FAQ Section Improvements */
        .faq {
            padding: 4rem 0;
            background: transparent;
            overflow: visible;
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 2rem;
            overflow: visible;
        }

        .faq-item {
            border-bottom: 1px solid #ddd;
            padding: 1rem 0;
        }

        .faq-question {
            width: 100%;
            background: none;
            border: none;
            text-align: left;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--gray-900);
            cursor: pointer;
            padding: 0.5rem 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: color 0.3s ease;
        }

        .faq-question:hover,
        .faq-question:focus {
            color: var(--primary-red);
            outline: none;
        }

        .faq-question i {
            transition: transform 0.3s ease;
            font-size: 1rem;
            color: var(--primary-red);
        }

        .faq-question i.rotated {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: none;
            overflow: visible;
            transition: none;
            color: #555;
            font-size: 1rem;
            line-height: 1.5;
            padding-left: 1rem;
            display: none;
        }

        .faq-answer.active {
            display: block;
            padding-top: 0.5rem;
            padding-bottom: 1rem;
        }

        /* Timeline Section */
        .timeline {
            padding: 5rem 0;
            background: transparent;
        }

        .timeline-container {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }

        .timeline-container::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--primary-red);
            transform: translateX(-50%);
        }

        .timeline-item {
            position: relative;
            margin-bottom: 3rem;
            width: 50%;
        }

        .timeline-item:nth-child(even) {
            left: 50%;
        }

        .timeline-item:nth-child(odd) {
            left: 0;
        }

        .timeline-content {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border-left: 4px solid var(--primary-red);
            position: relative;
            margin-left: 2rem;
        }

        .timeline-item:nth-child(even) .timeline-content {
            margin-left: 0;
            margin-right: 2rem;
            border-left: none;
            border-right: 4px solid var(--primary-red);
        }

        .timeline-year {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary-red);
            margin-bottom: 0.5rem;
        }

        .timeline-content h3 {
            font-size: 1.2rem;
            color: var(--gray-900);
            margin-bottom: 0.5rem;
        }

        .timeline-content p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        /* Testimonials Section */
        .testimonials {
            padding: 5rem 0;
            background: #b91c1c;
            color: white;
            text-align: center;
        }

        .testimonials-logo {
            text-align: center;
            margin-bottom: 2rem;
        }

        .testimonials-logo img {
            height: 80px;
            width: auto;
            filter: brightness(0) invert(1);
        }

        .testimonials .section-title {
            color: white;
            font-size: 2.8rem;
            margin-bottom: 3rem;
            font-family: 'Montserrat', sans-serif;
            font-weight: 300;
            letter-spacing: 0.5px;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .testimonial-image-card {
            background: white;
            border-radius: 20px;
            padding: 0;
            overflow: visible; /* Mudado para visible */
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: all 0.4s ease;
            position: relative;
        }

        .testimonial-image-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.4);
            z-index: 10;
        }

        .testimonial-image-card img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 20px;
            transition: transform 0.5s ease;
        }

        .testimonial-image-card:hover img {
            transform: scale(1.2); /* Aumentado para 1.2 */
        }

        @media (max-width: 768px) {
            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .testimonials-logo img {
                height: 60px;
            }

            .testimonials .section-title {
                font-size: 2rem;
            }
        }

        /* Newsletter Section */
        .newsletter {
            padding: 4rem 0;
            background: linear-gradient(135deg, var(--gray-900) 0%, #2d2d2d 100%);
            color: white;
        }

        .newsletter-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 3rem;
            align-items: center;
            max-width: 1000px;
            margin: 0 auto;
        }

        .newsletter-text h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: white;
        }

        .newsletter-text p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.1rem;
        }

        .newsletter-form {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .newsletter-form .form-group {
            margin-bottom: 1rem;
        }

        .newsletter-form input {
            width: 100%;
            padding: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
        }

        .newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .newsletter-btn {
            width: 100%;
            padding: 1rem;
            background: var(--primary-red);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .newsletter-btn:hover {
            background: var(--dark-red);
            transform: translateY(-2px);
        }

        /* Newsletter Form Wrapper */
        .newsletter-form-wrapper {
            display: flex;
            gap: 2rem;
            align-items: center;
            justify-content: center;
        }

        /* QR Code Styles */
        .newsletter-qrcode {
            flex-shrink: 0;
        }

        .qrcode-container {
            background: white;
            padding: 1.5rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .qrcode-container img {
            width: 150px;
            height: 150px;
            border-radius: 10px;
            margin-bottom: 1rem;
        }

        .qrcode-container p {
            color: var(--gray-900);
            font-size: 0.9rem;
            font-weight: 600;
            margin: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .qrcode-container i {
            color: #25d366;
            font-size: 1.2rem;
        }

        @media (max-width: 768px) {
            .timeline-container::before {
                left: 30px;
            }

            .timeline-item {
                width: 100%;
                left: 0 !important;
                margin-left: 60px;
            }

            .timeline-content {
                margin-left: 0 !important;
                margin-right: 0 !important;
            }

            .newsletter-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .newsletter-text h2 {
                font-size: 2rem;
            }

            .newsletter-form-wrapper {
                flex-direction: column;
                gap: 1.5rem;
            }

            .qrcode-container {
                padding: 1rem;
            }

            .qrcode-container img {
                width: 120px;
                height: 120px;
            }

            .nav-links {
                position: fixed;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100vh;
                background: var(--gray-900);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                padding-top: 2rem;
                transition: left 0.3s ease;
                box-shadow: 0 4px 30px rgba(0,0,0,0.1);
                z-index: 1000;
            }

            .nav-links a {
                color: white;
                font-size: 1.5rem;
                padding: 1rem;
            }

            .nav-links.active {
                left: 0;
            }
        }

        /* WhatsApp Float Button */
        .whatsapp-float {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 60px;
            height: 60px;
            background: #25d366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            text-decoration: none;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
            z-index: 1000;
            animation: pulse 2s infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
        }

        .whatsapp-tooltip {
            position: absolute;
            right: 70px;
            background: #333;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            pointer-events: none;
        }

        .whatsapp-float:hover .whatsapp-tooltip {
            opacity: 1;
            visibility: visible;
        }

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

        @media (max-width: 768px) {
            .whatsapp-float {
                bottom: 15px;
                right: 15px;
                width: 55px;
                height: 55px;
                font-size: 1.3rem;
            }

            .whatsapp-tooltip {
                display: none;
            }
        }

        /* Carrossel Hero */
        .hero-carousel {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .carousel-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .carousel-slide.active {
            opacity: 1;
            position: relative;
        }

        .carousel-slide img {
            max-width: 100%; /* Aumentado de 90% para 100% */
            height: auto;
            border-radius: 12px;
            max-height: 420px; /* Aumentado de 350px para 420px */
            object-fit: contain;
        }

        .carousel-indicators {
            position: absolute;
            bottom: -30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .carousel-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(235, 61, 61, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            padding: 0;
        }

        .carousel-indicator.active {
            background: var(--primary-red);
            width: 30px;
            border-radius: 6px;
        }

        /* Melhorias Timeline Mobile */
        @media (max-width: 768px) {
            .timeline-container::before {
                left: 20px;
            }

            .timeline-item {
                width: 100%;
                left: 0 !important;
                margin-left: 50px;
                margin-bottom: 2rem;
            }

            .timeline-content {
                margin-left: 0 !important;
                margin-right: 0 !important;
                border-left: 4px solid var(--primary-red) !important;
                border-right: none !important;
            }

            .timeline-year {
                font-size: 1.2rem;
            }

            .timeline-content h3 {
                font-size: 1rem;
            }

            .timeline-content p {
                font-size: 0.85rem;
            }
        }
    