/* =========================================================================
   styles.css — Vital Guindastes
   Etapa atual: Hero (fundo escuro)
   ========================================================================= */

/* Seções com background próprio ocupam a largura total (tema standalone). */
.wt-hero { width: 100%; }

/* -------------------------------------------------------------------------
   Botões
   ------------------------------------------------------------------------- */
.wt-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .55rem;
	font-family: var(--vt-font-corpo);
	font-weight: 500;
	font-size: 1rem;
	line-height: 1;
	padding: .95rem 1.6rem;
	border-radius: var(--vt-raio);
	border: 2px solid transparent;
	cursor: pointer;
	transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
	white-space: nowrap;
}
.wt-btn svg { width: 20px; height: 20px; flex: 0 0 auto; }
.wt-btn:hover { transform: translateY(-2px); }

.wt-btn--primary {
	background: var(--vt-laranja);
	color: #1b1b16;
}
.wt-btn--primary:hover {
	background: var(--vt-laranja-escuro);
	color: #1b1b16;
}

.wt-btn--outline {
	background: transparent;
	color: var(--vt-txt-claro);
	border-color: rgba(255, 255, 255, .35);
}
.wt-btn--outline:hover {
	color: var(--vt-txt-claro);
	border-color: var(--vt-laranja);
	background: rgba(251, 149, 33, .10);
}

/* -------------------------------------------------------------------------
   Cabeçalho (sobreposto ao hero escuro)
   ------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------
   Hero — fundo escuro com foto
   ------------------------------------------------------------------------- */
.wt-hero {
	position: relative;
	background: var(--vt-azul-profundo);
	color: var(--vt-txt-claro);
	overflow: hidden;
	isolation: isolate;
}

/* Brilho decorativo (laranja sutil) atrás da imagem + textura de profundidade. */
.wt-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		radial-gradient(60% 80% at 82% 30%, rgba(251, 149, 33, .18), transparent 60%),
		radial-gradient(50% 60% at 12% 18%, rgba(42, 42, 130, .55), transparent 70%);
	pointer-events: none;
}

.wt-hero__inner {
	position: relative;
	z-index: 2;
	max-width: 1200px;
	margin: 0 auto;
	padding: 4rem 1.5rem 3.5rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 24px;
	min-height: 100vh;
}
/* Conteúdo ocupa a metade esquerda, com folga até a imagem. */
.wt-hero__content { padding-right: 1rem; min-width: 0; }

/* ---- Conteúdo ---- */
.wt-hero__logo {
	width: clamp(190px, 24vw, 240px);
	height: auto;
	margin-bottom: 1.6rem;
}
.wt-hero__title {
	color: var(--vt-txt-claro);
	font-size: clamp(2rem, 8vw, 58px);
	max-width: none;
	overflow-wrap: break-word;
}
.wt-hero__lead {
	margin-top: 1.3rem;
	max-width: none;
	font-size: 1.05rem;
	color: var(--vt-txt-claro-sec);
	text-align: justify;
}
.wt-hero__actions {
	margin-top: 2rem;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

/* ---- Mídia (foto do guindaste) — full-bleed na metade direita ---- */
.wt-hero__media {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	/* Full-bleed: a foto cobre toda a largura e o gradiente a esconde sob o texto. */
	width: 100%;
	z-index: 1; /* acima do fundo, abaixo do conteúdo (z-index 2) */
}
.wt-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	/* Gradiente longo: invisível à esquerda, sobe bem suave sob todo o texto e fica sólido à direita. */
	-webkit-mask-image: linear-gradient(to right, transparent 2%, rgba(0,0,0,.18) 46%, #000 64%);
	mask-image: linear-gradient(to right, transparent 2%, rgba(0,0,0,.18) 46%, #000 64%);
}

/* -------------------------------------------------------------------------
   Barra de Serviços (1.1) — tira clara abaixo do hero
   ------------------------------------------------------------------------- */
.wt-servicebar {
	width: 100%;
	background: var(--vt-branco);
	border-bottom: 1px solid var(--vt-azul-gelo);
}
.wt-servicebar__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1.25rem 1.5rem;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(7, 1fr);
}
.wt-servicebar__item {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: .65rem;
	padding: .85rem .5rem;
}
/* Divisor vertical sutil entre itens. */
.wt-servicebar__item + .wt-servicebar__item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 18%;
	height: 64%;
	width: 1px;
	background: var(--vt-azul-gelo);
}
.wt-servicebar__icon svg {
	width: 36px;
	height: 36px;
	color: var(--vt-laranja);
	display: block;
	transition: transform .18s ease;
}
.wt-servicebar__item:hover .wt-servicebar__icon svg {
	transform: translateY(-3px);
}
.wt-servicebar__label {
	font-size: .8rem;
	font-weight: 500;
	line-height: 1.25;
	color: var(--vt-txt-corpo);
	text-transform: uppercase;
	letter-spacing: .3px;
}

