/* =============================================================
 * Toldos e Esquadrias — main.css
 * Tema claro e elegante (carvão + taupe sobre branco).
 * Header/footer em PHP + páginas em Elementor.
 * ============================================================= */

:root {
	--te-paper:   #FFFFFF;
	--te-paper-2: #F7F3F2;
	--te-paper-3: #EFE7E7;
	--te-card:    #FFFFFF;
	--te-line:    #E8DFDE;
	--te-bordo:   #7B1E2B;
	--te-bordo-2: #5E1621;
	--te-ink:     #2B2B2B;
	--te-ink-2:   #3A3A3A;
	--te-body:    #454545;
	--te-muted:   #6E6E6E;
	--te-wpp:     #118546;
	--te-wpp-2:   #0C6234;

	--te-wrap:    1200px;
	--te-radius:  14px;
	--te-font:    'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;

	--te-shadow:    0 16px 40px rgba(43,43,43,.10);
	--te-shadow-sm: 0 8px 22px rgba(43,43,43,.07);
	--te-head-h:  86px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
	margin: 0;
	background: var(--te-paper);
	color: var(--te-body);
	font-family: var(--te-font);
	font-size: 16px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--te-bordo); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--te-bordo-2); }
h1, h2, h3, h4 { font-family: var(--te-font); color: var(--te-ink); line-height: 1.2; margin: 0 0 .5em; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; }

/* ---------- Layout ---------- */
.te-wrap { width: 100%; max-width: var(--te-wrap); margin: 0 auto; padding-left: 20px; padding-right: 20px; }
.te-content { padding-top: 48px; padding-bottom: 64px; }
.te-narrow { max-width: 820px; }

.screen-reader-text {
	border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
	height: 1px; width: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute;
}

.skip-link {
	position: absolute; left: -9999px; top: 0; z-index: 100000;
	background: var(--te-bordo); color: #fff; font-weight: 700;
	padding: 12px 20px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* Faixa listrada bordô/carvão — assinatura visual (o toldo da logo) */
.te-stripe {
	height: 4px; width: 100%;
	background: repeating-linear-gradient(45deg, var(--te-bordo) 0 14px, var(--te-ink) 14px 28px);
}

/* ---------- Kicker / H1 / breadcrumb ---------- */
.te-kicker {
	display: inline-block; text-transform: uppercase; letter-spacing: 1.8px;
	font-size: 13px; font-weight: 700; color: var(--te-bordo); margin-bottom: 10px;
}
.te-h1 { font-size: clamp(28px, 5vw, 44px); font-weight: 800; letter-spacing: -1px; margin-bottom: 14px; color: var(--te-ink); }

.te-crumbs { font-size: 14px; font-weight: 600; color: var(--te-muted); margin-bottom: 22px; }
.te-crumbs a { color: var(--te-muted); }
.te-crumbs a:hover { color: var(--te-bordo); }
.te-crumbs span { color: var(--te-line); margin: 0 6px; }

/* ---------- Prosa (glossário single, page.php) ---------- */
.te-entry { color: var(--te-body); font-size: 17px; }
.te-entry h2 { font-size: 26px; font-weight: 800; margin: 1.4em 0 .5em; letter-spacing: -.4px; }
.te-entry h3 { font-size: 21px; font-weight: 700; margin: 1.2em 0 .4em; color: var(--te-ink); }
.te-entry a { color: var(--te-bordo); text-decoration: underline; text-underline-offset: 3px; }
.te-entry strong { color: var(--te-ink); }
.te-entry ul, .te-entry ol { margin: 0 0 1.2em; padding-left: 1.3em; }
.te-entry li { margin-bottom: .4em; }
.te-entry img { border-radius: 12px; margin: 1.2em 0; box-shadow: var(--te-shadow-sm); }
.te-entry blockquote {
	margin: 1.4em 0; padding: 14px 22px; border-left: 4px solid var(--te-bordo);
	background: var(--te-paper-2); border-radius: 0 10px 10px 0; color: var(--te-body);
}

/* =============================================================
 * BOTÕES
 * ============================================================= */
.te-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 9px;
	padding: 14px 26px; border-radius: 10px; font-weight: 700; font-size: 15.5px;
	line-height: 1; letter-spacing: .2px; cursor: pointer; border: 1px solid transparent;
	transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
	white-space: nowrap; text-align: center;
}
.te-btn:active { transform: translateY(1px); }

