/* ==========================================================================
   Templates: Blog (arquivo), Post único e Produto.
   Réplica dos modelos Elementor de referência
   (blog 4830/4769 e produto 5853) sem dependência do Elementor Pro.
   ========================================================================== */

:root {
	--blog-accent: #00a5c4;
	--blog-text: #404040;
	--blog-muted: #5a5a5a;
	--blog-surface: #f7f9fc;
	--blog-border: #d8e4f2;
	--blog-radius: 12px;
}

/* Top tag "BLOG" ---------------------------------------------------------- */
/* Top tag "BLOG" — funciona como container (.sm-page-pill) E diretamente
   em headings Elementor (h1.sm-page-pill, .elementor-heading-title.sm-page-pill) */
.sm-page-pill,
h1.sm-page-pill,
h2.sm-page-pill,
.tag-top-blog-post h1,
.tag-top-blog-post h2,
.elementor-widget-heading .elementor-heading-title.sm-page-pill {
	display: inline-block;
	background: #e33b3b;
	color: #fff !important;
	font-size: 12px !important;
	font-weight: 700;
	letter-spacing: 0.8px;
	padding: 7px 12px;
	border-radius: 6px;
	margin: 24px 0 12px;
	text-transform: uppercase;
	line-height: 1;
}

.sm-page-pill h2,
.sm-page-pill h1 {
	display: inline-block;
	margin: 0;
	background: none;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	line-height: 1;
}

/* Layout base do arquivo de blog ----------------------------------------- */
.sm-archive {
	width: 100%;
}

.sm-archive__inner {
	max-width: 1369px;
	margin: 0 auto;
	padding: 0 8%;
	box-sizing: border-box;
}

.sm-archive__grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	gap: 8px;
	padding: 8px;
	margin: 0 auto;
	box-sizing: border-box;
}

.sm-archive__feature {
	flex: 1 1 70%;
	min-width: 0;
}

.sm-archive__listing {
	flex: 1 1 30%;
	min-width: 0;
}

/* ==========================================================================
   Blog Archive — home.php (clone fiel de slm-dev.smintranet.com.br/blog/)
   Grid destaque (feature) + sub-destaque (3 posts) + lista (offset 4)
   ========================================================================== */
.sm-blog-archive {
	width: 100%;
}

.sm-blog-archive__inner {
	max-width: 1389px;
	margin: 0 auto;
	padding: 0 8%;
	box-sizing: border-box;
}

.sm-blog-archive__grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	gap: 8px;
	padding: 8px;
	margin: 0 auto 20px;
	max-width: 1389px;
	box-sizing: border-box;
}

.destaque-posts {
	flex: 1 1 70%;
	min-width: 0;
}

.sub-destaque-posts {
	flex: 1 1 30%;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

/* Lista-posts abaixo do grid (posts a partir do 5º) */
.lista-posts-section {
	max-width: 1389px;
	margin: 0 auto;
	padding: 0 8%;
	box-sizing: border-box;
}

.lista-posts-grid {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

/* Feature card — imagem grande com overlays (réplica listing 7126) */
.sm-feature-card {
	position: relative;
	overflow: hidden;
	border-radius: var(--blog-radius);
	box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16);
	min-height: 380px;
	background: #f7f9fc;
}

.sm-feature-card__link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.sm-feature-card__media {
	position: relative;
	line-height: 0;
	height: 100%;
	min-height: 380px;
}

.sm-feature-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	min-height: 380px;
}

.sm-feature-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.78) 100%);
	z-index: 1;
	pointer-events: none;
}

.sm-feature-card__terms {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 3;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.sm-feature-card__terms span {
	display: inline-block;
	background: #e33b3b;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.5px;
	padding: 4px 10px;
	border-radius: 20px;
	text-transform: uppercase;
}

.sm-feature-card__body {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
	padding: 18px;
}

.sm-feature-card__title {
	margin: 0 0 6px;
	color: #fff;
	font-family: 'Poppins', 'Roboto', sans-serif;
	font-size: clamp(20px, 2vw + 10px, 28px);
	font-weight: 700;
	line-height: 1.3;
}

.sm-feature-card__excerpt {
	margin: 0;
	color: rgba(255, 255, 255, 0.92);
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	line-height: 1.5;
}

/* List card — thumbnail esq + texto dir (réplica listing 7131/7147) */
.sm-list-card {
	display: grid;
	grid-template-columns: 96px 1fr;
	gap: 14px;
	align-items: start;
	padding: 10px;
	background: #fff;
	border-radius: var(--blog-radius);
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
	text-decoration: none;
}

.sm-list-card__media {
	line-height: 0;
	border-radius: 8px;
	overflow: hidden;
}

.sm-list-card__media img {
	width: 96px;
	height: 72px;
	object-fit: cover;
	display: block;
}

.sm-list-card__body {
	min-width: 0;
}

.sm-list-card__terms {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 4px;
}

.sm-list-card__terms a {
	color: #0095db;
	font-family: 'Roboto', sans-serif;
	font-size: 11px;
	font-weight: 500;
	text-transform: uppercase;
	text-decoration: none;
}

.sm-list-card__title {
	margin: 0 0 4px;
	font-family: 'Poppins', 'Roboto', sans-serif;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.35;
}

.sm-list-card__title a {
	color: #222;
	text-decoration: none;
}

.sm-list-card__title a:hover {
	color: #05498C;
}

.sm-list-card__excerpt {
	margin: 0;
	color: #5a5a5a;
	font-family: 'Roboto', sans-serif;
	font-size: 13px;
	line-height: 1.45;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Botão "Ver mais" */
.sm-blog-archive__more {
	text-align: center;
	padding: 30px 0 60px;
}

.sm-blog-archive__loadmore,
.sm-blog-loadmore__btn {
	display: inline-block;
	background: #05498C;
	color: #fff;
	font-family: 'Roboto', sans-serif;
	font-size: 15px;
	font-weight: 600;
	padding: 12px 36px;
	border-radius: 30px;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: background 0.3s ease;
}

.sm-blog-archive__loadmore:hover,
.sm-blog-loadmore__btn:hover {
	background: #32A5DE;
}

/* Redes sociais */
.sm-blog-social {
	text-align: center;
	padding: 40px 0;
}

.sm-blog-social__heading {
	margin: 0 0 20px;
	font-family: 'Poppins', 'Roboto', sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: #1F2937;
}

.sm-blog-social__icons {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 30px;
}

.sm-blog-social__link {
	display: inline-flex;
	transition: transform 0.2s ease;
}

.sm-blog-social__link:hover {
	transform: scale(1.1);
}

.sm-blog-social__icon {
	width: 48px;
	height: 48px;
	color: #027635;
	transition: color 0.2s ease;
}

/* Banner promocional */
.sm-blog-banner {
	text-align: center;
	padding: 60px 0;
}

.sm-blog-banner--full img {
	width: 100%;
	max-width: 1389px;
	height: auto;
	border-radius: 16px;
}

.sm-blog-banner img {
	max-width: 100%;
	height: auto;
}

/* Responsivo blog */
@media (max-width: 1024px) {
	.destaque-posts,
	.sub-destaque-posts {
		flex: 1 1 100%;
	}
	.sm-feature-card,
	.sm-feature-card__media,
	.sm-feature-card__media img {
		min-height: 280px;
	}
}

@media (max-width: 767px) {
	.sm-blog-archive__inner,
	.lista-posts-section {
		padding: 0 20px;
	}
	.sm-list-card {
		grid-template-columns: 80px 1fr;
		gap: 10px;
		padding: 8px;
	}
	.sm-list-card__media img {
		width: 80px;
		height: 60px;
	}
	.sm-feature-card,
	.sm-feature-card__media,
	.sm-feature-card__media img {
		min-height: 240px;
	}
}
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: var(--blog-radius);
	box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16);
	background: var(--blog-surface);
	padding: 0;
	cursor: pointer;
	min-height: 380px;
}

