.ge-home {
	--ge-primary: #DCA54A;
	--ge-primary-hover: #D09A40;
	--ge-heading: #0F172A;
	--ge-text: #4A4A4A;
	--ge-bg-cream: #FAF5E5;
	--ge-white: #FFFFFF;
	--ge-beige: #F0E6C5;
	--ge-dark: #141004;
	font-family: 'Manrope', sans-serif;
	color: var(--ge-text);
	overflow-x: hidden;
}

.ge-home h1,
.ge-home h2,
.ge-home h3 {
	font-family: 'Manrope', sans-serif;
	color: var(--ge-heading);
	font-weight: 800;
	line-height: 1.15;
	margin: 0 0 16px;
}

.ge-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.ge-section {
	padding: 80px 0;
}

.ge-section__title {
	font-size: clamp(28px, 3.5vw, 42px);
}

.ge-section__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 40px;
}

.ge-section__head .ge-section__title {
	margin-bottom: 0;
}

.ge-link-arrow {
	color: var(--ge-heading);
	font-weight: 700;
	text-decoration: none;
	border-bottom: 2px solid var(--ge-primary);
	padding-bottom: 2px;
}

.ge-btn {
	display: inline-block;
	padding: 16px 32px;
	border-radius: 4px;
	font-weight: 700;
	text-decoration: none;
	font-size: 16px;
	transition: transform 0.15s ease, background-color 0.15s ease;
}

.ge-btn:hover {
	transform: translateY(-2px);
}

.ge-btn--primary {
	background: var(--ge-primary);
	color: var(--ge-dark);
}

.ge-btn--primary:hover {
	background: var(--ge-primary-hover);
	color: var(--ge-dark);
}

.ge-btn--ghost {
	background: transparent;
	color: var(--ge-white);
	border: 2px solid var(--ge-white);
}

.ge-btn--ghost:hover {
	background: var(--ge-white);
	color: var(--ge-dark);
}

/* HERO */
.ge-hero {
	position: relative;
	min-height: 90vh;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center;
	background-color: var(--ge-dark);
}

.ge-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(20, 16, 4, 0.85) 0%, rgba(20, 16, 4, 0.55) 55%, rgba(20, 16, 4, 0.35) 100%);
}

.ge-hero__content {
	position: relative;
	z-index: 1;
	max-width: 680px;
}

.ge-hero h1 {
	color: var(--ge-white);
	font-size: clamp(36px, 5.5vw, 60px);
}

.ge-hero__subtitle {
	color: #EDEDED;
	font-size: clamp(17px, 2vw, 20px);
	margin-bottom: 32px;
}

.ge-hero__actions {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 32px;
}

.ge-hero__trust {
	color: var(--ge-beige);
	font-size: 14px;
	letter-spacing: 0.02em;
}

/* ESPECIALIDADES */
.ge-specialties {
	background: var(--ge-white);
}

.ge-specialties__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.ge-specialty-card {
	position: relative;
	display: block;
	height: 380px;
	border-radius: 8px;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	text-decoration: none;
}

.ge-specialty-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(20, 16, 4, 0.85) 0%, rgba(20, 16, 4, 0.15) 60%);
	transition: background 0.2s ease;
}

.ge-specialty-card:hover .ge-specialty-card__overlay {
	background: rgba(20, 16, 4, 0.75);
}

.ge-specialty-card__body {
	position: absolute;
	left: 24px;
	right: 24px;
	bottom: 24px;
	z-index: 1;
}

.ge-specialty-card__title {
	display: block;
	color: var(--ge-white);
	font-size: 22px;
	font-weight: 800;
	margin-bottom: 6px;
}

.ge-specialty-card__text {
	display: block;
	color: #E8E8E8;
	font-size: 14px;
	margin-bottom: 10px;
}

.ge-specialty-card__cta {
	display: none;
	color: var(--ge-primary);
	font-weight: 700;
	font-size: 14px;
}

.ge-specialty-card:hover .ge-specialty-card__cta {
	display: inline-block;
}

/* FABRICACION */
.ge-manufacturing {
	background: var(--ge-bg-cream);
}

.ge-manufacturing__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.ge-manufacturing__copy p {
	font-size: 17px;
	line-height: 1.6;
	margin-bottom: 32px;
}

.ge-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.ge-stat__number {
	display: block;
	font-size: 32px;
	font-weight: 800;
	color: var(--ge-heading);
}

.ge-stat__label {
	display: block;
	font-size: 14px;
	color: var(--ge-text);
}

.ge-manufacturing__image {
	height: 420px;
	border-radius: 8px;
	background-size: cover;
	background-position: center;
}

/* PRODUCTOS */
.ge-products {
	background: var(--ge-white);
}

.ge-products--offers {
	background: var(--ge-bg-cream);
}

.ge-products__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.ge-product-card {
	display: block;
	text-decoration: none;
	color: var(--ge-text);
	border: 1px solid #ECE6D6;
	border-radius: 8px;
	overflow: hidden;
	background: var(--ge-white);
	transition: box-shadow 0.15s ease;
}