.te-btn--wpp { background: var(--te-wpp); color: #fff; box-shadow: 0 8px 22px rgba(17,133,70,.28); }
.te-btn--wpp:hover { background: var(--te-wpp-2); color: #fff; box-shadow: 0 10px 26px rgba(17,133,70,.36); }

.te-btn--accent { background: var(--te-bordo); color: #fff; box-shadow: 0 8px 22px rgba(123,30,43,.28); }
.te-btn--accent:hover { background: var(--te-bordo-2); color: #fff; }

.te-btn--ghost { background: transparent; color: var(--te-ink); border-color: var(--te-line); }
.te-btn--ghost:hover { background: var(--te-ink); color: #fff; border-color: var(--te-ink); }

/* Ícone WhatsApp (máscara SVG) */
.te-wpp-ico {
	width: 18px; height: 18px; display: inline-block; flex: 0 0 auto; background: currentColor;
	-webkit-mask: no-repeat center / contain; mask: no-repeat center / contain;
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M16 3C9.4 3 4 8.2 4 14.7c0 2.6.9 5 2.4 7L4 29l7.5-2.3c1.4.7 2.9 1 4.5 1 6.6 0 12-5.2 12-11.7S22.6 3 16 3zm5.7 14.2c-.3-.2-1.8-.9-2.1-1-.3-.1-.5-.2-.7.2-.2.3-.8 1-.9 1.2-.2.2-.4.2-.7.1-.3-.2-1.3-.5-2.5-1.6-.9-.8-1.5-1.8-1.7-2.1-.2-.3 0-.5.1-.6l.5-.6c.2-.2.2-.4.3-.6.1-.2 0-.4 0-.6-.1-.2-.7-1.7-1-2.3-.3-.6-.5-.5-.7-.5h-.6c-.2 0-.6.1-.9.4-.3.3-1.1 1.1-1.1 2.7s1.2 3.1 1.3 3.3c.2.2 2.3 3.6 5.7 5 3.3 1.4 3.3.9 3.9.9.6-.1 1.8-.7 2.1-1.5.3-.7.3-1.3.2-1.5z'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M16 3C9.4 3 4 8.2 4 14.7c0 2.6.9 5 2.4 7L4 29l7.5-2.3c1.4.7 2.9 1 4.5 1 6.6 0 12-5.2 12-11.7S22.6 3 16 3zm5.7 14.2c-.3-.2-1.8-.9-2.1-1-.3-.1-.5-.2-.7.2-.2.3-.8 1-.9 1.2-.2.2-.4.2-.7.1-.3-.2-1.3-.5-2.5-1.6-.9-.8-1.5-1.8-1.7-2.1-.2-.3 0-.5.1-.6l.5-.6c.2-.2.2-.4.3-.6.1-.2 0-.4 0-.6-.1-.2-.7-1.7-1-2.3-.3-.6-.5-.5-.7-.5h-.6c-.2 0-.6.1-.9.4-.3.3-1.1 1.1-1.1 2.7s1.2 3.1 1.3 3.3c.2.2 2.3 3.6 5.7 5 3.3 1.4 3.3.9 3.9.9.6-.1 1.8-.7 2.1-1.5.3-.7.3-1.3.2-1.5z'/%3E%3C/svg%3E");
}

/* =============================================================
 * CABEÇALHO (claro)
 * ============================================================= */
.site-header {
	position: sticky; top: 0; z-index: 1000;
	background: rgba(255,255,255,.94);
	backdrop-filter: saturate(140%) blur(8px);
	border-bottom: 1px solid var(--te-line);
}
.site-header .te-stripe { position: absolute; bottom: -5px; left: 0; }

.header-bar {
	display: flex; align-items: center; justify-content: space-between; gap: 18px;
	min-height: var(--te-head-h); padding-top: 10px; padding-bottom: 10px;
}

.brand-chip {
	display: inline-flex; align-items: center; justify-content: center;
	background: #fff; border: 1px solid var(--te-line); border-radius: 12px; padding: 6px 10px;
	box-shadow: var(--te-shadow-sm);
}
.brand-chip img { height: 62px; width: auto; }
.brand-chip--sm img { height: 50px; }
.brand-logo { display: inline-flex; flex: 0 0 auto; }

/* Menu desktop */
.nav-desk { margin-left: auto; }
.nav-desk .menu { list-style: none; display: flex; align-items: center; gap: 4px; }
.nav-desk .menu > li { position: relative; }
.nav-desk .menu > li > a {
	display: block; padding: 12px 14px; color: var(--te-ink); font-weight: 600; font-size: 15px;
	border-radius: 8px;
}
.nav-desk .menu > li > a:hover { color: var(--te-bordo); background: rgba(123,30,43,.08); }
.nav-desk .menu-item-has-children > a::after {
	content: "▾"; font-size: 11px; margin-left: 6px; color: var(--te-bordo); vertical-align: middle;
}

/* Dropdown */
.nav-desk .sub-menu {
	position: absolute; top: calc(100% + 6px); left: 0; min-width: 250px;
	list-style: none; background: #fff; border: 1px solid var(--te-line);
	border-radius: 12px; padding: 8px; box-shadow: var(--te-shadow);
	opacity: 0; visibility: hidden; transform: translateY(8px);
	transition: opacity .18s ease, transform .18s ease, visibility .18s;
	max-height: 70vh; overflow-y: auto;
}
.nav-desk .menu > li:hover > .sub-menu,
.nav-desk .menu > li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-desk .sub-menu li a {
	display: block; padding: 10px 14px; color: var(--te-body); font-size: 14.5px; font-weight: 500; border-radius: 8px;
}
.nav-desk .sub-menu li a:hover { background: rgba(123,30,43,.12); color: var(--te-bordo); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-cta { padding: 12px 20px; font-size: 14.5px; }

/* Hambúrguer */
.nav-toggle {
	display: none; width: 46px; height: 42px; border: 1px solid var(--te-line);
	background: #fff; border-radius: 10px; cursor: pointer; padding: 0;
	flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--te-ink); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================================
 * MENU MOBILE (DRAWER claro)
 * ============================================================= */
.nav-mobile { position: fixed; inset: 0; z-index: 2000; visibility: hidden; }
.nav-mobile.is-open { visibility: visible; }

.nav-mobile-backdrop {
	position: absolute; inset: 0; background: rgba(43,43,43,.45);
	opacity: 0; transition: opacity .28s ease;
}
.nav-mobile.is-open .nav-mobile-backdrop { opacity: 1; }

.nav-mobile-panel {
	position: absolute; top: 0; right: 0; height: 100%; width: min(88vw, 360px);
	background: #fff; border-left: 1px solid var(--te-line);
	box-shadow: -20px 0 50px rgba(43,43,43,.18);
	transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1);
	display: flex; flex-direction: column; overflow-y: auto; padding: 16px;
}
.nav-mobile.is-open .nav-mobile-panel { transform: translateX(0); }

.nm-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--te-line); }
.nm-close { background: none; border: none; color: var(--te-muted); font-size: 34px; line-height: 1; cursor: pointer; padding: 0 6px; }
.nm-close:hover { color: var(--te-ink); }

.nav-mobile .menu { list-style: none; }
.nav-mobile .menu > li { border-bottom: 1px solid var(--te-line); }
.nav-mobile .menu > li > a { display: block; padding: 14px 6px; color: var(--te-ink); font-weight: 600; font-size: 16px; }
.nav-mobile .menu-item-has-children { position: relative; }
.nav-mobile .menu-item-has-children > a { display: flex; align-items: center; justify-content: space-between; }
.nav-mobile .menu-item-has-children > a::after {
	content: "+"; font-size: 22px; color: var(--te-bordo); font-weight: 400; transition: transform .2s ease;
}
.nav-mobile .menu-item-has-children.open > a::after { content: "−"; }

.nav-mobile .sub-menu { list-style: none; max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.nav-mobile .menu-item-has-children.open > .sub-menu { max-height: 600px; }
.nav-mobile .sub-menu li a { display: block; padding: 11px 6px 11px 18px; color: var(--te-muted); font-size: 14.5px; }
.nav-mobile .sub-menu li a:hover { color: var(--te-bordo); }
.nav-mobile .sub-menu li:last-child a { padding-bottom: 14px; }

.nm-cta { display: grid; gap: 10px; margin-top: 18px; }
.nm-cta .te-btn { width: 100%; }

/* =============================================================
 * BOTÕES FLUTUANTES
 * ============================================================= */
.te-float { position: fixed; right: 16px; bottom: 16px; z-index: 900; display: flex; flex-direction: column; gap: 10px; }
.te-float-btn {
	display: inline-flex; align-items: center; gap: 10px;
	background: var(--te-wpp); color: #fff; border-radius: 50px; padding: 12px 18px;
	box-shadow: 0 8px 24px rgba(17,133,70,.4); font-weight: 700; overflow: hidden;
	transition: background .2s ease, transform .15s ease;
}
.te-float-btn:hover { background: var(--te-wpp-2); color: #fff; transform: translateY(-2px); }
.te-float-btn svg { flex: 0 0 auto; }
.te-float-txt { display: flex; flex-direction: column; line-height: 1.15; }
.te-float-txt strong { font-size: 14px; }
.te-float-txt small { font-size: 11.5px; opacity: .9; font-weight: 500; }

.te-float-btn { animation: mcPulse 2.6s ease-in-out infinite; }
@keyframes mcPulse {
	0%, 100% { box-shadow: 0 8px 24px rgba(17,133,70,.4); }
	50% { box-shadow: 0 8px 30px rgba(17,133,70,.7); }
}

/* =============================================================
 * FORMULÁRIO DE ORÇAMENTO
 * ============================================================= */
.te-form {
	background: #fff; border: 1px solid var(--te-line); border-radius: var(--te-radius);
	padding: 26px; box-shadow: var(--te-shadow); max-width: 620px; margin: 0 auto;
}
.te-form-row { margin-bottom: 14px; }
.te-form-row label { display: block; font-size: 13.5px; font-weight: 600; color: var(--te-ink); margin-bottom: 6px; }
.te-form-row input {
	width: 100%; background: #fff; border: 1px solid var(--te-line); color: var(--te-ink);
	border-radius: 10px; padding: 13px 15px; font-family: var(--te-font); font-size: 15px;
	transition: border-color .2s ease, box-shadow .2s ease;
}
.te-form-row input::placeholder { color: #757068; }
.te-form-row input:focus { outline: none; border-color: var(--te-bordo); box-shadow: 0 0 0 3px rgba(123,30,43,.18); }

.te-form-hint { font-size: 14px; font-weight: 600; color: var(--te-ink); margin: 18px 0 12px; text-align: center; }
.te-form-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.te-form-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 9px; text-align: center;
	background: var(--te-wpp); color: #fff; border-radius: 10px; padding: 15px 16px;
	font-weight: 700; font-size: 14.5px; line-height: 1.2;
	box-shadow: 0 8px 22px rgba(17,133,70,.28); transition: background .2s ease, transform .15s ease;
}
.te-form-btn:hover { background: var(--te-wpp-2); color: #fff; transform: translateY(-1px); }
.te-form-btn:active { transform: translateY(1px); }

/* =============================================================
 * GLOSSÁRIO
 * ============================================================= */
.te-gloss .gloss-head, .te-gloss-single .gs-header {
	background: var(--te-paper-2); border: 1px solid var(--te-line); border-radius: var(--te-radius);
	padding: 30px; margin-bottom: 26px;
}
.gloss-count { color: var(--te-muted); font-weight: 600; margin: 0; }
.gloss-count strong { color: var(--te-bordo); }

/* Busca */
.gloss-search { display: flex; gap: 10px; margin: 20px 0 24px; }
.gloss-search input {
	flex: 1; background: #fff; border: 1px solid var(--te-line); color: var(--te-ink);
	border-radius: 10px; padding: 13px 16px; font-family: var(--te-font); font-size: 15px;
}
.gloss-search input::placeholder { color: #757068; }
.gloss-search input:focus { outline: none; border-color: var(--te-bordo); box-shadow: 0 0 0 3px rgba(123,30,43,.18); }

/* Filtros A-Z */
.gloss-letras { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 28px; }
.gloss-letra {
	display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px;
	padding: 0 10px; background: #fff; border: 1px solid var(--te-line); border-radius: 9px;
	color: var(--te-body); font-weight: 700; font-size: 14px; transition: all .18s ease;
}
.gloss-letra:hover { border-color: var(--te-bordo); color: var(--te-bordo); }
.gloss-letra.is-active { background: var(--te-bordo); border-color: var(--te-bordo); color: #fff; }

/* Grid de cards */
.gloss-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gloss-card {
	position: relative; display: flex; flex-direction: column; background: #fff;
	border: 1px solid var(--te-line); border-radius: var(--te-radius); padding: 24px 22px;
	overflow: hidden; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.gloss-card::before { content: ""; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--te-bordo); }
.gloss-card:hover { transform: translateY(-4px); border-color: var(--te-bordo); box-shadow: var(--te-shadow); }
.gloss-card-letra {
	display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px;
	background: rgba(123,30,43,.14); color: var(--te-bordo); font-weight: 800; font-size: 20px;
	border-radius: 10px; margin-bottom: 14px;
}
.gloss-card-title { font-size: 19px; font-weight: 700; margin: 0 0 8px; color: var(--te-ink); }
.gloss-card-excerpt { font-size: 14.5px; color: var(--te-muted); margin: 0 0 18px; flex: 1; line-height: 1.6; }
.gloss-card-btn { align-self: flex-start; padding: 10px 18px; font-size: 13.5px; }

.gloss-vazio { background: var(--te-paper-2); border: 1px solid var(--te-line); border-radius: var(--te-radius); padding: 40px; text-align: center; color: var(--te-muted); }

/* Paginação */
.gloss-pag { margin-top: 34px; }
.gloss-pag .nav-links, .gloss-pag .page-numbers { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; list-style: none; }
.gloss-pag .page-numbers {
	display: inline-flex; align-items: center; justify-content: center; min-width: 42px; height: 42px; padding: 0 12px;
	background: #fff; border: 1px solid var(--te-line); border-radius: 9px; color: var(--te-body); font-weight: 700;
}
.gloss-pag .page-numbers.current { background: var(--te-bordo); border-color: var(--te-bordo); color: #fff; }
.gloss-pag a.page-numbers:hover { border-color: var(--te-bordo); color: var(--te-bordo); }

/* CTA do glossário */
.gloss-cta, .gs-cta {
	margin-top: 40px; background: var(--te-paper-2);
	border: 1px solid var(--te-line); border-radius: 18px; padding: 40px 30px; text-align: center;
}
.gloss-cta h2, .gs-cta h2 { font-size: clamp(22px,3vw,28px); font-weight: 800; margin: 0 0 10px; color: var(--te-ink); }
.gloss-cta-botoes, .gs-cta-botoes { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin: 18px 0 0; }

/* Glossário single */
.gs-thumb { margin: 0 0 24px; }
.gs-thumb img { border-radius: var(--te-radius); box-shadow: var(--te-shadow-sm); }
.gs-content { margin-bottom: 10px; }

.gs-rel { margin-top: 44px; }
.gs-rel-title { font-size: 22px; font-weight: 800; margin-bottom: 18px; color: var(--te-ink); }
.gs-rel-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gs-rel-card {
	display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--te-line);
	border-radius: 12px; padding: 14px 16px; transition: border-color .2s ease, transform .2s ease;
}
.gs-rel-card:hover { border-color: var(--te-bordo); transform: translateY(-2px); }
.gs-rel-letra {
	display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; flex: 0 0 auto;
	background: rgba(123,30,43,.14); color: var(--te-bordo); font-weight: 800; border-radius: 8px;
}
.gs-rel-nome { font-size: 14.5px; font-weight: 600; color: var(--te-body); }
.gs-rel-card:hover .gs-rel-nome { color: var(--te-ink); }
.gs-rel-todos { margin-top: 18px; }
.gs-rel-todos a { font-weight: 700; }

/* =============================================================
 * 404
 * ============================================================= */
.te-404 { text-align: center; padding-top: 70px; padding-bottom: 90px; }
.te-404-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 24px; }

/* =============================================================
 * RODAPÉ (claro)
 * ============================================================= */
.site-footer { background: var(--te-paper-2); border-top: 1px solid var(--te-line); margin-top: 60px; }

.footer-brand { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; padding-top: 40px; padding-bottom: 10px; }
.footer-tagline { color: var(--te-body); font-weight: 600; margin: 0; font-size: 15px; }

.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 34px; padding-top: 30px; padding-bottom: 40px; }
.f-col { min-width: 0; }
.f-title {
	position: relative; font-size: 16px; font-weight: 700; color: var(--te-ink); margin: 0 0 16px; padding-bottom: 10px;
	text-transform: uppercase; letter-spacing: .6px;
}
.f-title::after { content: ""; position: absolute; left: 0; bottom: 0; width: 34px; height: 3px; background: var(--te-bordo); border-radius: 2px; }
.f-title--gap { margin-top: 26px; }

.f-col p { color: var(--te-body); font-size: 14px; line-height: 1.7; }

.f-google { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.f-stars { color: var(--te-bordo); letter-spacing: 1px; }
.f-google strong { color: var(--te-ink); font-size: 16px; }
.f-google-qtd { color: var(--te-muted); font-size: 13px; }

.f-redes { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 14px; }
.f-redes a { color: var(--te-body); font-weight: 600; font-size: 14px; }
.f-redes a:hover { color: var(--te-bordo); }

.f-links { list-style: none; }
.f-links li { margin-bottom: 10px; }
.f-links a { color: var(--te-body); font-size: 14px; font-weight: 500; display: inline-flex; align-items: center; gap: 8px; }
.f-links a:hover { color: var(--te-bordo); }
.f-links--contato a { color: var(--te-ink); }
.f-horario { color: var(--te-muted); font-size: 13.5px; }

.footer-bar { border-top: 1px solid var(--te-line); padding: 20px 0; }
.footer-bar p { margin: 0; color: var(--te-muted); font-size: 13px; text-align: center; }
.footer-bar strong { color: var(--te-body); }

/* =============================================================
 * FOCO ACESSÍVEL
 * ============================================================= */
a:focus-visible, button:focus-visible, input:focus-visible, .te-btn:focus-visible, .gloss-letra:focus-visible {
	outline: 2px solid var(--te-bordo); outline-offset: 2px;
}

/* =============================================================
 * RESPONSIVO
 * ============================================================= */
@media (max-width: 1024px) {
	.footer-grid { grid-template-columns: 1fr 1fr; gap: 30px 26px; }
	.gloss-grid { grid-template-columns: repeat(2, 1fr); }
	.gs-rel-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
	.nav-desk { display: none; }
	.nav-toggle { display: inline-flex; }
	.header-cta { display: none; }
}

@media (max-width: 768px) {
	body { font-size: 15.5px; }
	.te-content { padding-top: 34px; padding-bottom: 48px; }
	.te-form-btns { grid-template-columns: 1fr; }
	.te-float-txt { display: none; }
	.te-float-btn { width: 56px; height: 56px; padding: 0; justify-content: center; border-radius: 50%; }
	.te-float { right: 14px; bottom: 14px; }
	.brand-chip img { height: 50px; }
}

@media (max-width: 560px) {
	.footer-grid { grid-template-columns: 1fr; }
	.gloss-grid { grid-template-columns: 1fr; }
	.gs-rel-grid { grid-template-columns: 1fr; }
	.gloss-cta, .gs-cta { padding: 30px 20px; }
	.brand-chip img { height: 46px; }
	.te-form { padding: 20px; }
}

@media (prefers-reduced-motion: reduce) {
	* { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* Formulário com botão único de WhatsApp */
.te-form-btns--single { grid-template-columns: 1fr; }

/* Links internos automáticos: herdam a cor do texto com sublinhado sutil taupe */
.te-auto-link { color: inherit; text-decoration: underline; text-decoration-color: var(--te-bordo); text-underline-offset: 2px; text-decoration-thickness: 1px; }
.te-auto-link:hover { color: var(--te-bordo); }

/* =============================================================
   ARQUITETURA VISUAL EXCLUSIVA — Toldos e Esquadrias
   Hero dividido, abas, contadores, zigue-zague, linha do tempo,
   depoimentos, toggle, lateral fixa. Estilos dos blocos TE_UI.
   ============================================================= */

/* --- Kicker com barrinha bordô (assinatura) --- */
.te-kick .elementor-heading-title {
	position: relative; display: inline-block;
	text-transform: uppercase; padding-left: 34px;
}
.te-kick .elementor-heading-title::before {
	content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
	width: 24px; height: 3px; background: var(--te-bordo);
}
.te-kick--c .elementor-heading-title { padding-left: 0; padding-top: 14px; }
.te-kick--c .elementor-heading-title::before { left: 50%; top: 0; transform: translateX(-50%); }

/* --- Foto com bloco bordô deslocado atrás (identidade do tema) --- */
.te-shot { position: relative; }
.te-shot::before {
	content: ""; position: absolute; z-index: 0;
	right: -14px; top: -14px; width: 62%; height: 58%;
	background: var(--te-bordo); border-radius: 4px;
}
.te-shot::after {
	content: ""; position: absolute; z-index: 0;
	left: -14px; bottom: -14px; width: 38%; height: 34%;
	border: 3px solid var(--te-ink); border-radius: 4px;
}
.te-shot > .elementor-widget-wrap,
.te-shot .elementor-widget-image { position: relative; z-index: 1; }
.te-shot .te-shot-img img {
	width: 100%; display: block; border-radius: 4px;
	box-shadow: 0 18px 44px rgba(43,43,43,.16);
}
.te-shot--zig::after { display: none; }
@media (max-width: 767px) {
	.te-shot::before { right: -8px; top: -8px; }
	.te-shot::after { display: none; }
}

/* --- Faixa listrada como divisória de seção --- */
.te-sec-stripe .elementor-widget-html { line-height: 0; }
.te-sec-stripe .te-stripe { height: 5px; }

/* --- Selos do hero (lista inline) --- */
.te-selos .elementor-icon-list-items { display: flex; flex-wrap: wrap; gap: 6px 22px; }
.te-selos .elementor-icon-list-item { margin: 0 !important; }

/* --- Migalha --- */
.te-crumb-sep { color: var(--te-muted); opacity: .6; }
.te-el-crumbs a { color: var(--te-muted); text-decoration: none; }
.te-el-crumbs a:hover { color: var(--te-bordo); }

/* --- ABAS DE CATEGORIA --- */
.te-tabs .elementor-tabs-wrapper { gap: 6px; }
.te-tabs .elementor-tab-title {
	border: 1px solid var(--te-line) !important; border-bottom: none !important;
	border-radius: 8px 8px 0 0; background: var(--te-paper-2);
	padding: 15px 24px !important; transition: color .18s, background .18s;
}
.te-tabs .elementor-tab-title.elementor-active {
	background: var(--te-card) !important;
	border-bottom: 1px solid var(--te-card) !important;
	box-shadow: inset 0 3px 0 var(--te-bordo);
}
.te-tabs .elementor-tab-title:not(.elementor-active):hover { color: var(--te-bordo) !important; }
.te-tabs .elementor-tabs-content-wrapper { border-radius: 0 10px 10px 10px; }
.te-tabs .elementor-tab-content { padding: 28px !important; }
.te-tabs .elementor-tab-mobile-title {
	border: 1px solid var(--te-line) !important; border-radius: 8px; margin-bottom: 6px;
	background: var(--te-paper-2); font-weight: 800;
}
.te-tablist {
	list-style: none; margin: 18px 0 0; padding: 0;
	display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2px 24px;
}
.te-tablist li { margin: 0; }
.te-tablist a {
	display: block; padding: 9px 0 9px 20px; position: relative;
	color: var(--te-ink); text-decoration: none; font-weight: 600; font-size: 15px;
	border-bottom: 1px dashed var(--te-line); transition: color .16s, padding .16s;
}
.te-tablist a::before {
	content: "›"; position: absolute; left: 4px; top: 50%; transform: translateY(-52%);
	color: var(--te-bordo); font-weight: 800;
}
.te-tablist a:hover { color: var(--te-bordo); padding-left: 26px; }
.te-tabcta { margin: 24px 0 0; }
@media (max-width: 767px) { .te-tablist { grid-template-columns: 1fr; } }

/* --- CONTADORES (faixa carvão) --- */
.te-counters .elementor-counter-number-wrapper { justify-content: center; }
.te-count { text-align: center; }
.te-count .elementor-counter-title { margin-top: 4px; }
.te-count + .te-count { border-left: 1px solid rgba(255,255,255,.10); }
@media (max-width: 767px) {
	.te-count + .te-count { border-left: none; }
	.te-count { padding: 14px 0; }
}

/* --- ZIGUE-ZAGUE --- */
.te-zig .elementor-widget-icon-list .elementor-icon-list-item { align-items: flex-start; }

/* --- CHECKLIST --- */
.te-check-list .elementor-icon-list-item {
	background: var(--te-card); border: 1px solid var(--te-line);
	border-left: 3px solid var(--te-bordo); border-radius: 8px;
	padding: 13px 15px !important; margin-bottom: 10px !important;
	align-items: flex-start;
}
.te-check-list .elementor-icon-list-icon { padding-top: 2px; }

/* --- LINHA DO TEMPO VERTICAL --- */
.te-timeline { position: relative; }
.te-timeline::before {
	content: ""; position: absolute; left: 12px; top: 8px; bottom: 26px;
	width: 2px; background: linear-gradient(180deg, var(--te-bordo), var(--te-line));
}
.te-tl-item { position: relative; }
.te-tl-num { position: relative; }
.te-tl-num::before {
	content: ""; position: absolute; left: 5px; top: 6px;
	width: 16px; height: 16px; border-radius: 50%;
	background: var(--te-paper-2); border: 3px solid var(--te-bordo); z-index: 1;
}
.te-tl-num .elementor-widget-heading { padding-left: 30px; }
@media (max-width: 767px) {
	.te-timeline::before { left: 8px; }
	.te-tl-num::before { left: 2px; width: 13px; height: 13px; border-width: 2px; }
	.te-tl-num .elementor-widget-heading { padding-left: 22px; }
}

/* --- DEPOIMENTOS --- */
.te-quote {
	background: var(--te-card); border: 1px solid var(--te-line);
	border-left: 3px solid var(--te-bordo); border-radius: 10px;
}
.te-quote > .elementor-widget-wrap { padding: 26px 24px !important; }
.te-testi .elementor-testimonial-wrapper { text-align: left; }
.te-testi .elementor-testimonial-content { margin-bottom: 14px; }
.te-testi .elementor-testimonial-content::before { content: "“"; color: var(--te-bordo); font-weight: 900; }
.te-testi .elementor-testimonial-content::after { content: "”"; color: var(--te-bordo); font-weight: 900; }
.te-testi .elementor-testimonial-meta { padding-top: 12px; border-top: 1px dashed var(--te-line); }
.te-testi .elementor-testimonial-name { display: block; }

/* --- FAQ EM TOGGLE --- */
.te-toggle .elementor-toggle-item { margin-bottom: 10px; }
.te-toggle .elementor-tab-title {
	border: 1px solid var(--te-line) !important; border-radius: 8px;
	padding: 16px 18px !important; transition: border-color .16s, background .16s;
}
.te-toggle .elementor-tab-title.elementor-active {
	border-color: var(--te-bordo) !important;
	border-radius: 8px 8px 0 0; background: var(--te-paper-2) !important;
}
.te-toggle .elementor-tab-title:hover { border-color: var(--te-bordo) !important; }
.te-toggle .elementor-tab-content {
	border: 1px solid var(--te-bordo) !important; border-top: none !important;
	border-radius: 0 0 8px 8px; padding: 4px 18px 18px !important;
}
.te-toggle .elementor-toggle-icon { opacity: .9; }

/* --- CTA + FORMULÁRIO (faixa carvão) --- */
.te-formcard > .elementor-widget-wrap {
	background: var(--te-card); border-radius: 12px;
	padding: 26px !important; box-shadow: 0 20px 50px rgba(0,0,0,.22);
}
.te-formcard--light > .elementor-widget-wrap {
	border: 1px solid var(--te-line); box-shadow: var(--te-shadow-sm);
}
.te-ctaform .te-form-hint { color: var(--te-muted); }

/* --- CARD LATERAL FIXO (páginas de serviço) --- */
.te-side-card {
	background: var(--te-card); border: 1px solid var(--te-line);
	border-top: 4px solid var(--te-bordo); border-radius: 12px;
	padding: 22px; box-shadow: var(--te-shadow-sm);
}
.te-side-top { margin-bottom: 16px; }
.te-side-eyebrow {
	display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: 1.4px;
	text-transform: uppercase; color: var(--te-bordo); margin-bottom: 6px;
}
.te-side-title { display: block; font-size: 18px; line-height: 1.35; color: var(--te-ink); font-weight: 800; }
.te-side-info { list-style: none; margin: 16px 0 0; padding: 14px 0 0; border-top: 1px dashed var(--te-line); }
.te-side-info li { display: flex; align-items: center; gap: 9px; font-size: 14.5px; color: var(--te-body); margin-bottom: 8px; }
.te-side-info a { color: var(--te-ink); font-weight: 700; text-decoration: none; }
.te-side-info a:hover { color: var(--te-bordo); }
.te-side-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--te-bordo); flex: none; }
.te-side-parc {
	margin: 12px 0 0; padding: 10px 12px; border-radius: 8px;
	background: rgba(123,30,43,.06); color: var(--te-bordo);
	font-size: 14px; text-align: center;
}
@media (min-width: 1025px) {
	.te-side > .elementor-widget-wrap { position: sticky; top: calc(var(--te-head-h) + 22px); align-items: flex-start; }
}

/* --- DESTAQUE (alert) --- */
.te-alert .elementor-alert {
	border-radius: 10px; border-left-width: 4px; padding: 18px 20px;
}
.te-alert .elementor-alert-title { display: none; }

/* --- LISTA DE DIFERENCIAIS (páginas de serviço) --- */
.te-feats .elementor-icon-list-item { align-items: flex-start; }
.te-feats .elementor-icon-list-icon { padding-top: 3px; }
.te-feats .elementor-icon-list-text strong { color: var(--te-ink); }

/* --- GRADE IMAGE-BOX --- */
.te-ibox {
	background: var(--te-card); border: 1px solid var(--te-line); border-radius: 12px;
	overflow: hidden; transition: transform .18s, box-shadow .18s, border-color .18s;
}
.te-ibox:hover { transform: translateY(-4px); border-color: var(--te-bordo); box-shadow: var(--te-shadow); }
.te-ibox > .elementor-widget-wrap { padding: 0 !important; }
.te-ibox-w .elementor-image-box-img { margin: 0 !important; width: 100%; }
.te-ibox-w .elementor-image-box-img img { width: 100%; height: 190px; object-fit: cover; display: block; }
.te-ibox-w .elementor-image-box-content { padding: 20px 20px 22px; }
.te-ibox-w .elementor-image-box-title { margin-bottom: 8px; }
.te-ibox-w .elementor-image-box-title a { color: inherit; text-decoration: none; }
.te-ibox-w .elementor-image-box-description::after {
	content: "Ver detalhes ›"; display: block; margin-top: 12px;
	color: var(--te-bordo); font-weight: 800; font-size: 14px;
}

/* --- CARROSSEL --- */
.te-carousel .swiper-slide img { border-radius: 4px; }
.te-carousel .elementor-swiper-button { color: var(--te-bordo); }

/* --- MAPA --- */
.te-map iframe { display: block; filter: grayscale(.35) contrast(1.05); }

/* --- LISTA DE CONTATO --- */
.te-contato-list .elementor-icon-list-item { align-items: flex-start; }
.te-contato-list .elementor-icon-list-icon { padding-top: 3px; }
.te-contato-list a { color: var(--te-body); text-decoration: none; }
.te-contato-list a:hover { color: var(--te-bordo); }

/* --- BARRA SUPERIOR DE UTILIDADES (header exclusivo) --- */
.te-topbar { background: var(--te-ink); color: #D8D8D8; font-size: 13.5px; }
.te-topbar-in { display: flex; align-items: center; gap: 14px; height: 40px; }
.te-topbar-item { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.te-topbar-slogan { color: #fff; font-weight: 700; }
.te-topbar-sep { width: 1px; height: 16px; background: rgba(255,255,255,.18); }
.te-topbar-wpp { margin-left: auto; color: #fff; font-weight: 800; text-decoration: none; }
.te-topbar-wpp:hover { color: var(--te-wpp); }
.te-topbar-wpp .te-wpp-ico { width: 15px; height: 15px; }
@media (max-width: 900px) {
	.te-topbar-slogan, .te-topbar-sep { display: none; }
	.te-topbar-in { justify-content: space-between; gap: 8px; }
	.te-topbar { font-size: 12.5px; }
}

/* --- FAIXA DE CHAMADA DO RODAPÉ --- */
.te-fcta { background: var(--te-bordo); color: #fff; }
.te-fcta-in {
	display: flex; align-items: center; justify-content: space-between; gap: 24px;
	padding-top: 26px; padding-bottom: 26px;
}
.te-fcta-txt { display: flex; flex-direction: column; gap: 4px; }
.te-fcta-txt strong { font-size: 22px; font-weight: 900; letter-spacing: -.4px; }
.te-fcta-txt span { font-size: 15px; color: rgba(255,255,255,.86); }
.te-fcta-btn { flex: none; }
@media (max-width: 767px) {
	.te-fcta-in { flex-direction: column; align-items: flex-start; gap: 16px; }
	.te-fcta-txt strong { font-size: 19px; }
	.te-fcta-btn { width: 100%; }
}

/* =============================================================
   CABEÇALHO E RODAPÉ EM ELEMENTOR (Construtor de Temas)
   Estilos das partes geradas em Modelos → Construtor de Temas.
   ============================================================= */

/* --- Wrapper das locations do Elementor Pro --- */
.elementor-location-header { position: relative; z-index: 1000; }

/* --- Barra superior --- */
.te-eh-top .elementor-widget-text-editor p { margin: 0; }
.te-eh-wpp a { color: #fff; text-decoration: none; display: inline-flex; align-items: center; gap: 7px; }
.te-eh-wpp a:hover { color: var(--te-wpp); }
.te-eh-wpp .te-wpp-ico { width: 15px; height: 15px; }
@media (max-width: 767px) { .te-eh-hide { display: none; } }

/* --- Barra principal --- */
.te-eh-bar { border-bottom: 1px solid var(--te-line); }
.te-eh-bar > .elementor-container { align-items: center; }
.te-eh-bar.elementor-sticky--effects { box-shadow: 0 6px 24px rgba(43,43,43,.10); }
.te-eh-logo .elementor-widget-image img { display: block; }
.te-eh-acoes .elementor-widget-button { text-align: right; }
@media (max-width: 767px) {
	.te-eh-acoes { display: none; }
	.te-eh-bar { padding-top: 6px; padding-bottom: 6px; }
}

/* --- Menu (nav-menu do Pro dentro do cabeçalho) --- */
.te-eh-nav .elementor-nav-menu--main .elementor-item { font-weight: 700; }
.te-eh-nav .elementor-nav-menu--dropdown { box-shadow: 0 14px 34px rgba(43,43,43,.16); border-radius: 10px; overflow: hidden; }

/* --- Menu via shortcode (sem Pro) --- */
.te-eh-menu-sc .nav-desk { display: flex; justify-content: flex-end; }
@media (max-width: 1024px) { .te-eh-menu-sc .nav-desk { display: none; } }

/* --- Faixa listrada do cabeçalho --- */
.te-eh-stripe .elementor-widget-html { line-height: 0; }
.te-eh-stripe .elementor-container { max-width: 100% !important; }

/* --- Rodapé: faixa de chamada --- */
.te-ef-cta > .elementor-container { align-items: center; }

/* --- Rodapé: marca --- */
.te-ef-logo img { background: #fff; border-radius: 10px; padding: 8px; }

/* --- Rodapé: colunas de links --- */
.te-ef-title { position: relative; padding-bottom: 10px; }
.te-ef-title::after {
	content: ""; position: absolute; left: 0; bottom: 0;
	width: 30px; height: 2px; background: var(--te-bordo);
}
.te-ef-links .elementor-icon-list-item { align-items: flex-start; }
.te-ef-links .elementor-icon-list-icon { padding-top: 4px; }
.te-ef-links a:hover .elementor-icon-list-text { color: #fff; }
.te-ef-links .elementor-icon-list-text { transition: color .16s ease; }

/* --- Rodapé: barra final --- */
.te-ef-bar .elementor-widget-text-editor p { margin: 0; }