.sm-blog-grid--feature .sm-blog-grid__card:hover,
.sm-archive__feature .sm-blog-grid__card:hover {
	transform: none;
	box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16);
}

.sm-blog-grid--feature .sm-blog-grid__link,
.sm-archive__feature .sm-blog-grid__link {
	display: contents;
}

.sm-blog-grid--feature .sm-blog-grid__thumbnail,
.sm-archive__feature .sm-blog-grid__thumbnail {
	position: absolute;
	inset: 0;
	margin: 0;
	height: 100%;
	border-radius: 0;
	background: #eef7f1;
}

.sm-blog-grid--feature .sm-blog-grid__thumbnail img,
.sm-archive__feature .sm-blog-grid__thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	min-height: 0;
	display: block;
}

.sm-blog-grid--feature .sm-blog-grid__thumbnail::after,
.sm-archive__feature .sm-blog-grid__thumbnail::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.78) 100%);
	z-index: 1;
}

.sm-blog-grid--feature .sm-blog-grid__terms,
.sm-archive__feature .sm-blog-grid__terms {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 3;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.sm-blog-grid--feature .sm-blog-grid__terms a,
.sm-archive__feature .sm-blog-grid__terms a {
	display: inline-block;
	background: #e33b3b;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.5px;
	padding: 4px 10px;
	border-radius: 20px;
	text-transform: uppercase;
	text-decoration: none;
}

.sm-blog-grid--feature .sm-blog-grid__title,
.sm-archive__feature .sm-blog-grid__title {
	position: absolute;
	bottom: 60px;
	left: 18px;
	right: 18px;
	z-index: 3;
	color: #fff;
	font-family: 'Poppins', 'Roboto', sans-serif;
	font-size: clamp(20px, 2vw + 10px, 28px);
	font-weight: 700;
	line-height: 1.3;
	margin: 0;
}

.sm-blog-grid--feature .sm-blog-grid__excerpt,
.sm-archive__feature .sm-blog-grid__excerpt {
	position: absolute;
	bottom: 18px;
	left: 18px;
	right: 18px;
	z-index: 3;
	color: rgba(255, 255, 255, 0.92);
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	line-height: 1.5;
	margin: 0;
}

/* Card lista (sub-destaque) — widget sm_blog_grid com card_layout='list' */
.sm-blog-grid--list .sm-blog-grid__card,
.sm-archive__listing .sm-blog-grid__card {
	display: grid;
	grid-template-columns: 96px 1fr;
	gap: 4px 14px;
	align-items: start;
	padding: 10px;
	background: #fff;
	border-radius: var(--blog-radius);
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
	text-decoration: none;
	margin-bottom: 10px;
}

.sm-archive__listing .sm-blog-grid__card:hover {
	transform: none;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.sm-archive__listing .sm-blog-grid__card > a:first-of-type {
	grid-column: 1;
	grid-row: 1 / span 3;
	align-self: start;
}

.sm-archive__listing .sm-blog-grid__thumbnail {
	width: 96px;
	height: 72px;
	margin: 0;
	border-radius: 8px;
	overflow: hidden;
}

.sm-archive__listing .sm-blog-grid__thumbnail img {
	width: 96px;
	height: 72px;
	object-fit: cover;
	display: block;
}

.sm-archive__listing .sm-blog-grid__terms {
	grid-column: 2;
	grid-row: 1;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.sm-archive__listing .sm-blog-grid__terms a {
	color: #0095db;
	font-family: 'Roboto', sans-serif;
	font-size: 11px;
	font-weight: 500;
	text-transform: uppercase;
	text-decoration: none;
}

.sm-archive__listing .sm-blog-grid__card > a:nth-of-type(2) {
	grid-column: 2;
	grid-row: 2;
}

.sm-archive__listing .sm-blog-grid__title {
	margin: 0;
	color: #222;
	font-family: 'Poppins', 'Roboto', sans-serif;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.35;
}

.sm-archive__listing .sm-blog-grid__excerpt {
	grid-column: 2;
	grid-row: 3;
	color: var(--blog-muted);
	font-family: 'Roboto', sans-serif;
	font-size: 13px;
	line-height: 1.45;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin: 0;
}

.sm-archive__listing .sm-blog-grid__readmore {
	display: none;
}

/* Paginação do arquivo ---------------------------------------------------- */
.sm-archive__pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin: 32px 0 0;
	padding: 0 8%;
}

.sm-archive__pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	background: #fff;
	color: #222;
	border: 1px solid var(--blog-border);
	border-radius: 8px;
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

.sm-archive__pagination .page-numbers.current,
.sm-archive__pagination .page-numbers:hover {
	background: var(--sm-blue);
	color: #fff;
	border-color: var(--sm-blue);
}

/* Post único -------------------------------------------------------------- */
.sm-single {
	width: 100%;
}

.sm-single__inner {
	max-width: 1520px;
	margin: 0 auto;
	padding: 0 8%;
	box-sizing: border-box;
}

.sm-single__layout {
	display: flex;
	flex-wrap: wrap;
	gap: 2%;
	padding: 0 0 48px;
}

.sm-single__content {
	flex: 1 1 70%;
	min-width: 0;
}

.sm-single__content article {
	background: #fff;
}

.sm-single__title {
	margin: 0 0 16px;
	color: #222;
	font-family: 'Poppins', 'Roboto', sans-serif;
	font-size: clamp(24px, 2vw + 12px, 32px);
	font-weight: 800;
	line-height: 40px;
}

.sm-single__excerpt {
	margin: 0 0 18px;
	color: var(--blog-muted);
	font-family: 'Roboto', sans-serif;
	font-size: 17px;
	line-height: 1.6;
}

.sm-single__featured {
	margin: 0 0 24px;
}
.sm-single__featured img {
	width: 100%;
	height: auto;
	aspect-ratio: 1064 / 710;
	display: block;
	border-radius: 16px;
	box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16);
	object-fit: cover;
}

.sm-single__meta {
	margin: 16px 0 0;
	padding: 0;
	list-style: none;
}

.sm-single__meta li {
	margin: 0;
	color: var(--blog-muted);
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
}

.sm-single__meta .prefix {
	font-weight: 500;
}

/* Conteúdo do post (espelha .conteudo-post) ------------------------------ */
.sm-single-content {
	max-width: 760px;
	margin-top: 28px;
}

.sm-single-content p {
	font-size: 16px;
	line-height: 1.7;
	color: var(--blog-text);
	margin: 0 0 18px;
	font-family: 'Roboto', sans-serif;
}

.sm-single-content strong {
	color: #2a2a2a;
}

.sm-single-content h2,
.sm-single-content h3,
.sm-single-content h4 {
	color: var(--blog-accent);
	font-family: 'Poppins', 'Roboto', sans-serif;
	line-height: 1.5;
	margin: 24px 0 12px;
}

.sm-single-content h2 {
	font-size: 24px;
}

.sm-single-content h3 {
	font-size: 20px;
}

.sm-single-content figure {
	position: relative;
	display: block;
	margin: 32px 0 24px;
	border: 4px solid #0095e5;
	border-radius: 16px;
	line-height: 0;
	overflow: visible;
}

.sm-single-content figure::before {
	content: "";
	position: absolute;
	top: -10px;
	left: 20px;
	width: 38px;
	height: 14px;
	background: #e8006a;
	border-radius: 20px;
	z-index: 2;
}

.sm-single-content img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 12px;
	object-fit: cover;
}

