/* =========================================================
   AURUM PERFUME FINDER
   V5 — RESULTADOS PREMIUM
========================================================= */


/* =========================================================
   ESTRUTURA
========================================================= */

.aurum-finder {
	background: #f7f3eb;
	padding: 70px 24px 90px;
	min-height: 650px;
}

.aurum-finder__shell {
	max-width: 1180px;
	margin: 0 auto;
}

.aurum-finder__screen {
	width: 100%;
}


/* =========================================================
   INTRO
========================================================= */

.aurum-finder__intro {
	max-width: 850px;
	margin: 0 auto;
	padding: 70px 25px;
	text-align: center;
}

.aurum-finder__eyebrow {
	display: block;
	margin-bottom: 18px;

	color: #b48a40;

	font-size: 12px;
	font-weight: 600;
	letter-spacing: .25em;
}

.aurum-finder__intro h1 {
	max-width: 760px;
	margin: 0 auto 24px;

	color: #151515;

	font-size: 54px;
	line-height: 1.08;
	font-weight: 400;
}

.aurum-finder__intro p {
	max-width: 650px;
	margin: 0 auto 35px;

	color: #65605a;

	font-size: 17px;
	line-height: 1.8;
}

.aurum-finder__intro-note {
	margin-top: 17px;

	color: #8e8981;

	font-size: 12px;
}


/* =========================================================
   BOTÕES DO QUESTIONÁRIO
========================================================= */

.aurum-finder__primary,
.aurum-finder__secondary,
.aurum-finder__restart {
	border: 0;
	cursor: pointer;

	transition:
		background .2s ease,
		color .2s ease,
		border-color .2s ease,
		transform .2s ease,
		opacity .2s ease;
}

.aurum-finder__primary {
	padding: 16px 30px;

	background: #151515;
	color: #ffffff;

	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: .12em;
}

.aurum-finder__primary:hover {
	background: #b48a40;
}

.aurum-finder__primary:disabled {
	opacity: .4;
	cursor: default;
}

.aurum-finder__secondary {
	padding: 15px 20px;

	background: transparent;
	color: #444444;
}

.aurum-finder__restart {
	margin-top: 40px;
	padding: 5px 0;

	background: transparent;

	border-bottom: 1px solid #111111;
}


/* =========================================================
   QUIZ
========================================================= */

.aurum-finder__quiz {
	max-width: 850px;
	margin: 0 auto;
	padding: 55px 65px;

	background: #ffffff;
}

.aurum-finder__progress {
	margin-bottom: 55px;
}

