 /* CONFIGURAÇÕES GERAIS */
:root {
    --primary: #007bff;
    --secondary: #0056b3;
    --bg-light: #f8f9fa;
    --text-dark: #333;
    --text-gray: #666;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}

body { color: var(--text-dark); line-height: 1.6; overflow-x: hidden; }
    a { text-decoration: none; transition: 0.3s; }
    ul { list-style: none; }
    img { max-width: 100%; display: block; }

/* UTILITÁRIOS */
.container { padding: 0 10%; }
.badge { background: #e7f3ff; color: var(--primary); padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: bold; text-transform: uppercase; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 2.5rem; margin: 10px 0; }

/* BOTÕES */
.btn-primary { background: var(--primary); color: white; padding: 12px 25px; border: none; border-radius: 5px; cursor: pointer; font-weight: bold; transition: 0.3s; }
.btn-primary:hover { background: var(--secondary); }
.btn-outline { border: 2px solid var(--primary); color: var(--primary); padding: 10px 20px; border-radius: 5px; font-weight: bold; background: transparent; cursor: pointer; }
.btn-white-outline { border: 2px solid white; color: white; padding: 12px 25px; border-radius: 5px; font-weight: bold; background: transparent; cursor: pointer; margin-left: 10px; }

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.logo a { font-size: 1.5rem; color: var(--primary); font-weight: bold; }
.nav-links { display: flex; gap: 20px; }
.nav-links a { color: var(--text-dark); font-weight: 500; }
.nav-links a:hover { color: var(--primary); }
.nav-right { display: flex; align-items: center; gap: 20px; }

/* HAMBURGUER MENU */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 3000;
}
.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.menu-close.active {
    opacity: 1;
    visibility: visible;
}
.menu-close:hover {
    background: var(--secondary);
    transform: scale(1.1);
}

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 2000;
    padding: 100px 30px 30px;
}
.mobile-menu.active { right: 0; }
.mobile-menu ul {
    list-style: none;
}
.mobile-menu li { margin-bottom: 20px; }
.mobile-menu a {
    display: block;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}
.mobile-menu a:hover { color: var(--primary); }
.mobile-menu .nav-right-mobile {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}
.mobile-menu .nav-right-mobile span {
    display: block;
    color: var(--text-gray);
    margin-bottom: 15px;
    font-size: 1rem;
}

/* OVERLAY */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 1500;
}
.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* HERO SECTION */
.hero {
    height: 85vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('img/car-wash.jpg') center/cover;
    display: flex;
    align-items: center;
    color: white;
    padding: 0 10%;
}
.hero-content { max-width: 700px; }
.hero-content h1 { font-size: 4rem; line-height: 1.1; margin: 20px 0; }
.hero-content span.highlight { color: var(--primary); }
.hero-content p { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.9; }

/* SERVIÇOS */
.services { padding: 80px 10%; background: white; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card { padding: 20px; border-radius: 12px; border: 1px solid #eee; transition: 0.3s; }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.service-img { height: 200px; background: #eee; border-radius: 8px; margin-bottom: 20px; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; }

/* PREÇOS */
.pricing { padding: 80px 10%; background: var(--bg-light); }
.pricing-grid { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.price-card { background: white; padding: 40px; border-radius: 15px; width: 320px; text-align: center; border: 1px solid #eee; }
.price-card.featured { border: 2px solid var(--primary); transform: scale(1.05); position: relative; }
.popular-label { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--primary); color: white; padding: 5px 15px; border-radius: 20px; font-size: 0.7rem; }
.price-val { font-size: 3rem; font-weight: bold; margin: 20px 0; color: var(--primary); }
.price-val span { font-size: 1rem; color: var(--text-gray); }
.price-card ul { text-align: left; margin-bottom: 30px; }
.price-card li { margin-bottom: 12px; font-size: 0.95rem; color: var(--text-gray); }

/* SOBRE & STATUS */
.about { padding: 100px 10%; display: flex; gap: 60px; align-items: center; }
.about-text { flex: 1; }
.about-images { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.img-large { grid-row: span 2; background: #ddd; border-radius: 15px; height: 410px; }
.img-large img { height: 410px; border-radius: 15px; }
.img-small{ background: #ddd; border-radius: 15px; height: 193px;}
.img-small img { height: 193px; border-radius: 15px; width: 100%; }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.stat-box { background: #f0f7ff; padding: 20px; border-radius: 10px; }
.stat-box h4 { color: var(--primary); font-size: 1.5rem; }

/* CONTATO - FORMULÁRIO WHATSAPP */
.contact { padding: 80px 10%; }
.contact-wrapper { display: grid; grid-template-columns: 2fr 1fr; gap: 50px; }
.contact-form { display: grid; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
input, textarea { 
    width: 100%; 
    padding: 15px; 
    border: 1px solid #ddd; 
    border-radius: 8px; 
    outline: none; 
    transition: border-color 0.3s;
}
        input:focus, textarea:focus { border-color: var(--primary); }
        .btn-whatsapp {
            background: var(--primary);
            color: white;
            padding: 15px 25px;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.3s;
        }
        .btn-whatsapp:hover { background: #128C7E; }
        .info-item { background: white; padding: 20px; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); margin-bottom: 20px; }

        /* FOOTER */
        .footer { background: #111; color: white; padding: 60px 10% 20px; }
        .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; padding-bottom: 40px; border-bottom: 1px solid #222; }
        .footer-grid ul a { color: var(--primary); }
        .footer-grid ul a:hover { color: var(--white); }
        .footer-bottom { text-align: center; padding-top: 20px; font-size: 0.8rem; color: #555; }

        /* RESPONSIVIDADE */
        @media (max-width: 992px) {
            .hamburger { display: flex; }
            .nav-links, .nav-right span { display: none; }
            .nav-right button { display: block; }
            .about, .contact-wrapper { grid-template-columns: 1fr; flex-direction: column; }
            .hero-content h1 { font-size: 2.5rem; }
            .pricing-grid { flex-direction: column; align-items: center; }
            .price-card { width: 100%; max-width: 350px; }
            .img-large { background: transparent; }
        }

        @media (max-width: 768px) {
            .navbar { padding: 15px 5%; }
            .hero { padding: 0 5%; height: 75vh; }
            .hero-content h1 { font-size: 2rem; }
            .container { padding: 0 5%; }
            .services, .pricing, .contact { padding: 60px 5%; }
        }

        @media (max-width: 540px) {
            .about-images { gap: 15px; height: 300px; }
            .img-small, .img-small img { height: 98%; background: transparent; }
            .img-large img { height: 98%; }
        }
