.footer-container {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	background-color: #fff;
	height: 470px;
}

.footer-left {
	width: 30%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-image: url('textura.jpg');
	background-size: cover;
	background-position: center;
	position: relative;
	overflow: hidden;
	gap: 30px;
	order: 1
}

/* Overlay escuro com transição suave */
.footer-left::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.65);
	z-index: 1;
	transition: background-color 0.3s ease;
}

.footer-left .footer-logo,
.footer-left .footer-social {
	position: relative;
	z-index: 2;
}

.footer-right {
	width: 70%;
	display: flex;
	flex-wrap: wrap;
	background-color: #f2f2f2;
	order: 2;
}

.footer-logo img {
	max-width: 250px;
	height: auto;
}

.social-links {
	display: flex;
	margin-top: -20px;
	gap: 15px;
}

.social-links a {
	color: #ffc400;
	font-size: 30px;
	transition: color 0.3s ease;
}

/* Hover para links sociais */
.social-links a:hover {
	color: #ffdd66;
}

.footer-column {
	width: 30%;
	padding: 0 15px;
	margin-top: 20px;
	margin-left: 25px;
}

footer .footer-column strong {
    font-size: 1.5em; 
    color: #000;
}

.footer-column ul {
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 1em; 
}

.footer-column li {
	color: #000;
	margin-bottom: 5px;
	font-size: 12px;
	font-weight: bolder;
}

.footer-bottom {
	text-align: center;
	padding: 20px;
	background-color: #fff;	
	border-top: 1px solid #eee;
}

.white-line {
	height: 3px;
	background-color: #fff;
	width: 40%;
	margin: 15px 0;
	z-index: 999;
}

.yellow-line {
	height: 3px;
	background-color: #ffc400;
	width: 25%;
	margin: 15px 0;
}

.scroll-to-top {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #333;
	color: white;
	cursor: pointer;
	font-size: 15px;
    margin-right: 10px;
	transition: background-color 0.3s ease;
}

.scroll-to-top:hover {
	background-color: #555;
}
	
.whatsapp-float {
	position: fixed;
	z-index: 99;
	right: 20px;
	bottom: 100px;
	animation: float 2s ease-in-out infinite;
	transition: all 0.3s;
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0);
	}
		
	50% {
		transform: translateY(-8px);
	}
}

.whatsapp-float img {
	width: 60px;
	height: 60px;
	filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
	transition: transform 0.3s;
}

.whatsapp-float:hover img {
	transform: scale(1.1);
	animation-play-state: paused;
}

@media only screen and (max-width: 767px) {
    .footer-container {
        flex-direction: column;
        height: 100%;
    }
    
    .footer-left {
        order: 2;
        width: 100% !important;
        margin-top: 30px;
        padding: 20px 0; /* Adiciona padding para melhor espaçamento */
    }
    
    .footer-right {
        order: 1;
        width: 100% !important;
        flex-direction: column;
        justify-content: center; /* Centraliza verticalmente */
        align-items: center; /* Centraliza horizontalmente */
    }
    
    .footer-column {
        width: 90% !important; /* Largura um pouco menor para margens */
        margin-bottom: 25px;
        margin-left: 0; /* Remove a margem esquerda */
        padding: 0 10px;
        text-align: center; /* Centraliza o texto */
    }
    
    
    /* Ajustes para o logo/mapa */
    .footer-logo {
        text-align: center;
    }
    
    .footer-logo a img:first-child {
        width: 100%;
        max-width: 320px;
    }
    
    .footer-logo a img:last-child {
        display: block;
        margin: 10px auto !important;
    }
    
    /* Centraliza ícones sociais */
    .social-links a {
        
        color: #ffc400 !important;
    }
    
    .footer-social .social-links {
        margin-top: -15px;
        justify-content: center;
    }
    
    /* Se estiver usando Font Awesome ou similar, garantir que não haja override */
    .social-links a i {
        color: inherit !important;
    }
    
    /* Ajuste para as linhas decorativas */
    .white-line, .yellow-line {
        margin-left: auto;
        margin-right: auto;
    }
}