/* =========================================
   AJUSTES GENERALES
========================================= */

#am-nutramkan {
	margin-top: -55px;
	z-index: 1;
}

#am-rakin {
	color: #000 !important;
}

/* =========================================
   PRODUCTO – HERO
========================================= */

#am-producto-hero {
	background: linear-gradient(
		135deg,
		#f4f4f4 0%,
		#ededed 100%
	);
	padding: 90px 0;
}

/* =========================================
   IMAGEN PRODUCTO
========================================= */

.am-producto-imagen {
	position: relative;
	background: #fff;
	padding: 24px;
	border-radius: 20px;
	box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.am-producto-imagen img {
	width: 100%;
	border-radius: 12px;
	display: block;
}

/* =========================================
   CONTENIDO
========================================= */

.am-producto-eyebrow {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #e60023;
	margin-bottom: 12px;
}

.am-producto-contenido h1 {
	font-size: 2.6rem;
	font-weight: 800;
	margin-bottom: 18px;
	color: #111;
	letter-spacing: -0.5px;
}

.am-producto-bajada {
	font-size: 1.05rem;
	line-height: 1.7;
	color: #444;
	margin-bottom: 24px;
}

/* =========================================
   LISTA DE BENEFICIOS
========================================= */

.am-producto-datos {
	list-style: none;
	padding: 0;
	margin: 0 0 30px;
}

.am-producto-datos li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 0.95rem;
	line-height: 1.5;
	margin-bottom: 12px;
	color: #333;
}

.am-producto-datos i {
	color: #e60023;
	margin-top: 3px;
}

/* =========================================
   CTA – BOTÓN
========================================= */

.am-producto-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 15px 36px;
	background: #e60023;
	color: #fff;
	font-weight: 700;
	text-decoration: none;
	border-radius: 999px;
	box-shadow: 0 10px 24px rgba(230,0,35,0.35);
	transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}

.am-producto-btn:hover {
	background: #111;
	transform: translateY(-2px);
	box-shadow: 0 16px 32px rgba(0,0,0,0.35);
}

/* =========================================
   RESPONSIVE – MÓVIL
========================================= */

@media (max-width: 576px) {

	#am-producto-hero {
		padding: 60px 1rem;
		text-align: center;
	}

	.am-producto-contenido h1 {
		font-size: 1.8rem;
	}

	.am-producto-bajada {
		font-size: 0.95rem;
	}

	.am-producto-datos {
		max-width: 320px;
		margin: 0 auto 28px;
		text-align: left;
	}

	.am-producto-btn {
		width: 100%;
	}
}
