
        /* Reset e Estilos Globais */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
        }

        :root {
            --primary-color: #000000;
            --secondary-color: #1a1a1a;
            --accent-color: #c42626;
            --text-color: #ffffff;
            --text-secondary: #cccccc;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--primary-color);
            color: var(--text-color);
            overflow-x: hidden;
        }

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

        section {
            padding: 80px 0;
        }

        .section-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 60px;
            text-transform: uppercase;
            position: relative;
        }

        .section-title span {
            color: var(--accent-color);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--accent-color);
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--text-color);
            color: var(--primary-color);
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background-color: var(--accent-color);
            color: var(--text-color);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(196, 38, 38, 0.3);
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 20px 0;
            transition: all 0.3s ease;
            background-color: rgba(0, 0, 0, 0.9);
        }

        .header.scrolled {
            padding: 15px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

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

        .logo h1 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-color);
            letter-spacing: 2px;
        }

        .logo span {
            font-size: 1.0rem;
            font-weight: bold;
            color: var(--accent-color);
            display: block;
            letter-spacing: 5px;
            margin-top: 5px;
        }

        .nav ul {
            display: flex;
            list-style: none;
        }

        .nav ul li {
            margin-left: 30px;
        }

        .nav ul li a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
        }

        .nav ul li a:hover::after {
            width: 100%;
        }

        .nav ul li a:hover {
            color: var(--accent-color);
        }

        .menu-mobile {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 25px;
            height: 20px;
            cursor: pointer;
        }

        .menu-mobile span {
            display: block;
            width: 100%;
            height: 2px;
            background-color: var(--text-color);
            transition: all 0.3s ease;
        }

        /* Banner - Solução definitiva para imagem cortada */
        .banner {
            position: relative;
            width: 100%;
            height: 100vh;
            min-height: 900px;
            max-height: 400px;
            margin-top: 70px; /* Altura do header */
            background: url('https://i.ibb.co/TBM3Mvch/lavacarprimo.jpg') no-repeat center center;
            background-size: cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            padding: 0 20px;
            overflow: hidden;
        }
        
        /* Overlay escuro para melhor contraste */
        .banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
            z-index: 1;
        }
        
        .banner-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            padding: 40px;  
            border-radius: 10px;
        }
        
        .banner-content h1 {
            color: #b8b0b0;
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 5px;
            text-transform: uppercase;
            letter-spacing: 5px;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
        }
        
        .banner-content h2 {
            color: #b8b0b0; 
            font-size: clamp(1.5rem, 3vw, 2.5rem);
            margin-bottom: 20px;
            line-height: 1.3;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
        }
        
        .banner-content p {
            color: #b8b0b0;
            font-size: clamp(1rem, 1.5vw, 1.5rem);
            margin-bottom: 30px;
            line-height: 1.6;
        }

                /* Ajustes específicos para mobile */
        @media (max-width: 768px) {
            .banner {
                height: 80vh;
                min-height: 500px;
                background-position: center 30%;
            }
            
            .banner-content {
                padding: 25px;
                width: 90%;
            }
            
            .banner-content h1 {
                font-size: 2.2rem;
                letter-spacing: 3px;
            }
            
            .banner-content h2 {
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 480px) {
            .banner {
                height: 70vh;
                min-height: 400px;
                background-position: center 40%;
            }
            
            .banner-content {
                padding: 20px;
            }
            
            .banner-content h1 {
                font-size: 1.8rem;
            }
            
            .banner-content h2 {
                font-size: 1.2rem;
            }
        }

        /* Serviços */
        .services {
            background-color: var(--secondary-color);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background-color: var(--primary-color);
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            transition: all 0.5s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            border-color: var(--accent-color);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background-color: rgba(255, 215, 0, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--accent-color);
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            background-color: var(--accent-color);
            color: var(--primary-color);
        }

        .service-card h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
        }

        .service-card p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* Sobre */
        .about .container {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-content {
            flex: 1;
        }

        .about-image {
            flex: 1;
            position: relative;
        }

        .about-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .about-content p {
            margin-bottom: 20px;
            line-height: 1.8;
            color: var(--text-secondary);
        }

        .about-stats {
            display: flex;
            justify-content: space-between;
            margin-top: 40px;
        }

        .stat {
            text-align: center;
        }

        .stat span {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent-color);
        }

        .stat p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-top: 10px;
        }

        /* Galeria */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            height: 250px;
        }

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

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .gallery-overlay i {
            color: var(--accent-color);
            font-size: 2rem;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        /* Contato */
        .contact-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 50px;
            text-align: center;
        }

        .contact-info {
            flex: 1;
            text-align: left;
        }

        .contact-buttons-container {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 30px;
        }

        .contact-buttons-container h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--accent-color);
        }

        .social-buttons {
            display: flex;
            flex-direction: column;
            gap: 20px;
            width: 100%;
            max-width: 300px;
        }

        .whatsapp-btn, .instagram-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 15px 25px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }

        .whatsapp-btn {
            background-color: #25D366;
            color: white;
        }

        .instagram-btn {
            background: linear-gradient(45deg, #405DE6, #833AB4, #C13584, #E1306C, #FD1D1D);
            color: white;
        }

        .whatsapp-btn:hover {
            background-color: #128C7E;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
        }

        .instagram-btn:hover {
            background: linear-gradient(45deg, #833AB4, #C13584, #E1306C, #FD1D1D);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(131, 58, 180, 0.3);
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
        }

        .info-item i {
            font-size: 1.2rem;
            color: var(--accent-color);
            margin-right: 15px;
            margin-top: 5px;
        }

        .info-item p {
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* Footer */
        .footer {
            background-color: var(--secondary-color);
            padding: 60px 0 0;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-logo h3 {
            font-size: 1.8rem;
            margin-bottom: 5px;
            color: var(--text-color);
        }

        .footer-logo span {
            font-size: 0.8rem;
            color: var(--accent-color);
            letter-spacing: 3px;
            display: block;
            margin-bottom: 15px;
        }

        .footer-logo p {
            color: var(--text-secondary);
            line-height: 1.6;
            font-size: 0.9rem;
        }

        .footer-links h4, .footer-social h4 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-links h4::after, .footer-social h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--accent-color);
        }

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

        .footer-links ul li {
            margin-bottom: 10px;
        }

        .footer-links ul li a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .footer-links ul li a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        } 
         
            .dev-credits {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.575);
        }
        
        .dev-credits a {
            color: rgba(255, 255, 255, 0.575);
            text-decoration: none;
        }
        
        .dev-credits a:hover {
            text-decoration: underline;
        }
    
        .social-icons {
        display: flex;
        gap: 15px;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: var(--primary-color);
            border-radius: 50%;
            color: var(--text-color);
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background-color: var(--accent-color);
            color: var(--primary-color);
            transform: translateY(-5px);
        }

        .footer-bottom {
            text-align: center;
            padding: 20px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-bottom p {
            color: var(--text-secondary);
            font-size: 0.8rem;
        }

        

        .whatsapp-button, .instagram-button {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }

        .whatsapp-button {
            background-color: #25D366;
        }

        .instagram-button {
            background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #F77737, #FCAF45, #FFDC80);
        }

        .whatsapp-button:hover, .instagram-button:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
        }

        .contact-buttons img {
            width: 30px;
            height: 30px;
        }

        /* Lightbox */
        #lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }
        
        #lightbox.active {
            opacity: 1;
            pointer-events: all;
        }
        
        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
        }
        
        .lightbox-content img {
            max-width: 100%;
            max-height: 80vh;
            border-radius: 5px;
        }
        
        .close-lightbox {
            position: absolute;
            top: -40px;
            right: 0;
            color: white;
            font-size: 2rem;
            cursor: pointer;
        }

        /* Preloader */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }

        .spinner {
            width: 70px;
            height: 70px;
            position: relative;
        }

        .double-bounce1, .double-bounce2 {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background-color: var(--accent-color);
            opacity: 0.6;
            position: absolute;
            top: 0;
            left: 0;
            animation: sk-bounce 2.0s infinite ease-in-out;
        }

        .double-bounce2 {
            animation-delay: -1.0s;
        }

        /* Animações */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @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);
            }
        }

        @keyframes sk-bounce {
            0%, 100% { 
                transform: scale(0.0);
            } 50% { 
                transform: scale(1.0);
            }
        }

        /* Responsivo */
        @media (max-width: 992px) {
            .about .container {
                flex-direction: column;
            }
            
            .contact-content {
                flex-direction: column;
            }
            
            .contact-info {
                margin-bottom: 40px;
                text-align: center;
            }

            .info-item {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 250px;
                height: 100vh;
                background-color: var(--secondary-color);
                padding: 80px 30px;
                transition: all 0.5s ease;
            }
            
            .nav.active {
                right: 0;
            }
            
            .nav ul {
                flex-direction: column;
            }
            
            .nav ul li {
                margin: 15px 0;
            }
            
            .menu-mobile {
                display: flex;
                z-index: 1001;
            }
            
            .menu-mobile.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }
            
            .menu-mobile.active span:nth-child(2) {
                opacity: 0;
            }
            
            .menu-mobile.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
            }
            
            .banner {
                height: 80vh;
                min-height: 500px;
                background-position: center 30%;
            }
            
            .banner-content h1 {
                font-size: 2.5rem;
            }
            
            .banner-content h2 {
                font-size: 1.5rem;
            }
            
            .banner-content p {
                font-size: 1rem;
            }
            
            section {
                padding: 60px 0;
            }
            
            .section-title {
                font-size: 2rem;
            }

            .about-stats {
                flex-direction: column;
                gap: 30px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .contact-buttons {
                bottom: 20px;
                right: 20px;
            }
            
            .whatsapp-button, .instagram-button {
                width: 50px;
                height: 50px;
            }
        }

        @media (max-width: 576px) {
            .banner {
                height: 70vh;
                min-height: 400px;
                background-position: center 40%;
            }
            
            .banner-content h1 {
                font-size: 2rem;
            }
            
            .banner-content {
                padding: 20px;
            }
            
            .contact-buttons img {
                width: 25px;
                height: 25px;
            }
            
            .logo h1 {
                font-size: 1.5rem;
            }
            
            .logo span {
                font-size: 0.8rem;
            }
        }
