
/* =========================================================
   APPROFONDIMENTO LASER O BISTURI
   Namespace: lbrefined-
========================================================= */

.lbrefined-section {
	--lbrefined-coral: #df6669;
	--lbrefined-coral-soft: #fff6f6;
	--lbrefined-black: #151515;
	--lbrefined-white: #ffffff;
	--lbrefined-light: #f5f5f6;
	--lbrefined-text: #606060;
	--lbrefined-muted: #929292;
	--lbrefined-border: #dedede;

	position: relative;
	width: 100%;
	margin: 0;
	padding: 0;
	color: var(--lbrefined-text);
	font-family: "Barlow", sans-serif;
}

.lbrefined-section,
.lbrefined-section * {
	box-sizing: border-box;
}

.lbrefined-section h2,
.lbrefined-section h3,
.lbrefined-section h4,
.lbrefined-section p {
	margin-top: 0;
	font-family: "Barlow", sans-serif;
	text-transform: none;
}

.lbrefined-container {
	width: 100%;
	margin: 0;
}

/* =========================================================
   ACCORDION
========================================================= */

.lbrefined-details {
	position: relative;
	width: 100%;
	overflow: hidden;
	border: 1px solid var(--lbrefined-border);
	background: var(--lbrefined-white);

	transition:
		border-color 0.35s ease,
		box-shadow 0.4s ease;
}

.lbrefined-details:hover,
.lbrefined-details[open] {
	border-color: rgba(223, 102, 105, 0.5);
	box-shadow: 0 18px 45px rgba(20, 20, 20, 0.08);
}

/* Linea superiore animata */