.ge-product-card:hover {
	box-shadow: 0 12px 24px rgba(20, 16, 4, 0.08);
}

.ge-product-card__image {
	display: block;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: var(--ge-bg-cream);
}

.ge-product-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ge-product-card__title {
	display: block;
	padding: 16px 16px 4px;
	font-weight: 700;
	font-size: 14px;
	color: var(--ge-heading);
	text-transform: uppercase;
}

.ge-product-card__price {
	display: block;
	padding: 0 16px 16px;
	font-weight: 700;
	color: var(--ge-primary-hover);
}

/* SOLUCIONES */
.ge-solutions {
	background: var(--ge-bg-cream);
}

.ge-solutions__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.ge-solution-tile {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 180px;
	border-radius: 8px;
	text-decoration: none;
	background: var(--ge-dark);
	color: var(--ge-white);
	font-weight: 700;
	font-size: 18px;
	text-align: center;
	overflow: hidden;
	background-size: cover;
	background-position: center;
}

.ge-solution-tile__overlay {
	position: absolute;
	inset: 0;
	background: rgba(20, 16, 4, 0.55);
}

.ge-solution-tile__label {
	position: relative;
	z-index: 1;
	padding: 0 16px;
}

/* PROYECTOS */
.ge-projects {
	background: var(--ge-white);
}

.ge-projects__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.ge-project-card {
	position: relative;
	height: 260px;
	border-radius: 8px;
	overflow: hidden;
	background-size: cover;
	background-position: center;
}

.ge-project-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(20, 16, 4, 0.8) 0%, rgba(20, 16, 4, 0.05) 55%);
}

.ge-project-card__label {
	position: absolute;
	left: 16px;
	bottom: 14px;
	z-index: 1;
	color: var(--ge-white);
	font-weight: 700;
	font-size: 15px;
}

.ge-projects__cta {
	margin-top: 32px;
	text-align: center;
}

/* PROCESO */
.ge-process {
	background: var(--ge-dark);
}

.ge-process .ge-section__title {
	color: var(--ge-white);
	text-align: center;
	margin-bottom: 48px;
}

.ge-process__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 24px;
}

.ge-process__step h3 {
	color: var(--ge-white);
	font-size: 18px;
	margin-bottom: 8px;
}

.ge-process__step p {
	color: #C9C4B6;
	font-size: 14px;
	line-height: 1.5;
}

.ge-process__number {
	display: block;
	color: var(--ge-primary);
	font-size: 28px;
	font-weight: 800;
	margin-bottom: 12px;
}

/* ENVIOS */
.ge-shipping {
	background: var(--ge-bg-cream);
}

.ge-shipping__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.ge-shipping__subtitle {
	font-size: 18px;
	font-weight: 600;
	color: var(--ge-heading);
	margin-bottom: 24px;
}

.ge-shipping__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	font-weight: 600;
	color: var(--ge-heading);
}

.ge-shipping__image {
	height: 360px;
	border-radius: 8px;
	background-size: cover;
	background-position: center;
}

/* POR QUE ELEGIRNOS */
.ge-why {
	background: var(--ge-white);
}

.ge-why__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.ge-why__image {
	height: 380px;
	border-radius: 8px;
	background-size: cover;
	background-position: center;
}

.ge-why__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 18px;
	font-size: 16px;
	line-height: 1.5;
}

.ge-why__list strong {
	color: var(--ge-heading);
}

/* CTA FINAL */
.ge-cta-final {
	background: var(--ge-dark);
	text-align: center;
}

.ge-cta-final .ge-section__title {
	color: var(--ge-white);
}

.ge-cta-final p {
	color: #C9C4B6;
	font-size: 17px;
	margin-bottom: 32px;
}

.ge-cta-final__contact {
	margin-top: 24px;
	display: flex;
	gap: 32px;
	justify-content: center;
	flex-wrap: wrap;
}

.ge-cta-final__contact a {
	color: var(--ge-white);
	text-decoration: none;
	font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 900px) {
	.ge-specialties__grid,
	.ge-products__grid,
	.ge-solutions__grid,
	.ge-projects__grid,
	.ge-process__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.ge-manufacturing__grid,
	.ge-shipping__grid,
	.ge-why__grid {
		grid-template-columns: 1fr;
	}

	.ge-manufacturing__image {
		order: -1;
		height: 280px;
	}
}

@media (max-width: 600px) {
	.ge-section {
		padding: 56px 0;
	}

	.ge-specialties__grid,
	.ge-products__grid,
	.ge-solutions__grid,
	.ge-projects__grid,
	.ge-process__grid,
	.ge-shipping__list {
		grid-template-columns: 1fr;
	}

	.ge-hero {
		min-height: 70vh;
	}

	.ge-hero__actions {
		flex-direction: column;
	}

	.ge-btn {
		text-align: center;
	}
}