/* -------------------------------------------------------------------------
   Seção genérica (reutilizável) — cabeçalho padrão
   ------------------------------------------------------------------------- */
.wt-section { width: 100%; padding: clamp(3.5rem, 7vw, 6rem) 0; }
.wt-section--nevoa { background: var(--vt-azul-nevoa); }
.wt-section--gelo  { background: var(--vt-azul-gelo); }
.wt-section__inner { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.wt-section__head {
	text-align: center;
	max-width: 760px;
	margin: 0 auto clamp(2rem, 4vw, 3.25rem);
}
.wt-section__title {
	color: var(--vt-txt-titulo);
	font-size: clamp(2rem, 4.5vw, 3rem);
}
.wt-section__title::after {
	content: "";
	display: block;
	width: 56px;
	height: 4px;
	background: var(--vt-laranja);
	border-radius: 2px;
	margin: .9rem auto 0;
}
.wt-section__lead {
	margin-top: 1.1rem;
	color: var(--vt-txt-aux);
	font-size: 1.05rem;
}

/* -------------------------------------------------------------------------
   Serviços (2) — grid de cards
   ------------------------------------------------------------------------- */
.wt-services__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 1.5rem;
}
.wt-service {
	background: var(--vt-branco);
	border: 1px solid var(--vt-azul-gelo);
	border-radius: var(--vt-raio-lg);
	padding: 1.8rem;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: .85rem;
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
/* Imagem topo do card — sangra até as bordas. */
.wt-service__media {
	margin: -1.8rem -1.8rem .2rem;
	background: var(--vt-azul-gelo);
}
.wt-service__media img {
	display: block;
	width: 100%;
	height: 190px;
	object-fit: cover;
	transition: transform .35s ease;
}
.wt-service:hover .wt-service__media img { transform: scale(1.05); }
.wt-service:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 34px rgba(21, 21, 61, .09);
	border-color: transparent;
}
.wt-service__title {
	color: var(--vt-txt-titulo);
	font-size: 1.6rem;
	text-align: center;
}
.wt-service__desc {
	color: var(--vt-txt-corpo);
	font-size: .96rem;
	text-align: justify;
	flex: 1 1 auto; /* empurra o CTA para a base, alinhando entre cards */
}
.wt-service__cta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	width: 100%;
	margin-top: .4rem;
	padding: .8rem 1.1rem;
	border: 2px solid var(--vt-laranja);
	border-radius: var(--vt-raio);
	background: var(--vt-laranja);
	color: #1b1b16;
	font-weight: 500;
	font-size: .95rem;
	line-height: 1;
	transition: background-color .18s ease, border-color .18s ease;
}
.wt-service__cta svg { width: 18px; height: 18px; flex: 0 0 auto; }
.wt-service__cta:hover {
	background: var(--vt-laranja-escuro);
	border-color: var(--vt-laranja-escuro);
	color: #1b1b16;
}

/* -------------------------------------------------------------------------
   Plano de Rigging (3) — seção escura
   ------------------------------------------------------------------------- */