.aurum-finder__progress-top {
	display: flex;
	justify-content: space-between;

	margin-bottom: 10px;

	color: #827b72;

	font-size: 11px;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.aurum-finder__progress-track {
	height: 2px;

	background: #e9e2d7;
}

.aurum-finder__progress-bar {
	width: 12.5%;
	height: 100%;

	background: #b48a40;

	transition: width .35s ease;
}

.aurum-finder__question-number {
	display: block;
	margin-bottom: 12px;

	color: #b48a40;

	font-size: 12px;
	letter-spacing: .16em;
}

.aurum-finder__question h2 {
	margin: 0 0 12px;

	color: #171717;

	font-size: 34px;
	font-weight: 400;
}

.aurum-finder__question-description {
	margin: 0 0 30px;

	color: #76706a;

	line-height: 1.65;
}

.aurum-finder__answers {
	display: grid;

	grid-template-columns:
		repeat(2, minmax(0, 1fr));

	gap: 14px;
}

.aurum-finder__answer {
	display: flex;
	align-items: center;
	justify-content: center;

	min-height: 62px;

	padding: 16px 20px;

	border: 1px solid #ded6c8;

	background: #ffffff;
	color: #252525;

	cursor: pointer;

	text-align: center;

	transition:
		border-color .2s ease,
		background .2s ease,
		color .2s ease,
		transform .2s ease;
}

.aurum-finder__answer:hover {
	border-color: #b48a40;

	transform: translateY(-1px);
}

.aurum-finder__answer.is-selected {
	border-color: #b48a40;

	background: #f7f1e6;
	color: #8e682c;
}

.aurum-finder__navigation {
	display: flex;
	align-items: center;
	justify-content: space-between;

	margin-top: 45px;
}


/* =========================================================
   RESULTADOS
========================================================= */

.aurum-finder__results {
	max-width: 1050px;
	margin: 0 auto;

	text-align: center;
}

.aurum-finder__results h2 {
	margin: 0 0 16px;

	color: #151515;

	font-size: 42px;
	font-weight: 400;
}

.aurum-finder__results-intro {
	max-width: 700px;
	margin: 0 auto 10px;

	color: #666666;

	font-size: 15px;
	line-height: 1.7;

	text-align: center;
}


/* =========================================================
   GRID DOS RESULTADOS
========================================================= */

.aurum-finder__results-grid,
.js-finder-results {
	display: grid;

	grid-template-columns:
		repeat(2, minmax(0, 1fr));

	gap: 22px;

	margin-top: 32px;

	text-align: left;
}


/* =========================================================
   CARD BASE
========================================================= */

.aurum-finder__result {
	position: relative;

	display: flex;
	flex-direction: column;

	min-width: 0;
	min-height: 100%;

	padding: 26px;

	border: 1px solid rgba(180, 138, 64, .22);
	border-radius: 18px;

	background: #ffffff;

	box-shadow:
		0 8px 30px rgba(0, 0, 0, .035);

	transition:
		transform .25s ease,
		box-shadow .25s ease,
		border-color .25s ease;
}

.aurum-finder__result:hover {
	transform: translateY(-3px);

	border-color: rgba(180, 138, 64, .48);

	box-shadow:
		0 15px 40px rgba(0, 0, 0, .07);
}


/* =========================================================
   TOP 1
========================================================= */

.aurum-finder__result:first-child {
	grid-column: 1 / -1;

	padding: 36px;

	border-color: rgba(180, 138, 64, .55);

	background:
		linear-gradient(
			135deg,
			#ffffff 0%,
			#fbf8f1 100%
		);

	box-shadow:
		0 18px 55px rgba(0, 0, 0, .07);
}


/* =========================================================
   SELO ESCOLHA AURUM
========================================================= */

.aurum-finder__result:first-child::before {
	content: "ESCOLHA AURUM";

	display: inline-flex;
	align-items: center;
	justify-content: center;

	width: max-content;
	max-width: 100%;

	justify-self: start;
	align-self: start;

	margin-bottom: 18px;

	padding: 7px 13px;

	border-radius: 999px;

	background: #151515;
	color: #ffffff;

	font-size: 9px;
	line-height: 1;
	font-weight: 700;

	letter-spacing: 1.4px;

	white-space: nowrap;
}


/* =========================================================
   TOP 1 HORIZONTAL
========================================================= */

@media (min-width: 768px) {

	.aurum-finder__result:first-child:has(
		.aurum-finder__product-image
	) {
		display: grid;

		grid-template-columns:
			minmax(300px, 40%)
			minmax(0, 60%);

		grid-template-rows:
			auto
			auto
			auto
			auto
			auto
			auto
			auto
			1fr
			auto
			auto;

		column-gap: 48px;

		align-items: start;
	}


	/* SELO */

	.aurum-finder__result:first-child:has(
		.aurum-finder__product-image
	)::before {
		grid-column: 1 / -1;
		grid-row: 1;

		width: max-content;

		justify-self: start;

		margin-bottom: 3px;
	}


	/* TUDO MENOS A FOTO VAI PARA A DIREITA */

	.aurum-finder__result:first-child:has(
		.aurum-finder__product-image
	)
	> :not(.aurum-finder__product-image) {
		grid-column: 2;
	}


	/* FOTO À ESQUERDA */

	.aurum-finder__result:first-child:has(
		.aurum-finder__product-image
	)
	> .aurum-finder__product-image {
		grid-column: 1;

		grid-row: 2 / 11;

		width: 100%;
		height: 100%;

		min-height: 410px;
		max-height: 450px;

		margin: 0;

		padding: 22px;

		align-self: start;
	}


	.aurum-finder__result:first-child:has(
		.aurum-finder__product-image
	)
	> .aurum-finder__product-image img {
		max-width: 94%;
		max-height: 375px;
	}


	/* MATCH */

	.aurum-finder__result:first-child:has(
		.aurum-finder__product-image
	)
	> .aurum-finder__match {
		grid-row: 2;

		margin-top: 3px;
	}


	/* MARCA */

	.aurum-finder__result:first-child:has(
		.aurum-finder__product-image
	)
	> .aurum-finder__result-brand {
		grid-row: 3;
	}


	/* NOME */

	.aurum-finder__result:first-child:has(
		.aurum-finder__product-image
	)
	> h3 {
		grid-row: 4;
	}


	/* PERFIL */

	.aurum-finder__result:first-child:has(
		.aurum-finder__product-image
	)
	> .aurum-finder__result-profile {
		grid-row: 5;
	}


	/* COMERCIAL */

	.aurum-finder__result:first-child:has(
		.aurum-finder__product-image
	)
	> .aurum-finder__commercial {
		grid-row: 6;
	}


	/* DISPONIBILIDADE */

	.aurum-finder__result:first-child:has(
		.aurum-finder__product-image
	)
	> .aurum-finder__availability {
		grid-row: 7;

		justify-self: start;
	}


	/* POR QUE INDICAMOS */

	.aurum-finder__result:first-child:has(
		.aurum-finder__product-image
	)
	> .aurum-finder__why {
		grid-row: 8;

		width: 100%;

		align-self: start;
	}


	/* CLASSIFICAÇÃO */

	.aurum-finder__result:first-child:has(
		.aurum-finder__product-image
	)
	> .aurum-finder__result-label {
		grid-row: 9;

		justify-self: start;

		margin-top: 0;
	}


	/* CTA */

	.aurum-finder__result:first-child:has(
		.aurum-finder__product-image
	)
	> .aurum-finder__result-link {
		grid-row: 10;
	}

}


/* =========================================================
   COMPATIBILIDADE
========================================================= */

.aurum-finder__match {
	margin-bottom: 14px;

	color: #a57b32;

	font-size: 12px;
	line-height: 1.4;
	font-weight: 700;

	letter-spacing: .9px;

	text-transform: uppercase;
}

.aurum-finder__result:first-child
.aurum-finder__match {
	font-size: 13px;
}


/* =========================================================
   MARCA
========================================================= */

.aurum-finder__result-brand {
	margin-bottom: 5px;

	color: #8d8d8d;

	font-size: 12px;
	font-weight: 600;

	letter-spacing: 1px;

	text-transform: uppercase;
}


/* =========================================================
   NOME
========================================================= */

.aurum-finder__result h3 {
	margin: 0 0 10px;

	color: #151515;

	font-size: 23px;
	line-height: 1.15;
	font-weight: 600;
}

.aurum-finder__result:first-child h3 {
	margin-bottom: 11px;

	font-size:
		clamp(
			32px,
			3.5vw,
			40px
		);
}


/* =========================================================
   PERFIL OLFATIVO
========================================================= */

.aurum-finder__result-profile {
	margin-bottom: 16px;

	color: #a57b32;

	font-size: 12px;
	line-height: 1.5;
	font-weight: 600;

	letter-spacing: .4px;
}

.aurum-finder__result:first-child
.aurum-finder__result-profile {
	margin-bottom: 18px;
}


/* =========================================================
   IMAGEM
========================================================= */

.aurum-finder__product-image {
	display: flex;

	align-items: center;
	justify-content: center;

	width: 100%;
	height: 190px;

	margin-bottom: 20px;

	padding: 18px;

	border-radius: 14px;

	background: #faf9f7;

	overflow: hidden;

	text-decoration: none !important;
}

.aurum-finder__product-image img {
	display: block;

	width: auto;
	height: auto;

	max-width: 100%;
	max-height: 165px;

	object-fit: contain;

	mix-blend-mode: multiply;

	transition: transform .35s ease;
}

.aurum-finder__product-image:hover img {
	transform: scale(1.035);
}


/* TOP 1 */

.aurum-finder__result:first-child
.aurum-finder__product-image {
	background:
		linear-gradient(
			145deg,
			#f8f5ee 0%,
			#ffffff 100%
		);
}


/* =========================================================
   DADOS COMERCIAIS
========================================================= */

.aurum-finder__commercial {
	margin: 0 0 13px;
}

.aurum-finder__commercial-details {
	margin-bottom: 5px;

	color: #77716a;

	font-size: 12px;
	line-height: 1.5;
	font-weight: 500;
}

.aurum-finder__price {
	margin: 0;

	color: #151515;

	font-size: 21px;
	line-height: 1.2;
	font-weight: 700;

	letter-spacing: -.02em;
}

.aurum-finder__result:first-child
.aurum-finder__price {
	font-size: 27px;
}


/* =========================================================
   DISPONIBILIDADE
========================================================= */

.aurum-finder__availability {
	display: inline-flex;

	align-items: center;
	justify-content: center;

	align-self: flex-start;

	width: max-content;
	max-width: 100%;

	margin-bottom: 16px;

	padding: 7px 11px;

	border-radius: 999px;

	font-size: 9px;
	line-height: 1;
	font-weight: 700;

	letter-spacing: .55px;

	text-transform: uppercase;

	white-space: nowrap;
}


/* DISPONÍVEL */

.aurum-finder__availability.is-available {
	background:
		rgba(
			44,
			125,
			75,
			.09
		);

	color: #2c7d4b;
}


/* CONSULTAR */

.aurum-finder__availability.is-consult {
	background:
		rgba(
			180,
			138,
			64,
			.10
		);

	color: #8a672b;
}


/* =========================================================
   POR QUE INDICAMOS
========================================================= */

.aurum-finder__why {
	margin: 3px 0 20px;

	padding: 17px 19px;

	border-left: 3px solid #b48a40;

	border-radius:
		0 10px 10px 0;

	background:
		rgba(
			180,
			138,
			64,
			.065
		);
}

.aurum-finder__result:first-child
.aurum-finder__why {
	margin-bottom: 18px;

	padding: 18px 20px;
}

.aurum-finder__why strong {
	display: block;

	margin-bottom: 7px;

	color: #151515;

	font-size: 11px;
	font-weight: 700;

	letter-spacing: .7px;

	text-transform: uppercase;
}

.aurum-finder__why p {
	margin: 0;

	color: #4b4b4b;

	font-size: 13px;
	line-height: 1.65;
}

.aurum-finder__result:first-child
.aurum-finder__why p {
	font-size: 14px;
}


/* =========================================================
   CLASSIFICAÇÃO
========================================================= */

.aurum-finder__result-label {
	display: inline-flex;

	align-items: center;
	justify-content: center;

	align-self: flex-start;

	width: max-content;
	max-width: 100%;

	margin-top: auto;
	margin-bottom: 14px;

	padding: 7px 12px;

	border:
		1px solid rgba(
			180,
			138,
			64,
			.35
		);

	border-radius: 999px;

	color: #7f602b;

	font-size: 10px;
	line-height: 1;

	font-weight: 700;

	white-space: nowrap;
}

.aurum-finder__result:first-child
.aurum-finder__result-label {
	width: max-content;

	padding: 8px 13px;

	font-size: 10px;
}


/* =========================================================
   BOTÃO
========================================================= */

.aurum-finder__result-link {
	display: flex;

	align-items: center;
	justify-content: center;

	width: 100%;
	min-height: 46px;

	padding: 12px 18px;

	border: 1px solid #151515;
	border-radius: 999px;

	background: #151515;
	color: #ffffff !important;

	font-size: 12px;
	font-weight: 600;

	text-align: center;

	text-decoration: none !important;

	transition:
		background .2s ease,
		color .2s ease,
		border-color .2s ease,
		transform .2s ease;
}

.aurum-finder__result-link:hover {
	background: #b48a40;
	border-color: #b48a40;

	color: #ffffff !important;

	transform: translateY(-1px);
}


/* TOP 1 */

.aurum-finder__result:first-child
.aurum-finder__result-link {
	width: 100%;

	min-height: 49px;

	background: #b48a40;

	border-color: #b48a40;

	color: #ffffff !important;

	font-size: 13px;
}

.aurum-finder__result:first-child
.aurum-finder__result-link:hover {
	background: #151515;

	border-color: #151515;
}


/* =========================================================
   CONSULTAR DISPONIBILIDADE
========================================================= */

.aurum-finder__result-link--consult {
	background: #ffffff;

	border-color: #151515;

	color: #151515 !important;
}

.aurum-finder__result-link--consult:hover {
	background: #151515;

	border-color: #151515;

	color: #ffffff !important;
}


/* TOP 1 SEM PRODUTO */

.aurum-finder__result:first-child
.aurum-finder__result-link--consult {
	background: transparent;

	border-color: #151515;

	color: #151515 !important;
}

.aurum-finder__result:first-child
.aurum-finder__result-link--consult:hover {
	background: #151515;

	color: #ffffff !important;
}


/* =========================================================
   RESULTADOS SECUNDÁRIOS
========================================================= */

@media (min-width: 768px) {

	.aurum-finder__result:not(:first-child) {
		padding: 24px;
	}


	.aurum-finder__result:not(:first-child)
	.aurum-finder__match {
		margin-bottom: 11px;
	}


	.aurum-finder__result:not(:first-child)
	.aurum-finder__product-image {
		height: 180px;

		margin-bottom: 18px;
	}


	.aurum-finder__result:not(:first-child)
	.aurum-finder__product-image img {
		max-height: 155px;
	}


	.aurum-finder__result:not(:first-child)
	h3 {
		font-size: 22px;
	}


	.aurum-finder__result:not(:first-child)
	.aurum-finder__result-profile {
		margin-bottom: 14px;
	}


	.aurum-finder__result:not(:first-child)
	.aurum-finder__why {
		padding: 15px 17px;

		margin-bottom: 17px;
	}


	.aurum-finder__result:not(:first-child)
	.aurum-finder__why p {
		font-size: 13px;
	}

}


/* =========================================================
   TABLET
========================================================= */

@media (min-width: 768px) and (max-width: 991px) {

	.aurum-finder__result:first-child:has(
		.aurum-finder__product-image
	) {
		grid-template-columns:
			minmax(245px, 38%)
			minmax(0, 62%);

		column-gap: 32px;

		padding: 32px;
	}


	.aurum-finder__result:first-child:has(
		.aurum-finder__product-image
	)
	> .aurum-finder__product-image {
		min-height: 390px;
		max-height: 420px;

		padding: 18px;
	}


	.aurum-finder__result:first-child:has(
		.aurum-finder__product-image
	)
	> .aurum-finder__product-image img {
		max-height: 345px;
	}


	.aurum-finder__result:first-child h3 {
		font-size: 34px;
	}

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

	.aurum-finder {
		padding:
			30px 15px 55px;
	}


	/* INTRO */

	.aurum-finder__intro {
		padding:
			55px 10px;
	}

	.aurum-finder__intro h1 {
		font-size: 38px;
	}

	.aurum-finder__intro p {
		font-size: 15px;
	}


	/* QUIZ */

	.aurum-finder__quiz {
		padding:
			35px 22px;
	}

	.aurum-finder__progress {
		margin-bottom: 40px;
	}

	.aurum-finder__question h2 {
		font-size: 27px;
	}

	.aurum-finder__answers {
		grid-template-columns: 1fr;
	}

	.aurum-finder__answer {
		min-height: 58px;
	}


	/* RESULTADOS */

	.aurum-finder__results h2 {
		font-size: 32px;
	}

	.aurum-finder__results-grid,
	.js-finder-results {
		grid-template-columns: 1fr;

		gap: 16px;

		margin-top: 24px;
	}


	/* CARD */

	.aurum-finder__result,
	.aurum-finder__result:first-child {
		display: flex;

		grid-column: auto;

		padding:
			24px 20px;

		border-radius: 16px;
	}

	.aurum-finder__result:first-child {
		padding:
			27px 21px;
	}


	/* ESCOLHA AURUM */

	.aurum-finder__result:first-child::before {
		width: max-content;

		margin-bottom: 16px;
	}


	/* FOTO */

	.aurum-finder__product-image {
		width: 100%;
		height: 210px;

		margin-bottom: 20px;

		padding: 15px;
	}

	.aurum-finder__product-image img {
		max-height: 185px;
	}

	.aurum-finder__result:first-child
	.aurum-finder__product-image {
		width: 100%;
		height: 245px;

		min-height: 0;

		margin-bottom: 22px;

		padding: 15px;
	}

	.aurum-finder__result:first-child
	.aurum-finder__product-image img {
		max-width: 100%;
		max-height: 215px;
	}


	/* NOME */

	.aurum-finder__result h3 {
		font-size: 23px;
	}

	.aurum-finder__result:first-child h3 {
		font-size: 29px;
	}


	/* PREÇO */

	.aurum-finder__price {
		font-size: 21px;
	}

	.aurum-finder__result:first-child
	.aurum-finder__price {
		font-size: 25px;
	}


	/* DISPONIBILIDADE */

	.aurum-finder__availability {
		width: max-content;

		margin-bottom: 18px;
	}


	/* POR QUE */

	.aurum-finder__why,
	.aurum-finder__result:first-child
	.aurum-finder__why {
		padding: 17px;

		margin-bottom: 20px;
	}

	.aurum-finder__why p,
	.aurum-finder__result:first-child
	.aurum-finder__why p {
		font-size: 14px;
	}


	/* CLASSIFICAÇÃO */

	.aurum-finder__result-label,
	.aurum-finder__result:first-child
	.aurum-finder__result-label {
		width: max-content;
	}


	/* CTA */

	.aurum-finder__result-link,
	.aurum-finder__result:first-child
	.aurum-finder__result-link {
		width: 100%;

		min-height: 50px;
	}

}


/* =========================================================
   MOBILE PEQUENO
========================================================= */

@media (max-width: 420px) {

	.aurum-finder {
		padding-left: 12px;
		padding-right: 12px;
	}

	.aurum-finder__intro h1 {
		font-size: 34px;
	}

	.aurum-finder__quiz {
		padding:
			30px 17px;
	}

	.aurum-finder__result,
	.aurum-finder__result:first-child {
		padding:
			23px 17px;
	}

	.aurum-finder__result:first-child h3 {
		font-size: 27px;
	}

	.aurum-finder__commercial-details {
		font-size: 11px;
	}

	.aurum-finder__why,
	.aurum-finder__result:first-child
	.aurum-finder__why {
		padding: 15px;
	}

	.aurum-finder__product-image {
		height: 195px;
	}

	.aurum-finder__product-image img {
		max-height: 170px;
	}

	.aurum-finder__result:first-child
	.aurum-finder__product-image {
		height: 225px;
	}

	.aurum-finder__result:first-child
	.aurum-finder__product-image img {
		max-height: 200px;
	}

}
/* =========================================================
   AURUM PERFUME FINDER
   V6 — CONSULTORIA OLFATIVA PROFISSIONAL
   Complementos para aurum-perfume-finder-v7.js
========================================================= */

.aurum-finder,
.aurum-finder *,
.aurum-finder *::before,
.aurum-finder *::after {
	box-sizing: border-box;
}


/* =========================================================
   LEITURA DO PERFIL DO CLIENTE
========================================================= */

.aurum-finder__results-intro {
	display: block;
	max-width: 920px;
	margin: 0 auto 28px;
	padding: 28px 30px;

	border: 1px solid rgba(180, 138, 64, .24);
	border-radius: 18px;

	background:
		linear-gradient(
			135deg,
			#ffffff 0%,
			#fbf8f1 100%
		);

	box-shadow:
		0 12px 36px rgba(0, 0, 0, .045);

	text-align: left;
}

.aurum-finder__profile-eyebrow {
	display: block;
	margin-bottom: 9px;

	color: #a57b32;

	font-size: 10px;
	line-height: 1.2;
	font-weight: 700;
	letter-spacing: 1.35px;
	text-transform: uppercase;
}

.aurum-finder__profile-title {
	display: block;
	margin-bottom: 12px;

	color: #171717;

	font-size: 27px;
	line-height: 1.18;
	font-weight: 600;
}

.aurum-finder__profile-text {
	display: block;
	max-width: 800px;

	color: #56514b;

	font-size: 14px;
	line-height: 1.75;
}

.aurum-finder__profile-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;

	margin-top: 18px;
}

