
.footer{
background:#1d1d1d;
color:white;
padding:70px 0 30px;
font-family:'Inter',sans-serif;
}

.footer-container{
width:1200px;
max-width:90%;
margin:auto;
display:grid;
grid-template-columns:2fr 1fr 1fr 1fr;
gap:40px;
}

.footer h2{
margin-bottom:15px;
}

.footer h3{
margin-bottom:15px;
font-size:18px;
}

.footer p{
color:#bbb;
line-height:1.6;
}

.footer-links ul{
list-style:none;
padding:0;
}

.footer-links li{
margin-bottom:10px;
}

.footer-links a{
text-decoration:none;
color:#bbb;
transition:.3s;
}

.footer-links a:hover{
color:white;
}

/* SOCIAL ICONS */

.social-icons{
display:flex;
gap:15px;
margin-top:10px;
}

.social-icons a{
width:40px;
height:40px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
background:#2b2b2b;
color:white;
font-size:18px;
transition:0.3s;
}

/* INSTAGRAM */

.social-icons a.instagram:hover{
background:linear-gradient(
45deg,
#f09433,
#e6683c,
#dc2743,
#cc2366,
#bc1888
);
}

/* LINKEDIN */

.social-icons a.linkedin:hover{
background:#0077b5;
}

/* WHATSAPP */

.social-icons a.whatsapp:hover{
background:#25d366;
}

/* FOOTER BOTTOM */

.footer-bottom{
text-align:center;
margin-top:50px;
border-top:1px solid #333;
padding-top:20px;
color:#aaa;
font-size:14px;
}

/* RESPONSIVE */

@media(max-width:900px){

.footer-container{
grid-template-columns:1fr;
text-align:center;
}

.social-icons{
justify-content:center;
}

}