/**
 * Single Doença - Layout DoencaDetalhes (Portal Bem-Estar)
 * Estilos idênticos ao React DoencaDetalhes.tsx
 */

/* Design tokens compatíveis com portal-doencas */
.single-doenca-detalhes {
	--primary: 174 72% 40%;
	--primary-foreground: 0 0% 100%;
	--secondary: 174 40% 95%;
	--muted: 180 20% 96%;
	--muted-foreground: 200 20% 45%;
	--border: 180 20% 90%;
	--destructive: 0 84.2% 60.2%;
	--accent: 12 80% 62%;
}

/* Breadcrumb - Home > Doenças > Nome da Doença */
.doenca-breadcrumb-bar {
	background: #f8fafc;
	border-bottom: 1px solid var(--border-color, #E0E0E0);
}

.doenca-breadcrumb-bar .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.doenca-breadcrumb {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: #334155;
	padding: 0.75rem 0;
}

.doenca-breadcrumb a {
	color: #475569;
	text-decoration: none;
	transition: color 0.2s;
}

.doenca-breadcrumb a:hover {
	color: var(--primary-color, #73B3CD);
}

.doenca-breadcrumb-current {
	color: var(--text-color, #0E1922);
	font-weight: 600;
}

.doenca-breadcrumb svg {
	width: 0.875rem;
	height: 0.875rem;
	flex-shrink: 0;
	color: #94a3b8;
}

/* Yoast breadcrumb dentro do single-doenca - cores escuras para legibilidade */
.doenca-breadcrumb-bar .breadcrumbs-header .breadcrumb-wrapper,
.doenca-breadcrumb-bar .breadcrumbs-header .breadcrumb-wrapper a {
	color: #475569 !important;
}

.doenca-breadcrumb-bar .breadcrumbs-header .breadcrumb-wrapper a:hover {
	color: var(--primary-color, #73B3CD) !important;
}

.doenca-breadcrumb-bar .breadcrumbs-header .breadcrumb_separator {
	color: #94a3b8 !important;
}

.doenca-breadcrumb-bar .breadcrumbs-header .breadcrumb_last {
	color: var(--text-color, #0E1922) !important;
	font-weight: 600;
}

.doenca-breadcrumb .breadcrumb-wrapper {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.25rem;
}

/* Hero */
.doenca-detail-hero {
	background: linear-gradient(135deg, rgba(115, 179, 205, 0.08) 0%, rgba(0, 67, 70, 0.05) 50%, #fff 100%);
	padding: 2.5rem 0 3.5rem;
	border-bottom: 1px solid var(--border-color, #E0E0E0);
}

.doenca-hero-content {
	margin: 0 auto;
}

.doenca-hero-badges {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: wrap;
	margin-bottom: 1rem;
}

.doenca-badge-tipo {
	background: rgba(115, 179, 205, 0.15);
	color: var(--primary-dark, #004346);
	border: 1px solid rgba(115, 179, 205, 0.3);
}

.doenca-hero-taxonomies {
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.doenca-hero-tax-label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--text-light, #6C757D);
	margin-bottom: 0.75rem;
}

.doenca-hero-tax-label svg {
	width: 1rem;
	height: 1rem;
	flex-shrink: 0;
}

.doenca-hero-tax-terms {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.doenca-hero-term-tag {
	display: inline-block;
	padding: 0.35rem 0.75rem;
	font-size: 0.8125rem;
	font-weight: 500;
	color: var(--primary-color, #73B3CD);
	background: rgba(115, 179, 205, 0.1);
	border: 1px solid rgba(115, 179, 205, 0.25);
	border-radius: 0.5rem;
	text-decoration: none;
	transition: all 0.2s ease;
}

.doenca-hero-term-tag:hover {
	background: rgba(115, 179, 205, 0.2);
	color: var(--primary-dark, #004346);
	border-color: var(--primary-color, #73B3CD);
}

.doenca-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.35rem 0.75rem;
	border-radius: 0.5rem;
	font-size: 0.75rem;
	font-weight: 500;
}

.doenca-badge-icon {
	display: flex;
	align-items: center;
}

.doenca-badge-icon svg {
	width: 0.875rem;
	height: 0.875rem;
}

.doenca-badge-category {
	border: 1px solid currentColor;
}

.doenca-badge-outline {
	border: 1px solid var(--border-color, #E0E0E0);
	background: #fff;
	color: var(--text-color, #0E1922);
}

.doenca-badge-danger {
	background: rgba(220, 38, 38, 0.12);
	color: #b91c1c;
	border: 1px solid rgba(220, 38, 38, 0.25);
}

.doenca-badge-primary {
	background: rgba(115, 179, 205, 0.12);
	color: var(--primary-dark, #004346);
	border: 1px solid rgba(115, 179, 205, 0.25);
}

.doenca-badge-secondary {
	background: var(--light-gray, #F8F9FA);
	color: var(--text-color, #0E1922);
}

.doenca-hero-title {
	font-size: 1.875rem;
	font-weight: 800;
	color: var(--text-color, #0E1922);
	line-height: 1.2;
	margin: 0 0 1rem;
	letter-spacing: -0.02em;
}

@media (min-width: 768px) {
	.doenca-hero-title { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
	.doenca-hero-title { font-size: 2.75rem; }
}

.doenca-hero-summary {
	font-size: 16px;
	color: var(--text-light, #6C757D);
	line-height: 1.65;
	margin: 0;
}

/* Main layout: Content + Sidebar */
.doenca-main-with-sidebar {
	display: grid;
	grid-template-columns: 1fr;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
	gap: 0;
}

@media (min-width: 1024px) {
	.doenca-main-with-sidebar {
		grid-template-columns: 1fr 300px;
		gap: 3rem;
		align-items: start;
		padding: 2rem 1.5rem 3rem;
	}
}

/* Content */
.doenca-content-wrapper {
	min-width: 0;
}

.doenca-content-inner {
	max-width: 56rem;
	margin: 0 auto;
	padding: 2rem 0 3rem;
}

@media (min-width: 1024px) {
	.doenca-content-inner {
		margin: 0;
		padding: 0 0 3rem 0;
	}
}

/* Sidebar - sticky */
.doenca-sidebar {
	order: -1;
}

@media (min-width: 1024px) {
	.doenca-sidebar {
		order: 0;
		position: sticky;
		top: 1.5rem;
	}
}

.doenca-sidebar-inner {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

@media (max-width: 1023px) {
	.doenca-sidebar-inner {
		padding-bottom: 1.5rem;
		border-bottom: 1px solid var(--border-color, #E0E0E0);
	}
}

/* Sidebar TOC */
.doenca-sidebar-toc {
	background: #fff;
	border: 1px solid var(--border-color, #E0E0E0);
	border-radius: 0.75rem;
	padding: 1.25rem 1.25rem 1rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.doenca-sidebar-toc-title {
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--text-color, #0E1922);
	margin: 0 0 1rem 0;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.doenca-sidebar-toc-list {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.doenca-sidebar-toc-item {
	margin: 0;
	padding: 0;
}

.doenca-sidebar-toc-link,
.doenca-summary-nav-btn {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 0.75rem;
	border-radius: 0.5rem;
	font-size: 0.8125rem;
	font-weight: 500;
	line-height: 1.35;
	text-decoration: none;
	color: var(--text-light, #6C757D);
	background: transparent;
	border-left: 3px solid transparent;
	cursor: pointer;
	transition: all 0.2s ease;
}

.doenca-sidebar-toc-link:hover {
	background: rgba(115, 179, 205, 0.08);
	color: var(--primary-color, #73B3CD);
}

.doenca-sidebar-toc-link:focus,
.doenca-sidebar-toc-link.active {
	background: rgba(115, 179, 205, 0.12);
	color: var(--primary-color, #73B3CD);
	border-left-color: var(--primary-color, #73B3CD);
}

.doenca-sidebar-toc-link:focus .doenca-sidebar-toc-icon svg,
.doenca-sidebar-toc-link.active .doenca-sidebar-toc-icon svg {
	color: inherit;
}

.doenca-sidebar-toc-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.doenca-sidebar-toc-icon svg {
	width: 1rem;
	height: 1rem;
	color: var(--text-light, #6C757D);
}

.doenca-sidebar-toc-link:hover .doenca-sidebar-toc-icon svg {
	color: inherit;
}

.doenca-sidebar-toc-label {
	word-break: break-word;
	text-align: left;
}

/* Sidebar actions */
.doenca-sidebar-actions {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.doenca-sidebar-back-link {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1rem;
	font-size: 0.8125rem;
	font-weight: 500;
	color: var(--primary-color, #73B3CD);
	text-decoration: none;
	background: rgba(115, 179, 205, 0.08);
	border-radius: 0.5rem;
	border: 1px solid rgba(115, 179, 205, 0.2);
	transition: all 0.2s ease;
}

.doenca-sidebar-back-link:hover {
	background: rgba(115, 179, 205, 0.15);
}

.doenca-sidebar-back-link svg {
	width: 1rem;
	height: 1rem;
	transform: rotate(-90deg);
}

.doenca-section {
	margin-bottom: 3rem;
}

.scroll-mt-28 {
	scroll-margin-top: 7rem;
}

/* Section Header */
.doenca-section-header {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1.25rem;
}

.doenca-section-icon {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 0.75rem;
	background: rgba(115, 179, 205, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-color, #73B3CD);
}

.doenca-section-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--text-color, #0E1922);
	margin: 0;
}

@media (min-width: 768px) {
	.doenca-section-title { font-size: 1.5rem; }
}

/* Health Card */
.doenca-health-card {
	background: #fff;
	border-radius: 0.75rem;
	border: 1px solid var(--border-color, #E0E0E0);
	box-shadow: 0 4px 20px -4px rgba(115, 179, 205, 0.12);
}

.doenca-card-padding {
	padding: 1.25rem;
}

@media (min-width: 768px) {
	.doenca-card-padding {
		padding: 1.5rem 2rem;
	}
}

.doenca-card-hover:hover {
	box-shadow: 0 6px 16px -4px rgba(115, 179, 205, 0.18);
}

.doenca-card-border-left {
	border-left: 4px solid var(--primary-color, #73B3CD);
}

.doenca-content-prose {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--text-light, #6C757D);
}

.doenca-content-prose p {
	margin-bottom: 1rem;
}

.doenca-content-prose p:last-child {
	margin-bottom: 0;
}

.doenca-content-prose ul,
.doenca-content-prose ol {
	margin-bottom: 1rem;
	padding-left: 1.5rem;
}

.doenca-content-prose li {
	margin-bottom: 0.25rem;
}

.doenca-content-prose a {
	color: var(--primary-color, #73B3CD);
	text-decoration: underline;
}

.doenca-content-prose a:hover {
	text-decoration: none;
}

.doenca-content-prose h2,
.doenca-content-prose h3 {
	margin-top: 1.5rem;
	margin-bottom: 0.5rem;
	font-size: 1.125rem;
}

.doenca-content-prose blockquote {
	border-left: 4px solid var(--primary-color, #73B3CD);
	padding-left: 1rem;
	margin: 1rem 0;
	font-style: italic;
}

.doenca-card-title {
	font-size: 1rem;
	font-weight: 600;
	color: var(--text-color, #0E1922);
	margin: 0 0 0.25rem;
}

.doenca-card-desc {
	font-size: 0.875rem;
	color: var(--text-light, #6C757D);
	line-height: 1.6;
	margin: 0;
}

.doenca-card-desc p,
.doenca-card-desc ul,
.doenca-card-desc ol {
	margin-bottom: 0.5rem;
}

.doenca-card-desc p:last-child,
.doenca-card-desc > *:last-child {
	margin-bottom: 0;
}

.doenca-card-desc a {
	color: var(--primary-color, #73B3CD);
	text-decoration: underline;
}

.doenca-card-desc a:hover {
	text-decoration: none;
}

.doenca-card-desc strong {
	color: var(--text-color, #0E1922);
}

/* Grid 2 col */
.doenca-grid-2 {
	display: grid;
	gap: 1rem;
}

@media (min-width: 640px) {
	.doenca-grid-2 {
		grid-template-columns: repeat(2, 1fr);
	}
}

.doenca-card-flex {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
}

.doenca-card-number {
	width: 2rem;
	height: 2rem;
	border-radius: 0.5rem;
	background: rgba(115, 179, 205, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--primary-color, #73B3CD);
	flex-shrink: 0;
}

.doenca-diagnosis-header {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
}

/* Symptoms */
.doenca-symptom-common {
	border-left: 4px solid #f97316;
}

.doenca-symptom-row {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.doenca-symptom-icon {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	background: var(--light-gray, #F8F9FA);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-light, #6C757D);
	flex-shrink: 0;
}

.doenca-symptom-icon-common {
	background: rgba(249, 115, 22, 0.1);
	color: #f97316;
}

.doenca-symptom-header {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.25rem;
}

/* Divider card */
.doenca-card-divider > * + * {
	border-top: 1px solid var(--border-color, #E0E0E0);
}

.doenca-diff-item,
.doenca-medication-item {
	display: flex;
	gap: 1rem;
	padding: 1.25rem;
}

.doenca-diff-icon {
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	background: var(--light-gray, #F8F9FA);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-light, #6C757D);
	flex-shrink: 0;
}

/* Stages */
.doenca-stage-row {
	display: flex;
	gap: 1rem;
	margin-bottom: 1rem;
}

.doenca-stage-row:last-child {
	margin-bottom: 0;
}

.doenca-stage-indicator {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.doenca-stage-num {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.875rem;
	font-weight: 700;
}

.doenca-stage-green { background: #dcfce7; color: #15803d; }
.doenca-stage-yellow { background: #fef9c3; color: #a16207; }
.doenca-stage-orange { background: #ffedd5; color: #c2410c; }
.doenca-stage-red { background: #fee2e2; color: #b91c1c; }

.doenca-stage-line {
	width: 2px;
	flex: 1;
	background: var(--border-color, #E0E0E0);
	margin-top: 0.25rem;
	min-height: 1rem;
}

.doenca-stage-card {
	flex: 1;
}

/* Medication alert */
.doenca-medication-alert {
	display: flex;
	gap: 0.75rem;
	padding: 1rem;
	margin-bottom: 1rem;
	background: rgba(249, 115, 22, 0.05);
	border: 1px solid rgba(249, 115, 22, 0.2);
	border-radius: 0.75rem;
}

.doenca-medication-alert svg {
	color: #f97316;
	flex-shrink: 0;
}

.doenca-medication-alert p {
	font-size: 0.875rem;
	color: var(--text-light, #6C757D);
	margin: 0;
}

/* Cure card */
.doenca-cure-card {
	border-left: 4px solid var(--primary-color, #73B3CD);
	background: rgba(115, 179, 205, 0.05);
}

.doenca-cure-answer {
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--text-color, #0E1922);
	margin-bottom: 0.75rem !important;
}

/* Prevention icon */
.doenca-prevention-icon {
	width: 2rem;
	height: 2rem;
	border-radius: 0.5rem;
	background: #dcfce7;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #15803d;
	flex-shrink: 0;
}

/* Complication card */
.doenca-complication-card {
	border-left: 4px solid rgba(220, 38, 38, 0.3);
}

/* Help card */
.doenca-help-card {
	background: rgba(220, 38, 38, 0.05);
	border: 1px solid rgba(220, 38, 38, 0.2);
}

.doenca-help-intro {
	font-size: 0.875rem;
	color: var(--text-light, #6C757D);
	margin-bottom: 1rem !important;
}

.doenca-help-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.doenca-help-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
	font-size: 0.875rem;
	color: var(--text-color, #0E1922);
}

.doenca-help-list li svg {
	width: 1rem;
	height: 1rem;
	min-width: 1rem;
	color: #b91c1c;
	flex-shrink: 0;
	margin-top: 0.125rem;
}

/* FAQ */
.doenca-faq-item {
	background: #fff;
	border: 1px solid var(--border-color, #E0E0E0);
	border-radius: 0.75rem;
	margin-bottom: 0.5rem;
	overflow: hidden;
}

.doenca-faq-question {
	padding: 1rem 1.25rem;
	font-weight: 600;
	color: var(--text-color, #0E1922);
	cursor: pointer;
	list-style: none;
}

.doenca-faq-question::-webkit-details-marker {
	display: none;
}

.doenca-faq-question::before {
	content: '+';
	float: right;
	font-weight: 400;
}

.doenca-faq-item[open] .doenca-faq-question::before {
	content: '−';
}

.doenca-faq-question:hover {
	color: var(--primary-color, #73B3CD);
}

.doenca-faq-answer {
	padding: 0 1.25rem 1rem;
	font-size: 0.875rem;
	color: var(--text-light, #6C757D);
	line-height: 1.6;
}

/* Specialties */
.doenca-specialties {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.doenca-specialty-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
	background: var(--light-gray, #F8F9FA);
	border-radius: 0.5rem;
	color: var(--text-color, #0E1922);
}

/* References */
.doenca-references-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.doenca-references-list li {
	font-size: 0.875rem;
	color: var(--text-light, #6C757D);
	margin-bottom: 0.5rem;
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
}

.doenca-ref-num {
	color: var(--primary-color, #73B3CD);
	font-weight: 500;
}

/* Legal notice */
.doenca-legal-notice {
	background: var(--light-gray, #F8F9FA);
	border: 1px solid var(--border-color, #E0E0E0);
	border-radius: 0.75rem;
	padding: 1.5rem;
	text-align: center;
}

.doenca-legal-notice svg {
	width: 1.5rem;
	height: 1.5rem;
	flex-shrink: 0;
	color: var(--text-light, #6C757D);
	margin-bottom: 0.5rem;
}

.doenca-legal-notice p {
	font-size: 0.875rem;
	color: var(--text-light, #6C757D);
	line-height: 1.6;
	margin: 0;
	max-width: 42rem;
	margin-left: auto;
	margin-right: auto;
}

.doenca-legal-notice strong {
	color: var(--text-color, #0E1922);
}

/* Doenças relacionadas */
.doenca-related-section {
	background: linear-gradient(180deg, #f8fafc 0%, rgba(115, 179, 205, 0.06) 50%, #fff 100%);
	padding: 4rem 0 4.5rem;
	border-top: 1px solid var(--border-color, #E0E0E0);
}

.doenca-related-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.doenca-related-header {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 2rem;
}

.doenca-related-header-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 1rem;
	background: var(--primary-color, #73B3CD);
	color: #fff;
	flex-shrink: 0;
}

.doenca-related-header-icon svg {
	width: 1.5rem;
	height: 1.5rem;
}

.doenca-related-title {
	font-size: 1.75rem;
	font-weight: 800;
	color: var(--text-color, #0E1922);
	margin: 0 0 0.25rem 0;
	letter-spacing: -0.02em;
}

.doenca-related-subtitle {
	font-size: 0.9375rem;
	color: var(--text-light, #6C757D);
	margin: 0;
	line-height: 1.5;
}

.doenca-related-grid {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: 1fr;
}

@media (min-width: 640px) {
	.doenca-related-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.doenca-related-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.5rem;
	}
}

.doenca-related-card {
	display: block;
	background: #fff;
	border-radius: 1rem;
	border: 1px solid var(--border-color, #E0E0E0);
	box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.06);
	text-decoration: none;
	transition: all 0.3s ease;
	overflow: hidden;
}

.doenca-related-card:hover {
	border-color: rgba(115, 179, 205, 0.4);
	box-shadow: 0 12px 32px -8px rgba(115, 179, 205, 0.2);
	transform: translateY(-4px);
}

.doenca-related-card-inner {
	padding: 1.5rem;
	position: relative;
}

.doenca-related-card-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 0.75rem;
	background: rgba(115, 179, 205, 0.12);
	color: var(--primary-color, #73B3CD);
	margin-bottom: 1rem;
}

.doenca-related-card-icon svg {
	width: 1.25rem;
	height: 1.25rem;
}

.doenca-related-card-badge {
	display: inline-block;
	font-size: 0.6875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 0.25rem 0.5rem;
	border-radius: 0.375rem;
	background: rgba(115, 179, 205, 0.15);
	color: var(--primary-dark, #004346);
	margin-bottom: 0.5rem;
}

.doenca-related-card-title {
	font-size: 1rem;
	font-weight: 700;
	color: var(--text-color, #0E1922);
	margin: 0 0 0.5rem 0;
	line-height: 1.35;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: color 0.2s;
}

.doenca-related-card:hover .doenca-related-card-title {
	color: var(--primary-color, #73B3CD);
}

.doenca-related-card-excerpt {
	font-size: 0.8125rem;
	color: var(--text-light, #6C757D);
	line-height: 1.5;
	margin: 0 0 0.75rem 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.doenca-related-card-link {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--primary-color, #73B3CD);
	transition: gap 0.2s;
}

.doenca-related-card:hover .doenca-related-card-link {
	gap: 0.5rem;
}

.doenca-related-card-link svg {
	width: 1rem;
	height: 1rem;
	flex-shrink: 0;
}

.doenca-related-footer {
	margin-top: 2.5rem;
	text-align: center;
}

.doenca-related-browse-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--primary-color, #73B3CD);
	background: rgba(115, 179, 205, 0.1);
	border: 1px solid rgba(115, 179, 205, 0.25);
	border-radius: 0.75rem;
	text-decoration: none;
	transition: all 0.2s ease;
}

.doenca-related-browse-link:hover {
	background: rgba(115, 179, 205, 0.18);
	border-color: var(--primary-color, #73B3CD);
}

.doenca-related-browse-link svg {
	width: 1.125rem;
	height: 1.125rem;
}

/* Scroll to top */
.doenca-scroll-top-btn {
	position: fixed;
	bottom: 1.5rem;
	right: 1.5rem;
	z-index: 50;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	background: var(--primary-color, #73B3CD);
	color: #fff;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
	transition: all 0.2s;
}

.doenca-scroll-top-btn:hover {
	box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
	transform: scale(1.1);
}