.wt-section--dark {
	background: var(--vt-azul-profundo);
	color: var(--vt-txt-claro);
}
/* CTA Atendimento 24 Horas — banda escura centralizada. */
.wt-cta24__inner { text-align: center; max-width: 720px; }
.wt-cta24__title {
	color: var(--vt-txt-claro);
	font-size: clamp(2rem, 4.5vw, 3rem);
}
.wt-cta24__lead {
	margin-top: 1.1rem;
	color: var(--vt-txt-claro-sec);
	font-size: 1.05rem;
}
.wt-cta24__actions {
	margin-top: 2rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
}

/* Eyebrow laranja reutilizável. */
.wt-eyebrow {
	display: block;
	color: var(--vt-laranja);
	font-weight: 500;
	font-size: .82rem;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	margin-bottom: .9rem;
}

.wt-rigging__inner {
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: stretch;
}
.wt-rigging__media img {
	width: 100%;
	height: 100%;
	min-height: 100%;
	object-fit: cover;
	border-radius: var(--vt-raio-lg);
	box-shadow: 0 20px 44px rgba(0, 0, 0, .4);
}
.wt-rigging__title {
	color: var(--vt-txt-claro);
	font-size: clamp(2rem, 4.5vw, 3rem);
}
.wt-rigging__title::after {
	content: "";
	display: block;
	width: 56px;
	height: 4px;
	background: var(--vt-laranja);
	border-radius: 2px;
	margin: .9rem 0 0;
}
.wt-rigging__lead {
	margin-top: 1.1rem;
	color: var(--vt-txt-claro);
	font-size: 1.15rem;
	font-weight: 500;
}
.wt-rigging__body {
	margin-top: 1.1rem;
	color: var(--vt-txt-claro-sec);
	text-align: justify;
}
.wt-rigging__list {
	list-style: none;
	margin: 1.4rem 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: .75rem 1.5rem;
}
.wt-rigging__list li {
	display: flex;
	align-items: center;
	gap: .65rem;
	color: var(--vt-txt-claro);
	font-weight: 500;
	font-size: .98rem;
}
.wt-rigging__check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: rgba(251, 149, 33, .15);
	color: var(--vt-laranja);
}
.wt-rigging__check svg { width: 15px; height: 15px; }
.wt-rigging__cta { margin-top: 2rem; }

/* -------------------------------------------------------------------------
   Sobre Nós (4) — fundo claro, texto + foto
   ------------------------------------------------------------------------- */
.wt-about__inner {
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: stretch;
}
.wt-about__title {
	color: var(--vt-txt-titulo);
	font-size: clamp(2rem, 4.5vw, 3rem);
}
.wt-about__title::after {
	content: "";
	display: block;
	width: 56px;
	height: 4px;
	background: var(--vt-laranja);
	border-radius: 2px;
	margin: .9rem 0 0;
}
.wt-about__text p {
	margin-top: 1.05rem;
	color: var(--vt-txt-corpo);
	text-align: justify;
}
.wt-about__cta { margin-top: 2rem; }
.wt-about__media {
	position: relative;
	align-self: stretch;
}
.wt-about__media img {
	width: 100%;
	height: 100%;
	min-height: 100%;
	object-fit: cover;
	border-radius: var(--vt-raio-lg);
	box-shadow: 0 18px 40px rgba(21, 21, 61, .14);
}
.wt-about__badge {
	position: absolute;
	left: 1.2rem;
	bottom: 1.2rem;
	display: flex;
	flex-direction: column;
	gap: .15rem;
	padding: .85rem 1.2rem;
	background: var(--vt-laranja);
	color: #1b1b16;
	border-radius: var(--vt-raio);
	box-shadow: 0 10px 24px rgba(0, 0, 0, .25);
}
.wt-about__badge strong {
	font-family: var(--vt-font-titulo);
	font-size: 2.4rem;
	line-height: .9;
}
.wt-about__badge span {
	font-size: .78rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: .5px;
}

/* -------------------------------------------------------------------------
   Portfólio (5) — carrossel automático de fotos + grade de vídeos
   ------------------------------------------------------------------------- */