.aurum-finder__profile-chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	min-height: 30px;
	padding: 7px 11px;

	border: 1px solid rgba(180, 138, 64, .28);
	border-radius: 999px;

	background: rgba(180, 138, 64, .07);
	color: #755722;

	font-size: 10px;
	line-height: 1.2;
	font-weight: 700;
}

.aurum-finder__profile-method {
	display: block;
	margin-top: 20px;
	padding-top: 16px;

	border-top: 1px solid rgba(180, 138, 64, .16);

	color: #827b72;

	font-size: 11px;
	line-height: 1.65;
}

.aurum-finder__results-grid,
.js-finder-results {
	margin-top: 24px;
}


/* =========================================================
   ANÁLISE PROFISSIONAL
========================================================= */

.aurum-finder__why {
	width: 100%;
}

.aurum-finder__why--primary {
	padding: 21px 22px;

	border: 1px solid rgba(180, 138, 64, .20);
	border-left: 4px solid #b48a40;
	border-radius: 0 13px 13px 0;

	background:
		linear-gradient(
			135deg,
			rgba(180, 138, 64, .075) 0%,
			rgba(255, 255, 255, .82) 100%
		);
}

.aurum-finder__why--primary > strong {
	font-size: 12px;
	letter-spacing: .9px;
}

