/* =====================================================================
   styles.css — Elite 1136 Barbearia
   ===================================================================== */

/* ---------------------------------------------------------------------
   Fundo contínuo: preto + gradiente radial fixo (Design System §3)
   --------------------------------------------------------------------- */
body {
	background-color: var(--wt-bg);
	background-image: radial-gradient(circle at bottom center, #2A2A2A 0%, #000000 70%);
	background-attachment: fixed;
	background-repeat: no-repeat;
	overflow-x: hidden;
}

.wt-container {
	width: 100%;
	max-width: var(--wt-maxw);
	margin-inline: auto;
	padding-inline: var(--wt-gutter);
}

.wt-hero, .wt-section, .wt-footer { width: 100%; }

.wt-section { padding-block: var(--wt-section-pad); }

.wt-section__head { max-width: 760px; margin: 0 auto clamp(44px, 5.5vw, 72px); text-align: center; }
.wt-section__head .wt-label { display: block; margin-bottom: 24px; }
.wt-section__head h2 { margin-bottom: 26px; }
.wt-section__lead { margin: 0 auto; }

/* Divisória prateada sob os títulos de seção */
.wt-section__head h2::after {
	content: "";
	display: block;
	width: 64px;
	height: 2px;
	margin: 18px auto 0;
	background: var(--wt-silver-gradient);
	border-radius: 2px;
}

/* ---------------------------------------------------------------------
   Botões
   --------------------------------------------------------------------- */
.wt-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 28px;
	border-radius: 999px;
	font-family: var(--wt-font);
	font-weight: 500;
	font-size: 0.98rem;
	letter-spacing: 0.01em;
	line-height: 1;
	cursor: pointer;
	border: 1px solid transparent;
	transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
	white-space: nowrap;
}
.wt-btn:hover { transform: translateY(-2px); }
.wt-btn--lg { padding: 18px 40px; font-size: 1.05rem; }

.wt-btn--primary {
	background: var(--wt-white);
	color: var(--wt-black);
	box-shadow: 0 8px 24px rgba(255,255,255,.12);
}
.wt-btn--primary:hover { box-shadow: 0 12px 30px rgba(255,255,255,.22); }

.wt-btn--outline {
	background: transparent;
	color: var(--wt-white);
	border-color: var(--wt-silver-3);
}
.wt-btn--outline:hover { border-color: var(--wt-white); background: rgba(255,255,255,.06); }

.wt-btn--silver {
	background: var(--wt-silver-gradient);
	color: var(--wt-black);
	font-weight: 500;
}
.wt-btn--silver:hover { box-shadow: 0 10px 26px rgba(184,184,184,.28); }

/* ---------------------------------------------------------------------
   Hero
   --------------------------------------------------------------------- */
.wt-hero {
	position: relative;
	min-height: 100vh;
	min-height: 100svh;
	display: flex;
	align-items: center;
	overflow: hidden;
}
.wt-hero__bg { position: absolute; inset: 0; z-index: 0; }
.wt-hero__slide {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 1.2s ease;
}
.wt-hero__slide.is-active { opacity: 1; }
.wt-hero__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.65) 40%, rgba(0,0,0,.92) 100%),
		radial-gradient(circle at 30% 40%, rgba(0,0,0,.25), rgba(0,0,0,.8));
}
.wt-hero__inner {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 880px;
	padding-block: 72px;
}
.wt-hero__logo { width: clamp(112px, 15vw, 160px); height: auto; margin: 0 auto 28px; }
.wt-hero__subtitle { margin-bottom: 18px; }
.wt-hero__title { margin-bottom: 22px; }
.wt-hero__desc { color: var(--wt-text); font-size: clamp(1.22rem, 2.2vw, 1.55rem); line-height: 1.5; max-width: 740px; margin-inline: auto; text-align: justify; text-align-last: center; }
.wt-hero__loc { color: var(--wt-light); font-weight: 500; margin-top: 10px; }
.wt-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 34px; }

/* ---------------------------------------------------------------------
   Depoimentos
   --------------------------------------------------------------------- */
