/*
 *  La Tienda De Emy
 *
 */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	background: #f5f5f5;
	color: #fff;
	font: normal normal 400 16px/1 'Poppins', sans-serif;
}

body {
	font: inherit;
	min-height: 100vh;
	margin: 0;
	padding: 0;
}

.wrapper {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

/* Header with Banner */
.header {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	padding: 0;
	position: relative;
	overflow: hidden;
}

.header__banner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 240px;
	padding: 4rem 2rem;
	background: 
		linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
		url('/bg.png') center/cover;
}

.header__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
}

.header__logo {
	max-width: 500px;
	width: 100%;
	height: auto;
	padding: 1.5rem;
	filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
	animation: logoFloat 3s ease-in-out infinite;
}

.header__title {
	font-size: 2rem;
	font-weight: 800;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 3px;
	text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
	margin: 0;
	animation: fadeInUp 1s ease 0.3s both;
}

@keyframes logoFloat {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

/* Main */
.main {
	flex-grow: 1;
	padding: 3rem 0;
	background: #f5f5f5;
}

.main__container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
	width: 100%;
}

/* Social Buttons Grid */
.socials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(2, 1fr);
	gap: 1.5rem;
	max-width: 1400px;
	margin: 0 auto;
	animation: fadeInUp 0.8s ease both;
}

.social-button {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	aspect-ratio: 435 / 175;
	padding: 0;
	background: #fff;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border: none;
	border-radius: 12px;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	position: relative;
	overflow: hidden;
}

.social-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.3);
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 0;
}

.social-button__text {
	display: block;
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 1.5px;
	margin-bottom: 0.5rem;
	color: #fff;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
	position: relative;
	z-index: 1;
}

.social-button__platform {
	display: block;
	font-size: 2.2rem;
	font-weight: 800;
	letter-spacing: 2px;
	color: #fff;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
	position: relative;
	z-index: 1;
}

.social-button:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.social-button:hover::before {
	opacity: 1;
}

/* Instagram */
.social-button--instagram {
	background-image: url('/buttons/1.png');
}

/* WhatsApp */
.social-button--whatsapp {
	background-image: url('/buttons/2.png');
}

/* TikTok */
.social-button--tiktok {
	background-image: url('/buttons/3.png');
}

/* Telegram */
.social-button--telegram {
	background-image: url('/buttons/4.png');
}

/* Website */
.social-button--website {
	background-image: url('/buttons/6.png');
}

/* Google Maps */
.social-button--googlemaps {
	background-image: url('/buttons/5.png');
}

/* Footer */
.footer {
	padding: 1.5rem 0;
	background: #000;
	border-top: none;
}

.footer__container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.footer__info {
	text-align: left;
}

.footer__copyright {
	color: #999;
	font-size: 0.85rem;
	font-weight: 700;
	margin-bottom: 0;
}

.footer__message {
	color: #666;
	font-size: 0.8rem;
	font-weight: 400;
	text-align: center;
}

.footer__meta {
	display: none;
}

.footer__socials {
	display: flex;
	gap: 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer__socials__item a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 35px;
	height: 35px;
	background: transparent;
	border: none;
	border-radius: 0;
	color: #666;
	font-size: 1.1rem;
	text-decoration: none;
	transition: all 0.3s ease;
}

.footer__socials__item a:hover {
	transform: translateY(-2px);
	border-color: transparent;
	background: transparent;
	color: #fff;
}

/* Animations */
@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(30px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive */
@media (max-width: 1024px) {
	.socials-grid {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(3, 1fr);
		gap: 1rem;
	}
}

@media (max-width: 768px) {
	.header__banner {
		min-height: 180px;
		padding: 2rem 1rem;
	}
	
	.header__logo {
		max-width: 300px;
	}
	
	.header__title {
		font-size: 1.5rem;
		letter-spacing: 2px;
	}
	
	.main {
		padding: 2rem 0;
	}
	
	.socials-grid {
		grid-template-columns: 1fr;
		grid-template-rows: repeat(6, 1fr);
		gap: 1rem;
	}
	
	.social-button {
		padding: 2rem 1.5rem;
	}
	
	.social-button__text {
		font-size: 0.75rem;
	}
	
	.social-button__platform {
		font-size: 1.5rem;
	}
	
	.footer__container {
		flex-direction: column;
		gap: 1rem;
	}
	
	.footer__info {
		text-align: center;
	}
	
	.footer__socials {
		gap: 0.75rem;
	}
	
	.footer__socials__item a {
		width: 30px;
		height: 30px;
		font-size: 0.9rem;
	}
}