.aurum-finder__analysis-text {
	margin: 0;

	color: #47433f;

	font-size: 14px;
	line-height: 1.78;
}

.aurum-finder__result:not(:first-child)
.aurum-finder__analysis-text {
	font-size: 13px;
	line-height: 1.7;
}

.aurum-finder__analysis-subtitle {
	display: block;
	margin-bottom: 13px;

	color: #171717;

	font-size: 10px;
	line-height: 1.3;
	font-weight: 700;
	letter-spacing: .75px;
	text-transform: uppercase;
}


/* =========================================================
   PONTOS DE COMPATIBILIDADE
========================================================= */

.aurum-finder__highlights {
	margin-top: 20px;
	padding-top: 18px;

	border-top: 1px solid rgba(180, 138, 64, .18);
}

.aurum-finder__highlight-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 13px;

	margin: 0;
	padding: 0;

	list-style: none;
}

.aurum-finder__highlight-item {
	margin: 0;
	padding: 0;
}

.aurum-finder__highlight-heading {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 14px;

	margin-bottom: 7px;
}

.aurum-finder__highlight-label {
	min-width: 0;

	color: #4f4a44;

	font-size: 12px;
	line-height: 1.3;
	font-weight: 600;
}

.aurum-finder__highlight-score {
	flex: 0 0 auto;

	color: #9b722d;

	font-size: 12px;
	line-height: 1;
	font-weight: 700;
}

.aurum-finder__highlight-track {
	display: block;
	width: 100%;
	height: 6px;

	border-radius: 999px;

	background: #e9e2d7;
	overflow: hidden;
}

.aurum-finder__highlight-fill {
	display: block;
	height: 100%;

	border-radius: inherit;

	background:
		linear-gradient(
			90deg,
			#c49a51 0%,
			#9e742d 100%
		);

	transition: width .55s ease;
}

.aurum-finder__highlight-level {
	display: block;
	margin-top: 5px;

	color: #8a837b;

	font-size: 9px;
	line-height: 1.3;
}

.aurum-finder__why--primary
.aurum-finder__highlight-list {
	grid-template-columns:
		repeat(2, minmax(0, 1fr));
	column-gap: 22px;
	row-gap: 15px;
}


/* =========================================================
   PONTO DE ATENÇÃO / OBSERVAÇÃO PROFISSIONAL
========================================================= */

.aurum-finder__attention {
	margin-top: 19px;
	padding: 14px 15px;

	border: 1px solid transparent;
	border-radius: 11px;
}

.aurum-finder__attention-title {
	display: block;
	margin-bottom: 6px;

	font-size: 10px;
	line-height: 1.3;
	font-weight: 700;
	letter-spacing: .55px;
	text-transform: uppercase;
}

.aurum-finder__attention p {
	margin: 0;

	font-size: 12px !important;
	line-height: 1.65 !important;
}

.aurum-finder__attention--attention {
	border-color: rgba(176, 111, 38, .20);
	background: rgba(176, 111, 38, .075);
	color: #765020;
}

.aurum-finder__attention--attention
.aurum-finder__attention-title {
	color: #875717;
}

.aurum-finder__attention--info {
	border-color: rgba(95, 103, 112, .18);
	background: rgba(95, 103, 112, .065);
	color: #555d64;
}

.aurum-finder__attention--info
.aurum-finder__attention-title {
	color: #4d555c;
}

.aurum-finder__attention--positive {
	border-color: rgba(44, 125, 75, .17);
	background: rgba(44, 125, 75, .065);
	color: #346847;
}