.sm-single-content figcaption {
	font-size: 13px;
	line-height: 1.4;
	color: var(--blog-muted);
	margin-top: 8px;
	padding: 0 4px;
}

.sm-single-content blockquote {
	margin: 24px 0;
	padding: 16px 20px;
	border-left: 4px solid var(--blog-accent);
	background: var(--blog-surface);
	color: var(--blog-text);
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	line-height: 1.7;
}

/* Tags do post */
.sm-single__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid #e5e7eb;
}
.sm-single__tag {
	display: inline-block;
	padding: 5px 8px;
	color: #fff;
	font-family: 'Work Sans', sans-serif;
	font-weight: 600;
	font-size: 12px;
	border-radius: 4px;
	text-decoration: none;
	line-height: 1.2;
}

/* Post Author */
.sm-post-author {
	margin-bottom: 16px;
}
.sm-post-author__link {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	padding: 8px 0;
}
.sm-post-author__photo {
	flex-shrink: 0;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	overflow: hidden;
}
.sm-post-author__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.sm-post-author__info {
	min-width: 0;
}
.sm-post-author__name {
	margin: 0;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: #2a2a2a;
}
.sm-post-author__role {
	margin: 0;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	color: #6B7280;
}
.sm-post-author__link:hover .sm-post-author__name {
	color: #D9006F;
}

/* Sidebar do post --------------------------------------------------------- */
.sm-single__sidebar {
	flex: 1 1 28%;
	min-width: 0;
}

.sm-sidebar-banner {
	margin-bottom: 16px;
}

.sm-sidebar-banner img {
	width: 100%;
	height: auto;
	border-radius: var(--blog-radius);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
	object-fit: cover;
}

