/* ============================================================
   TSC — Tenha Seu Consórcio · CSS da identidade
   Acabamento de marca que não tem equivalente em controle do Elementor:
   chanfros, molduras, gradientes, hovers e animações.
   Tudo prefixado com .tsc- para não vazar para o resto do site.
   ============================================================ */

:root {
	--tsc-marinho: #0D1B2A;
	--tsc-executivo: #173B5E;
	--tsc-dourado: #C6A66A;
	--tsc-dourado-claro: #E0C68F;
	--tsc-offwhite: #F5F3EE;
	--tsc-grafite: #27313A;
	--tsc-cinza-claro: #E4E9EE;
	--tsc-chanfro: 14px;
	--tsc-ease: cubic-bezier(.22, .7, .28, 1);
}

/* ---------- utilitários ---------- */
.tsc-dourado { color: var(--tsc-dourado); }

.tsc-destaque {
	display: block;
	background: linear-gradient(100deg, var(--tsc-dourado) 0%, var(--tsc-dourado-claro) 46%, var(--tsc-dourado) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

/* ---------- eyebrow (rótulo com traço) ---------- */
.tsc-eyebrow .elementor-heading-title,
.tsc-eyebrow {
	display: flex;
	align-items: center;
	gap: 14px;
}
.tsc-eyebrow .elementor-heading-title::before {
	content: "";
	width: 34px;
	height: 1px;
	background: currentColor;
	flex: none;
}
.tsc-eyebrow-centro .elementor-heading-title { justify-content: center; }
.tsc-eyebrow-centro .elementor-heading-title::after {
	content: "";
	width: 34px;
	height: 1px;
	background: currentColor;
	flex: none;
}

/* ---------- botões ---------- */
.tsc-btn .elementor-button {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	border: none;
	border-radius: 0;
	position: relative;
	clip-path: polygon(0 0, calc(100% - var(--tsc-chanfro)) 0, 100% var(--tsc-chanfro), 100% 100%, var(--tsc-chanfro) 100%, 0 calc(100% - var(--tsc-chanfro)));
	transition: transform .35s var(--tsc-ease), box-shadow .35s var(--tsc-ease), background .35s var(--tsc-ease);
}

.tsc-btn-ouro .elementor-button {
	/* !important: o post-N.css do Elementor carrega depois desta folha e tem
	   especificidade maior (.elementor-N .elementor-element-XXX .elementor-button).
	   Sem isso o gradiente de 3 paradas perde para a cor sólida do settings. */
	background: linear-gradient(120deg, var(--tsc-dourado) 0%, var(--tsc-dourado-claro) 52%, var(--tsc-dourado) 100%) !important;
	box-shadow: 0 12px 34px -14px rgba(198, 166, 106, .85);
}
.tsc-btn-ouro .elementor-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 20px 44px -14px rgba(198, 166, 106, .95);
}

.tsc-btn-linha .elementor-button {
	background: transparent !important;
	box-shadow: inset 0 0 0 1px rgba(245, 243, 238, .32);
}
.tsc-btn-linha .elementor-button:hover {
	box-shadow: inset 0 0 0 1px var(--tsc-dourado);
	color: var(--tsc-dourado-claro);
	transform: translateY(-3px);
}
.tsc-claro .tsc-btn-linha .elementor-button { box-shadow: inset 0 0 0 1px rgba(13, 27, 42, .24); }
.tsc-claro .tsc-btn-linha .elementor-button:hover {
	box-shadow: inset 0 0 0 1px var(--tsc-dourado);
	color: #8E6A26;
}

/* seta que desliza no hover */
.tsc-btn-seta .elementor-button-text::after {
	content: "";
	display: inline-block;
	width: 16px;
	height: 10px;
	margin-left: 12px;
	background: currentColor;
	-webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='10' viewBox='0 0 16 10'><path d='M0 5h14M10 1l4 4-4 4' fill='none' stroke='black' stroke-width='1.5'/></svg>") no-repeat center/contain;
	mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='10' viewBox='0 0 16 10'><path d='M0 5h14M10 1l4 4-4 4' fill='none' stroke='black' stroke-width='1.5'/></svg>") no-repeat center/contain;
	transition: transform .35s var(--tsc-ease);
	vertical-align: middle;
}
.tsc-btn-seta:hover .elementor-button-text::after { transform: translateX(5px); }

/* link dourado sublinhado */
.tsc-link-ouro .elementor-button {
	background: transparent !important;
	padding-left: 0;
	padding-right: 0;
	border-radius: 0;
	border-bottom: 1px solid rgba(198, 166, 106, .36);
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: gap .3s var(--tsc-ease), border-color .3s var(--tsc-ease);
}
.tsc-link-ouro .elementor-button:hover {
	gap: 16px;
	border-color: var(--tsc-dourado);
}
.tsc-link-ouro-escuro .elementor-button { border-color: rgba(142, 106, 38, .3); }
.tsc-link-ouro-escuro .elementor-button:hover { border-color: #8E6A26; }

/* ---------- moldura chanfrada (elemento da marca) ---------- */
.tsc-moldura {
	position: relative;
	background: rgba(255, 255, 255, .028);
	clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
	transition: background .4s var(--tsc-ease), transform .4s var(--tsc-ease);
}
.tsc-moldura::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(135deg, rgba(198, 166, 106, .55), rgba(198, 166, 106, .14) 45%, rgba(198, 166, 106, .5));
	clip-path: polygon(
		0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px),
		0 1px, 1px 1px, 1px calc(100% - 22.5px), 22.5px calc(100% - 1px), calc(100% - 1px) calc(100% - 1px),
		calc(100% - 1px) 22.5px, calc(100% - 22.5px) 1px, 0 1px
	);
}
.tsc-claro .tsc-moldura {
	background: #fff;
	box-shadow: 0 18px 50px -32px rgba(13, 27, 42, .5);
}

