/* ============================================
   HERO BENTO - Grid de campañas destacadas
   ============================================ */

.hero-bento {
	display: grid;
	grid-template-columns: 2fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 16px;
	margin: 24px auto 0;
	width: min(1870px, 95vw);
	height: min(765px, 42vw);
}

/* --- Cards --- */
.hero-card {
	position: relative;
	min-height: 220px;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	border-radius: 18px;
	text-decoration: none;
	color: white;
	transition: transform 0.25s ease;
}

.hero-card:hover {
	transform: scale(1.01);
}

/* --- Card principal (Rebajas) --- */
.hero-main {
	grid-row: 1 / 3;
	background-image: linear-gradient(0deg, rgba(4, 7, 26, 0.84), transparent 62%),
		url('https://digitalinnova.co/wp-content/uploads/2026/08/banner-1.jpg');
}

/* --- Cards secundarias --- */
.hero-side {
	min-height: 0;
}

.hero-workspace {
	background-position: 70% center;
	background-image: linear-gradient(0deg, rgba(4, 7, 26, 0.84), transparent 62%),
		url('https://digitalinnova.co/wp-content/uploads/2026/08/banner-2.jpg');
}

.hero-eco {
	filter: grayscale(0.35);
	background-image: linear-gradient(0deg, rgba(4, 7, 26, 0.84), transparent 62%),
		url('https://digitalinnova.co/wp-content/uploads/2026/08/banner-3.jpg');
}

.hero-eco:hover {
	filter: grayscale(0);
}

/* --- Copy (texto) --- */
.hero-copy {
	position: absolute;
	left: 22px;
	bottom: 20px;
	color: white;
}

.hero-main .hero-copy {
	top: 40px;
	bottom: auto;
}

.hero-copy h1 {
	font-size: clamp(22px, 2.4vw, 62px);
	line-height: 1.03;
	max-width: 800px;
	margin: 0 0 5px;
	font-weight: 700;
}

.hero-main h1 {
	font-size: clamp(48px, 6.5vw, 120px);
}

.hero-copy h2 {
	font-size: clamp(18px, 1.8vw, 36px);
	line-height: 1.1;
	max-width: 400px;
	margin: 0 0 12px;
	font-weight: 600;
}

.hero-copy p {
	margin: 0 0 18px;
	color: #2999ff;
	font-size: clamp(15px, 1.5vw, 30px);
}

/* --- Pill Button --- */
.pill-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border-radius: 25px;
	padding: 10px 17px;
	font-size: 12px;
	background: white;
	color: #343744;
	text-decoration: none;
	transition: background 0.15s ease, color 0.15s ease;
}

.pill-button:hover {
	background: #258cff;
	color: white;
}

/* -------------------------------------------
   Responsive: Mobile (<=700px)
   ------------------------------------------- */
@media (max-width: 700px) {
	.hero-bento {
		display: flex;
		flex-direction: column;
		width: 100%;
		height: auto;
		gap: 8px;
		margin-top: 0;
	}

	.hero-card {
		min-height: 255px;
	}

	.hero-main {
		min-height: 255px;
	}

	.hero-side {
		min-height: 220px;
	}

	.hero-main .hero-copy {
		top: auto;
		bottom: 16px;
	}

	.hero-main h1 {
		font-size: 53px;
	}

	.hero-copy {
		left: 12px;
		bottom: 14px;
	}

	.hero-copy h1 {
		font-size: 21px;
	}

	.hero-copy h2 {
		font-size: 18px;
	}
}