/* Carrossel full-bleed: ocupa a largura total da tela, ponta a ponta. */
.wt-portfolio__carousel {
	width: 100%;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(to right, transparent 0, #000 4%, #000 96%, transparent 100%);
	mask-image: linear-gradient(to right, transparent 0, #000 4%, #000 96%, transparent 100%);
}
.wt-portfolio__track {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 1rem;
	width: max-content;
	/* Duração proporcional ao nº de slides; metade do track = 1 ciclo visual. */
	animation: wt-marquee 150s linear infinite;
}
.wt-portfolio__carousel:hover .wt-portfolio__track { animation-play-state: paused; }
.wt-portfolio__slide { flex: 0 0 auto; }
.wt-portfolio__slide img {
	display: block;
	height: 460px;
	width: auto;            /* mantém a proporção original */
	border-radius: var(--vt-raio-lg);
	box-shadow: 0 12px 28px rgba(21, 21, 61, .12);
}
@keyframes wt-marquee {
	from { transform: translateX(0); }
	to   { transform: translateX(calc(-50% - .5rem)); } /* -50% do track + metade do gap */
}
@media (prefers-reduced-motion: reduce) {
	.wt-portfolio__track { animation: none; }
}

/* Grade de vídeos verticais (9:16) — 2 linhas de 3. */
.wt-portfolio__videos {
	margin-top: clamp(2.5rem, 5vw, 4rem);
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(1rem, 2.5vw, 1.75rem);
}
.wt-portfolio__video {
	position: relative;
	aspect-ratio: 9 / 16;
	max-width: 340px;
	width: 100%;
	margin: 0 auto;
	border-radius: var(--vt-raio-lg);
	overflow: hidden;
	background: var(--vt-azul-profundo);
	box-shadow: 0 14px 32px rgba(21, 21, 61, .14);
}
.wt-portfolio__video iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* -------------------------------------------------------------------------
   Benefícios (6) — fundo claro, 3 cards com ícone
   ------------------------------------------------------------------------- */
.wt-benefits__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(1.25rem, 3vw, 2rem);
}
.wt-benefit {
	background: var(--vt-branco);
	border: 1px solid var(--vt-azul-gelo);
	border-radius: var(--vt-raio-lg);
	padding: 2.4rem 1.8rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .9rem;
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.wt-benefit:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 34px rgba(21, 21, 61, .09);
	border-color: transparent;
}
.wt-benefit__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: rgba(251, 149, 33, .14);
	color: var(--vt-laranja);
	transition: background-color .18s ease;
}
.wt-benefit:hover .wt-benefit__icon { background: rgba(251, 149, 33, .22); }
.wt-benefit__icon svg { width: 34px; height: 34px; }
.wt-benefit__title {
	color: var(--vt-txt-titulo);
	font-size: 1.5rem;
	line-height: 1.15;
}
.wt-benefit__text {
	color: var(--vt-txt-corpo);
	font-size: .98rem;
	max-width: 30ch;
}

/* -------------------------------------------------------------------------
   Contato (7) — formulário centralizado sobre imagem full-width
   ------------------------------------------------------------------------- */