/* ---------- cabeçalho ---------- */
.tsc-topo {
	position: fixed !important;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	transition: background .45s var(--tsc-ease), backdrop-filter .45s var(--tsc-ease), box-shadow .45s var(--tsc-ease);
}
.tsc-topo.tsc-fixo {
	background: rgba(13, 27, 42, .9);
	backdrop-filter: blur(16px);
	box-shadow: 0 1px 0 rgba(198, 166, 106, .2);
}

.tsc-marca {
	display: flex;
	align-items: center;
	gap: 14px;
	text-decoration: none;
}
.tsc-marca svg { flex: none; }
.tsc-marca-txt {
	display: flex;
	flex-direction: column;
	line-height: 1;
}
.tsc-marca-txt b {
	font-family: 'Sora', sans-serif;
	font-size: 1.55rem;
	font-weight: 600;
	letter-spacing: .16em;
	color: var(--tsc-offwhite);
}
.tsc-marca-txt span {
	font-size: .53rem;
	letter-spacing: .32em;
	text-transform: uppercase;
	color: var(--tsc-dourado);
	margin-top: 5px;
}

.tsc-menu-link .elementor-button {
	background: transparent !important;
	position: relative;
	transition: color .3s;
}
.tsc-menu-link .elementor-button::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 1px;
	width: 0;
	background: var(--tsc-dourado);
	transition: width .35s var(--tsc-ease);
}
.tsc-menu-link .elementor-button:hover { color: var(--tsc-offwhite); }
.tsc-menu-link .elementor-button:hover::after { width: 100%; }

.tsc-hamburguer {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	z-index: 110;
}
.tsc-hamburguer span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--tsc-offwhite);
	margin: 5px 0;
	transition: .3s;
}