.sm-sidebar-mais-lidas {
	position: relative;
	background: #f6f6f6;
	border: 4px solid #0095db;
	border-radius: 36px;
	padding: 32px 18px 18px;
	box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

.sm-sidebar-mais-lidas__title {
	position: absolute;
	top: -18px;
	left: 24px;
	display: inline-block;
	background: #f7b500;
	color: #fff;
	font-size: 20px;
	font-weight: 800;
	line-height: 1;
	padding: 10px 14px;
	border-radius: 20px;
	margin: 0;
}

.sm-sidebar-mais-lidas__item {
	display: grid;
	grid-template-columns: 100px 1fr;
	gap: 12px;
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px solid var(--blog-border);
	text-decoration: none;
}

.sm-sidebar-mais-lidas__item:last-child {
	border-bottom: none;
}

.sm-sidebar-mais-lidas__item img {
	width: 100px;
	height: 72px;
	object-fit: cover;
	border-radius: 8px;
	display: block;
}

.sm-sidebar-mais-lidas__item-title {
	margin: 0 0 2px;
	color: #222;
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
}
.sm-sidebar-mais-lidas__date {
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	color: #9CA3AF;
}
.sm-sidebar-mais-lidas__text {
	min-width: 0;
}

.sm-sidebar-mais-lidas__item:hover .sm-sidebar-mais-lidas__item-title {
	color: var(--sm-blue);
}

/* ==========================================================================
   Produto (single-produto.php) — CSS idêntico ao modelo Elementor 5853
   ========================================================================== */
.sm-product {
	width: 100%;
}

body.single-produto {
	margin: 0;
	padding: 0;
}

/* compatibilidade — oculta legenda de imagem wp-caption dentro do conteúdo */
.conteudo-post .widget-image-caption.wp-caption-text {
	display: none;
}

/* --------------------------------------------------------------------------
   Hero (container 05f6d34)
   bg #027631, wave como ::before, radius 0 0 20px 20px, shadow
   -------------------------------------------------------------------------- */
.sm-product__hero {
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin-top: -50px;
	margin-bottom: 0;
	margin-left: 0;
	margin-right: 0;
	border-radius: 0 0 20px 20px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	overflow: hidden;
	padding: 0;
}

/* Wave overlay — idêntico ao elemento ::before do container da referência     */
/* Aplica-se como ::before com background-image da imagem ACF de onda.          */
/* O template seta --sm-hero-wave-url inline para a imagem cadastrada.          */
.sm-product__hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: var(--sm-hero-wave-url);
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: 55% auto;
	filter: brightness(100%) contrast(100%) saturate(100%) blur(0) hue-rotate(0deg);
	pointer-events: none;
	z-index: 0;
}

.sm-product__hero-inner {
	max-width: 1369px;
	width: 100%;
	margin: 0 auto;
	padding: 0;
	position: relative;
	z-index: 1;
}

.sm-product__hero-row {
	display: flex;
	flex-wrap: wrap;
}

/* Coluna da esquerda — imagem do personagem (--width: 44.444%) */
.sm-product__hero-media {
	width: 44.444%;
	flex: 0 0 auto;
	margin-top: 110px;
	padding: 0;
	line-height: 0;
}

.sm-product__hero-media .jet-listing-dynamic-image {
	justify-content: flex-start;
}

.sm-product__hero-media img {
	width: 100%;
	height: auto;
	display: block;
}

/* Coluna da direita — título + subtítulo (--width: 55.555%, padding-left: 200px) */
.sm-product__hero-copy {
	width: 55.555%;
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	padding-left: 200px;
	padding-right: 0;
	padding-top: 0;
	padding-bottom: 0;
	color: #fff;
}

.sm-product__hero-title {
	margin: 0;
	color: #ffffff;
	font-family: "Work Sans", "Poppins", "Roboto", sans-serif;
	font-size: 48px;
	font-weight: 700;
	line-height: 1.1;
	text-align: center;
}

.sm-product__hero-subtitle {
	margin: 0;
	color: #ffffff;
	font-family: "Work Sans", "Poppins", "Roboto", sans-serif;
	font-size: 22px;
	font-weight: 400;
	line-height: 1.5;
	text-align: center;
}

.sm-product__hero-subtitle p {
	margin: 0;
}

/* --------------------------------------------------------------------------
   Corpo do produto (container abc3ee6)
   2 colunas 33.33% / 66.66%, gap 20px, padding 30px 0
   -------------------------------------------------------------------------- */
.sm-product__body {
	max-width: 1369px;
	margin: 0 auto;
	padding: 30px 0;
	box-sizing: border-box;
}

.sm-product__body-row {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.sm-product__body-media {
	width: 33.3333%;
	flex: 0 0 auto;
	min-width: 0;
	display: flex;
	justify-content: center;
}

.sm-product__body-media img {
	max-height: 300px;
	max-width: 300px;
	width: 100%;
	height: auto;
	object-fit: contain;
	border-radius: 12px;
	box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5);
	display: block;
}

.sm-product__body-copy {
	width: 66.6666%;
	flex: 0 0 auto;
	min-width: 0;
	color: #212121;
}

/* Conteudo-post (corpo do produto e post único compartilham) */
.conteudo-post {
	max-width: 760px;
}

.conteudo-post p {
	font-size: 16px;
	line-height: 1.7;
	color: var(--blog-text);
	margin: 0 0 18px;
	font-family: "Inter", "Segoe UI", sans-serif;
}

.conteudo-post strong {
	color: #2a2a2a;
}

.conteudo-post h5 {
	font-size: 17px;
	font-weight: 600;
	color: #2a2a2a;
	margin: 16px 0 12px;
}

.conteudo-post h2,
.conteudo-post h3,
.conteudo-post h4 {
	color: var(--blog-accent);
	font-family: "Poppins", "Roboto", sans-serif;
	line-height: 1.5;
	margin: 24px 0 12px;
}

.conteudo-post h2 {
	font-size: 18px;
	font-weight: 700;
}

.conteudo-post figure {
	position: relative;
	display: block;
	margin: 32px 0 24px;
	border: 4px solid #0095e5;
	border-radius: 16px;
	line-height: 0;
	overflow: visible;
}

.conteudo-post figure::before {
	content: "";
	position: absolute;
	top: -10px;
	left: 20px;
	width: 38px;
	height: 14px;
	background: #e8006a;
	border-radius: 20px;
	z-index: 2;
}

