/* ===================== HERO ===================== */
.hero {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 130px;            /* más aire entre el texto y la imagen */
	padding: 90px 50px;
	flex-wrap: wrap;
}

.hero-text {
	max-width: 440px;
	display: flex;
	flex-direction: column;
}

.hero-text h2 { font-size: 70px; font-weight: 900; line-height: 1; }
.hero-text p { font-size: 24px; font-weight: 200; margin: 30px 0 44px; }
.hero-text .pill-btn { align-self: center; }   /* Explore centrado bajo el texto */

/* ---------- tarjeta giratoria (flip) ---------- */
.hero-image { perspective: 1400px; }

.flip-card {
	width: 460px;
	height: 460px;
	max-width: 86vw;
	cursor: pointer;
}

.flip-inner {
	position: relative;
	width: 100%;
	height: 100%;
	transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1);
	transform-style: preserve-3d;
}

.flip-card.flipped .flip-inner { transform: rotateY(180deg); }

.flip-front,
.flip-back {
	position: absolute;
	inset: 0;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.flip-front { background: #000; }
.flip-front img { width: 100%; height: 100%; object-fit: cover; }

.flip-hint {
	position: absolute;
	bottom: 14px;
	right: 14px;
	background: rgba(0, 0, 0, 0.55);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	padding: 6px 14px;
	border-radius: var(--radius-pill);
	pointer-events: none;
	backdrop-filter: blur(4px);
}

.flip-back {
	transform: rotateY(180deg);
	background: linear-gradient(145deg, var(--teal), #0a4a57);
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	padding: 44px;
}

.flip-back h3 { font-size: 34px; font-weight: 900; margin-bottom: 18px; }
.flip-back p { font-size: 18px; font-weight: 300; line-height: 1.55; }

/* ===================== FEATURED ===================== */
.featured {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 80px 40px;
}

.featured > h2 { font-size: 60px; font-weight: 900; margin-bottom: 50px; }

.featured-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 340px));
	gap: 40px;
	width: 100%;
	max-width: 760px;
	justify-content: center;
}

.feature-card {
	background: var(--gray-light);
	border-radius: 20px;
	padding: 30px;
	text-align: center;
	box-shadow: var(--shadow);
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.feature-card img { width: 200px; height: 200px; object-fit: contain; margin-bottom: 20px; }
.feature-card h3 { font-size: 26px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 18px; font-weight: 200; margin-bottom: 24px; flex: 1; }
.feature-card.soon img { opacity: 0.6; }

.soon-badge {
	position: absolute;
	top: 16px;
	right: 16px;
	background: var(--teal);
	color: var(--white);
	font-size: 13px;
	font-weight: 700;
	padding: 4px 12px;
	border-radius: var(--radius-pill);
}

/* ===================== SOCIALS ===================== */
.socials-section {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 80px 40px;
}

.socials-section h2 { font-size: 60px; font-weight: 900; margin-bottom: 55px; }

.socials {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 100px;                 /* mucho más espacio entre redes */
	width: 100%;
	max-width: 1000px;
}

.social { text-align: center; text-decoration: none; color: var(--ink); }

.social img {
	width: 110px;
	height: 110px;
	object-fit: contain;
	transition: transform 0.3s ease;
}

.social:hover img { transform: scale(1.12) translateY(-4px); }
.social p { font-size: 22px; font-weight: 200; margin-top: 10px; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
	.hero { gap: 50px; padding: 50px 24px; }
	.hero-text { text-align: center; align-items: center; max-width: 100%; }
	.hero-text h2 { font-size: 48px; }
	.hero-text p { font-size: 20px; }
	.flip-card { width: 320px; height: 320px; }
	.featured > h2, .socials-section h2 { font-size: 40px; }
	.socials { gap: 50px; }
	.social img { width: 80px; height: 80px; }
}