 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: #f1f5f9;
            color: #333;
            overflow-x: hidden;
        }

        /* Header com imagem de fundo */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('imagem-teste.jpeg');
            background-size: cover;
            background-position: center;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
        }

        .hero-content {
            max-width: 800px;
            padding: 20px;
        }

        .hero h1 {
            font-size: 4.5rem;
            font-weight: 800;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            letter-spacing: 2px;
        }

        .hero h1 span {
            color: #ff6f00;
        }

        .hero p {
            font-size: 1.5rem;
            margin-bottom: 30px;
            font-weight: 300;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.2rem;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-whatsapp {
            background: #25D366;
            color: white;
            box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
        }

        .btn-whatsapp:hover {
            background: #128C7E;
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
        }

        .btn-instagram {
            background: #E4405F;
            color: white;
            box-shadow: 0 10px 20px rgba(228, 64, 95, 0.3);
        }

        .btn-instagram:hover {
            background: #c13584;
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(228, 64, 95, 0.4);
        }

        /* Seção de serviços */
        .services {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: #1e293b;
            font-weight: 700;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: #ff6f00;
            border-radius: 2px;
        }

        .section-title p {
            color: #64748b;
            font-size: 1.2rem;
            margin-top: 15px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .service-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s;
            position: relative;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .service-img {
            height: 250px;
            overflow: hidden;
            position: relative;
        }

        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .service-card:hover .service-img img {
            transform: scale(1.1);
        }

        .service-tag {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #ff6f00;
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 1rem;
            z-index: 2;
            box-shadow: 0 5px 15px rgba(255, 111, 0, 0.3);
        }

        .service-content {
            padding: 25px;
        }

        .service-content h3 {
            font-size: 1.8rem;
            color: #1e293b;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .service-desc {
            color: #64748b;
            margin-bottom: 15px;
            line-height: 1.6;
        }

        .service-price {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 2px dashed #e2e8f0;
        }

        .price {
            font-size: 1.6rem;
            font-weight: 800;
            color: #ff6f00;

        }

        .price small {
            font-size: 0.8rem;
            font-weight: 400;
            color: #050505;
        }

        .btn-service {
            background: #1e293b;
            color: white;
            padding: 10px 25px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-service:hover {
            background: #ff6f00;
        }

        /* Destaque troca de óleo */
        .oil-change {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            padding: 80px 20px;
            color: white;
        }

        .oil-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .oil-text h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .oil-text h2 span {
            color: #ff6f00;
        }

        .oil-text p {
            color: #cbd5e1;
            margin-bottom: 30px;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .oil-features {
            list-style: none;
            margin-bottom: 30px;
        }

        .oil-features li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .oil-features i {
            color: #ff6f00;
            font-size: 1.3rem;
        }

        .oil-price {
            font-size: 3rem;
            font-weight: 800;
            color: #ff6f00;
            margin-bottom: 20px;
        }

        .oil-img {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

        .oil-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Sobre nós */
        .about {
            padding: 80px 20px;
            background: white;
        }

        .about-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-text h2 {
            font-size: 2.5rem;
            color: #1e293b;
            margin-bottom: 20px;
        }

        .about-text p {
            color: #64748b;
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 40px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #ff6f00;
        }

        .stat-label {
            color: #64748b;
            font-size: 0.9rem;
        }

        .about-img {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .about-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Contato fixo */
        .fixed-contact {
            position: fixed;
            bottom: 30px;
            right: 30px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 100;
        }

        .contact-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #25D366;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            text-decoration: none;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
            transition: all 0.3s;
        }

        .contact-btn.instagram {
            background: #E4405F;
        }

        .contact-btn:hover {
            transform: scale(1.1);
        }

        /* Footer */
        footer {
            background: #0f172a;
            color: white;
            padding: 40px 20px;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 20px 0;
        }

        .social-link {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #1e293b;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-link:hover {
            background: #ff6f00;
            transform: translateY(-5px);
        }

        .copyright {
            color: #64748b;
            margin-top: 20px;
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .oil-content,
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .fixed-contact {
                bottom: 20px;
                right: 20px;
            }
        }