.conteudo-post img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 12px;
	object-fit: cover;
	box-shadow: none;
}

.conteudo-post figcaption {
	font-size: 13px;
	line-height: 1.4;
	color: var(--blog-muted);
	margin-top: 8px;
	padding: 0 4px;
}

.conteudo-post iframe.instagram-media {
	margin: 24px auto;
	border-radius: var(--blog-radius);
	overflow: hidden;
}

/* banner-destaque-post (usado no corpo do produto) */
.banner-destaque-post img {
	max-height: 300px !important;
	max-width: 300px !important;
	object-fit: contain !important;
	border-radius: var(--blog-radius);
	box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16);
}

/* Override: imagem de destaque no single post ocupa 100% */
.sm-single__featured.banner-destaque-post img {
	max-width: 100% !important;
	max-height: none !important;
	object-fit: cover !important;
}

/* --------------------------------------------------------------------------
   Benefícios do produto (container 2af65d0)
   3 cards eael-infobox com ícone circular flutuante (#027631)
   -------------------------------------------------------------------------- */
.sm-product__benefits {
	background: #fff;
	padding: 80px 0 40px;
}

.sm-product__benefits-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	max-width: 1369px;
	margin: 0 auto;
	padding: 0 clamp(16px, 8%, 80px);
	box-sizing: border-box;
}

.sm-benefit-card {
	position: relative;
	text-align: center;
	background: #F7F9FC;
	border: 1px solid #0095DB;
	border-radius: 20px;
	padding: 50px 24px 32px;
	margin-top: 50px;
	transition: box-shadow .3s, transform .3s;
}

.sm-benefit-card:hover {
	box-shadow: 0 8px 30px rgba(0,0,0,.08);
	transform: translateY(-2px);
}

.sm-benefit-card__icon {
	width: 80px;
	height: 80px;
	margin: -90px auto 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #027631;
	color: #fff;
	font-size: 32px;
	flex-shrink: 0;
	overflow: hidden;
}

.sm-benefit-card__icon svg {
	width: 40px;
	height: 40px;
	color: #fff;
	fill: #fff;
}

.sm-benefit-card__icon i {
	font-size: 32px;
	color: #fff;
}

.sm-benefit-card__content-area {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding-top: 24px;
}

.sm-benefit-card__title {
	margin: 0;
	font-family: 'Poppins', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #181A2A;
	line-height: 1.3;
}

.sm-benefit-card__text {
	margin: 0;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: #5A5A5A;
	line-height: 1.65;
}

@media (max-width: 1024px) {
	.sm-product__benefits-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}

@media (max-width: 767px) {
	.sm-product__benefits { padding: 60px 0 20px; }
	.sm-product__benefits-grid { grid-template-columns: 1fr; gap: 70px; }
	.sm-benefit-card { margin-top: 50px; }
	.sm-benefit-card__icon { width: 72px; height: 72px; margin-top: -86px; }
	.sm-benefit-card__icon svg { width: 36px; height: 36px; }
	.sm-benefit-card__icon i { font-size: 30px; }
}

/* --------------------------------------------------------------------------
   Metodologia (container be9f747)
   título #027631, imagem centralizada max-height 450px
   -------------------------------------------------------------------------- */
.sm-product__metodologia {
	max-width: 1369px;
	margin: 0 auto;
	padding: 40px 0;
	box-sizing: border-box;
	text-align: center;
}

.sm-product__metodologia-title {
	margin: 0 0 8px;
	color: #027631;
	font-family: "Work Sans", "Poppins", "Roboto", sans-serif;
	font-size: 28px;
	font-weight: 800;
	text-transform: uppercase;
}

.sm-product__metodologia-sub {
	margin: 0 0 20px;
	color: var(--blog-muted);
	font-family: "Inter", sans-serif;
	font-size: 16px;
}

.sm-product__metodologia img {
	max-height: 450px;
	max-width: max-content;
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: block;
}

.content-destaque-image {
	text-align: center;
}

.content-destaque-image img {
	max-height: 450px !important;
	max-width: max-content !important;
}

/* --------------------------------------------------------------------------
   Vídeo / CTA (container 6d62390)
   bg #ECECEC, padding 12%/13%, video border 4px #32A5DE radius 36px,
   banner amarelo #FDC500 radius 36px margin-top -35px z-index 1
   -------------------------------------------------------------------------- */
.sm-product__cta {
	background: #ececec;
}

