/* FOOTER BASE */

.footer{
background:linear-gradient(135deg,#ff6a00,#ff8c42);
color:white;
margin-top:60px;
}

/* CONTENEDOR */

.footer-container{
max-width:1200px;
margin:auto;

display:grid;
grid-template-columns:1fr 1fr 1fr;
gap:40px;

padding:50px 20px;
}

/* TITULOS */

.footer-col h3{
margin-bottom:15px;
font-size:18px;
}

/* TEXTOS */

.footer-col p{
font-size:14px;
line-height:1.6;
margin-bottom:10px;
}

/* LINKS */

.footer-col a{
display:block;
text-decoration:none;
color:white;
margin-bottom:8px;
font-size:14px;
opacity:.9;
transition:.3s;
}

.footer-col a:hover{
opacity:1;
transform:translateX(3px);
}

/* REDES */

.social-icons{
margin-top:10px;
display:flex;
gap:10px;
}

.social-icons a{
background:rgba(255,255,255,.2);
padding:8px;
border-radius:6px;
transition:.3s;
}

.social-icons a:hover{
background:white;
color:#ff6a00;
}

/* NEWSLETTER */

.newsletter form{
display:flex;
flex-direction:column;
gap:10px;
margin-top:10px;
}

.newsletter input{
padding:10px;
border:none;
border-radius:6px;
outline:none;
}

.newsletter button{
background:white;
color:#ff6a00;
border:none;
padding:10px;
border-radius:6px;
font-weight:bold;
cursor:pointer;
transition:.3s;
}

.newsletter button:hover{
background:#ffe2cc;
}

/* BOTTOM */

.footer-bottom{
text-align:center;
padding:15px;
background:rgba(0,0,0,.1);
font-size:13px;
}