@charset "UTF-8";
/* ---- tokens ---- */
:root {
	--negro: #231f20;
	--marron: #c5a484;
	--marron-light: #e8d9c8;
	--marron-dark: #a5845e;
	--bg-receta: #d4bfa3;
	--radius: 6px;
}

/* ---- wrapper ---- */
.hogar-module {
	color: var(--negro);
	padding: 2rem 0;
}

/* ---- título ---- */
.hogar-module .hm-title {
	font-size: 2.8rem;
	font-weight: 900;
	line-height: 1;
	margin-bottom: 0.25rem;
	letter-spacing: -0.02em;
}

.hogar-module .hm-subtitle {
	font-size: 25px;
	font-weight: 300;
	margin-bottom: 0.15rem;
}

.hogar-module .hm-ia-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: var(--negro);
	margin-bottom: 1.6rem;
}

.hogar-module .hm-ia-badge svg {
	width: 16px;
	height: 16px;
}

/* ---- preguntas ---- */
.hogar-module .hm-question {
	font-size: 20px;
	font-family: "Noto Sans", sans-serif;
	margin-bottom: 0.6rem;
	font-weight: 400;
}

/* ---- botones toggle ---- */
.hogar-module .hm-toggle-group {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
}

.hogar-module .hm-btn-toggle {
	border: 2px solid var(--marron);
	background: transparent;
	color: var(--marron-dark);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	padding: 0.45rem 1.1rem;
	border-radius: var(--radius);
	cursor: pointer;
	transition: background 0.18s, color 0.18s;
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	display: inline-flex;
	align-items: center;
	font-family: "Noto Sans", sans-serif;
}

.hogar-module .hm-btn-toggle:hover {
	background: var(--marron-light);
	color: var(--marron-dark);
}

.hogar-module .hm-btn-toggle.active,
.hogar-module .hm-btn-toggle.active:hover {
	background: var(--marron) !important;
	border-color: var(--marron) !important;
	color: #fff !important;
}

/* ---- sección ingredientes ---- */
.hogar-module .hm-section-title {
	font-size: 33px;
	font-weight: 900;
	text-transform: uppercase;
	margin-bottom: 1rem;
	margin-top: 0.5rem;
}

/* ---- acordeón custom ---- */
.hogar-module .hm-accordion {
	border-top: 1.5px solid var(--negro);
}

.hogar-module .hm-accordion-item {
	border-bottom: 1.5px solid var(--marron);
}

.hogar-module .hm-accordion-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.9rem 0;
	cursor: pointer;
	font-size: 20px;
	font-weight: 400;
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	background: transparent;
	border: none;
	width: 100%;
	text-align: left;
	color: var(--negro);
}

.hogar-module .hm-accordion-header .hm-arrow {
	border: solid var(--marron-dark);
	border-width: 0 2.5px 2.5px 0;
	display: inline-block;
	padding: 4px;
	transform: rotate(45deg);
	transition: transform 0.22s;
	flex-shrink: 0;
	margin-right: 2px;
}

.hogar-module .hm-accordion-item.open .hm-accordion-header .hm-arrow {
	transform: rotate(-135deg);
}

.hogar-module .hm-accordion-body {
	max-height: 0;
	overflow: hidden;
	padding: 0;
	transition: max-height 0.35s ease, padding 0.35s ease;
}

.hogar-module .hm-accordion-item.open .hm-accordion-body {
	max-height: 200px;
	padding: 0 0 1rem 0;
}

/* variantes dentro del acordeón */
.hogar-module .hm-variants {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin-bottom: 0.75rem;
}

.hogar-module .hm-variant-btn {
	border: 1.5px solid var(--negro);
	background: transparent;
	color: var(--negro);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	padding: 0.35rem 0.85rem;
	border-radius: 20px;
	font-family: "Noto Sans", sans-serif;
	cursor: pointer;
	transition: background 0.15s, color 0.15s;
}

.hogar-module .hm-variant-btn:hover,
.hogar-module .hm-variant-btn.active {
	background: var(--marron);
	border-color: var(--marron);
	color: #fff;
}

.hogar-module .hm-accordion-body p {
	display: none;
}

/* ---- botón crear receta ---- */
.hogar-module .hm-crear-wrap {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-top: 1.8rem;
	cursor: pointer;
}

.hogar-module .hm-crear-icon {
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: background 0.18s;
}

.hogar-module .hm-crear-wrap:hover .hm-crear-icon {
	background: var(--marron-light);
}

.hogar-module .hm-crear-icon svg {
	width: 22px;
	height: 22px;
}

.hogar-module .hm-crear-label {
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

/* ---- sección receta (oculta por defecto) ---- */
.hogar-module .hm-receta-section {
	display: none;
	background: var(--bg-receta);
	margin-top: 2.5rem;
	padding: 2.5rem 2rem;
	border-radius: var(--radius);
}

.hogar-module .hm-receta-section.visible {
	display: block;
	animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(16px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.hogar-module .hm-receta-title {
	font-size: 2rem;
	font-weight: 900;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	letter-spacing: -0.01em;
}

.hogar-module .hm-receta-meta {
	list-style: none;
	padding: 0;
	margin: 0 0 1.5rem 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.hogar-module .hm-receta-meta li {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.hogar-module .hm-receta-meta svg {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.hogar-module .hm-dots {
	display: inline-flex;
	gap: 3px;
}

.hogar-module .hm-dot {
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: var(--negro);
}

.hogar-module .hm-dot.empty {
	background: transparent;
	border: 2px solid var(--negro);
}

.hogar-module .hm-receta-divider {
	border: none;
	border-top: 1.5px solid var(--negro);
	margin: 1.2rem 0 1.5rem 0;
	opacity: 0.3;
}

.hogar-module .hm-ingredientes-title,
.hogar-module .hm-prep-title {
	font-size: 1.1rem;
	font-weight: 800;
	font-style: italic;
	margin-bottom: 0.75rem;
}

.hogar-module .hm-ingredientes-list {
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 0.88rem;
	line-height: 2;
	font-family: "Noto Sans", sans-serif;
}

.hogar-module .hm-prep-text {
	font-size: 0.88rem;
	line-height: 1.7;
}

.hogar-module .hm-prep-text p {
	margin-bottom: 1rem;
	font-family: "Noto Sans", sans-serif;
}