.lbrefined-details::before {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	z-index: 3;
	height: 3px;
	content: "";
	background: var(--lbrefined-coral);
	transform: scaleX(0);
	transform-origin: left center;

	transition:
		transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.lbrefined-details:hover::before,
.lbrefined-details[open]::before {
	transform: scaleX(1);
}

/* =========================================================
   TESTATA
========================================================= */

.lbrefined-summary {
	position: relative;
	display: grid;
	min-height: 116px;
	padding: 25px 82px 25px 32px;
	grid-template-columns: 135px minmax(0, 1fr);
	gap: 28px;
	align-items: center;
	background: var(--lbrefined-white);
	cursor: pointer;
	list-style: none;

	transition:
		background-color 0.35s ease;
}

.lbrefined-summary::-webkit-details-marker {
	display: none;
}

.lbrefined-summary::marker {
	display: none;
	content: "";
}

.lbrefined-summary:hover,
.lbrefined-details[open] .lbrefined-summary {
	background: var(--lbrefined-coral-soft);
}

.lbrefined-summary:focus-visible {
	outline: 2px solid var(--lbrefined-coral);
	outline-offset: -2px;
}

.lbrefined-summary__label {
	color: var(--lbrefined-coral);
	font-size: 9px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.lbrefined-summary__content {
	min-width: 0;
}

.lbrefined-summary h2 {
	margin: 0 0 7px;
	color: var(--lbrefined-black);
	font-size: clamp(27px, 2.55vw, 35px);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -0.04em;
}

.lbrefined-summary p {
	max-width: 760px;
	margin: 0;
	color: var(--lbrefined-text);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.55;
}

/* =========================================================
   TOGGLE PIÙ / X
========================================================= */

.lbrefined-toggle {
	position: absolute;
	top: 50%;
	right: 27px;
	width: 38px;
	height: 38px;
	border: 1px solid rgba(223, 102, 105, 0.48);
	border-radius: 50%;
	background: transparent;
	transform: translateY(-50%);

	transition:
		background-color 0.3s ease,
		border-color 0.3s ease,
		transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.lbrefined-toggle::before,
.lbrefined-toggle::after {
	position: absolute;
	top: 50%;
	left: 50%;
	content: "";
	background: var(--lbrefined-coral);
	transform: translate(-50%, -50%);

	transition:
		background-color 0.3s ease;
}

.lbrefined-toggle::before {
	width: 12px;
	height: 1.5px;
}

.lbrefined-toggle::after {
	width: 1.5px;
	height: 12px;
}

.lbrefined-summary:hover .lbrefined-toggle,
.lbrefined-details[open] .lbrefined-toggle {
	border-color: var(--lbrefined-coral);
	background: var(--lbrefined-coral);
}

.lbrefined-summary:hover .lbrefined-toggle::before,
.lbrefined-summary:hover .lbrefined-toggle::after,
.lbrefined-details[open] .lbrefined-toggle::before,
.lbrefined-details[open] .lbrefined-toggle::after {
	background: var(--lbrefined-white);
}

/* Il simbolo + ruota e diventa una X */

.lbrefined-details[open] .lbrefined-toggle {
	transform:
		translateY(-50%)
		rotate(45deg);
}

/* =========================================================
   CORPO
========================================================= */

.lbrefined-body {
	width: 100%;
	border-top: 1px solid #eaeaea;
	background: var(--lbrefined-white);
	animation: lbrefined-reveal 0.4s ease both;
}

.lbrefined-body__inner {
	width: 100%;
	max-width: none;
	padding: 40px 32px 46px;
}

/* =========================================================
   INTRODUZIONE
========================================================= */

.lbrefined-lead {
	width: 100%;
	margin-bottom: 30px;
	padding: 24px 27px;
	border-left: 4px solid var(--lbrefined-coral);
	background: var(--lbrefined-light);
}

.lbrefined-lead strong {
	display: block;
	margin-bottom: 8px;
	color: var(--lbrefined-black);
	font-size: 18px;
	font-weight: 750;
	line-height: 1.35;
}

.lbrefined-lead p {
	max-width: 100%;
	margin: 0;
	color: var(--lbrefined-text);
	font-size: 14px;
	line-height: 1.7;
}

/* =========================================================
   RIGHE EDITORIALI
========================================================= */

.lbrefined-row {
	display: grid;
	width: 100%;
	padding: 27px 0;
	grid-template-columns: minmax(150px, 180px) minmax(0, 1fr);
	gap: clamp(30px, 4vw, 55px);
	align-items: start;
	border-top: 1px solid #e6e6e6;
}

.lbrefined-row:first-of-type {
	padding-top: 0;
	border-top: 0;
}

.lbrefined-row__heading {
	min-width: 0;
}

.lbrefined-row__heading span {
	display: block;
	margin-bottom: 9px;
	color: var(--lbrefined-coral);
	font-size: 9px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.lbrefined-row h3 {
	max-width: 180px;
	margin: 0;
	color: var(--lbrefined-black);
	font-size: 21px;
	font-weight: 750;
	line-height: 1.12;
	letter-spacing: -0.025em;
}

.lbrefined-row__content {
	min-width: 0;
	width: 100%;
}

.lbrefined-row__content p {
	width: 100%;
	max-width: none;
	margin: 0 0 14px;
	color: var(--lbrefined-text);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.75;
}

.lbrefined-row__content p:last-child {
	margin-bottom: 0;
}

.lbrefined-row__content strong {
	color: var(--lbrefined-black);
	font-weight: 700;
}

/* =========================================================
   CONFRONTO TECNICHE
========================================================= */

.lbrefined-techniques {
	display: grid;
	width: 100%;
	margin-bottom: 17px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
}

.lbrefined-technique {
	min-width: 0;
	padding: 16px 0 0;
	border-top: 2px solid var(--lbrefined-coral);
}

.lbrefined-technique__label {
	display: block;
	margin-bottom: 9px;
	color: var(--lbrefined-coral);
	font-size: 9px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.lbrefined-technique h4 {
	margin: 0 0 10px;
	color: var(--lbrefined-black);
	font-size: 19px;
	font-weight: 750;
	line-height: 1.18;
	letter-spacing: -0.02em;
}

.lbrefined-technique p {
	margin: 0;
	font-size: 14px;
	line-height: 1.7;
}

/* =========================================================
   INFORMAZIONI FINALI
========================================================= */

.lbrefined-quick {
	display: flex;
	width: 100%;
	margin-top: 31px;
	padding: 20px 22px;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px 24px;
	background: var(--lbrefined-black);
}

.lbrefined-quick__label {
	margin-right: 4px;
	color: var(--lbrefined-coral);
	font-size: 9px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.lbrefined-quick__item {
	position: relative;
	color: rgba(255, 255, 255, 0.76);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.4;
}

.lbrefined-quick__item:not(:last-child)::after {
	position: absolute;
	top: 50%;
	right: -14px;
	width: 3px;
	height: 3px;
	content: "";
	border-radius: 50%;
	background: var(--lbrefined-coral);
	transform: translateY(-50%);
}

/* =========================================================
   ANIMAZIONE
========================================================= */

@keyframes lbrefined-reveal {
	from {
		opacity: 0;
		transform: translateY(-6px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

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

@media (max-width: 900px) {

	.lbrefined-summary {
		grid-template-columns: 110px minmax(0, 1fr);
		gap: 22px;
	}

	.lbrefined-row {
		grid-template-columns: 145px minmax(0, 1fr);
		gap: 27px;
	}

}

/* =========================================================
   MOBILE
   Padding: 10% verticale, 5% laterale
========================================================= */

@media (max-width: 767px) {

	.lbrefined-section {
		padding: 10% 5%;
	}

	.lbrefined-container {
		width: 100%;
	}

	.lbrefined-summary {
		min-height: auto;
		padding: 23px 62px 23px 20px;
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.lbrefined-summary__label {
		font-size: 8px;
	}

	.lbrefined-summary h2 {
		margin-bottom: 6px;
		font-size: clamp(23px, 7.2vw, 32px);
		line-height: 1.08;
	}

	.lbrefined-summary p {
		font-size: 13px;
		line-height: 1.5;
	}

	.lbrefined-toggle {
		right: 15px;
		width: 34px;
		height: 34px;
	}

	.lbrefined-toggle::before {
		width: 11px;
	}

	.lbrefined-toggle::after {
		height: 11px;
	}

	.lbrefined-body__inner {
		padding: 28px 20px 34px;
	}

	.lbrefined-lead {
		margin-bottom: 24px;
		padding: 19px 17px;
	}

	.lbrefined-lead strong {
		font-size: 16px;
	}

	.lbrefined-lead p {
		font-size: 13px;
		line-height: 1.65;
	}

	.lbrefined-row {
		padding: 23px 0;
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.lbrefined-row h3 {
		max-width: none;
		font-size: 20px;
	}

	.lbrefined-row__content p {
		font-size: 14px;
		line-height: 1.68;
	}

	.lbrefined-techniques {
		grid-template-columns: 1fr;
		gap: 21px;
	}

	.lbrefined-technique h4 {
		font-size: 18px;
	}

	.lbrefined-quick {
		margin-top: 25px;
		padding: 18px;
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
	}

	.lbrefined-quick__label {
		margin-bottom: 3px;
	}

	.lbrefined-quick__item::after {
		display: none;
	}

}

/* =========================================================
   ACCESSIBILITÀ
========================================================= */

@media (prefers-reduced-motion: reduce) {

	.lbrefined-section *,
	.lbrefined-section *::before,
	.lbrefined-section *::after {
		animation: none !important;
		transition: none !important;
	}

