html, body {
    max-height: 100%;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

header {
    width: 100%;
    max-width: 100%; /* Impede que ultrapasse os limites da tela */
    overflow-x: hidden; /* Garante que nada escape horizontalmente */
    height: fit-content;
    background-color: rgb(41, 37, 37);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 1rem 0;
    font-family: "Montserrat", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    box-sizing: border-box; /* Certifica que o padding não afeta a largura */
}


.imagem-vital {
    width: 100px;
    height: 100px;
    border-radius: 15px;
    display: flex;
}

.container-logo {
    display: flex;
    align-items: center;
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    font-weight: 600;
}

.logo-texto a {
    margin-left: 20px;
    color: white;
    text-decoration: none;
    display: flex; 
}

.logo-texto a:hover {
    color: rgb(185, 185, 185);
}

.logo-texto h1 {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    font-weight: 600;
}

.menu {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.menu img {
    width: 3rem;
    margin: 0;
    padding: 0;
}

.menu a {
    font-size: 24px;
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    margin: .4rem;
    display: flex;
    font-family: "Montserrat", sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
}

.banner {
    margin: 0;
    height: 60vh;
    background-size: cover;
    background-position: center;
    background-image: url(Imagens/Banner/abstract-blurred-parking-car.jpg);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.banner-content {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
}

.btn-banner {
    color: white;
    background-color: #28a745;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.btn-banner:hover {
    background-color: #218838;
}

/* Destaques */
.destaques {
    text-align: center;
    padding: 40px 20px;
    background-color: #f8f9fa;
    font-family: "Montserrat", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
}

.destaques-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.card {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    text-align: center;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.btn-card {
    color: white;
    background-color: #007bff;
    padding: 8px 15px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.btn-card:hover {
    background-color: #0056b3;
}

/* Depoimentos */
.depoimentos {
    padding: 40px 20px;
    background-color: #292525;
    color: white;
}

.depoimentos-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

blockquote {
    border-left: 5px solid #28a745;
    padding-left: 15px;
    max-width: 300px;
}

footer {
    background-color: #292525;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 14px;
    width: 100%;
}

.texto-footer {
    margin-top: 9px;
}

/* Quem Somos */
.quem-somos {
    padding: 50px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.section-title {
    margin-bottom: 30px;
    font-size: 2rem;
    color: #333;
    text-transform: uppercase;
}

.frente {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.img-frente {
    width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.frente p {
    max-width: 600px;
    line-height: 1.8;
    font-size: 1.1rem;
    text-align: justify;
}

/* Missão, Visão e Valores */
.mvv-section {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
}

.mvv {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
}

.mvv li {
    width: 250px;
    text-align: center;
}

.mvv li img {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
}

.mvv li p {
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsividade */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
        padding: 1rem;
    }

    .menu {
        flex-direction: column;
        align-items: center;
    }

    .menu a {
        font-size: 1rem;
        margin: 0.5rem 0;
    }

    .banner {
        height: 50vh;
    }

    .destaques-grid {
        grid-template-columns: 1fr;
    }

    .card img {
        max-width: 100%;
        height: auto;
    }

    .frente {
        flex-direction: column;
    }

    .img-frente {
        width: 100%;
        max-width: 300px;
    }

    .depoimentos-container {
        flex-direction: column;
        gap: 15px;
    }

    .mvv {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    header {
        font-size: 0.9rem;
        padding: 0.5rem;
    }

    .logo-texto a {
        font-size: 1.2rem;
        margin-left: 10px;
    }

    .banner-content {
        font-size: 1rem;
        padding: 15px;
    }

    .btn-banner {
        font-size: 0.8rem;
        padding: 8px 15px;
    }

    .destaques {
        padding: 20px 10px;
    }

    .card {
        padding: 10px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .mvv li {
        width: 100%;
    }

    footer {
        font-size: 12px;
        padding: 10px 0;
    }
}