/* ---------- hero ---------- */
.tsc-hero { position: relative; overflow: hidden; }
/* o widget do skyline é decoração: sai do fluxo para não empurrar o conteúdo */
.elementor-widget-tsc-hero-skyline {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	width: 100%;
}
.tsc-hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}
.tsc-hero-bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(1100px 620px at 78% 18%, rgba(23, 59, 94, .72), transparent 62%),
		radial-gradient(760px 520px at 6% 88%, rgba(198, 166, 106, .11), transparent 66%),
		linear-gradient(180deg, rgba(13, 27, 42, .55) 0%, rgba(13, 27, 42, .9) 68%, var(--tsc-marinho) 100%);
}
.tsc-grade {
	position: absolute;
	inset: 0;
	opacity: .5;
	background-image:
		linear-gradient(rgba(198, 166, 106, .055) 1px, transparent 1px),
		linear-gradient(90deg, rgba(198, 166, 106, .055) 1px, transparent 1px);
	background-size: 92px 92px;
	-webkit-mask-image: radial-gradient(circle at 50% 40%, #000 20%, transparent 78%);
	mask-image: radial-gradient(circle at 50% 40%, #000 20%, transparent 78%);
}
.tsc-skyline {
	position: absolute;
	right: -4%;
	bottom: 0;
	width: min(62%, 880px);
	z-index: 1;
}
.tsc-skyline path {
	stroke: var(--tsc-dourado);
	fill: none;
	stroke-width: 1;
	vector-effect: non-scaling-stroke;
}
.tsc-skyline.tsc-anima path {
	stroke-dasharray: 2400;
	stroke-dashoffset: 2400;
	animation: tsc-tracar 3.2s var(--tsc-ease) forwards;
}
@keyframes tsc-tracar { to { stroke-dashoffset: 0; } }

.tsc-hero-conteudo { position: relative; z-index: 3; }

.tsc-confianca .elementor-icon-list-item { align-items: center; }
.tsc-confianca .elementor-icon-list-icon,
.tsc-confianca .elementor-icon-list-icon svg,
.tsc-confianca .elementor-icon-list-icon i { display: none !important; }
.tsc-confianca .elementor-icon-list-text::before {
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	background: var(--tsc-dourado);
	transform: rotate(45deg);
	margin-right: 10px;
	vertical-align: middle;
}
.tsc-confianca {
	padding-top: 28px;
	border-top: 1px solid rgba(245, 243, 238, .12);
}

/* ---------- pilares ---------- */
.tsc-pilares { background: rgba(198, 166, 106, .2); }
.tsc-pilar { position: relative; transition: background .4s var(--tsc-ease); }
.tsc-pilar:hover { background: #101f31 !important; }
.tsc-pilar::after {
	content: "";
	position: absolute;
	left: 28px;
	bottom: 0;
	height: 2px;
	width: 0;
	background: var(--tsc-dourado);
	transition: width .5s var(--tsc-ease);
}
.tsc-pilar:hover::after { width: 44px; }

/* ---------- ícones ---------- */
.tsc-ico-caixa {
	width: 52px;
	height: 52px;
	display: grid;
	place-items: center;
	margin-bottom: 24px;
	border: 1px solid rgba(198, 166, 106, .4);
	clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 9px 100%, 0 calc(100% - 9px));
}
.tsc-ico-caixa svg,
.tsc-ico-simples svg,
.tsc-ico-check svg,
.tsc-ico-selo svg {
	stroke: var(--tsc-dourado);
	fill: none;
	stroke-width: 1.4;
}
.tsc-ico-check svg { stroke-width: 1.6; }
.tsc-ico-selo svg { stroke: #A9843F; stroke-width: 1.5; }
.tsc-ico-simples svg { stroke-width: 1.3; }
.tsc-ico-simples, .tsc-ico-check, .tsc-ico-selo { display: inline-flex; flex: none; }

/* ---------- perfis e tipos ---------- */
.tsc-perfil { transition: transform .4s var(--tsc-ease); }
.tsc-perfil:hover { transform: translateY(-6px); }

.tsc-tipo { transition: transform .4s var(--tsc-ease), background .4s var(--tsc-ease); }
.tsc-tipo:hover {
	transform: translateY(-6px);
	background: rgba(255, 255, 255, .05);
}
.tsc-tipo-acao { margin-top: auto; }

.tsc-possib {
	background: rgba(198, 166, 106, .07);
	border-left: 2px solid var(--tsc-dourado);
}

/* ---------- oportunidades (número de fundo) ---------- */
.tsc-op { position: relative; overflow: hidden; transition: background .45s var(--tsc-ease); }
.tsc-op::before {
	position: absolute;
	top: 14px;
	right: 22px;
	font-family: 'Sora', sans-serif;
	font-size: 4.6rem;
	font-weight: 800;
	color: rgba(13, 27, 42, .05);
	line-height: 1;
	transition: color .45s var(--tsc-ease);
}
.tsc-op-01::before { content: "01"; }
.tsc-op-02::before { content: "02"; }
.tsc-op-03::before { content: "03"; }
.tsc-op-04::before { content: "04"; }
.tsc-op-05::before { content: "05"; }
.tsc-op-06::before { content: "06"; }
.tsc-op:hover { background: #fff !important; }
.tsc-op:hover::before { color: rgba(198, 166, 106, .22); }

/* ---------- como funciona ---------- */
.tsc-como { position: relative; overflow: hidden; }
.tsc-como::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(900px 480px at 88% 8%, rgba(198, 166, 106, .13), transparent 62%),
		linear-gradient(180deg, rgba(13, 27, 42, .55), rgba(13, 27, 42, .86));
	pointer-events: none;
}
.tsc-como > .e-con-inner,
.tsc-como > .elementor-widget-wrap { position: relative; z-index: 2; }

.tsc-etapas { position: relative; }
.tsc-etapas::before {
	content: "";
	position: absolute;
	top: 29px;
	left: 6%;
	right: 6%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(198, 166, 106, .45), rgba(198, 166, 106, .45), transparent);
}
.tsc-bolha .elementor-heading-title {
	width: 58px;
	height: 58px;
	display: grid;
	place-items: center;
	background: var(--tsc-marinho);
	border: 1px solid var(--tsc-dourado);
	clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
	transition: background .4s var(--tsc-ease), color .4s var(--tsc-ease), transform .4s var(--tsc-ease);
}
.tsc-etapa:hover .tsc-bolha .elementor-heading-title {
	background: var(--tsc-dourado);
	color: var(--tsc-marinho);
	transform: translateY(-4px);
}

/* ---------- sobre ---------- */
.tsc-sobre-txt .elementor-widget-text-editor:first-child {
	padding-left: 24px;
	border-left: 2px solid var(--tsc-dourado);
}
.tsc-valor .elementor-heading-title::before {
	content: "";
	display: block;
	width: 22px;
	height: 2px;
	background: var(--tsc-dourado);
	margin-bottom: 14px;
}

/* ---------- diferenciais ---------- */
.tsc-difs { background: rgba(198, 166, 106, .22); }

/* ---------- modalidades ---------- */
.tsc-modal-lista { background: rgba(245, 243, 238, .1); }
.tsc-modalidade { transition: background .45s var(--tsc-ease); }
.tsc-modalidade:hover { background: #101f31 !important; }

.tsc-indicado .elementor-icon-list-items { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 26px; }
.tsc-indicado .elementor-icon-list-icon,
.tsc-indicado .elementor-icon-list-icon svg,
.tsc-indicado .elementor-icon-list-icon i { display: none !important; }
.tsc-indicado .elementor-icon-list-text::before {
	content: "";
	display: inline-block;
	width: 5px;
	height: 5px;
	background: var(--tsc-dourado);
	transform: rotate(45deg);
	margin-right: 11px;
	vertical-align: middle;
}

/* ---------- cotação ---------- */
.tsc-apoio {
	background: rgba(198, 166, 106, .12);
	border-left: 2px solid var(--tsc-dourado);
}

.tsc-form {
	background: #fff;
	clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
	box-shadow: 0 30px 70px -40px rgba(13, 27, 42, .55);
}
.tsc-form h3 {
	font-family: 'Sora', sans-serif;
	font-size: 1.34rem;
	font-weight: 700;
	color: var(--tsc-marinho);
	margin: 0 0 8px;
}
.tsc-sub-form {
	font-size: .9rem;
	color: rgba(39, 49, 58, .72);
	font-weight: 300;
	margin: 0 0 30px;
}
.tsc-campos { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.tsc-campo { display: flex; flex-direction: column; gap: 8px; }
.tsc-campo.tsc-full { grid-column: 1 / -1; }
.tsc-campo label {
	font-family: 'Sora', sans-serif;
	font-size: .72rem;
	font-weight: 600;
	letter-spacing: .11em;
	text-transform: uppercase;
	color: var(--tsc-grafite);
	line-height: 1.45;
}
.tsc-campo input,
.tsc-campo select,
.tsc-campo textarea {
	width: 100%;
	padding: 14px 16px;
	background: var(--tsc-offwhite);
	border: 1px solid var(--tsc-cinza-claro);
	border-radius: 0;
	font-family: 'Manrope', sans-serif;
	font-size: .94rem;
	color: var(--tsc-marinho);
	transition: border-color .3s, background .3s, box-shadow .3s;
}
.tsc-campo textarea { resize: vertical; min-height: 96px; }
.tsc-campo input::placeholder,
.tsc-campo textarea::placeholder { color: rgba(39, 49, 58, .42); font-weight: 300; }
.tsc-campo input:focus,
.tsc-campo select:focus,
.tsc-campo textarea:focus {
	outline: none;
	border-color: var(--tsc-dourado);
	background: #fff;
	box-shadow: 0 0 0 3px rgba(198, 166, 106, .16);
}
.tsc-campo input.tsc-invalido,
.tsc-campo select.tsc-invalido,
.tsc-campo textarea.tsc-invalido { border-color: #C0392B; }
.tsc-campo select {
	appearance: none;
	cursor: pointer;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%23C6A66A' stroke-width='1.6'/></svg>");
	background-repeat: no-repeat;
	background-position: right 16px center;
	padding-right: 42px;
}

.tsc-aceite {
	grid-column: 1 / -1;
	display: flex;
	gap: 13px;
	align-items: flex-start;
	margin-top: 6px;
	font-size: .85rem;
	color: rgba(39, 49, 58, .72);
	font-weight: 300;
	line-height: 1.55;
	cursor: pointer;
}
.tsc-aceite input {
	appearance: none;
	width: 19px;
	height: 19px;
	flex: none;
	margin-top: 2px;
	border: 1px solid var(--tsc-cinza-claro);
	background: var(--tsc-offwhite);
	cursor: pointer;
	position: relative;
	transition: .25s;
}
.tsc-aceite input:checked { background: var(--tsc-dourado); border-color: var(--tsc-dourado); }
.tsc-aceite input:checked::after {
	content: "";
	position: absolute;
	left: 6px;
	top: 2px;
	width: 5px;
	height: 10px;
	border: solid var(--tsc-marinho);
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}
.tsc-aceite input.tsc-invalido { outline: 2px solid #C0392B; }

.tsc-form .tsc-btn-ouro,
button.tsc-btn.tsc-btn-ouro {
	width: 100%;
	justify-content: center;
	margin-top: 26px;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 17px 34px;
	font-family: 'Sora', sans-serif;
	font-size: .92rem;
	font-weight: 600;
	color: var(--tsc-marinho);
	background: linear-gradient(120deg, var(--tsc-dourado) 0%, var(--tsc-dourado-claro) 52%, var(--tsc-dourado) 100%);
	border: none;
	cursor: pointer;
	clip-path: polygon(0 0, calc(100% - var(--tsc-chanfro)) 0, 100% var(--tsc-chanfro), 100% 100%, var(--tsc-chanfro) 100%, 0 calc(100% - var(--tsc-chanfro)));
	box-shadow: 0 12px 34px -14px rgba(198, 166, 106, .85);
	transition: transform .35s var(--tsc-ease), box-shadow .35s var(--tsc-ease);
}
button.tsc-btn.tsc-btn-ouro:hover { transform: translateY(-3px); }
button.tsc-btn[disabled] { opacity: .6; cursor: wait; transform: none; }

.tsc-nota {
	font-size: .79rem;
	color: rgba(39, 49, 58, .55);
	text-align: center;
	margin-top: 16px;
	font-weight: 300;
}
.tsc-sucesso, .tsc-erro {
	display: none;
	margin-top: 20px;
	padding: 16px 20px;
	font-size: .9rem;
}
.tsc-sucesso {
	background: rgba(198, 166, 106, .16);
	border-left: 2px solid var(--tsc-dourado);
	color: var(--tsc-marinho);
}
.tsc-erro {
	background: rgba(192, 57, 43, .1);
	border-left: 2px solid #C0392B;
	color: #8B2A20;
}
.tsc-sucesso.tsc-ativo, .tsc-erro.tsc-ativo { display: block; }

/* honeypot */
.tsc-hp {
	position: absolute !important;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* ---------- conversão final ---------- */
.tsc-final { position: relative; overflow: hidden; }
.tsc-final::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(760px 400px at 50% 0%, rgba(198, 166, 106, .16), transparent 66%),
		linear-gradient(180deg, #0A1622, var(--tsc-marinho));
	pointer-events: none;
}
.tsc-final::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--tsc-dourado), transparent);
}
.tsc-final > .e-con-inner { position: relative; z-index: 2; }

/* ---------- FAQ ---------- */
.tsc-faq .elementor-accordion-item {
	border: none;
	border-bottom: 1px solid rgba(13, 27, 42, .14);
}
.tsc-faq .elementor-tab-title { padding: 26px 46px 26px 0; }
.tsc-faq .elementor-tab-content { border: none; padding: 0 40px 28px 0; }

/* ---------- rodapé ---------- */
.tsc-rodape { position: relative; }
.tsc-rodape::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(198, 166, 106, .5), transparent);
}
.tsc-rod-lista .elementor-icon-list-icon,
.tsc-rod-lista .elementor-icon-list-icon svg,
.tsc-rod-lista .elementor-icon-list-icon i { display: none !important; }
.tsc-rod-lista a { transition: color .3s, padding-left .3s; }
.tsc-rod-lista a:hover { color: var(--tsc-dourado); padding-left: 6px; }
.tsc-aviso { border-top: 1px solid rgba(245, 243, 238, .1); }
.tsc-copy { font-size: .78rem; color: rgba(245, 243, 238, .38); font-weight: 300; }

/* ---------- WhatsApp flutuante ---------- */
.tsc-zap-wrap { position: relative; z-index: 90; }
.tsc-zap {
	position: fixed;
	bottom: 24px;
	z-index: 90;
	display: grid;
	place-items: center;
	background: var(--tsc-dourado);
	color: var(--tsc-marinho);
	clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
	box-shadow: 0 14px 34px -12px rgba(198, 166, 106, .8);
	transition: transform .35s var(--tsc-ease);
}
.tsc-zap-direita { right: 24px; }
.tsc-zap-esquerda { left: 24px; }
.tsc-zap:hover { transform: translateY(-4px) scale(1.05); }

/* ---------- reveal no scroll ---------- */
.tsc-reveal {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity .8s var(--tsc-ease), transform .8s var(--tsc-ease);
}
.tsc-reveal.tsc-vis { opacity: 1; transform: none; }

/* No editor do Elementor tudo precisa estar visível para poder ser editado. */
.elementor-editor-active .tsc-reveal,
.elementor-editor-preview .tsc-reveal { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1024px) {
	.tsc-etapas::before { display: none; }
}

@media (max-width: 880px) {
	.tsc-menu {
		position: fixed;
		inset: 0 0 0 auto;
		width: min(80vw, 340px);
		background: rgba(10, 20, 32, .98);
		backdrop-filter: blur(18px);
		flex-direction: column;
		align-items: flex-start !important;
		justify-content: center;
		padding: 60px 34px !important;
		gap: 24px;
		transform: translateX(100%);
		transition: transform .45s var(--tsc-ease);
		box-shadow: -20px 0 60px rgba(0, 0, 0, .4);
		z-index: 105;
	}
	.tsc-menu.tsc-aberto { transform: none; }
	.tsc-hamburguer { display: block; }
	.tsc-skyline { width: 110%; right: -18%; opacity: .28; }
}

@media (max-width: 767px) {
	.tsc-campos { grid-template-columns: 1fr; }
	.tsc-indicado .elementor-icon-list-items { grid-template-columns: 1fr; }
	.tsc-op::before { font-size: 3.4rem; }
	.tsc-hero-acoes .elementor-button,
	.tsc-final .elementor-button { width: 100%; justify-content: center; }
	.tsc-marca-txt b { font-size: 1.3rem; }
	.tsc-zap { bottom: 16px; }
	.tsc-zap-direita { right: 16px; }
	.tsc-zap-esquerda { left: 16px; }
}

/* ---------- acessibilidade: respeitar quem pediu menos animação ---------- */
@media (prefers-reduced-motion: reduce) {
	.tsc-reveal { opacity: 1; transform: none; transition: none; }
	.tsc-skyline.tsc-anima path { animation: none; stroke-dashoffset: 0; }
	.tsc-btn .elementor-button,
	.tsc-moldura,
	.tsc-zap { transition: none; }
}
