/* =========================
FOOTER INSTITUCIONAL
========================= */

.site-footer {
font-family: Montserrat;
color: #ffffff;
}


.footer-main {
	background:
	linear-gradient(
	to bottom,
	rgba(0, 146, 198, 0.92) 0%,
	rgba(3, 102, 160, 0.0) 100%
	),
	url("https://unimeo.com.br/app/views/imagens/elementos_site/rodape.jpg") center / cover;
	padding: 64px 20px 52px;
}

.footer-container {
width: min(1400px, 100%);
margin: 0 auto;
}

.footer-main .footer-container {
display: grid;
grid-template-columns: 1.35fr repeat(3, 1fr) 1.1fr;
gap: 36px;
}

.footer-brand {
padding-right: 16px;
}

.footer-logo {
display: inline-block;
margin-bottom: 18px;
}

.footer-logo img {
display: block;
max-width: 180px;
height: auto;
}

.footer-brand p {
max-width: 285px;
margin: 0 0 24px;
color: rgba(255, 255, 255, 0.76);
font-size: 14px;
line-height: 1.7;
}

.footer-button {
display: inline-flex;
align-items: center;
min-height: 42px;
padding: 0 20px;
border: 1px solid #f5a623;
border-radius: 5px;
color: #ffffff;
font-size: 13px;
font-weight: 700;
text-decoration: none;
transition: background-color .2s ease, color .2s ease;
}

.footer-button:hover {
background: #f5a623;
color: #102b4c;
}

.footer-column h2,
.footer-contact h2 {
margin: 0 0 18px;
color: #ffffff;
font-size: 15px;
font-weight: 700;
letter-spacing: .2px;
}

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

.footer-column li {
margin-bottom: 8px;
}

.footer-column a,
.footer-contact a,
.footer-contact span {
color: rgba(255, 255, 255, 0.73);
font-size: 13px;
line-height: 1.5;
text-decoration: none;
transition: color .2s ease;
}

.footer-column a:hover,
.footer-contact a:hover {
color: #f5a623;
}

.footer-contact address {
display: flex;
flex-direction: column;
gap: 10px;
margin: 0;
font-style: normal;
}

.footer-contact span {
margin-top: 4px;
}

.footer-map {
display: inline-block;
margin-top: 18px;
color: #f5a623 !important;
font-weight: 700;
}

.footer-bottom {
background-image: linear-gradient(
to right,
rgb(252, 181, 48),
rgb(246, 147, 49)
);
padding: 18px 20px;
}

.footer-bottom-content {
display: flex;
align-items: center;
justify-content: space-between;
gap: 24px;
}

.footer-bottom p {
margin: 0;
color: #063f68;
font-size: 14px;
}

.footer-bottom-links {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 16px;
}

.footer-bottom-links a {
color: #063f68;
font-size: 12px;
font-weight: 600;
text-decoration: none;
transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
color: #ffffff;
}

.footer-social {
display: flex;
align-items: center;
gap: 10px;
}

.footer-social a {
display: flex;
align-items: center;
justify-content: center;
width: 32px;
height: 32px;
border: 1px solid rgba(6, 63, 104, 0.45);
border-radius: 50%;
transition: border-color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
border-color: #ffffff;
transform: translateY(-2px);
}

.footer-social img {
width: 26px;
height: 26px;
object-fit: contain;
filter: brightness(0) saturate(100%) invert(20%) sepia(38%) saturate(1644%) hue-rotate(164deg) brightness(89%) contrast(96%);
}


/* Tablets */
@media (max-width: 1050px) {
.footer-main .footer-container {
grid-template-columns: repeat(3, 1fr);
}

.footer-brand {
    grid-column: span 3;
    padding-right: 0;
}

.footer-brand p {
    max-width: 520px;
}

}

/* Celulares */
@media (max-width: 700px) {
	.footer-main {
	padding: 46px 24px 38px;
	}

	.footer-main .footer-container {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.footer-brand {
		grid-column: auto;
	}

	.footer-bottom-content {
		flex-direction: column;
		text-align: center;
		gap: 16px;
	}

	.footer-bottom-links {
		gap: 12px;
	}

}

.footer-app {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 26px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-app img {
    width: 100px;
    height: 150px;
    padding: 5px;
    background: #ffffff;
    border-radius: 6px;
    object-fit: contain;
}

.footer-app div {
    display: flex;
    flex-direction: column;
    gap: 5px;
    }

.footer-app strong {
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

.footer-app span {
    color: rgba(255, 255, 255, 0.70);
    font-size: 12px;
    line-height: 1.5;
}

@media (max-width: 700px) {
    .footer-app {
    max-width: 310px;
    }
	}