/*
Theme Name: Tema Macanudo
Theme URI: 
Author: Macanudo
Author URI: https://macanudo.pe/
Description: Un tema en blanco para WordPress optimizado y ligero.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: macanudotheme
*/

:root {
	--primary-color: #228600;
	--secondary-color: #FDD75C;
	--tertiary-color: #056605;
}

body {
    font-family: "Roboto", sans-serif;
}
/* --- FOOTER --- */
#footer {
	padding: 100px 0 10px;
    background: url(https://clublaspampasarequipa.com/wp-content/uploads/2025/04/bg-footer.webp) no-repeat top center;
    background-size: cover;
    min-height: 220px;
}
#footer .redes-sociales {
	padding: 0;
	list-style: none;
	display: flex;
	gap: 20px;
}
#footer .redes-sociales {
	width: fit-content;
}
#footer .redes-sociales li svg{
	height: 20px;
	width: auto;
}
#footer .redes-sociales li svg path{
	fill: var(--primary-color);
}
#footer .redes-sociales li{
	height: 35px;
	width: 35px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	background-color: var(--secondary-color);
	transition: background-color 500ms;
}

#footer .redes-sociales li:hover{
	background-color: #fff;
}
#footer hr{
	border-top: 1px solid #ffffff54;
}
#footer .copyright{
	color: #fff;
	font-size: 14px;
}
/* MEDIA QUERYS */
@media(max-width: 768px) {

}