
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary: #1e3a8a;
            --secondary: #f59e0b;
            --accent: #3b82f6;
            --light: #f8fafc;
            --dark: #0f172a;
            --gray: #64748b;
            --success: #10b981;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            color: var(--dark);
            background-color: var(--light);
            line-height: 1.6;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header e Navegação */
        header {
            background-color: rgba(15, 23, 42, 0.95);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            color: white;
            font-size: 1.8rem;
            font-weight: 700;
            text-decoration: none;
        }

        .logo i,
        .logo .logo-image {
            color: var(--secondary);
            margin-right: 10px;
            font-size: 2rem;
        }

        .logo .logo-image {
            width: 42px;
            height: 42px;
            object-fit: contain;
            border-radius: 10px;
            background-color: rgba(255, 255, 255, 0.08);
            padding: 4px;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 30px;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--secondary);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            min-height: 100svh;
            background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.9)), url('https://images.unsplash.com/photo-1549399542-7e3f8b79c341?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center 72%;
            display: flex;
            align-items: center;
            color: white;
            text-align: left;
            padding-top: 80px;
            padding-bottom: 40px;
        }

        .hero-content {
            max-width: 700px;
        }

        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero h1 span {
            color: var(--secondary);
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .btn {
            display: inline-block;
            background-color: var(--secondary);
            color: var(--dark);
            padding: 15px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background-color: #e69500;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
        }

        .btn-secondary {
            background-color: transparent;
            color: white;
            border: 2px solid var(--secondary);
            margin-left: 15px;
        }

        .btn-secondary:hover {
            background-color: rgba(245, 158, 11, 0.1);
        }

        /* Seções Gerais */
        section {
            padding: 100px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background-color: var(--secondary);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .section-title p {
            color: var(--gray);
            max-width: 700px;
            margin: 20px auto 0;
        }

        /* Serviços */
        .services {
            background-color: #f1f5f9;
        }

        .service-cards {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            text-align: center;
            padding: 40px 25px;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background-color: rgba(59, 130, 246, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
        }

        .service-icon i {
            font-size: 2.5rem;
            color: var(--accent);
        }

        .service-card h3 {
            color: var(--dark);
            margin-bottom: 15px;
            font-size: 1.5rem;
        }

        .service-card p {
            color: var(--gray);
            margin-bottom: 20px;
        }

        .price {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            margin: 15px 0;
        }

        .price span {
            font-size: 1rem;
            color: var(--gray);
            font-weight: normal;
        }

        /* Processo */
        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin-top: 60px;
        }

        .process-steps::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 10%;
            width: 80%;
            height: 3px;
            background-color: var(--accent);
            z-index: 1;
        }

        .step {
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
            max-width: 200px;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 700;
            margin: 0 auto 25px;
            border: 5px solid white;
            box-shadow: 0 0 0 3px var(--accent);
        }

        .step h3 {
            margin-bottom: 10px;
            color: var(--dark);
        }

        .step p {
            color: var(--gray);
        }

        /* Galeria Antes/Depois */
        .gallery {
            background-color: #f1f5f9;
        }

        .gallery-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }

        .comparison-card {
            flex: 0 1 370px;
            width: min(100%, 370px);
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            cursor: pointer;
        }

        .comparison-card:focus-visible {
            outline: 3px solid rgba(59, 130, 246, 0.45);
            outline-offset: 4px;
        }

        .comparison-images {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .before, .after {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
        }

        .after {
            width: 50%;
            border-right: 3px solid var(--secondary);
        }

        .comparison-info {
            padding: 25px;
        }

        .comparison-info h3 {
            color: var(--dark);
            margin-bottom: 10px;
        }

        .car-model {
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 10px;
            display: block;
        }

        /* Benefícios */
        #beneficios {
            background:
                radial-gradient(circle at top left, rgba(59, 130, 246, 0.08), transparent 38%),
                linear-gradient(180deg, #ffffff 0%, #eef4fb 100%);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 28px;
        }

        .benefit-card {
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 290px;
            padding: 28px;
            border-radius: 24px;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #f8fbff 100%);
            border: 1px solid rgba(148, 163, 184, 0.18);
            box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
            overflow: hidden;
            transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
        }

        .benefit-card::before {
            content: '';
            position: absolute;
            inset: 0 auto auto 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--secondary), var(--accent));
        }

        .benefit-card::after {
            content: '';
            position: absolute;
            top: -70px;
            right: -35px;
            width: 170px;
            height: 170px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, rgba(59, 130, 246, 0) 72%);
            pointer-events: none;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            border-color: rgba(59, 130, 246, 0.28);
            box-shadow: 0 24px 50px rgba(15, 23, 42, 0.14);
        }

        .benefit-card:nth-child(2)::before {
            background: linear-gradient(90deg, #10b981, #3b82f6);
        }

        .benefit-card:nth-child(3)::before {
            background: linear-gradient(90deg, #f59e0b, #f97316);
        }

        .benefit-card:nth-child(4)::before {
            background: linear-gradient(90deg, #0f766e, #10b981);
        }

        .benefit-card-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            margin-bottom: 28px;
        }

        .benefit-icon {
            width: 72px;
            height: 72px;
            border-radius: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.18), rgba(59, 130, 246, 0.12));
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
        }

        .benefit-icon i {
            font-size: 1.9rem;
            color: var(--success);
        }

        .benefit-tag {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 8px 14px;
            border-radius: 999px;
            background-color: rgba(30, 58, 138, 0.08);
            color: var(--primary);
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            white-space: nowrap;
        }

        .benefit-content {
            position: relative;
            z-index: 1;
        }

        .benefit-stat {
            display: inline-block;
            margin-bottom: 12px;
            color: var(--primary);
            font-size: 1.9rem;
            font-weight: 800;
            line-height: 1;
        }

        .benefit-content h3 {
            margin-bottom: 12px;
            color: var(--dark);
            font-size: 1.45rem;
            line-height: 1.25;
        }

        .benefit-content p {
            color: var(--gray);
            font-size: 1rem;
            line-height: 1.8;
        }

        /* Contato */
        .contact {
            background-color: #f1f5f9;
        }

        .contact-content {
            display: flex;
            gap: 50px;
        }

        .contact-info {
            flex: 1;
        }

        .contact-form {
            flex: 1;
            background-color: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }

        .contact-details {
            margin-top: 30px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }

        .contact-item i {
            background-color: var(--primary);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: border 0.3s;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--accent);
            outline: none;
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 60px 0 30px;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column {
            flex: 1;
            min-width: 250px;
        }

        .footer-column h3 {
            color: var(--secondary);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--secondary);
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: all 0.3s;
        }

        .social-icons a:hover {
            background-color: var(--secondary);
            color: var(--dark);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #cbd5e1;
            font-size: 0.9rem;
        }

        .admin-fab {
            position: fixed;
            right: 20px;
            bottom: 20px;
            z-index: 1200;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 88px;
            padding: 14px 18px;
            border-radius: 999px;
            text-decoration: none;
            font-weight: 700;
            color: white;
            background: linear-gradient(135deg, rgba(30, 58, 138, 0.95), rgba(59, 130, 246, 0.92));
            box-shadow: 0 20px 40px rgba(15, 23, 42, 0.22);
        }

        .admin-fab:hover {
            transform: translateY(-2px);
        }

        /* Responsividade */
        @media (max-width: 992px) {
            .process-steps {
                flex-direction: column;
                align-items: center;
                gap: 50px;
            }
            
            .process-steps::before {
                display: none;
            }
            
            .contact-content {
                flex-direction: column;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 768px) {
            .logo {
                font-size: 1.4rem;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--dark);
                flex-direction: column;
                padding: 20px;
                text-align: center;
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links li {
                margin: 15px 0;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero h1 {
                font-size: 2.3rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }
            
            .hero-buttons {
                display: flex;
                flex-direction: column;
                gap: 15px;
            }
            
            .btn-secondary {
                margin-left: 0;
            }

            .admin-fab {
                right: 16px;
                bottom: 16px;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 1.9rem;
            }

            .logo {
                font-size: 1.18rem;
            }

            .logo span {
                line-height: 1.1;
            }

            section {
                padding: 70px 0;
            }

            .btn {
                padding: 12px 25px;
            }
            
            .service-cards, .gallery-container, .benefits-grid {
                grid-template-columns: 1fr;
            }

            .benefit-card {
                min-height: auto;
                padding: 24px;
            }

            .benefit-card-top {
                align-items: flex-start;
                flex-direction: column;
                margin-bottom: 22px;
            }

            .benefit-tag {
                white-space: normal;
            }
        }
    