.sm-product__cta-inner {
	max-width: 1369px;
	margin: 0 auto;
	padding: 12% 0 13%;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.sm-product__cta-row {
	display: flex;
	flex-direction: row;
	justify-content: center;
	width: 100%;
	padding: 0;
}

.sm-product__cta-video {
	width: 80%;
	border: 4px solid #32a5de;
	border-radius: 36px;
	overflow: hidden;
	background: #000;
	line-height: 0;
}

.sm-product__cta-video iframe,
.sm-product__cta-video .sm-video-embed {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	border: 0;
}

.sm-product__cta-banner {
	width: 90%;
	margin: -35px 0 0;
	background: #fdc500;
	border-radius: 36px;
	padding: 20px;
	text-align: center;
	color: #181a2a;
	z-index: 1;
	position: relative;
}

.sm-product__cta-banner-content {
	text-align: center;
}

.sm-product__cta-banner-content h2,
.sm-product__cta-banner-content p {
	font-family: "Work Sans", "Poppins", "Roboto", sans-serif;
	font-size: 24px;
	font-weight: 400;
	line-height: 28px;
	letter-spacing: -1.2px;
	color: #181a2a;
	margin: 0;
}

/* --------------------------------------------------------------------------
   Responsivo — produto
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
	.sm-product__hero-copy {
		padding-left: 80px;
	}
	.sm-product__hero-title {
		font-size: 38px;
	}
	.sm-archive__feature,
	.sm-archive__listing {
		flex: 1 1 100%;
	}
	.sm-single__content,
	.sm-single__sidebar {
		flex: 1 1 100%;
	}
	.sm-single__sidebar {
		margin-top: 40px;
	}
}

@media (max-width: 767px) {
	.sm-product__hero-row {
		flex-direction: column;
		align-items: center;
	}
	.sm-product__hero::before {
		background-position: bottom left;
		background-size: cover;
	}
	.sm-product__hero-media {
		order: 99999;
		width: 100%;
		margin-top: 50px;
		padding: 0 20px;
		box-sizing: border-box;
	}
	.sm-product__hero-copy {
		width: 100%;
		padding: 80px 20px 0;
		box-sizing: border-box;
	}
	.sm-product__hero-title {
		font-size: 36px;
		line-height: 32px;
	}
	.sm-product__hero-subtitle {
		font-size: 18px;
	}
	.sm-product__body {
		padding: 30px 20px;
	}
	.sm-product__body-row {
		flex-direction: column;
	}
	.sm-product__body-media {
		width: 100%;
	}
	.sm-product__body-copy {
		width: 100%;
	}
	.sm-product__benefits-inner {
		padding: 70px 20px 30px;
	}
	.sm-product__benefits-grid {
		grid-template-columns: 1fr;
		gap: 80px;
	}
	.sm-product__metodologia {
		padding: 40px 20px;
	}
	.content-destaque-image img {
		max-width: stretch !important;
	}
	.sm-product__cta-inner {
		padding: 5% 0;
	}
	.sm-product__cta-row {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		padding: 20px;
		box-sizing: border-box;
	}
	.sm-product__cta-video {
		width: 100%;
		max-width: 100%;
	}
	.sm-product__cta-banner-content h2,
	.sm-product__cta-banner-content p {
		font-size: 17px;
		line-height: 1.4;
	}
	.sm-list-card {
		grid-template-columns: 80px 1fr;
	}
	.sm-list-card__media img {
		width: 80px;
		height: 60px;
	}
}

/* ==========================================================================
   Widget Elementor: Grade de Posts (sm-blog-grid)
   ========================================================================== */
.sm-blog-grid {
	--sm-grid-columns: 3;
	display: grid;
	grid-template-columns: repeat(var(--sm-grid-columns), 1fr);
	gap: 20px;
	width: 100%;
}

.sm-blog-grid__card {
	display: flex;
	flex-direction: column;
	background-color: #ffffff;
	border-radius: 16px;
	padding: 24px;
	box-shadow: 0 8px 24px rgba(2, 118, 53, 0.08);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	box-sizing: border-box;
}

.sm-blog-grid__card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 36px rgba(2, 118, 53, 0.16);
}

.sm-blog-grid__link {
	text-decoration: none;
}

.sm-blog-grid__thumbnail {
	height: 190px;
	overflow: hidden;
	border-radius: 12px;
	background-color: #eef7f1;
	margin: -24px -24px 18px;
}

.sm-blog-grid__thumbnail img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sm-blog-grid__thumbnail--placeholder {
	position: relative;
	background: linear-gradient(135deg, #027635, #0ea65a);
}

.sm-blog-grid__terms {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 8px;
}

.sm-blog-grid__terms a {
	font-family: 'Roboto', sans-serif;
	font-size: 13px;
	text-decoration: none;
	color: #9ca3af;
}

.sm-blog-grid__terms a:hover {
	color: #027635;
}

.sm-blog-grid__title {
	margin: 0 0 12px;
	font-family: 'Nunito', 'Roboto', sans-serif;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
	color: #1f2937;
	transition: color 0.25s ease;
}

.sm-blog-grid__link:hover .sm-blog-grid__title {
	color: #027635;
}

.sm-blog-grid__excerpt {
	margin: 0;
	color: #6b7280;
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	line-height: 1.6;
}

.sm-blog-grid__readmore {
	margin-left: 4px;
	color: #027635;
	font-weight: 700;
	text-decoration: none;
	transition: color 0.25s ease;
}

.sm-blog-grid__readmore:hover {
	color: #ea6f31;
}

/* Widget Elementor: Hero do Produto compartilha classes com o template */
/* (sm-product__hero, sm-product__hero-wave, etc. — já definidas).      */

/* Widget Elementor: Benefícios do Produto compartilha classes com o template */
/* (sm-product__benefits, sm-product__benefits-grid, sm-benefit-card).   */

/* ==========================================================================
   Widget Elementor: Grade de Soluções (sm-solutions)
   ========================================================================== */
.sm-solutions {
	width: 100%;
}

.sm-solutions__grid {
	--sm-solutions-cols: 5;
	display: grid;
	grid-template-columns: repeat(var(--sm-solutions-cols), 1fr);
	width: 100%;
}

.sm-solutions__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	text-align: center;
	padding: 32px 16px;
	text-decoration: none;
	border-right: 1px solid #e8ecf1;
	border-bottom: 1px solid #e8ecf1;
	position: relative;
	transition: background 0.3s ease, transform 0.2s ease;
}

.sm-solutions__card:hover {
	background: #f8fafd;
	transform: translateY(-2px);
}

.sm-solutions__card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--sm-card-accent, #027631);
}