.aurum-finder__attention--positive
.aurum-finder__attention-title {
	color: #2c6d43;
}


/* =========================================================
   AJUSTES DO TOP 1 COM A NOVA CONSULTORIA
========================================================= */

@media (min-width: 992px) {

	.aurum-finder__result:first-child:has(
		.aurum-finder__product-image
	) {
		grid-template-columns:
			minmax(300px, 38%)
			minmax(0, 62%);

		column-gap: 44px;
	}

	.aurum-finder__result:first-child:has(
		.aurum-finder__product-image
	)
	> .aurum-finder__product-image {
		position: sticky;
		top: 105px;

		min-height: 410px;
		max-height: 450px;
	}

}


/* =========================================================
   ALTERNATIVAS MAIS COMPACTAS
========================================================= */

.aurum-finder__result:not(:first-child)
.aurum-finder__highlights {
	margin-top: 16px;
	padding-top: 15px;
}

.aurum-finder__result:not(:first-child)
.aurum-finder__highlight-list {
	gap: 11px;
}

.aurum-finder__result:not(:first-child)
.aurum-finder__attention {
	margin-top: 15px;
	padding: 12px 13px;
}

.aurum-finder__result:not(:first-child)
.aurum-finder__why {
	margin-bottom: 18px;
}


/* =========================================================
   TABLET
========================================================= */

@media (min-width: 768px) and (max-width: 991px) {

	.aurum-finder__results-intro {
		padding: 25px 26px;
	}

	.aurum-finder__profile-title {
		font-size: 24px;
	}

	.aurum-finder__why--primary
	.aurum-finder__highlight-list {
		grid-template-columns: 1fr;
	}

}


/* =========================================================
   MOBILE — CONSULTORIA
========================================================= */

@media (max-width: 767px) {

	.aurum-finder__results-intro {
		margin-bottom: 20px;
		padding: 21px 18px;

		border-radius: 15px;
	}

	.aurum-finder__profile-eyebrow {
		margin-bottom: 8px;
		font-size: 9px;
	}

	.aurum-finder__profile-title {
		margin-bottom: 10px;
		font-size: 21px;
		line-height: 1.22;
	}

	.aurum-finder__profile-text {
		font-size: 13px;
		line-height: 1.68;
	}

	.aurum-finder__profile-chips {
		gap: 6px;
		margin-top: 15px;
	}

	.aurum-finder__profile-chip {
		min-height: 28px;
		padding: 6px 9px;
		font-size: 9px;
	}

	.aurum-finder__profile-method {
		margin-top: 16px;
		padding-top: 13px;
		font-size: 10px;
		line-height: 1.55;
	}

	.aurum-finder__why--primary,
	.aurum-finder__result:first-child
	.aurum-finder__why--primary {
		padding: 17px;
	}

	.aurum-finder__analysis-text,
	.aurum-finder__result:not(:first-child)
	.aurum-finder__analysis-text {
		font-size: 13px;
		line-height: 1.7;
	}

	.aurum-finder__highlights {
		margin-top: 17px;
		padding-top: 15px;
	}

	.aurum-finder__why--primary
	.aurum-finder__highlight-list {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.aurum-finder__highlight-heading {
		margin-bottom: 6px;
	}

	.aurum-finder__highlight-track {
		height: 5px;
	}

	.aurum-finder__attention {
		margin-top: 16px;
		padding: 13px 14px;
	}

	.aurum-finder__attention p {
		font-size: 11px !important;
		line-height: 1.6 !important;
	}

}


/* =========================================================
   MOBILE PEQUENO — CONSULTORIA
========================================================= */

@media (max-width: 420px) {

	.aurum-finder__results-intro {
		padding: 19px 15px;
	}

	.aurum-finder__profile-title {
		font-size: 20px;
	}

	.aurum-finder__profile-chip {
		font-size: 8px;
	}

	.aurum-finder__why--primary,
	.aurum-finder__result:first-child
	.aurum-finder__why--primary {
		padding: 15px;
	}

	.aurum-finder__highlight-label,
	.aurum-finder__highlight-score {
		font-size: 11px;
	}

}


/* =========================================================
   AURUM PERFUME FINDER
   V8 — PRECISÃO PROFISSIONAL
   Ajustes finais sobre a base visual V6
========================================================= */


/* O selo do resultado principal agora é dinâmico no HTML. */

.aurum-finder__result:first-child::before {
	content: none !important;
	display: none !important;
}


/* =========================================================
   SELO DINÂMICO DO RESULTADO PRINCIPAL
========================================================= */

.aurum-finder__primary-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	width: max-content;
	max-width: 100%;

	margin-bottom: 18px;
	padding: 7px 13px;

	border: 1px solid transparent;
	border-radius: 999px;

	font-size: 9px;
	line-height: 1;
	font-weight: 700;
	letter-spacing: 1.25px;
	text-transform: uppercase;
	white-space: nowrap;
}

.aurum-finder__primary-badge.is-exceptional {
	background: #151515;
	color: #ffffff;
}

.aurum-finder__primary-badge.is-excellent {
	background: #a57b32;
	color: #ffffff;
}

.aurum-finder__primary-badge.is-approximate {
	border-color: rgba(180, 138, 64, .45);
	background: #f5ecdc;
	color: #765725;
}

.aurum-finder__primary-badge.is-compatible {
	border-color: #151515;
	background: #ffffff;
	color: #151515;
}


/* =========================================================
   TOP 1 COM CLASSES EXPLÍCITAS
========================================================= */

@media (min-width: 768px) {

	.aurum-finder__result.is-primary.has-product-image {
		display: grid;

		grid-template-columns:
			minmax(300px, 40%)
			minmax(0, 60%);

		grid-template-rows:
			auto
			auto
			auto
			auto
			auto
			auto
			auto
			1fr
			auto
			auto;

		column-gap: 48px;
		align-items: start;
	}

	.aurum-finder__result.is-primary.has-product-image
	> :not(.aurum-finder__product-image) {
		grid-column: 2;
	}

	.aurum-finder__result.is-primary.has-product-image
	> .aurum-finder__primary-badge {
		grid-column: 1 / -1;
		grid-row: 1;
		justify-self: start;
		margin-bottom: 3px;
	}

	.aurum-finder__result.is-primary.has-product-image
	> .aurum-finder__product-image {
		grid-column: 1;
		grid-row: 2 / 11;
	}

	.aurum-finder__result.is-primary.has-product-image
	> .aurum-finder__match {
		grid-row: 2;
	}

	.aurum-finder__result.is-primary.has-product-image
	> .aurum-finder__result-brand {
		grid-row: 3;
	}

	.aurum-finder__result.is-primary.has-product-image
	> h3 {
		grid-row: 4;
	}

	.aurum-finder__result.is-primary.has-product-image
	> .aurum-finder__result-profile {
		grid-row: 5;
	}

	.aurum-finder__result.is-primary.has-product-image
	> .aurum-finder__commercial {
		grid-row: 6;
	}

	.aurum-finder__result.is-primary.has-product-image
	> .aurum-finder__availability {
		grid-row: 7;
		justify-self: start;
	}

	.aurum-finder__result.is-primary.has-product-image
	> .aurum-finder__why {
		grid-row: 8;
		width: 100%;
	}

	.aurum-finder__result.is-primary.has-product-image
	> .aurum-finder__result-label {
		grid-row: 9;
		justify-self: start;
		margin-top: 0;
	}

	.aurum-finder__result.is-primary.has-product-image
	> .aurum-finder__result-link {
		grid-row: 10;
	}
}


