/* REGRAS ESTRUTURAIS ***************************************************/
footer {
	width: 100%;
	background-color: var(--color-dark-blue);
	margin-top: 100px;

	p {
		margin-bottom: 0;
		color: var(--color-white-default);
	}

	#section-contacts {
		padding: 80px 10px;

		display: flex;
		flex-direction: row;
		justify-content: space-evenly;
		align-items: baseline;

		.contacts-item {
			max-width: 350px;
			text-align: center;

			display: flex;
			flex-direction: column;
			align-items: center;
			gap: 20px;

			img {
				width: 50px;
				height: 50px;
			}
		}
	}

	hr {
		width: 100%;
		border-color: var(--color-white-default);
	}

	#section-copyright {
		padding: 34px 10px;

		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 20px;

		p {
			font-size: 14px;
		}

		#section-images {
			max-height: 60px;

			display: flex;
			flex-direction: row;
			gap: 20px;

			img {
				max-width: 100px;
			}
		}
	}
}