.sm-solutions__icon {
	margin-bottom: 12px;
	color: var(--sm-card-accent, #027631);
	display: flex;
	align-items: center;
	justify-content: center;
}

.sm-solutions__icon svg {
	width: 48px;
	height: 48px;
}

.sm-solutions__title {
	margin: 0 0 4px;
	font-family: 'Poppins', 'Roboto', sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: #022873;
	line-height: 1.3;
}

.sm-solutions__subtitle {
	margin: 0 0 6px;
	font-family: 'Roboto', sans-serif;
	font-size: 12px;
	color: #64748b;
	line-height: 1.4;
}

.sm-solutions__desc {
	margin: 0;
	font-family: 'Roboto', sans-serif;
	font-size: 12px;
	color: #94a3b8;
	line-height: 1.5;
}

@media (max-width: 1024px) {
	.sm-solutions__grid {
		--sm-solutions-cols: 3;
	}
}

@media (max-width: 767px) {
	.sm-solutions__grid {
		--sm-solutions-cols: 2;
	}

	.sm-solutions__card {
		padding: 20px 10px;
	}
}

@media (max-width: 480px) {
	.sm-solutions__grid {
		--sm-solutions-cols: 1;
	}
}

/* ==========================================================================
   Base e-flexbox containers — alinhamento e max-width
   (seções da home que usam e-flexbox como container wrapper)
   ========================================================================== */
.e-flexbox.e-parent,
.elementor .e-flexbox.e-parent {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.e-flexbox.e-parent > .e-flexbox {
	max-width: 1389px;
	margin: 0 auto;
	padding: 60px 8%;
	box-sizing: border-box;
	width: 100%;
}

/* Seções da home — padding vertical generoso */
.e-flexbox.e-parent > .e-flexbox > .e-flexbox,
.sm-solutions,
.sm-testimonials-section,
.sm-blog-section {
	padding-top: 40px;
	padding-bottom: 40px;
}

/* ==========================================================================
   Homepage specific — garantia de que sections não colapsam
   ========================================================================== */
.sm-solutions-section .sm-solutions__grid {
	max-width: 1389px;
	margin: 0 auto;
	padding: 0 8%;
	box-sizing: border-box;
}
@media (max-width: 1024px) {
	.sm-blog-grid {
		--sm-grid-columns: 2;
	}
}

@media (max-width: 767px) {
	.sm-blog-grid {
		--sm-grid-columns: 1;
	}

	.sm-blog-grid__card {
		padding: 18px;
	}
}

/* ==========================================================================
   Bloco amarelo compromisso — e-flexbox 029c52d
   Fundo #FDC500, centralizado, com padding responsivo
   ========================================================================== */
.elementor-element-029c52d {
	background-color: #FDC500 !important;
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 24px !important;
	padding: 4% 8% !important;
	box-sizing: border-box !important;
	width: 100% !important;
}

.elementor-element-029c52d .elementor-icon {
	font-size: 50px;
	color: #32A5DE;
}

.elementor-element-029c52d .elementor-icon svg {
	width: 82px;
	height: auto;
}

.elementor-element-029c52d .elementor-heading-title {
	font-family: 'Inter', 'Work Sans', sans-serif !important;
	font-size: clamp(22px, 3vw, 55px) !important;
	font-weight: 600 !important;
	line-height: 1.3 !important;
	color: #1a1a2e !important;
	max-width: 900px !important;
	margin: 0 auto !important;
}

.elementor-element-029c52d .elementor-button {
	background-color: #05498C !important;
	color: #ffffff !important;
	border-radius: 30px !important;
	padding: 14px 36px !important;
	font-family: 'Roboto', sans-serif !important;
	font-size: 15px !important;
	font-weight: 600 !important;
	transition: background 0.3s ease !important;
}

.elementor-element-029c52d .elementor-button:hover {
	background-color: #32A5DE !important;
}

@media (max-width: 767px) {
	.elementor-element-029c52d {
		padding: 25% 20px !important;
		gap: 16px !important;
	}
	.elementor-element-029c52d .elementor-heading-title {
		font-size: 27px !important;
		line-height: 30px !important;
	}
	.elementor-element-029c52d .elementor-icon svg {
		width: 56px;
	}
	.elementor-element-029c52d .elementor-button {
		padding: 12px 28px !important;
		font-size: 14px !important;
	}
}

/* ==========================================================================
   Seção Vídeo + Transformação — e-flexbox cd40535
   bg white, padding 12%/13%, tipografia Work Sans fiel à referência
   ========================================================================== */
.elementor-element-cd40535 {
	background-color: #FFFFFF !important;
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	gap: 10px !important;
	padding: 12% 0% 13% 0% !important;
	box-sizing: border-box !important;
	width: 100% !important;
}

.elementor-element-cd40535 .elementor-icon {
	color: #C4CDEF !important;
	font-size: 208px !important;
}

.elementor-element-cd40535 .elementor-icon svg {
	width: 208px !important;
	height: 208px !important;
	fill: #C4CDEF !important;
}

.elementor-element-cd4_hdg .elementor-heading-title {
	font-family: 'Work Sans', sans-serif !important;
	font-size: 24px !important;
	font-weight: 600 !important;
	color: #181A2A !important;
	text-align: center !important;
	line-height: 1.2 !important;
}

.elementor-element-cd4_dsc .elementor-heading-title {
	font-family: 'Work Sans', sans-serif !important;
	font-size: 24px !important;
	font-weight: 500 !important;
	color: #181A2A !important;
	text-align: center !important;
	line-height: 1.2 !important;
}

@media (max-width: 767px) {
	.elementor-element-cd40535 {
		padding: 25% 0% 25% 0% !important;
	}
	.elementor-element-cd40535 .elementor-icon {
		font-size: 79px !important;
	}
	.elementor-element-cd40535 .elementor-icon svg {
		width: 79px !important;
		height: 79px !important;
	}
	.elementor-element-cd4_hdg .elementor-heading-title {
		font-size: 19px !important;
	}
	.elementor-element-cd4_dsc .elementor-heading-title {
		font-size: 27px !important;
		line-height: 27px !important;
	}
}

/* ==========================================================================
   Seção Depoimentos — e-flexbox 481fc73
   bg #32A5DE, heading Inter 37px branco, padding 80px
   ========================================================================== */
.elementor-element-481fc73 {
	background-color: #32A5DE !important;
	padding: 80px 0 !important;
}

.elementor-element-481fc73 .elementor-element-481_txt .elementor-heading-title,
.elementor-element-481fc73 .elementor-heading-title {
	font-family: 'Inter', sans-serif !important;
	font-size: 37px !important;
	font-weight: 600 !important;
	color: #FFFFFF !important;
	text-align: center !important;
	line-height: 1.2 !important;
}

@media (max-width: 767px) {
	.elementor-element-481fc73 {
		padding: 80px 10px !important;
	}
	.elementor-element-481fc73 .elementor-heading-title {
		font-size: 25px !important;
		line-height: 27px !important;
	}
}

/* Product Banner */
.sm-product-banner{position:relative;overflow:hidden;width:100%;display:flex;align-items:center;min-height:575px;}
.sm-product-banner__overlay{position:absolute;inset:0;z-index:0;pointer-events:none;}
.sm-product-banner__wave{position:absolute;bottom:-2px;left:0;width:100%;height:120px;pointer-events:none;z-index:1;object-fit:cover;object-position:bottom;}
.sm-product-banner__inner{position:relative;z-index:2;width:100%;max-width:1369px;margin:0 auto;padding:0 clamp(16px,8%,80px);box-sizing:border-box;}
.sm-product-banner__row{display:flex;align-items:center;gap:40px;min-height:575px;}
.sm-product-banner__row--rev{flex-direction:row-reverse;}
.sm-product-banner__content{flex:1;min-width:0;display:flex;flex-direction:column;justify-content:center;padding:40px 0;}
.sm-product-banner__title{margin:0;font-family:Poppins,sans-serif;font-size:clamp(32px,5vw,56px);font-weight:700;line-height:1.1;color:#fff;}
.sm-product-banner__subtitle{margin:8px 0 12px;font-family:Poppins,sans-serif;font-size:clamp(20px,3vw,32px);font-weight:600;line-height:1.3;color:#fff;}
.sm-product-banner__desc{margin:0;font-family:Inter,sans-serif;font-size:clamp(14px,2vw,17px);line-height:1.6;color:rgba(255,255,255,.9);}
.sm-product-banner__media{flex:0 0 auto;max-width:45%;display:flex;align-items:center;justify-content:center;position:relative;}
.sm-product-banner__media-bg{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:350px;height:350px;border-radius:50%;background:rgba(255,255,255,.15);pointer-events:none;z-index:0;}
.sm-product-banner__media img{position:relative;z-index:1;max-width:100%;max-height:500px;width:auto;height:auto;display:block;filter:drop-shadow(0 10px 30px rgba(0,0,0,.25));}
@media(max-width:1024px){.sm-product-banner{min-height:450px;}.sm-product-banner__row{min-height:450px;gap:20px;}.sm-product-banner__media{max-width:38%;}.sm-product-banner__media-bg{width:280px;height:280px;}}
@media(max-width:767px){.sm-product-banner{min-height:auto;padding:40px 0;}.sm-product-banner__row{min-height:auto;flex-direction:column!important;text-align:center;gap:24px;}.sm-product-banner__content{padding:20px 0;}.sm-product-banner__media{max-width:75%;margin:0 auto;}.sm-product-banner__media img{max-height:300px;}.sm-product-banner__title{font-size:clamp(24px,9vw,40px);}.sm-product-banner__subtitle{font-size:clamp(16px,5vw,24px);}.sm-product-banner__media-bg{width:220px;height:220px;}.sm-product-banner__wave--hide-mobile{display:none;}}


/* Product Video */
.sm-prod-video{width:100%;}
.sm-prod-video__inner{max-width:1369px;margin:0 auto;padding:0 clamp(16px,8%,80px);box-sizing:border-box;}
.sm-prod-video__row{display:flex;flex-direction:row;align-items:center;gap:30px;}
.sm-prod-video__media{width:100%;max-width:800px;flex-shrink:0;}
.sm-prod-video__media-inner{position:relative;overflow:hidden;border:4px solid #32A5DE;border-radius:36px;aspect-ratio:16/9;cursor:pointer;}
.sm-prod-video__cover{width:100%;height:100%;object-fit:cover;display:block;}
.sm-prod-video__play{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;background:rgba(0,0,0,.3);transition:background .3s;}
.sm-prod-video__media-inner:hover .sm-prod-video__play{background:rgba(0,0,0,.5);}
.sm-prod-video__play svg{filter:drop-shadow(0 2px 8px rgba(0,0,0,.3));transition:transform .3s;}
.sm-prod-video__media-inner:hover .sm-prod-video__play svg{transform:scale(1.15);}
.sm-prod-video__content{position:relative;z-index:2;width:100%;max-width:680px;margin-top:-40px;background:#FEEA7A;border-radius:12px;padding:25px 30px;min-height:100px;box-sizing:border-box;box-shadow:0 8px 32px rgba(0,0,0,.1);}
.sm-prod-video__title{margin:0 0 8px;font-family:Poppins,sans-serif;font-size:20px;font-weight:700;color:#181A2A;}
.sm-prod-video__text{font-family:Inter,sans-serif;font-size:15px;line-height:1.6;color:#374151;}

/* Modal */
.sm-video-modal{display:none;position:fixed;inset:0;z-index:9999;background:rgba(0,0,0,.85);align-items:center;justify-content:center;}
.sm-video-modal.is-open{display:flex;}
.sm-video-modal__inner{position:relative;width:90%;max-width:900px;aspect-ratio:16/9;}
.sm-video-modal__inner iframe{width:100%;height:100%;border:none;border-radius:12px;}
.sm-video-modal__close{position:absolute;top:-40px;right:0;background:none;border:none;color:#fff;font-size:32px;cursor:pointer;}

@media(max-width:767px){.sm-prod-video__row{flex-direction:column;}.sm-prod-video__media,.sm-prod-video__content{max-width:100%;}.sm-prod-video__content{margin-top:-30px;padding:20px 16px;}}

