/* Estilos Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header */
.header {
    background: #333;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo {
    height: 60px;
    width: auto;
    filter: brightness(1.1);
}

.nav {
    display: flex;
    gap: 20px;
}

.nav-link {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #e74c3c;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('imagens/caminhao-de-avaria.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    padding-top: 80px;
}

.hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
}

.hero h2 {
    font-size: 2em;
    margin-bottom: 30px;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    background: #25d366;
    color: #fff;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.2em;
    transition: transform 0.3s;
}

.cta-button:hover {
    transform: scale(1.05);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f9f9f9;
}

.services h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5em;
}

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

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 3em;
    color: #e74c3c;
    margin-bottom: 20px;
}

/* About Section */
.about {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
}

.features-list {
    list-style: none;
    margin-top: 20px;
}

.features-list li {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: #fff;
}

.reviews h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5em;
}

.reviews-map-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.reviews-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.reviews-content p {
    font-size: 1.2em;
    margin: 0;
}

.review-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #4285f4;
    color: #fff;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.2em;
    transition: transform 0.3s, background-color 0.3s;
}

.review-button:hover {
    transform: scale(1.05);
    background: #3367d6;
}

.review-button i {
    font-size: 1.4em;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
    display: block;
}

@media (max-width: 768px) {
    .reviews-map-container {
        grid-template-columns: 1fr;
    }
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f9f9f9;
}

.contact h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5em;
}

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

.contact-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-card i {
    font-size: 2.5em;
    color: #e74c3c;
    margin-bottom: 20px;
}

.contact-card a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-card a:hover {
    color: #e74c3c;
}

/* Footer */
.footer {
    background: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s;
    z-index: 1000;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

/* Menu Mobile */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5em;
    cursor: pointer;
    padding: 10px;
}

/* Animações */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s, transform 0.6s;
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Cobertura */
.coverage {
    padding: 80px 0;
    background: #f9f9f9;
}

.coverage h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5em;
}

.coverage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.coverage-text h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #333;
}

.coverage-list {
    list-style: none;
    margin-top: 20px;
}

.coverage-list li {
    margin-bottom: 15px;
    font-size: 1.1em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.coverage-list i {
    color: #4CAF50;
}

.coverage-note {
    margin-top: 20px;
    font-style: italic;
    color: #666;
}

.coverage-map {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.coverage-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Depoimentos */
.testimonials {
    padding: 80px 0;
    background: #fff;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5em;
}

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

.testimonial-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-rating {
    color: #ffd700;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 1.1em;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: #f9f9f9;
}

.faq h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5em;
}

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

.faq-item {
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 5px solid #4285f4;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.faq-item h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2em;
}

.faq-item h3 i {
    color: #4285f4;
    font-size: 1.3em;
}

.faq-item p {
    color: #505c6e;
    line-height: 1.8;
    font-size: 1.05em;
    padding-left: 32px;
}

.emergency-tips {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
    border: none;
    padding: 30px;
    border-radius: 20px;
    margin: 40px 0;
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.2);
    position: relative;
    overflow: hidden;
}

.emergency-tips::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y=".9em" font-size="90">🚨</text></svg>') no-repeat center;
    opacity: 0.1;
    transform: scale(2);
}

.emergency-tips h3 {
    color: white;
    font-size: 1.8em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.emergency-tips h3 i {
    font-size: 1.5em;
    color: #fff;
}

.emergency-tips ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.emergency-tips li {
    background: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    padding: 20px;
    border-radius: 15px;
    color: #333;
    font-size: 1.1em;
    line-height: 1.6;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.emergency-tips li:hover {
    transform: translateY(-5px);
}

.emergency-tips li i {
    color: #ff6b6b;
    font-size: 1.3em;
}

/* Botões Adicionais */
.action-buttons {
    width: 100%;
    padding: 20px 0;
}

.button-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.action-button {
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.google-review-button {
    background-color: #4285f4;
    color: white;
}

.save-contact-button {
    background-color: #34a853;
    color: white;
}

.share-button {
    background-color: #ea4335;
    color: white;
}

.action-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5em;
    }

    .hero h2 {
        font-size: 1.5em;
    }

    .about-content,
    .coverage-content {
        grid-template-columns: 1fr;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #333;
        padding: 20px;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .nav.nav-active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .menu-toggle.active i {
        transform: rotate(90deg);
    }

    .logo {
        height: 40px;
    }

    .service-card,
    .contact-card,
    .testimonial-card,
    .faq-item {
        padding: 20px;
    }

    .emergency-tips ul {
        grid-template-columns: 1fr;
    }
}