/* CSS Document */

.site-footer {
	display: block;
	width: 100%;
	/* height: 120px; */
	margin: 0;
	background: #745d47; /* #1b1b1b; */
}

.footer-title {
	display: block;
	margin-bottom: -8px;
	text-decoration: none;
	color: white;
	font-size: 12px;
	font-weight: 500;
}

.footer-title-tc {
	display: block;
	margin-top: -20px;
	text-decoration: none;
	color: white;
	font-size: 12px;
	font-weight: 500;
}

.site-footer > a {
	text-decoration: none;
	color: white;
}

.site-footer p {
	text-decoration: none;
	color: white;
	font-size: 12px;
	font-weight: 200;
	line-height: 1.3;
	padding: 20px 28px;
}

.wp {
    position: fixed !important;
    background-color: #1f8e34;
    right: 10px;
    bottom: 40px;
    color: #fff;
    display: inline-flex; /* o flex */
  	align-items: center;
	justify-content: center;

    font-size: 20px;
    line-height: 40px;
    text-align: center;
    width: 140px;
    height: 40px;
    z-index: 9000;
    cursor: pointer;
	
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -o-border-radius: 8px;
    border-radius: 8px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.wp svg,
.wp svg path {
	width: 32px;
  	height: 32px;
    fill: currentColor;
}

/* TERMINOS Y CONDICIONES */
.site-term-cond {
	display: block;
	width: 100%;
	/* height: 120px; */
	margin: 0;
	/* background: #745d47;  #1b1b1b; */
}

.site-term-cond > a {
	text-decoration: none;
	color: #393939;
}

.site-term-cond p {
	text-decoration: none;
	color: #393939;
	font-size: 14px;
	font-weight: 200;
	line-height: 1.3;
	padding: 10px 28px;
}

.site-term-cond h4 {
	text-decoration: none;
	color: #bb9f83;
	font-size: 20px;
	font-weight: 200;
	line-height: 1.3;
	padding: 10px 28px;
}

.site-term-cond img {
	margin-left: 4px;
	color: #bb9f83;
}

/* FIN TERMINOS Y CONDICIONES */

@media (min-width: 768px) {
	.site-footer {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		gap: 30px;
		align-items: start;
		text-align: left;
	}
	
	.site-term-cond {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		gap: 30px;
		align-items: start;
		text-align: left;
	}

	/* Oculta los HR en desktop */
	.site-footer .hr20b {
		display: none;
	}

	/* Evita márgenes raros */
	.site-footer h5,
	.site-footer p {
		margin: 0;
	}	
}