 
        /* Reset e Estilos Base */
        :root {
            --primary: #41c430;
            --primary-dark: #d4b010;
            --dark: #121212;
            --darker: #0a0a0a;
            --light: #f5f5f5;
            --gray: #2a2a2a;
            --light-gray: #444;
            --text: #e0e0e0;
            --text-light: #a0a0a0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        }

        @font-face {
            font-family: 'Inter';
            font-style: normal;
            font-weight: 400;
            font-display: swap;
            src: url(https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfAZ9hiA.woff2) format('woff2');
        }

        body {
            color: var(--text);
            line-height: 1.6;
            background-color: var(--dark);
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 80px 0;
            position: relative;
        }

        h2 {
            font-size: 2.5rem;
            margin-bottom: 40px;
            text-align: center;
            color: var(--light);
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), transparent);
            border-radius: 3px;
        }

        h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--light);
        }

        p {
            margin-bottom: 20px;
            color: var(--text-light);
            font-size: 1.1rem;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-align: center;
            cursor: pointer;
            border: none;
        }

        .btn-whatsapp {
            background-color: var(--primary);
            color: white;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
        }

        .btn-whatsapp:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
        }

        /* Header Moderno */
        header {
            background-color: rgba(18, 18, 18, 0.9);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--gray);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
        }

        .logo {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--light);
            display: flex;
            align-items: center;
            gap: 10px;
        }


        .nav-links {
            display: flex;
            gap: 30px;
        }

        .nav-links a {
            position: relative;
            font-weight: 500;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Hero Section Moderna */
        .hero {
            background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
            text-align: center;
            padding: 180px 0 100px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(37, 211, 102, 0.1) 0%, transparent 70%);
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 25px;
            color: var(--light);
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 40px;
            color: var(--text-light);
        }

        /* Serviços Modernos */
        .services {
            background-color: var(--darker);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .service-card {
            text-align: center;
            padding: 40px 30px;
            border-radius: 16px;
            background-color: var(--gray);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid var(--light-gray);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, transparent 100%);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border-color: var(--primary);
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 25px;
            color: var(--primary);
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Compra/Venda Moderna */
        .buy-sell {
            background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .buy-sell::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(37, 211, 102, 0.1) 0%, transparent 70%);
        }

        .buy-sell-content {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        /* Avaliações Modernas */
        .reviews {
            background-color: var(--darker);
        }

        .review-container {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .google-review {
            padding: 30px;
            background-color: var(--gray);
            border-radius: 16px;
            border: 1px solid var(--light-gray);
            text-align: left;
            transition: all 0.3s ease;
        }

        .google-review:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            border-color: var(--primary);
        }

        .review-stars {
            color: #FFD700;
            font-size: 1.2rem;
            margin-bottom: 15px;
        }

        .review-author {
            font-weight: 600;
            color: var(--light);
            margin-top: 20px;
        }

        /* Localização Moderna */
        .location {
            text-align: center;
            background-color: var(--gray);
        }

        .location-info {
            margin-top: 40px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .location-info p {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-size: 1.2rem;
            color: var(--text);
        }

        .location-info i {
            color: var(--primary);
        }

        /* Rodapé Moderno */
        footer {
            background-color: var(--darker);
            color: var(--text);
            padding: 60px 0 30px;
            text-align: center;
            border-top: 1px solid var(--gray);
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .social-links {
            margin: 30px 0;
            display: flex;
            gap: 25px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--gray);
            font-size: 1.5rem;
            color: var(--text);
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-5px);
        }

        .footer-text {
            margin-top: 20px;
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 600px;
        }

        .copyright {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid var(--light-gray);
            width: 100%;
            color: var(--text-light);
        }

        /* Botão Flutuante WhatsApp Moderno */
        .floating-whatsapp {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 2rem;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
            z-index: 999;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            animation: pulse 2s infinite;
        }

        .floating-whatsapp:hover {
            transform: scale(1.1) translateY(-5px);
            box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }

            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        /* Efeito de Partículas */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
        }

        .particle {
            position: absolute;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            pointer-events: none;
        }

        /* Responsividade */
        @media (max-width: 992px) {
            h2 {
                font-size: 2.2rem;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .nav-links {
                gap: 20px;
            }
        }

        @media (max-width: 768px) {
            h2 {
                font-size: 2rem;
            }

            .hero h1 {
                font-size: 2rem;
            }

            section {
                padding: 60px 0;
            }

            .header-container {
                flex-direction: column;
                gap: 15px;
            }

            .nav-links {
                gap: 15px;
                flex-wrap: wrap;
                justify-content: center;
            }

            .floating-whatsapp {
                width: 60px;
                height: 60px;
                font-size: 1.8rem;
                bottom: 20px;
                right: 20px;
            }
        }

        @media (max-width: 580px) {
            h2 {
                font-size: 1.8rem;
            }

            .hero h1 {
                font-size: 1.8rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .btn {
                padding: 12px 25px;
            }

            .service-card {
                padding: 30px 20px;
            }
        }
    
            .centered-title {
            text-align: center;
            margin-left: auto;
            margin-right: auto;
            display: block;
        }

        .text-center {
            text-align: center;
        }

        .centered-title {
            text-align: center;
            margin-left: auto;
            margin-right: auto;
            display: block;
        }