/* O acabamento do card acompanha o nível real do match. */

.aurum-finder__result.is-primary.score-exceptional {
	border-color: rgba(180, 138, 64, .58);
}

.aurum-finder__result.is-primary.score-excellent {
	border-color: rgba(165, 123, 50, .48);
}

.aurum-finder__result.is-primary.score-good,
.aurum-finder__result.is-primary.score-compatible {
	border-color: rgba(180, 138, 64, .32);
	box-shadow: 0 14px 42px rgba(0, 0, 0, .055);
}


/* =========================================================
   MÍDIA PADRONIZADA DAS ALTERNATIVAS
========================================================= */

.aurum-finder__result.is-secondary
.aurum-finder__product-image,
.aurum-finder__result.is-secondary
.aurum-finder__product-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	width: 100%;
	height: 165px;

	margin-bottom: 18px;
	padding: 16px;

	border: 1px solid rgba(180, 138, 64, .12);
	border-radius: 14px;

	background:
		linear-gradient(
			145deg,
			#faf8f3 0%,
			#ffffff 100%
		);

	overflow: hidden;
	text-decoration: none !important;
}

.aurum-finder__result.is-secondary
.aurum-finder__product-image img {
	max-height: 138px;
}

.aurum-finder__product-image--placeholder {
	cursor: default;
}

.aurum-finder__placeholder-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	width: 58px;
	height: 58px;

	margin-bottom: 10px;

	border: 1px solid rgba(180, 138, 64, .35);
	border-radius: 50%;

	background: rgba(180, 138, 64, .08);
	color: #8a672b;

	font-size: 18px;
	line-height: 1;
	font-weight: 700;
	letter-spacing: 1px;
}

.aurum-finder__placeholder-name {
	display: block;
	max-width: 90%;

	color: #81796f;

	font-size: 11px;
	line-height: 1.4;
	font-weight: 600;
	letter-spacing: .5px;
	text-align: center;
	text-transform: uppercase;
}


/* =========================================================
   ANÁLISE COMPACTA DAS ALTERNATIVAS
========================================================= */

.aurum-finder__why--compact {
	margin: 2px 0 17px;
	padding: 15px 16px;
}

.aurum-finder__why--compact
> strong {
	margin-bottom: 6px;
	font-size: 10px;
}

.aurum-finder__why--compact
.aurum-finder__analysis-text {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
	overflow: hidden;

	margin-bottom: 11px;

	font-size: 12px;
	line-height: 1.58;
}

.aurum-finder__compact-highlight-list {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;

	margin: 0;
	padding: 0;

	list-style: none;
}

.aurum-finder__compact-highlight {
	display: inline-flex;
	align-items: center;
	gap: 6px;

	padding: 6px 9px;

	border: 1px solid rgba(180, 138, 64, .24);
	border-radius: 999px;

	background: #ffffff;
	color: #655e55;

	font-size: 10px;
	line-height: 1;
}

.aurum-finder__compact-highlight strong {
	color: #8a672b;
	font-size: 10px;
}

.aurum-finder__attention--compact {
	margin-top: 11px;
	padding: 11px 12px;
}

.aurum-finder__attention--compact
.aurum-finder__attention-title {
	margin-bottom: 4px;
	font-size: 9px;
}

.aurum-finder__attention--compact p {
	font-size: 11px;
	line-height: 1.5;
}


/* Cards secundários mantêm a mesma estrutura vertical. */

.aurum-finder__result.is-secondary {
	align-self: stretch;
}

.aurum-finder__result.is-secondary
.aurum-finder__result-label {
	margin-top: auto;
}


/* =========================================================
   MOBILE V8
========================================================= */

@media (max-width: 767px) {

	.aurum-finder__primary-badge {
		margin-bottom: 14px;
		padding: 7px 11px;
		font-size: 8px;
		letter-spacing: 1.05px;
	}

	.aurum-finder__result.is-secondary
	.aurum-finder__product-image,
	.aurum-finder__result.is-secondary
	.aurum-finder__product-placeholder {
		height: 145px;
		margin-bottom: 15px;
		padding: 13px;
	}

	.aurum-finder__result.is-secondary
	.aurum-finder__product-image img {
		max-height: 120px;
	}

	.aurum-finder__placeholder-mark {
		width: 50px;
		height: 50px;
		margin-bottom: 8px;
		font-size: 16px;
	}

	.aurum-finder__why--compact {
		padding: 14px;
		margin-bottom: 15px;
	}

	.aurum-finder__why--compact
	.aurum-finder__analysis-text {
		-webkit-line-clamp: 6;
		font-size: 12px;
	}

	.aurum-finder__compact-highlight {
		padding: 6px 8px;
	}
}


@media (max-width: 420px) {

	.aurum-finder__result.is-secondary
	.aurum-finder__product-image,
	.aurum-finder__result.is-secondary
	.aurum-finder__product-placeholder {
		height: 132px;
	}

	.aurum-finder__result.is-secondary
	.aurum-finder__product-image img {
		max-height: 108px;
	}

	.aurum-finder__placeholder-name {
		font-size: 10px;
	}
}


/* =========================================================
   V8.1 — ALINHAMENTO DOS DESTAQUES NAS ALTERNATIVAS
========================================================= */

.aurum-finder__compact-highlight-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
	width: 100%;
}

.aurum-finder__compact-highlight {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 8px;

	width: 100%;
	min-width: 0;
	min-height: 32px;

	padding: 7px 10px;
}

.aurum-finder__compact-highlight span {
	display: block;
	min-width: 0;

	line-height: 1.25;
	overflow-wrap: anywhere;
}

.aurum-finder__compact-highlight strong {
	display: block;
	align-self: center;

	min-width: 34px;

	line-height: 1;
	text-align: right;
	white-space: nowrap;

	font-variant-numeric: tabular-nums;
}

@media (max-width: 767px) {

	.aurum-finder__compact-highlight-list {
		grid-template-columns: 1fr;
	}

}


/* =========================================================
   V8.2 — REFINAMENTO DOS CARDS E DADOS COMERCIAIS
========================================================= */

/*
 * Quando a fragrância ainda não possui preço, formato ou volume
 * cadastrados, o card não é forçado a criar um grande espaço vazio
 * apenas para acompanhar a altura da alternativa ao lado.
 */

.aurum-finder__result.is-secondary.has-limited-commercial-data {
	align-self: start;
	min-height: auto;
}

.aurum-finder__result.is-secondary.has-limited-commercial-data
.aurum-finder__result-label {
	margin-top: 18px;
}

/* Mantém o espaço comercial enxuto quando existem poucos dados. */

.aurum-finder__result.has-commercial-data
.aurum-finder__commercial:empty {
	display: none;
}

@media (max-width: 767px) {

	.aurum-finder__result.is-secondary.has-limited-commercial-data
	.aurum-finder__result-label {
		margin-top: 16px;
	}

}


/* =========================================================
   V8.4 — PERFIL INTELIGENTE
   "JÁ TENHO OU CONHEÇO ESTE PERFUME"
========================================================= */

.aurum-finder__replacement-note {
	display: flex;
	flex-direction: column;
	gap: 4px;

	width: 100%;
	margin: 0 0 14px;
	padding: 11px 13px;

	border: 1px solid rgba(180, 138, 64, .24);
	border-radius: 11px;

	background: #fbf7ef;
	color: #665e54;
}