.wt-contact {
	position: relative;
	isolation: isolate;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
/* Overlay escuro p/ legibilidade do conteúdo sobre a foto. */
.wt-contact__overlay {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(180deg, rgba(21, 21, 61, .82), rgba(21, 21, 61, .9));
}
.wt-contact .wt-section__inner { position: relative; }
/* Cabeçalho em texto claro sobre o fundo escuro, com a mesma largura do form. */
.wt-contact .wt-section__head { max-width: 620px; }
.wt-contact .wt-section__title { color: var(--vt-txt-claro); }
.wt-contact .wt-section__lead  { color: var(--vt-txt-claro-sec); }

/* ---- Formulário (centralizado) ---- */
.wt-contact__form {
	max-width: 620px;
	margin: 0 auto;
	background: var(--vt-branco);
	border: 1px solid var(--vt-azul-gelo);
	border-radius: var(--vt-raio-lg);
	padding: clamp(1.5rem, 3vw, 2.5rem);
	box-shadow: 0 24px 60px rgba(0, 0, 0, .3);
	display: grid;
	gap: 1.1rem;
}
.wt-field { display: flex; flex-direction: column; gap: .4rem; }
.wt-field label {
	color: var(--vt-txt-titulo);
	font-size: .9rem;
	font-weight: 500;
}
.wt-field input,
.wt-field textarea {
	font-family: var(--vt-font-corpo);
	font-size: 1rem;
	color: var(--vt-txt-corpo);
	background: var(--vt-azul-nevoa);
	border: 1px solid var(--vt-azul-gelo);
	border-radius: var(--vt-raio);
	padding: .8rem .95rem;
	width: 100%;
	transition: border-color .18s ease, box-shadow .18s ease;
}
.wt-field textarea { resize: vertical; min-height: 120px; }
.wt-field input:focus,
.wt-field textarea:focus {
	outline: none;
	border-color: var(--vt-laranja);
	box-shadow: 0 0 0 3px rgba(251, 149, 33, .18);
}
.wt-contact__submit { width: 100%; margin-top: .3rem; }

/* -------------------------------------------------------------------------
   Mapa (8) — Google Maps full-width
   ------------------------------------------------------------------------- */
.wt-map {
	width: 100%;
	line-height: 0; /* remove o gap inline abaixo do iframe */
}
.wt-map iframe {
	display: block;
	width: 100%;
	height: clamp(320px, 42vw, 460px);
	border: 0;
	filter: grayscale(.2);
}

/* -------------------------------------------------------------------------
   Rodapé (9) — fundo escuro
   ------------------------------------------------------------------------- */
.wt-footer {
	background: var(--vt-azul-profundo);
	color: var(--vt-txt-claro-sec);
}
.wt-footer__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: clamp(2.5rem, 5vw, 4rem) 1.5rem clamp(2rem, 4vw, 3rem);
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr;
	gap: clamp(2rem, 4vw, 3.5rem);
	align-items: stretch;
}
/* Endereço empurrado p/ a base da coluna (alinhado c/ e-mail e CNPJ), longe do logo. */
.wt-footer__brand { display: flex; flex-direction: column; gap: 1.2rem; align-items: flex-start; }
.wt-footer__brand .wt-footer__local { margin-top: auto; }
.wt-footer__logo { width: clamp(160px, 18vw, 220px); height: auto; }
.wt-footer__local {
	display: inline-flex;
	align-items: flex-start;
	gap: .55rem;
	max-width: 30ch;
	color: var(--vt-txt-claro);
	font-weight: 500;
	line-height: 1.45;
}
.wt-footer__local:hover { color: var(--vt-laranja); }
.wt-footer__local-icon { display: inline-flex; flex: 0 0 auto; margin-top: .15rem; color: var(--vt-laranja); }
.wt-footer__local-icon svg { width: 20px; height: 20px; }

.wt-footer__title {
	color: var(--vt-txt-claro);
	font-family: var(--vt-font-corpo);
	font-size: .9rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	margin-bottom: 1.1rem;
}
.wt-footer__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1.1rem; }
.wt-footer__list a {
	display: inline-flex;
	align-items: center;
	gap: .8rem;
	color: var(--vt-txt-claro-sec);
	overflow-wrap: anywhere;
}
.wt-footer__list a:hover { color: var(--vt-txt-claro); }
.wt-footer__list-icon { display: inline-flex; flex: 0 0 auto; color: var(--vt-laranja); }
.wt-footer__list-icon svg { width: 20px; height: 20px; }
.wt-footer__list-text { display: flex; flex-direction: column; gap: .1rem; min-width: 0; }
.wt-footer__list-text strong {
	color: var(--vt-txt-claro);
	font-family: var(--vt-font-corpo);
	font-size: .72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .6px;
}
.wt-footer__list-text > span { color: var(--vt-txt-claro-sec); }