.wt-reviews__widget { width: 100%; }
.wt-reviews__cta { text-align: center; margin-top: 8px; }

/* ---------------------------------------------------------------------
   Vem Conhecer
   --------------------------------------------------------------------- */
.wt-vc__grid {
	display: grid;
	grid-template-columns: minmax(260px, 330px) minmax(0, 460px);
	justify-content: center;
	gap: clamp(20px, 2.5vw, 44px);
	align-items: center;
}
.wt-vc__pre { display: block; margin-bottom: 12px; }
.wt-vc__title { margin-bottom: 18px; }
.wt-vc__text { max-width: 460px; }
.wt-vc__text p { text-align: justify; }
.wt-vc__text .wt-btn { margin-top: 18px; }
.wt-vc__media { display: flex; justify-content: center; }
.wt-vc__media .wt-video-btn { width: min(330px, 100%); }
/* Após o play, o iframe substitui o botão: manter o mesmo tamanho do thumbnail */
.wt-vc__media > div { width: min(330px, 100%); max-width: 330px; margin-inline: auto; }

/* ---------------------------------------------------------------------
   Vídeos — facade pattern
   --------------------------------------------------------------------- */
.wt-video-btn {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	border: 1px solid rgba(255,255,255,.1);
	border-radius: var(--wt-radius);
	overflow: hidden;
	cursor: pointer;
	background: var(--wt-bg-card);
}
.wt-video-btn--vertical { aspect-ratio: 9/16; max-width: 340px; }
.wt-video-btn img { width: 100%; height: 100%; object-fit: cover; }
.wt-video-btn__play {
	position: absolute;
	inset: 0;
	margin: auto;
	width: 68px;
	height: 68px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--wt-black);
	background: var(--wt-silver-gradient);
	border-radius: 50%;
	box-shadow: 0 6px 20px rgba(0,0,0,.45);
	transition: transform .2s ease;
}
.wt-video-btn:hover .wt-video-btn__play { transform: scale(1.08); }

/* ---------------------------------------------------------------------
   Planos
   --------------------------------------------------------------------- */