.aurum-finder__replacement-note strong {
	color: #8a672b;
	font-size: 9px;
	line-height: 1.2;
	font-weight: 700;
	letter-spacing: .8px;
	text-transform: uppercase;
}

.aurum-finder__replacement-note span {
	font-size: 11px;
	line-height: 1.55;
}


/* Botão secundário de descoberta. */

.aurum-finder__replace-button {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;

	width: 100%;
	min-height: 52px;
	margin-top: 10px;
	padding: 10px 15px;

	border: 1px solid rgba(180, 138, 64, .32);
	border-radius: 13px;

	background: #ffffff;
	color: #615a51;

	cursor: pointer;
	text-align: center;

	transition:
		border-color .2s ease,
		background .2s ease,
		color .2s ease,
		transform .2s ease,
		opacity .2s ease;
}

.aurum-finder__replace-button span {
	font-size: 10px;
	line-height: 1.3;
	font-weight: 500;
}

.aurum-finder__replace-button strong {
	color: #8a672b;
	font-size: 10px;
	line-height: 1.25;
	font-weight: 700;
	letter-spacing: .45px;
	text-transform: uppercase;
}

.aurum-finder__replace-button:hover {
	border-color: #b48a40;
	background: #fbf7ef;
	color: #151515;
	transform: translateY(-1px);
}

.aurum-finder__replace-button:focus-visible {
	outline: 2px solid rgba(180, 138, 64, .7);
	outline-offset: 3px;
}

.aurum-finder__replace-button:disabled,
.aurum-finder__replace-button.is-disabled {
	opacity: .52;
	cursor: default;
	transform: none;
}

.aurum-finder__replace-button:disabled strong,
.aurum-finder__replace-button.is-disabled strong {
	color: #77716a;
}

.aurum-finder__result.is-primary
.aurum-finder__replace-button {
	border-color: rgba(180, 138, 64, .4);
	background: rgba(255, 255, 255, .72);
}


/* Mensagem geral, anunciada por leitores de tela. */

.aurum-finder__replacement-status {
	max-width: 720px;
	margin: 18px auto 0;
	padding: 12px 15px;

	border: 1px solid rgba(180, 138, 64, .24);
	border-radius: 12px;

	background: #fbf7ef;
	color: #655e55;

	font-size: 12px;
	line-height: 1.55;
	text-align: center;
}

.aurum-finder__replacement-status.is-success {
	border-color: rgba(44, 125, 75, .22);
	background: rgba(44, 125, 75, .06);
	color: #2c6c43;
}

.aurum-finder__replacement-status[hidden] {
	display: none !important;
}


/* O card principal ganha uma linha para o novo botão e, quando
 * houver troca, uma linha opcional para a mensagem contextual. */

@media (min-width: 768px) {

	/* Estrutura normal, sem mensagem de substituição. */

	.aurum-finder__result.is-primary.has-product-image {
		grid-template-rows:
			auto
			auto
			auto
			auto
			auto
			auto
			auto
			1fr
			auto
			auto
			auto;
	}

	.aurum-finder__result.is-primary.has-product-image
	> .aurum-finder__product-image {
		grid-row: 2 / 12;
	}

	.aurum-finder__result.is-primary.has-product-image
	> .aurum-finder__match {
		grid-row: 2;
	}

	.aurum-finder__result.is-primary.has-product-image
	> .aurum-finder__result-brand {
		grid-row: 3;
	}

	.aurum-finder__result.is-primary.has-product-image
	> h3 {
		grid-row: 4;
	}

	.aurum-finder__result.is-primary.has-product-image
	> .aurum-finder__result-profile {
		grid-row: 5;
	}

	.aurum-finder__result.is-primary.has-product-image
	> .aurum-finder__commercial {
		grid-row: 6;
	}

	.aurum-finder__result.is-primary.has-product-image
	> .aurum-finder__availability {
		grid-row: 7;
	}

	.aurum-finder__result.is-primary.has-product-image
	> .aurum-finder__why {
		grid-row: 8;
	}

	.aurum-finder__result.is-primary.has-product-image
	> .aurum-finder__result-label {
		grid-row: 9;
	}

	.aurum-finder__result.is-primary.has-product-image
	> .aurum-finder__result-link {
		grid-row: 10;
	}

	.aurum-finder__result.is-primary.has-product-image
	> .aurum-finder__replace-button {
		grid-row: 11;
	}


	/* Após uma troca, a mensagem contextual ocupa uma linha própria. */

	.aurum-finder__result.is-primary.has-product-image.has-replacement-note {
		grid-template-rows:
			auto
			auto
			auto
			auto
			auto
			auto
			auto
			auto
			1fr
			auto
			auto
			auto;
	}

	.aurum-finder__result.is-primary.has-product-image.has-replacement-note
	> .aurum-finder__product-image {
		grid-row: 2 / 13;
	}

	.aurum-finder__result.is-primary.has-product-image.has-replacement-note
	> .aurum-finder__replacement-note {
		grid-row: 2;
		align-self: start;
	}

	.aurum-finder__result.is-primary.has-product-image.has-replacement-note
	> .aurum-finder__match {
		grid-row: 3;
	}

	.aurum-finder__result.is-primary.has-product-image.has-replacement-note
	> .aurum-finder__result-brand {
		grid-row: 4;
	}

	.aurum-finder__result.is-primary.has-product-image.has-replacement-note
	> h3 {
		grid-row: 5;
	}

	.aurum-finder__result.is-primary.has-product-image.has-replacement-note
	> .aurum-finder__result-profile {
		grid-row: 6;
	}

	.aurum-finder__result.is-primary.has-product-image.has-replacement-note
	> .aurum-finder__commercial {
		grid-row: 7;
	}

	.aurum-finder__result.is-primary.has-product-image.has-replacement-note
	> .aurum-finder__availability {
		grid-row: 8;
	}

	.aurum-finder__result.is-primary.has-product-image.has-replacement-note
	> .aurum-finder__why {
		grid-row: 9;
	}

	.aurum-finder__result.is-primary.has-product-image.has-replacement-note
	> .aurum-finder__result-label {
		grid-row: 10;
	}

	.aurum-finder__result.is-primary.has-product-image.has-replacement-note
	> .aurum-finder__result-link {
		grid-row: 11;
	}

	.aurum-finder__result.is-primary.has-product-image.has-replacement-note
	> .aurum-finder__replace-button {
		grid-row: 12;
	}
}


/* Mantém o texto dos pontos de atenção secundários compacto. */

.aurum-finder__why--compact
.aurum-finder__attention--compact p {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
}


@media (max-width: 767px) {

	.aurum-finder__replacement-note {
		margin-bottom: 12px;
		padding: 10px 12px;
	}

	.aurum-finder__replace-button {
		min-height: 50px;
		margin-top: 9px;
		padding: 9px 13px;
	}

	.aurum-finder__replacement-status {
		margin-top: 15px;
		padding: 11px 13px;
		font-size: 11px;
	}
}


/* =========================================================
   V8.4 — MODAL DE PERSONALIZAÇÃO E FEEDBACK
========================================================= */

html.aurum-finder-modal-open,
html.aurum-finder-modal-open body {
	overflow: hidden;
}

