/* Reset e estilos globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Cabeçalho */
header {
    background-color: #d32f2f;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.logo {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: bold;
    margin-bottom: 10px;
}

/* Navegação */
nav {
    background-color: #b71c1c;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    flex-wrap: wrap;
    gap: 10px;
}

nav ul li {
    margin: 0 5px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-size: clamp(0.9rem, 2vw, 1rem);
    display: inline-block;
}

nav ul li a:hover {
    background-color: #d32f2f;
}

/* Estilos para o botão de menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Estilos para o menu em telas menores */
@media (max-width: 768px) {
    nav ul {
        display: none; /* Oculta o menu por padrão */
        flex-direction: column;
        width: 100%;
        background-color: #b71c1c;
    }

    nav ul.active {
        display: flex; /* Exibe o menu quando ativo */
    }

    .menu-toggle {
        display: block; /* Exibe o botão de menu */
    }
}

/* Banner */
.banner {
    width: 100%;
    height: clamp(250px, 50vh, 500px);
    background-image: url('https://images.unsplash.com/photo-1605559424843-9e4c228bf1c2?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 30px;
    position: relative;
}

.banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.banner-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    max-width: 90%;
}

.banner h1 {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    margin-bottom: 20px;
}

.banner p {
    font-size: clamp(1rem, 3vw, 1.2rem);
    max-width: 800px;
    margin: 0 auto 20px;
}

.btn {
    display: inline-block;
    background-color: #d32f2f;
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.btn:hover {
    background-color: #b71c1c;
}

/* Seções */
section {
    padding: clamp(30px, 5vw, 50px ) 0;
}

section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: #d32f2f;
}

/* Sobre */
.about {
    background-color: white;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.about-text {
    flex: 1;
    min-width: 300px;
    padding: 0 10px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
    padding: 10px;
}

.about-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Serviços */
.services {
    background-color: #f9f9f9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 20px;
}

.service-content h3 {
    margin-bottom: 10px;
    color: #d32f2f;
    font-size: 1.2rem;
}

/* Contato */
.contact {
    background-color: white;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.contact-card {
    padding: 20px;
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.contact-card i {
    font-size: 2rem;
    color: #d32f2f;
    margin-bottom: 15px;
}

.whatsapp-container {
    text-align: center;
    margin: 20px 0;
}

.whatsapp-btn {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
    font-size: clamp(0.9rem, 2vw, 1rem);
    white-space: nowrap;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
}

.whatsapp-btn i {
    margin-right: 10px;
}

/* Mapa */
.map {
    height: clamp(300px, 40vh, 500px);
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Rodapé */
footer {
    background-color: #333;
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.footer-section {
    padding: 0 10px;
}

.footer-section h3 {
    margin-bottom: 15px;
    color: #d32f2f;
    font-size: 1.2rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #555;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: background-color 0.3s;
}

.social-icons a:hover {
    background-color: #d32f2f;
}

.copyright {
    border-top: 1 ```css
px solid #555;
    padding-top: 20px;
    font-size: 0.9rem;
}

/* Media Queries para ajustes específicos */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 5px 0;
        width: 100%;
        text-align: center;
    }
    
    nav ul li a {
        display: block;
        width: 100%;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .service-card {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.8rem;
    }
    
    .banner h1 {
        font-size: 1.8rem;
    }
    
    .btn, .whatsapp-btn {
        padding: 10px 20px;
        width: 100%;
        text-align: center;
    }
    
    .whatsapp-btn {
        white-space: normal;
    }
}