.wt-planos .wt-section__lead { max-width: 510px; }
.wt-planos__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 18px;
	align-items: stretch;
}
.wt-plano-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--wt-bg-card);
	border-radius: var(--wt-radius);
	padding: 30px 22px;
	border: 1px solid transparent;
	/* borda em gradiente prata suave (baixa opacidade) */
	background-image:
		linear-gradient(var(--wt-bg-card), var(--wt-bg-card)),
		linear-gradient(135deg, rgba(232,232,232,.38) 0%, rgba(184,184,184,.18) 50%, rgba(138,138,138,.30) 100%);
	background-origin: border-box;
	background-clip: padding-box, border-box;
}
.wt-plano-card.is-featured {
	transform: translateY(-8px);
	box-shadow: 0 16px 44px rgba(0,0,0,.55);
	/* Cores invertidas: card claro sobre fundo escuro */
	background: linear-gradient(160deg, #F1F1F1 0%, #CFCFCF 100%);
	border: 1px solid transparent;
}
.wt-plano-card.is-featured .wt-plano-card__name,
.wt-plano-card.is-featured .wt-plano-card__price { color: #0A0A0A; }
.wt-plano-card.is-featured .wt-plano-card__currency { color: #2A2A2A; }
.wt-plano-card.is-featured .wt-plano-card__service,
.wt-plano-card.is-featured .wt-plano-card__period { color: #4A4A4A; }
.wt-plano-card.is-featured .wt-plano-card__list li { color: #1A1A1A; }
.wt-plano-card.is-featured .wt-plano-card__list svg { color: #0A0A0A; }
.wt-plano-card.is-featured .wt-plano-card__badge { background: var(--wt-black); color: var(--wt-white); }
.wt-plano-card.is-featured .wt-plano-card__cta {
	background: var(--wt-black);
	color: var(--wt-white);
	box-shadow: none;
}
.wt-plano-card.is-featured .wt-plano-card__cta:hover { box-shadow: 0 8px 22px rgba(0,0,0,.35); }
.wt-plano-card__badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--wt-white);
	color: var(--wt-black);
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 6px 14px;
	border-radius: 999px;
	white-space: nowrap;
}
.wt-plano-card__name { color: var(--wt-white); margin-bottom: 4px; font-weight: 700; font-size: 1.15rem; }
.wt-plano-card__service { color: var(--wt-text-muted); font-size: 0.86rem; min-height: 2.6em; margin-bottom: 14px; }
.wt-plano-card__price {
	color: var(--wt-white);
	font-weight: 700;
	font-size: 2rem;
	line-height: 1;
	margin-bottom: 22px;
	display: flex;
	align-items: baseline;
	gap: 4px;
	flex-wrap: wrap;
}
.wt-plano-card__currency { font-size: 0.95rem; font-weight: 500; color: var(--wt-light); }
.wt-plano-card__period { font-size: 0.85rem; font-weight: 400; color: var(--wt-text-muted); }
.wt-plano-card__list { list-style: none; margin: 0 0 26px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.wt-plano-card__list li { display: flex; gap: 10px; align-items: flex-start; color: var(--wt-text); font-size: 0.88rem; line-height: 1.4; }
.wt-plano-card__list svg { color: var(--wt-silver-1); flex-shrink: 0; margin-top: 2px; }
.wt-plano-card__cta { margin-top: auto; width: 100%; }

/* ---------------------------------------------------------------------
   Como Funciona
   --------------------------------------------------------------------- */
.wt-como__inner { max-width: 820px; margin-inline: auto; text-align: center; }
.wt-como__text { color: var(--wt-text); }
.wt-como__text p { text-align: justify; text-align-last: center; }
.wt-como__cta { margin: 36px 0 48px; }
.wt-como__avulso {
	border-top: 1px solid rgba(255,255,255,.1);
	padding-top: 34px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}
.wt-como__avulso p { color: var(--wt-light); font-weight: 500; margin: 0; }

/* ---------------------------------------------------------------------
   Portfólio — carrossel infinito + vídeos
   --------------------------------------------------------------------- */
.wt-marquee {
	width: 100%;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
	margin-bottom: clamp(40px, 6vw, 64px);
}
.wt-marquee__track {
	display: flex;
	width: max-content;
	animation: wt-marquee 110s linear infinite;
}
.wt-marquee__item {
	flex: 0 0 auto;
	width: clamp(220px, 24vw, 320px);
	height: 420px;
	margin-right: 16px;
	border-radius: var(--wt-radius);
	overflow: hidden;
}
.wt-marquee__item img { width: 100%; height: 100%; object-fit: cover; }
@keyframes wt-marquee {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
	.wt-marquee__track { animation: none; }
}

.wt-portfolio__videos {
	display: flex;
	justify-content: center;
	gap: 24px;
	flex-wrap: wrap;
}
.wt-portfolio__videos .wt-video-btn { flex: 0 0 auto; }

/* ---------------------------------------------------------------------
   Rodapé
   --------------------------------------------------------------------- */
.wt-footer { padding-top: clamp(56px, 7vw, 88px); border-top: 1px solid rgba(255,255,255,.08); }
.wt-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 0.8fr;
	gap: 40px;
	padding-bottom: 48px;
}
.wt-footer__brand img { width: 180px; height: auto; margin-bottom: 18px; }
.wt-footer__brand p { color: var(--wt-text-muted); font-size: 0.9rem; max-width: 320px; }
.wt-footer__title { color: var(--wt-white); font-size: 1rem; font-weight: 500; margin-bottom: 16px; }
.wt-footer__address { font-style: normal; color: var(--wt-text); font-size: 0.92rem; }
.wt-footer__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.wt-footer__link { display: inline-flex; align-items: center; gap: 10px; color: var(--wt-text); font-size: 0.92rem; transition: color .2s ease; }
.wt-footer__link:hover { color: var(--wt-white); }
.wt-footer__link svg { color: var(--wt-silver-2); flex-shrink: 0; }
.wt-footer__social { display: flex; gap: 12px; }
.wt-footer__social a {
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	color: var(--wt-white);
	border: 1px solid var(--wt-silver-3);
	transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.wt-footer__social a:hover { background: rgba(255,255,255,.08); border-color: var(--wt-white); transform: translateY(-2px); }

.wt-footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding-block: 22px; }
.wt-footer__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	flex-wrap: wrap;
	color: var(--wt-text-muted);
	font-size: 0.82rem;
}
.wt-footer__bottom-inner a:hover { color: var(--wt-white); }
.wt-footer__credit { padding-block: 8px; background: #D9D9D9; }
.wt-footer__credit .wt-container { color: #2A2A2A; font-size: 0.78rem; text-align: center; }
.wt-footer__credit a { color: var(--wt-black); font-weight: 500; text-decoration: underline; text-underline-offset: 2px; }
.wt-footer__credit a:hover { color: var(--wt-black); text-decoration: none; }

/* ---------------------------------------------------------------------
   Prótese Capilar (Seção 7)
   --------------------------------------------------------------------- */
.wt-video-btn--wide { aspect-ratio: 16/9; width: 100%; max-width: 100%; margin-inline: auto; }
.wt-protese__top {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(24px, 4vw, 48px);
	align-items: stretch;
}
.wt-protese__intro {
	margin: 0;
	align-self: center;
	text-align: justify;
	color: var(--wt-text);
	font-size: clamp(1rem, 1.5vw, 1.12rem);
	line-height: 1.7;
}
.wt-protese__intro strong { color: var(--wt-white); font-weight: 700; }
.wt-protese__oque {
	margin: 0;
	background: var(--wt-bg-card);
	border: 1px solid rgba(255,255,255,.08);
	border-radius: var(--wt-radius);
	padding: 32px 30px;
}
.wt-protese__oque h3 { color: var(--wt-white); }
.wt-protese__oque p { text-align: justify; margin: 0; }
.wt-protese__beneficios-title { text-align: center; color: var(--wt-white); margin-bottom: 30px; }
.wt-protese__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}
.wt-benefit-card {
	position: relative;
	text-align: center;
	background: linear-gradient(to top, #2C2C2C 0%, #1A1A1A 100%);
	border: 1px solid #3A3A3A;
	border-radius: var(--wt-radius);
	padding: 30px 24px;
	overflow: hidden;
	transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.wt-benefit-card:hover {
	border-color: var(--wt-silver-3);
	transform: translateY(-4px);
	box-shadow: 0 12px 30px rgba(0,0,0,.5);
}
.wt-benefit-card__num {
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1;
	background: var(--wt-silver-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	display: block;
	margin-bottom: 10px;
}
.wt-benefit-card h4 { color: var(--wt-white); font-size: 1.05rem; font-weight: 500; margin-bottom: 8px; }
.wt-benefit-card p { color: var(--wt-text); font-size: 0.9rem; margin: 0; }
.wt-protese__fecho {
	max-width: 760px;
	margin: clamp(40px, 6vw, 60px) auto 0;
	text-align: center;
	color: var(--wt-light);
	font-weight: 500;
}
.wt-protese__cta { text-align: center; margin-top: 24px; }
.wt-protese-depoimento .wt-section__head { max-width: 480px; }
.wt-protese__video { text-align: center; }
.wt-protese__manutencao {
	margin-top: clamp(40px, 6vw, 60px);
	padding-top: 34px;
	border-top: 1px solid rgba(255,255,255,.1);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}
.wt-protese__manutencao p { color: var(--wt-light); font-weight: 500; margin: 0; }

/* ---------------------------------------------------------------------
   Portfólio Prótese (Seção 8)
   --------------------------------------------------------------------- */
.wt-marquee--wide { margin-block: clamp(36px, 5vw, 56px); }
.wt-marquee--wide .wt-marquee__item { width: clamp(300px, 34vw, 460px); height: 300px; }
.wt-protese-pf__videos {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	justify-items: center;
	max-width: 1020px;
	margin-inline: auto;
}
.wt-protese-pf__videos .wt-video-btn { width: 100%; }
.wt-protese-pf__cta { text-align: center; margin-top: clamp(40px, 6vw, 56px); }

/* ---------------------------------------------------------------------
   Big Numbers (Seção 9)
   --------------------------------------------------------------------- */
.wt-numeros__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.wt-numero {
	text-align: center;
	padding: 30px 18px;
	background: var(--wt-bg-card);
	border: 1px solid rgba(255,255,255,.08);
	border-radius: var(--wt-radius);
}
.wt-numero__icon { display: inline-flex; width: 46px; height: 46px; color: var(--wt-silver-1); margin-bottom: 14px; }
.wt-numero__icon svg { width: 100%; height: 100%; }
.wt-numero__value { display: block; font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 700; color: var(--wt-white); line-height: 1; }
.wt-numero__label { display: block; margin-top: 8px; color: var(--wt-text-muted); font-size: 0.92rem; }

/* ---------------------------------------------------------------------
   Serviços Extras (Seção 10)
   --------------------------------------------------------------------- */
.wt-extras .wt-section__head { max-width: 1000px; }
.wt-extras .wt-section__lead { max-width: none; }
.wt-extras__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}
.wt-extra-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 12px;
	padding: 26px 18px;
	background: var(--wt-bg-card);
	border: 1px solid rgba(255,255,255,.08);
	border-radius: var(--wt-radius);
	transition: border-color .2s ease, transform .2s ease;
}
.wt-extra-card:hover { border-color: var(--wt-silver-3); transform: translateY(-3px); }
.wt-extra-card__icon { width: 38px; height: 38px; color: var(--wt-silver-1); }
.wt-extra-card__icon svg { width: 100%; height: 100%; }
.wt-extra-card__name { color: var(--wt-white); font-size: 1rem; font-weight: 500; margin: 0; min-height: 2.5em; display: flex; align-items: center; }
.wt-extra-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-top: auto;
	padding: 9px 16px;
	border-radius: 999px;
	font-size: 0.82rem;
	font-weight: 500;
	color: var(--wt-black);
	background: var(--wt-silver-gradient);
	transition: box-shadow .2s ease, transform .2s ease;
}
.wt-extra-card__cta:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(184,184,184,.25); }

/* ---------------------------------------------------------------------
   Sobre (Seção 10)
   --------------------------------------------------------------------- */
.wt-sobre__grid {
	display: grid;
	grid-template-columns: 1fr 1.05fr;
	gap: clamp(32px, 5vw, 64px);
	align-items: center;
}
.wt-sobre__media {
	position: relative;
	aspect-ratio: 4/5;
	border-radius: var(--wt-radius);
	overflow: hidden;
	border: 1px solid rgba(255,255,255,.1);
}
.wt-sobre__slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1s ease; }
.wt-sobre__slide.is-active { opacity: 1; }
.wt-sobre__text h2 { margin-bottom: 18px; }
.wt-sobre__text .wt-label { display: block; margin-bottom: 12px; }
.wt-sobre__text p { text-align: justify; }

/* ---------------------------------------------------------------------
   Localização (Seção 11)
   --------------------------------------------------------------------- */
.wt-loc__grid {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: clamp(32px, 5vw, 56px);
	align-items: center;
}
.wt-loc__info .wt-label { display: block; margin-bottom: 12px; }
.wt-loc__eyebrow { display: inline-flex !important; align-items: center; gap: 8px; }
.wt-loc__eyebrow svg { color: var(--wt-silver-1); flex-shrink: 0; }
.wt-loc__info h2 { margin-bottom: 22px; }
.wt-loc__pontos { list-style: none; margin: 0 0 24px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.wt-loc__pontos li { display: flex; align-items: center; gap: 10px; color: var(--wt-light); font-weight: 500; }
.wt-loc__dash { color: var(--wt-silver-2); font-weight: 700; flex-shrink: 0; }
.wt-loc__address { color: var(--wt-white); font-weight: 500; margin-bottom: 10px; }
.wt-loc__text { color: var(--wt-text); text-align: justify; }
.wt-loc__map {
	border-radius: var(--wt-radius);
	overflow: hidden;
	border: 1px solid rgba(255,255,255,.1);
	min-height: 360px;
	height: 100%;
}
.wt-loc__map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }

/* ---------------------------------------------------------------------
   Página de Política de Privacidade
   --------------------------------------------------------------------- */
.wt-legal__inner { max-width: 860px; }
.wt-legal .wt-section__head { max-width: none; text-align: center; }
.wt-legal__meta { text-align: center; color: var(--wt-text-muted); font-style: italic; margin-bottom: 40px; }
.wt-legal h2 {
	font-size: clamp(1.3rem, 2.2vw, 1.7rem);
	color: var(--wt-white);
	margin: 44px 0 14px;
	padding-top: 24px;
	border-top: 1px solid rgba(255,255,255,.08);
}
.wt-legal p { color: var(--wt-text); text-align: justify; margin-bottom: 1em; }
.wt-legal ul { color: var(--wt-text); margin: 0 0 1.2em; padding-left: 22px; }
.wt-legal li { margin-bottom: 8px; }
.wt-legal strong { color: var(--wt-light); }
.wt-legal a { color: var(--wt-white); text-decoration: underline; text-underline-offset: 2px; }
.wt-legal a:hover { color: var(--wt-silver-1); }

/* ---------------------------------------------------------------------
   Botão flutuante WhatsApp
   --------------------------------------------------------------------- */
.wt-whatsapp-float {
	position: fixed;
	bottom: 24px;
	right: 24px;
	width: 56px;
	height: 56px;
	background: #25D366;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(0,0,0,.25);
	z-index: 999;
	transition: transform .2s ease;
}
.wt-whatsapp-float:hover { transform: scale(1.1); }
.wt-whatsapp-float svg { width: 30px; height: 30px; }

/* =====================================================================
   Responsivo
   ===================================================================== */
@media (max-width: 980px) {
	.wt-vc__grid { grid-template-columns: 1fr; }
	.wt-vc__text { order: -1; }
	.wt-planos__grid { grid-template-columns: repeat(2, 1fr); }
	.wt-plano-card.is-featured { transform: none; }
	.wt-protese__top { grid-template-columns: 1fr; }
	.wt-protese__grid { grid-template-columns: repeat(2, 1fr); }
	.wt-protese-pf__videos { grid-template-columns: repeat(3, 1fr); }
	.wt-numeros__grid { grid-template-columns: repeat(2, 1fr); }
	.wt-extras__grid { grid-template-columns: repeat(2, 1fr); }
	.wt-sobre__grid { grid-template-columns: 1fr; }
	.wt-sobre__media { order: -1; aspect-ratio: 16/10; }
	.wt-loc__grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
	.wt-planos__grid { grid-template-columns: 1fr; }

	/* Portfólio — padding lateral de 64px entre vídeos e a tela (copy) */
	.wt-portfolio__videos { flex-direction: column; align-items: center; padding-inline: 64px; gap: 20px; }
	.wt-portfolio__videos .wt-video-btn { width: 100%; max-width: 100%; }
	.wt-vc__media .wt-video-btn { max-width: 100%; }

	/* Rodapé colapsa para 1 coluna centralizada */
	.wt-footer__grid { grid-template-columns: 1fr; text-align: center; gap: 32px; }
	.wt-footer__brand img { margin-inline: auto; }
	.wt-footer__brand p { margin-inline: auto; }
	.wt-footer__list { align-items: center; }
	.wt-footer__link { flex-direction: column; gap: 4px; }
	.wt-footer__social { justify-content: center; }
	.wt-footer__bottom-inner { flex-direction: column; align-items: center; text-align: center; }
	.wt-marquee__item { height: 320px; }

	.wt-protese__grid { grid-template-columns: 1fr; }
	.wt-protese-pf__videos { grid-template-columns: 1fr; padding-inline: 64px; }
	.wt-marquee--wide .wt-marquee__item { width: clamp(240px, 80vw, 320px); height: 240px; }
	.wt-numeros__grid { grid-template-columns: 1fr; }
	.wt-extras__grid { grid-template-columns: 1fr; }
}
