/* Reset básico */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Container geral */
.container {
    padding: 20px;
    text-align: center;
    background-color: black;
    color: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

/* Texto com gradiente e ícone */
.gradient-text {
    font-size: 40px;
    font-weight: bold;
    background: linear-gradient(to right, white, red);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gradient-text i {
    margin-right: 10px;
}

/* Parágrafos no container */
.container p {
    font-size: 18px;
    margin-top: 10px;
}

/* Botões de navegação */
.button-container {
    display: flex;
    justify-content: end;
    padding: 20px;
    gap: 15px;
}

.buttonbarra {
    background-color: transparent;
    border: 2px solid brown;
    color: brown;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.buttonbarra:hover {
    background-color: brown;
    color: white;
}

/* Seção lado a lado */
.lado-a-lado {
    padding: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px auto;
}

/* Centralizar o conteúdo */
.conteudo1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    border-radius: 20px;
    background-color: brown;
    min-height: 300px;
    width: 100%;
    max-width: 400px;
    color: white;
}

.conteudo1 h2 {
    font-size: 28px;
    color: white;
}

.conteudo1 ul {
    list-style-type: none;
    padding: 0;
}

.conteudo1 ul li {
    font-size: 18px;
    margin: 10px 0;
    font-weight: bold;
}

/* Seção de Depoimentos */
.depoimento-item {
    margin-bottom: 20px;
    font-style: italic;
}

.depoimento-item p {
    font-size: 18px;
}

.depoimento-item span {
    display: block;
    margin-top: 10px;
    color: #fff;
    font-size: 16px;
}

/* Seção de Dicas Automotivas */
.dica-item {
    margin-bottom: 20px;
}

.dica-item h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 10px;
}

.dica-item p {
    font-size: 18px;
    color: #fff;
}


.conteudo2 {
    padding: 40px;
    text-align: left;
    background-color: brown;
    color: white;
    /* margin: 20px auto; */
    /* border-radius: 20px; */
}

.conteudo2 h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.conteudo2 p {
    font-size: 18px;
}

.conteudo3 {
    padding: 40px;
    text-align: left;
    background-color: black;
    color: white;
    /* margin: 20px auto; */
    /* border-radius: 20px; */
}

.conteudo3 h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.conteudo3 p {
    font-size: 18px;
}

.conteudo4 {
    padding: 40px;
    text-align: left;
    background-color: rgb(61, 61, 61);
    color: white;
    /* margin: 20px auto; */
    /* border-radius: 20px; */
}

.conteudo4 h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.conteudo4 p {
    font-size: 18px;
}


/* Seção de Marcas */
.marcas {
    text-align: center;
    padding: 20px;
}

.marcas h1 {
    font-size: 28px;
    margin-bottom: 20px;
    color: brown;
}

.marca-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.marca-logos img {
    width: 100px;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.marca-logos img:hover {
    transform: scale(2.2);
}

/* Botão flutuante do WhatsApp */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    padding: 15px;
    font-size: 30px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease-in-out;
}

.whatsapp-button:hover {
    transform: scale(1.2);
}

.contato {
    text-align: left;
    padding: 40px;
    background-color: #3a3737;
    color: white;
}

.map-link {
    background-color: #25d366;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.map-link:hover {
    background-color: #1db954;
}


/* Responsividade */
@media (max-width: 600px) {
    .gradient-text {
        font-size: 30px;
    }

    .container p {
        font-size: 16px;
    }

    .marca-logos img {
        width: 80px;
    }

    .conteudo1 {
        width: 90%;
        padding: 10px;
    }

    .depoimento-item p, .dica-item p {
        font-size: 16px;
    }

    .lado-a-lado {
        flex-direction: column;
        align-items: center;
    }

    .conteudo1 {
        max-width: 100%;
    }
}