.aurum-finder__feedback-modal {
	position: fixed;
	z-index: 99999;
	inset: 0;

	display: flex;
	align-items: center;
	justify-content: center;

	padding: 24px;
}

.aurum-finder__feedback-modal[hidden] {
	display: none !important;
}

.aurum-finder__feedback-backdrop {
	position: absolute;
	inset: 0;

	width: 100%;
	height: 100%;
	padding: 0;
	border: 0;

	background: rgba(17, 17, 17, .56);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);

	cursor: pointer;
}

.aurum-finder__feedback-dialog {
	position: relative;
	z-index: 1;

	width: min(100%, 620px);
	max-height: min(86vh, 760px);
	overflow-y: auto;

	padding: 34px;
	border: 1px solid rgba(180, 138, 64, .34);
	border-radius: 22px;

	background: #fff;
	box-shadow: 0 28px 80px rgba(0, 0, 0, .22);
	outline: none;
}

.aurum-finder__feedback-close {
	position: absolute;
	top: 16px;
	right: 16px;

	display: flex;
	align-items: center;
	justify-content: center;

	width: 36px;
	height: 36px;
	padding: 0;
	border: 1px solid #e5ded2;
	border-radius: 50%;

	background: #fff;
	color: #4e4942;

	font-size: 24px;
	line-height: 1;
	cursor: pointer;
}

.aurum-finder__feedback-eyebrow {
	display: block;
	margin: 0 42px 10px 0;

	color: #a57b32;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 1.25px;
	text-transform: uppercase;
}

.aurum-finder__feedback-dialog h3 {
	margin: 0 42px 24px 0;
	color: #171717;
	font-size: 27px;
	line-height: 1.22;
	font-weight: 500;
}

.aurum-finder__feedback-dialog h3 span {
	color: #8a672b;
}

.aurum-finder__feedback-options {
	display: grid;
	grid-template-columns: 1fr;
	gap: 11px;
}

.aurum-finder__feedback-options button {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 5px;

	width: 100%;
	padding: 16px 17px;
	border: 1px solid #dfd7ca;
	border-radius: 14px;

	background: #fff;
	color: #514b44;
	text-align: left;
	cursor: pointer;

	transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.aurum-finder__feedback-options button:hover,
.aurum-finder__feedback-options button:focus-visible {
	border-color: #b48a40;
	background: #fbf7ef;
	transform: translateY(-1px);
	outline: none;
}

.aurum-finder__feedback-options strong {
	color: #171717;
	font-size: 13px;
	line-height: 1.35;
}

.aurum-finder__feedback-options span {
	color: #716a62;
	font-size: 11px;
	line-height: 1.5;
}

.aurum-finder__feedback-question {
	margin: 0 0 14px;
	color: #2c2926;
	font-size: 15px;
	font-weight: 600;
}

.aurum-finder__feedback-reasons {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.aurum-finder__feedback-reasons button {
	min-height: 46px;
	padding: 10px 12px;
	border: 1px solid #dfd7ca;
	border-radius: 12px;

	background: #fff;
	color: #4e4942;
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;

	transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.aurum-finder__feedback-reasons button:hover,
.aurum-finder__feedback-reasons button:focus-visible {
	border-color: #b48a40;
	background: #fbf7ef;
	color: #7b5a24;
	outline: none;
}

.aurum-finder__feedback-back {
	margin-top: 18px;
	padding: 4px 0;
	border: 0;
	border-bottom: 1px solid #7a736b;

	background: transparent;
	color: #625c55;
	font-size: 11px;
	cursor: pointer;
}

.aurum-finder__replacement-status {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
}

.aurum-finder__status-undo {
	padding: 5px 10px;
	border: 1px solid currentColor;
	border-radius: 999px;

	background: transparent;
	color: inherit;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .45px;
	cursor: pointer;
}

.aurum-finder__result-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	flex-wrap: wrap;
	margin-top: 36px;
}

.aurum-finder__result-actions .aurum-finder__restart {
	margin-top: 0;
}

.aurum-finder__clear-history {
	padding: 5px 0;
	border: 0;
	border-bottom: 1px solid rgba(21, 21, 21, .5);

	background: transparent;
	color: #6f6961;
	font-size: 11px;
	cursor: pointer;
}

.aurum-finder__clear-history:hover {
	color: #8a672b;
	border-color: #8a672b;
}

@media (max-width: 767px) {

	.aurum-finder__feedback-modal {
		align-items: flex-end;
		padding: 12px;
	}

	.aurum-finder__feedback-dialog {
		width: 100%;
		max-height: 88vh;
		padding: 28px 20px 22px;
		border-radius: 20px 20px 14px 14px;
	}

	.aurum-finder__feedback-dialog h3 {
		margin-right: 34px;
		font-size: 23px;
	}

	.aurum-finder__feedback-reasons {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.aurum-finder__feedback-reasons button {
		min-height: 44px;
	}

	.aurum-finder__result-actions {
		flex-direction: column;
		gap: 14px;
		margin-top: 30px;
	}
}

/* =========================================================
   V8.4.1 — CORREÇÃO DEFINITIVA DO PONTO DE ATENÇÃO NO MOBILE

   O texto do ponto de atenção das recomendações secundárias
   era limitado a quatro linhas pela regra da V8.3/V8.4.
   No mobile, ele agora é exibido integralmente e o card cresce
   de acordo com o conteúdo.
========================================================= */

@media (max-width: 767px) {

	.aurum-finder__why--compact
	.aurum-finder__attention--compact {
		height: auto !important;
		max-height: none !important;
		overflow: visible !important;
	}

	.aurum-finder__why--compact
	.aurum-finder__attention--compact p {
		display: block !important;
		height: auto !important;
		max-height: none !important;
		overflow: visible !important;
		text-overflow: clip !important;
		white-space: normal !important;
		word-break: normal !important;
		overflow-wrap: anywhere !important;
		-webkit-box-orient: initial !important;
		-webkit-line-clamp: unset !important;
		line-clamp: unset !important;
	}
}


/* =========================================================
   AURUM FINDER V2.4.1 — TEXTOS DE ANÁLISE SEM TRUNCAMENTO
   ---------------------------------------------------------
   Os blocos "Por que esta alternativa combina" e
   "Ponto de atenção" devem sempre ser lidos integralmente.
   O card cresce de acordo com o conteúdo.
========================================================= */

.aurum-finder
.aurum-finder__why--compact
.aurum-finder__analysis-text,
.aurum-finder
.aurum-finder__why--compact
.aurum-finder__attention--compact,
.aurum-finder
.aurum-finder__why--compact
.aurum-finder__attention--compact p {
	display: block !important;

	height: auto !important;
	min-height: 0 !important;
	max-height: none !important;

	overflow: visible !important;
	text-overflow: clip !important;

	white-space: normal !important;
	word-break: normal !important;
	overflow-wrap: anywhere !important;

	-webkit-box-orient: initial !important;
	-webkit-line-clamp: unset !important;
	line-clamp: unset !important;
}

/* O parágrafo principal mantém seu espaçamento natural. */
.aurum-finder
.aurum-finder__why--compact
.aurum-finder__analysis-text {
	margin-bottom: 11px;
}

/* Nenhum card de resultado recebe altura artificial por causa da análise. */
.aurum-finder
.aurum-finder__result,
.aurum-finder
.aurum-finder__why,
.aurum-finder
.aurum-finder__why--compact {
	max-height: none;
}