.wt-footer__social { list-style: none; margin: 0 0 1.4rem; padding: 0; display: flex; gap: .8rem; }
.wt-footer__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .08);
	color: var(--vt-txt-claro);
	transition: background-color .18s ease, color .18s ease, transform .18s ease;
}
.wt-footer__social a:hover { background: var(--vt-laranja); color: #1b1b16; transform: translateY(-2px); }
.wt-footer__social a svg { width: 20px; height: 20px; }
.wt-footer__policy { display: block; color: var(--vt-txt-claro-sec); }
.wt-footer__policy:hover { color: var(--vt-laranja); }
.wt-footer__copy {
	margin-top: 1.1rem;
	font-size: .82rem;
	line-height: 1.5;
	color: var(--vt-txt-claro-sec);
}

.wt-footer__bar {
	border-top: 1px solid rgba(255, 255, 255, .1);
}
.wt-footer__bar p {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1.4rem 1.5rem;
	font-size: .85rem;
	color: var(--vt-txt-claro-sec);
	text-align: center;
}
.wt-footer__bar a { color: var(--vt-txt-claro); }
.wt-footer__bar a:hover { color: var(--vt-laranja); }

/* -------------------------------------------------------------------------
   Botão flutuante de WhatsApp (site-wide)
   ------------------------------------------------------------------------- */
.wt-wafloat {
	position: fixed;
	right: clamp(1rem, 3vw, 1.75rem);
	bottom: clamp(1rem, 3vw, 1.75rem);
	z-index: 999;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #25d366;
	color: #fff;
	box-shadow: 0 10px 26px rgba(0, 0, 0, .28);
	transition: transform .18s ease, box-shadow .18s ease;
}
.wt-wafloat svg { width: 34px; height: 34px; }
.wt-wafloat:hover {
	color: #fff;
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 14px 32px rgba(0, 0, 0, .34);
}
/* Pulso sutil para chamar atenção (respeita reduce-motion). */
.wt-wafloat::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: #25d366;
	z-index: -1;
	animation: wt-wapulse 2.4s ease-out infinite;
}
@keyframes wt-wapulse {
	0%   { transform: scale(1); opacity: .55; }
	70%  { transform: scale(1.6); opacity: 0; }
	100% { transform: scale(1.6); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
	.wt-wafloat::before { animation: none; display: none; }
}

/* -------------------------------------------------------------------------
   Responsivo
   ------------------------------------------------------------------------- */
@media (max-width: 860px) {
	.wt-hero {
		display: flex;
		flex-direction: column;
	}
	.wt-hero__inner {
		grid-template-columns: 1fr;
		padding: 3rem 1.5rem 2rem;
		gap: 1.5rem;
		min-height: 0;
		text-align: left;
	}
	.wt-hero__content { padding-right: 0; }
	.wt-hero__inner { order: 1; }
	/* Imagem full-width abaixo do texto, encostando esquerda/direita/base, fundindo no topo. */
	.wt-hero__media {
		order: 2;
		position: relative;
		top: auto; right: auto; bottom: auto;
		width: 100%;
		height: 46vh;
	}
	.wt-hero__media img {
		object-position: center 35%;
		-webkit-mask-image: linear-gradient(to top, #000 78%, transparent 100%);
		mask-image: linear-gradient(to top, #000 78%, transparent 100%);
	}
}

/* Barra de serviços: 4 colunas no tablet (sem divisores verticais ao quebrar). */
@media (max-width: 1024px) {
	.wt-servicebar__inner {
		grid-template-columns: repeat(4, 1fr);
		row-gap: 1rem;
	}
	.wt-servicebar__item + .wt-servicebar__item::before { display: none; }
}

@media (max-width: 860px) {
	.wt-rigging__inner { grid-template-columns: 1fr; }
	.wt-rigging__media img { max-height: 340px; }
	.wt-about__inner { grid-template-columns: 1fr; }
	.wt-about__media img { max-height: 420px; }
}

@media (max-width: 860px) {
	.wt-portfolio__slide img { height: 320px; }
	.wt-portfolio__videos { grid-template-columns: repeat(2, 1fr); }
	.wt-benefits__grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
	.wt-footer__inner { grid-template-columns: 1fr 1fr; }
	.wt-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
	/* Rodapé totalmente centralizado no mobile (coluna única). */
	.wt-footer__inner { grid-template-columns: 1fr; text-align: center; }
	.wt-footer__brand { align-items: center; }
	/* Ícones centralizados acima dos textos relativos. */
	.wt-footer__list a { flex-direction: column; align-items: center; gap: .45rem; }
	.wt-footer__list-text { align-items: center; }
	.wt-footer__local { flex-direction: column; align-items: center; text-align: center; }
	.wt-footer__local-icon { margin-top: 0; }
	.wt-footer__social { justify-content: center; }
}

@media (max-width: 600px) {
	.wt-servicebar__inner { grid-template-columns: repeat(2, 1fr); }
	.wt-servicebar__label { font-size: .78rem; }
	.wt-rigging__list { grid-template-columns: 1fr; }
	.wt-portfolio__slide img { height: 240px; }
	.wt-portfolio__videos { grid-template-columns: 1fr; max-width: 340px; margin-inline: auto; }
}

@media (max-width: 480px) {
	.wt-hero__actions .wt-btn { flex: 1 1 100%; }
}

/* -------------------------------------------------------------------------
   Avaliações — widget Google Reviews (Trustindex)
   ------------------------------------------------------------------------- */
/* Alarga a seção pra caber 3 cards do carrossel (antes só 2). */
.wt-reviews .wt-section__inner { max-width: 1320px; }
.wt-reviews__widget {
	margin-top: clamp(1.6rem, 4vw, 2.4rem);
	max-width: none;
}
.wt-reviews__cta {
	margin-top: clamp(1.6rem, 4vw, 2.4rem);
	display: flex;
	justify-content: center;
}

/* -------------------------------------------------------------------------
   Página legal — Política de Privacidade (topo + conteúdo)
   ------------------------------------------------------------------------- */
.wt-legalbar {
	background: var(--vt-azul-profundo);
	border-bottom: 3px solid var(--vt-laranja);
	position: sticky;
	top: 0;
	z-index: 50;
}
.wt-legalbar__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: .9rem 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}
.wt-legalbar__brand { display: inline-flex; align-items: center; }
.wt-legalbar__brand img { height: 46px; width: auto; }
.wt-legalbar__back { padding: .7rem 1.2rem; }
.wt-legalbar__back svg { width: 18px; height: 18px; }

.wt-legal { width: 100%; background: var(--vt-azul-nevoa); padding: clamp(2.5rem, 6vw, 4.5rem) 0; }
.wt-legal__inner {
	max-width: 860px;
	margin: 0 auto;
	padding: clamp(1.8rem, 4vw, 3rem);
	background: var(--vt-branco);
	border: 1px solid var(--vt-azul-gelo);
	border-radius: var(--vt-raio-lg);
}
.wt-legal__title {
	color: var(--vt-txt-titulo);
	font-size: clamp(1.9rem, 4vw, 2.6rem);
	margin: .4rem 0 .4rem;
}
.wt-legal__date {
	color: var(--vt-txt-aux);
	font-size: .95rem;
	margin-bottom: 1.6rem;
}
.wt-legal__intro { margin-bottom: 1.2rem; }
.wt-legal__block { margin-top: 2.2rem; }
.wt-legal__body h2 { margin-top: 2.2rem; }
.wt-legal__body > h2:first-child { margin-top: 0; }
.wt-legal h2 {
	color: var(--vt-txt-titulo);
	font-size: clamp(1.25rem, 2.6vw, 1.6rem);
	margin-bottom: .9rem;
	padding-bottom: .5rem;
	border-bottom: 2px solid var(--vt-azul-gelo);
}
.wt-legal__intro h2 { border-bottom: none; padding-bottom: 0; }
.wt-legal p {
	color: var(--vt-txt-corpo);
	font-size: 1rem;
	line-height: 1.75;
	margin-bottom: 1rem;
}
.wt-legal a:not(.wt-btn) { color: var(--vt-laranja); text-decoration: underline; }
.wt-legal a:not(.wt-btn):hover { color: var(--vt-laranja-escuro); }
.wt-legal__foot {
	margin-top: 2.6rem;
	padding-top: 1.8rem;
	border-top: 1px solid var(--vt-azul-gelo);
}

@media (max-width: 560px) {
	.wt-legalbar__back { font-size: .9rem; padding: .65rem 1rem; }
	.wt-legalbar__brand img { height: 38px; }
}
