* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Seções de Serviços, Projetos e Depoimentos */
section {
    padding: 50px 20px;
    text-align: center;
}

.servicos, .depoimentos {
    background-color: #ecf0f1;
}

.servicos h2, .projetos h2, .depoimentos h2, .contato h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.servicos-container, .projetos-galeria, .depoimentos-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.servico, .projeto, .depoimento {
    background: #fff;
    padding: 20px;
    margin: 20px;
    border-radius: 10px;
    width: calc(33% - 40px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.servico i {
    font-size: 2rem;
    color: #190403;
    margin-bottom: 10px;
}

.projeto img {
    max-width: 100%;
    max-height: 600px;
    min-height: 600px;

    border-radius: 5px;
}

.depoimento p {
    font-family: 'Poppins', sans-serif;
    text-align:justify;
    margin-bottom: 10px;
}

.depoimento h4 {
    color: #190403;
    font-weight: bold;
}

/* Seção de Contato */
.contato {
    background-color: #fff;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

form input, form textarea {
    width: 100%;
    max-width: 500px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background-color: #e67e22;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

form button:hover {
    opacity: 0.9;
}

/* Rodapé */
footer {
    background-color: #190403;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

footer .social {
    margin-top: 10px;
}

footer .social a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
    font-size: 1.5rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .servico, .projeto, .depoimento {
        width: 100%;
        margin: 10px 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 15px;
    }

    .btn-primario {
        margin-top: 10px;
    }
}