* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
}

header {
    background: #1B622E;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}



main {
    padding: 20px;
    
}


.T2{
    font-size: 17px;
    margin-top: 100px;
}
.telefone{
    width: 63px;
    height: 67px;
    background-color: #1B622E;
    border-radius: 50%;
    margin-top: 90px;
    margin-left: 100px;
}

.telefone img{width: 47px;
    height: 47px;
    margin-top: 10px;
    margin-left: 6px;

}

.tex1{
    margin-top: -45px;
    margin-left: 180px;
}

.redes{
    margin-top: 130px;
    margin-left: 40px;
}

.redes2{
    
    
    width: 63px;
    height: 67px;
    background-color: #1B622E;
    border-radius: 50%;
    margin-top: -45px;
    margin-left: 300px;
}

.redes2 img{
    width:64px;
    height: 52px;
    margin-top: 8px;
    margin-left: -2px;
}
.redes3{
    
    
    width: 63px;
    height: 67px;
    background-color: #1B622E;
    border-radius: 50%;
    margin-top: -65px;
    margin-left: 400px;
}

.redes3 img{
    width:67px;
    height: 67px;
    margin-top: -1px;
    margin-left: -2px;
}

.redes4{
    
    
    width: 63px;
    height: 67px;
    background-color: #1B622E;
    border-radius: 50%;
    margin-top: -66px;
    margin-left: 505px;
}

.redes4 img{
    width:80px;
    height: 67px;
    margin-top: -1px;
    margin-left: -8px;
}

footer {
    background: #1B622E;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
    margin-top: 80px;
}

/* Responsividade */
@media (max-width: 550px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul li {
        margin: 5px 0;
    }
}

@media (min-width: 550px) and (max-width: 1100px) {
    .grid-produtos {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1100px) {
    .grid-produtos {
        grid-template-columns: repeat(3, 1fr);
    }
}