body {
    font-family: 'Poppins', sans-serif;
    color: #070F18;
    margin: 0; 
    background-color: #f9f9f9;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

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

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
}

.logo { 
    font-weight: 600;
    font-size: 28px;
    text-decoration: underline;
}

.menu ul {
    list-style: none; 
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px; 
}

.menu li {
    font-size: 16px;
}


.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding-top: 60px;
    padding-bottom: 60px;
}

.hero .texto-corpo {
    flex: 1; 
}

.hero h1 {
    font-weight: bold;
    font-size: 55px;
    line-height: 1.2;
    color: #000000;
    margin-top: 0;
}

.hero h2 {
    font-size: 24px;
    font-weight: 500;
    margin-top: -10px;
}

.hero p {
    font-size: 16px;
    line-height: 32px;
    color: #575455;
    margin-bottom: 30px;
}

#botao {
    background-color: #f75c4e;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    color: white;
    padding: 12px 25px;
    border: 2px solid #000;
    display: inline-block;
    transition: background-color 0.3s, transform 0.3s;
}

#botao:hover {
    background-color: #d64a3d;
    transform: translateY(-2px);
}

.img-corpo {
    flex: 1; 
    max-width: 450px;
    text-align: center; 
}

.img-corpo img {
    width: 100%;
    height: auto;
    border-radius: 50%;
}
.servicos {
    padding-top: 80px;
    padding-bottom: 80px;
    text-align: center;
}

.subtitulo-red {
    font-weight: bold;
    font-size: 20px;
    color: #f75c4e;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.titulo-black {
    font-weight: bold;
    font-size: 36px;
    color: #000000;
    margin-top: 10px;
}

.qualidades, .projetos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 40px; 
    margin-top: 50px;
}

.referencias {
    text-align: center;
}

.referencias h3 {
    font-weight: 600;
    font-size: 20px;
    color: #070F18;
}

.referencias p {
    font-size: 16px;
    line-height: 32px;
    color: #575455;
}

#projetos {
    padding-top: 80px;
    padding-bottom: 80px;
    text-align: center;
}

.descport {
    font-size: 16px;
    line-height: 32px;
    color: #575455;
}

.imgport {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.imgport:hover {
    transform: scale(1.03);
}
@media (max-width: 992px) {
    .hero {
        flex-direction: column; 
        text-align: center;
    }
    
    .img-corpo {
        max-width: 350px; 
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    body {
        padding: 0 20px; 
    }

    .container {
        padding-left: 0;
        padding-right: 0;
    }

    header {
        flex-direction: column; 
        gap: 20px;
    }

    .hero h1 {
        font-size: 40px;
    }
    .qualidades, .projetos-grid {
        grid-template-columns: 1fr;
    }
}