:root {
    --primary: #E64A19;
    --secondary: #1976D2; 
    --dark: #121212;
    --light: #F8F9FA;
    --white: #FFFFFF;
    --whatsapp: #25D366;
    --text-gray: #555555;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--white);
    color: var(--dark);
    line-height: 1.6;
}

/* Topbar & Header */
.topbar {
    background-color: var(--secondary);
    color: var(--white);
    text-align: center;
    padding: 5px;
    font-size: 14px;
    font-weight: bold;
}

header {
    background-color: var(--white);
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 28px;
    font-weight: 900;
    color: var(--secondary);
    text-transform: uppercase;
}

.logo span {
    color: var(--primary);
}

.header-phone {
    font-weight: bold;
    font-size: 18px;
}

.header-phone i {
    color: var(--primary);
}

/* Hero Section com Fundo Deslocado para a Direita */
#hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 5%;
    /* AQUI: O '80% center' puxa a imagem para a direita, trazendo o caminhão para o meio */
    background: url('img/fundo.jfif') 80% center/cover no-repeat;
    color: var(--white);
    min-height: 85vh;
    overflow: hidden; 
}

.hero-img {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img img {
    width: 100%; 
    max-width: 750px; 
    height: auto;
    filter: drop-shadow(0px 15px 25px rgba(0,0,0,0.7));
    /* AQUI: Escala aumentada para 1.65 para a arte ficar bem maior */
    transform: scale(1.65); 
    transition: transform 0.5s ease;
}

.hero-img img:hover {
    transform: scale(1.75); 
}

.hero-content {
    flex: 1;
    padding-left: 60px;
}

.hero-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.8); 
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #f1f1f1;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.8);
}

.btn-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-primary { background-color: var(--primary); color: var(--white); }
.btn-primary:hover { background-color: #bf3d13; transform: translateY(-3px); }

.btn-wpp { background-color: var(--whatsapp); color: var(--white); }
.btn-wpp:hover { background-color: #1da851; transform: translateY(-3px); }

/* Services Grid */
#services {
    padding: 80px 5%;
    background-color: var(--light);
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    padding: 40px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border-bottom: 4px solid var(--primary);
}

.service-card i {
    font-size: 50px;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--secondary);
    margin-bottom: 15px;
}

/* Stats Banner */
#stats {
    background-color: var(--secondary);
    color: var(--white);
    padding: 40px 5%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
    gap: 20px;
}

.stat-item h2 { font-size: 40px; margin-bottom: 5px; }
.stat-item p { font-size: 16px; text-transform: uppercase; letter-spacing: 1px; }

/* Testimonials */
#testimonials {
    padding: 80px 5%;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    position: relative;
}

.review-card::before {
    content: '\201C';
    font-size: 60px;
    color: var(--primary);
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 0 10px;
    line-height: 1;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--secondary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 30px auto 15px;
}

.stars { color: #FFCC00; margin-bottom: 15px; }

/* Mid CTA */
#mid-cta {
    background: url('img/fundo.jfif') center/cover fixed;
    padding: 100px 5%;
    text-align: center;
    color: var(--white);
    text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
}

#mid-cta h2 { font-size: 40px; margin-bottom: 20px; }
#mid-cta p { font-size: 18px; margin-bottom: 30px; }

/* About & Gallery */
#about {
    display: flex;
    align-items: center;
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
}

.about-text { flex: 1; }
.about-text h2 { color: var(--secondary); margin-bottom: 20px; border-left: 4px solid var(--primary); padding-left: 15px; }
.about-text p { margin-bottom: 20px; color: var(--text-gray); }
.about-text .contact-info { margin-bottom: 10px; font-weight: bold; font-size: 18px; display: flex; align-items: center; gap: 10px;}
.about-text .contact-info i { color: var(--primary); }

.about-img { flex: 1; }
.about-img img { width: 100%; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }

/* Map */
#map {
    padding: 0; 
    position: relative;
}

#map iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-top: 5px solid var(--primary);
    border-bottom: 5px solid var(--primary);
    display: block;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--white);
    text-decoration: none;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.float-btn:hover { transform: scale(1.1); }
.float-phone { background-color: var(--primary); }
.float-wpp { background-color: var(--whatsapp); }

/* Footer */
footer { background-color: var(--dark); color: #aaa; text-align: center; padding: 20px; font-size: 14px; }

/* Responsive */
@media (max-width: 992px) {
    #hero { flex-direction: column; text-align: center; justify-content: center; padding-top: 60px;}
    .hero-content { padding-left: 0; margin-top: 50px; }
    
    .hero-img img { max-width: 90%; transform: scale(1.2); }
    .hero-img img:hover { transform: scale(1.25); }
    
    #about { flex-direction: column; text-align: center; }
    .about-text h2 { border-left: none; border-bottom: 4px solid var(--primary); padding-left: 0; padding-bottom: 10px; display: inline-block;}
    .btn-group { justify-content: center; }
    .about-text .contact-info { justify-content: center; }
}
@media (max-width: 768px) {
    .hero-content h1 { font-size: 36px; }
    .hero-img img { max-width: 100%; transform: scale(1.1); }
    .hero-img img:hover { transform: scale(1.15); }
    .stat-item h2 { font-size: 30px; }
    .floating-buttons { bottom: 15px; right: 15px; }
    .float-btn { width: 50px; height: 50px; font-size: 24px; }
}