/* Footer Styles */
.site-footer {
	background-color: var(--negro, #000000);
	color: var(--blanco, #FFFFFF);
	padding: 60px 40px 120px;
	font-family: "HeadingNow", -apple-system, sans-serif;
}

.footer-container {
	max-width: 1130px;
	margin: 0 auto;
}

/* Top Section: Social Box */
.footer-top {
	margin-bottom: 60px;
}

.footer-social-box {
	display: flex;
	border: 1px solid rgba(255, 255, 255, 0.4);
	align-items: center;
}

.footer-social-title {
	font-size: 43px;
	margin: 0;
	padding: 24px 40px;
	border-right: 1px solid rgba(255, 255, 255, 0.4);
	font-weight: 700;
	font-family: "GooperCondensed", "Arial Black", sans-serif;
	letter-spacing: 0;
	min-height: 142px;
	min-width: 244px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer-social-icons {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 24px 40px;
	border-right: 1px solid rgba(255, 255, 255, 0.4);
	min-height: 142px;
	width: 100%;
}

.social-icon {
	background-color: var(--blanco, #FFFFFF);
	color: var(--negro, #000000);
	width: 37px;
	height: 37px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease;
	box-shadow: 3px 3px 0 1px var(--rosa, #FF4FC4);
}

.social-icon:hover {
	transform: scale(1.1);
}

.social-icon svg {
	width: 16px;
	height: 16px;
}

.footer-social-handle {
	padding: 24px 40px;
	display: flex;
	align-items: center;
	min-height: 142px;
	min-width: 337px;
}

.footer-social-handle {
	color: var(--blanco, #FFFFFF);
	text-decoration: none;
	font-size: 43px;
	font-weight: 700;
	font-family: "GooperCondensed", "Arial Black", sans-serif;
	letter-spacing: 0;
}

/* Middle Section: Large Logo */
.footer-middle {
	margin-bottom: 60px;
	text-align: center;
}

.footer-large-logo {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}

/* Bottom Section */
.footer-acurio-logo {
	margin-bottom: 16px;
}

.footer-acurio-logo img {
	height: 43px;
}

/* Grid Layout */
.footer-grid {
	display: grid;
	grid-template-columns: 5fr 2fr 2fr 1fr;
	align-items: start;
}

.footer-widget {
	padding: 0 40px;
}

.footer-widget.footer-newsletter {
	padding-left: 0;
}

.footer-widget.footer-menu-widget {
	border-left: 1px solid rgba(255, 255, 255, 0.4);
	height: 100%;
}

.footer-widget.footer-reclamaciones {
	display: flex;
	justify-content: flex-end;
	padding: 0;
}

.footer-widget.footer-reclamaciones a {
	padding: 10px 20px;
	border-radius: 10px;
	background-color: var(--blanco);
}

.footer-widget-title {
	font-size: 16px;
	margin: 0 0 24px 0;
	font-weight: 500;
}

/* Menu */
.footer-menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-menu li {
	margin-bottom: 16px;
}

.footer-menu a {
	color: var(--blanco, #FFFFFF);
	text-decoration: none;
	font-size: 14px;
	opacity: 0.8;
	transition: opacity 0.3s;
}

.footer-menu a:hover {
	opacity: 1;
}

/* Newsletter Skeleton */
.newsletter-skeleton {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.newsletter-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 20px;
}

.newsletter-skeleton input[type="text"],
.newsletter-skeleton input[type="email"],
.newsletter-skeleton input[type="tel"] {
	width: 100%;
	background: transparent;
	border: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.6);
	color: var(--blanco, #FFFFFF);
	padding: 8px 0;
	font-size: 13px;
	border-radius: 0;
}

.newsletter-skeleton input::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

.newsletter-row-2 {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 20px;
	align-items: end;
}

.btn-submit {
	background: transparent;
	color: var(--blanco, #FFFFFF);
	border: 1px solid rgba(255, 255, 255, 0.6);
	padding: 10px 0;
	width: 100%;
	font-size: 13px;
	cursor: not-allowed;
	opacity: 0.8;
}

.form-checkbox {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-top: 10px;
}

.form-checkbox input {
	margin-top: 2px;
}

.form-checkbox label {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.4;
}

/* Reclamaciones */
.footer-reclamaciones img {
	max-width: 120px;
	height: auto;
}

/* Copyright */
.footer-copyright {
	text-align: center;
	font-size: 12px;
	opacity: 0.7;
	margin-top: 60px;
}

.mobile-break {
	display: none;
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

/* Breakpoint 1024px */
@media (max-width: 1024px) {
	.footer-social-title {
		min-width: auto;
		width: 30%;
		font-size: 24px;
		padding: 20px;
	}

	.footer-social-icons {
		padding: 20px;
		width: 30%;
		justify-content: center;
	}

	.footer-social-handle {
		min-width: auto;
		padding: 20px;
		width: 40%;
	}

	.footer-social-handle {
		font-size: 24px;
	}

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

	.footer-widget.footer-newsletter {
		grid-column: 1 / -1;
		padding: 0;
	}

	.footer-widget.footer-menu-widget {
		border-left: none;
		padding: 0;
	}

	.footer-widget.footer-reclamaciones {
		grid-column: 1 / -1;
		justify-content: center;
		padding: 0;
	}
}

/* Breakpoint 767px (Mobile) */
@media (max-width: 767px) {
	.site-footer {
		padding: 40px 20px 20px;
	}

	.footer-container {
		padding: 0;
	}

	.footer-social-box {
		width: 100%;
		justify-content: space-between;
	}

	.footer-social-title {
		font-size: 20px;
		padding: 12px;
		min-height: auto;
		border-right: 1px solid rgba(255, 255, 255, 0.4);
	}

	.footer-social-icons {
		padding: 12px;
		gap: 8px;
		min-height: auto;
		border-right: 1px solid rgba(255, 255, 255, 0.4);
		justify-content: center;
	}

	.social-icon {
		width: 24px;
		height: 24px;
		border-radius: 8px;
		box-shadow: 2px 2px 0 1px var(--rosa, #FF4FC4);
	}

	.social-icon svg {
		width: 12px;
		height: 12px;
	}

	.footer-social-handle {
		padding: 12px;
		min-height: auto;
	}

	.footer-social-handle {
		font-size: 20px;
	}

	.footer-middle {
		margin-bottom: 40px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.4);
		padding-bottom: 40px;
	}

	.footer-acurio-logo {
		display: none;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.newsletter-grid,
	.newsletter-row-2 {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.btn-submit {
		border-radius: 20px;
		margin-top: 10px;
		padding: 14px 0;
	}

	.form-checkbox {
		margin-bottom: 40px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.4);
		padding-bottom: 40px;
	}

	.footer-widget-title {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 16px;
		cursor: pointer;
	}

	.footer-menu-widget .footer-widget-title::after {
		content: "+";
		font-size: 24px;
		font-weight: 300;
	}

	.footer-menu-widget.is-open .footer-widget-title::after {
		content: "-";
	}

	.footer-menu {
		display: none;
		margin-bottom: 20px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.4);
		padding-bottom: 20px;
	}

	.footer-menu-widget.is-open .footer-menu {
		display: block;
	}

	.footer-widget.footer-reclamaciones {
		justify-content: center;
		padding: 0;
		margin-top: 20px;
	}

	.footer-reclamaciones img {
		max-width: 100px;
	}

	.footer-copyright {
		margin-top: 40px;
		font-size: 10px;
		line-height: 1.6;
	}

	.mobile-break {
		display: block;
	}
}