/* ═══════════════════════════════════════
   FOOTER.CSS — Soria Casas Layout
   ═══════════════════════════════════════ */

/* ═══ Prevent white line below footer ═══ */
html {
	background: #1a1a2e;
}

/* ═══ FOOTER WRAPPER ═══ */
.scl-footer {
	background: #1a1a2e;
	color: rgba(255, 255, 255, 0.7);
	padding: 64px 0 0;
	font-family: 'DM Sans', sans-serif;
	font-size: 14px;
}

/* ═══ GRID (4 columnas) ═══ */
.scl-footer__grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 48px;
	padding-bottom: 40px;
}

/* ═══ COLUMNAS ═══ */
.scl-footer__col {
	display: flex;
	flex-direction: column;
}

/* Logo */
.scl-footer__logo {
	display: inline-block;
	margin-bottom: 16px;
}

.scl-footer__logo img {
	max-height: 44px;
	width: auto;
	filter: brightness(0) invert(1);
}

/* Descripcion */
.scl-footer__desc {
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.7;
	margin-bottom: 20px;
}

/* Redes sociales */
.scl-footer__socials {
	display: flex;
	gap: 12px;
}

.scl-footer__socials a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.6);
	transition: all var(--transition);
}

.scl-footer__socials a:hover {
	background: var(--azul);
	color: #fff;
}

/* Titulos */
.scl-footer__title {
	font-family: 'Cormorant Garamond', serif;
	font-size: 20px;
	font-weight: 500;
	color: #ffffff;
	margin-bottom: 20px;
}

/* Enlaces */
.scl-footer__links {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.scl-footer__links a {
	color: rgba(255, 255, 255, 0.6);
	transition: color var(--transition);
}

.scl-footer__links a:hover {
	color: var(--azul);
}

/* Info contacto */
.scl-footer__info {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.scl-footer__info li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: rgba(255, 255, 255, 0.6);
}

.scl-footer__info li svg {
	flex-shrink: 0;
	margin-top: 2px;
	color: rgba(255, 255, 255, 0.4);
}

.scl-footer__info a {
	color: rgba(255, 255, 255, 0.6);
	transition: color var(--transition);
}

.scl-footer__info a:hover {
	color: var(--azul);
}

/* ═══ COPYRIGHT BAR ═══ */
.scl-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 24px 0;
}

.scl-footer__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
}

.scl-footer__copyright {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.4);
}

/* Bitcoin friendly */
.scl-footer__btc {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.4);
}

.scl-footer__socials a[aria-label="Bitcoin"] {
	margin-left: 44px;
	position: relative;
}

.scl-footer__socials a[aria-label="Bitcoin"]::before {
	content: '';
	position: absolute;
	left: -23px;
	top: 6px;
	bottom: 6px;
	width: 1px;
	background: rgba(255, 255, 255, 0.12);
}

.scl-footer__socials a[aria-label="Bitcoin"] svg {
	transform: rotate(14deg);
}

.scl-footer__made {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.4);
}

/* ═══ RESPONSIVE ═══ */

/* Tablet (<=900px) */
@media (max-width: 900px) {
	.scl-footer {
		padding: 48px 0 0;
	}

	.scl-footer__grid {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}
}

/* Mobile (<=600px) */
@media (max-width: 600px) {
	.scl-footer {
		padding: 40px 0 0;
	}

	.scl-footer__grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.scl-footer__bottom-inner {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
}
