footer {
            background-color: #000;
            color: #fff;
			box-shadow: 0 0 15px rgba(0,0,0,0.6);
			font-size: 16px;
        }
		.footer-container {
			display: flex;
			flex-wrap: wrap;
			justify-content: space-between;
			gap: 30px;
			margin: 0 auto;
			padding: 20px 0 0 30px;
		}
		.footer-column {
            flex: 1;
			min-width: 300px;
			margin: 15px;
        }
		.footer-column h5 {
			margin-bottom: 15px;
			color: white;
			font-weight: bold;
			letter-spacing: 1px;	
        }
		.footer-column iframe {
			width: 70%;
			height: 270px;
			border: 0;
			border-radius: 8px;
			margin-top: 10px;
		}
		.footer-column a {
			color: #fff;
			text-decoration: none;
			transition: color 0.2s ease;
		}
		.footer-column a:hover {
			color: #1db24a;
		}
		.footer-links {
			list-style: none;
			padding: 0;
			margin: 20px 0;
		}
		.footer-links li {
			margin-bottom: 6px;
		}
		.social-icons a {
			color: lightblue;
			margin-right: 15px;
			font-size: 30px;
			transition: color 0.2s ease;
		}
		.social-icons a:hover {
			color: #1db24a;
		}
		.footer-bottom {
			text-align: left;
			border-top: 1px solid #222;
			padding: 15px 0 0 20px;
			font-size: 13px;
			color: #aaa;
		}
		/* Responsivo */
		@media (max-width: 600px) {
			footer {
				font-size: 14px;
			}	
			.footer-container {
				padding: 20px 0 0 0;
			}
			.footer-column {
				width: 100%;
			}
			.footer-column iframe {
				width: 100%;
				height: 200px;
			}
		}