/* =========================================================================
   TK Esquadrias — estilos do site
   Depende de colors_and_type.css (variáveis e tipografia)

   Índice
   01. Layout base e utilitários
   02. Botões
   03. Hero (sem barra de cabeçalho)
   04. Selos de credibilidade
   05. Esquadrias de Alumínio
   06. Produtos
   07. Portfólio (marquee + vídeos)
   08. Depoimentos
   09. Quem Somos
   10. Contato (formulário)
   11. Mapa
   12. Rodapé
   13. Página de Política de Privacidade
   14. Responsivo
   ====================================================================== */

/* -------------------------------------------------------------------------
   01. Layout base e utilitários
   ---------------------------------------------------------------------- */

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

/* Sem header fixo, âncoras não precisam de compensação de rolagem —
   só um respiro para o título não colar no topo da janela. */
[id] { scroll-margin-top: 24px; }

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

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

.wt-section--nevoa { background: var(--tk-nevoa); }

.wt-section__head {
    max-width: 760px;
    margin: 0 auto 56px;
    text-align: center;
}

.wt-section__head h2 { margin-bottom: 16px; }

.wt-skip {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 1000;
    padding: 12px 20px;
    background: var(--tk-azul);
    color: #fff;
}
.wt-skip:focus { left: 12px; top: 12px; color: #fff; }

:where(a, button, input, textarea, summary):focus-visible {
    outline: 2px solid var(--tk-ciano);
    outline-offset: 3px;
}

/* Linha de acento com o gradiente do arco */
.wt-arco-line {
    height: 3px;
    background: var(--tk-arco);
    border: 0;
    margin: 0;
}

/* Texto justificado (padrão do cliente) em coluna estreita abre buracos entre
   as palavras — a hifenização em pt-BR fecha esses vãos. */
.wt-hero__desc,
.wt-esquadrias__texto,
.wt-produto__desc,
.wt-quem__texto,
.wt-legal__body p {
    hyphens: auto;
    -webkit-hyphens: auto;
}

/* -------------------------------------------------------------------------
   02. Botões
   ---------------------------------------------------------------------- */

.wt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border: 1px solid transparent;
    border-radius: var(--wt-radius);
    font-family: var(--tk-sans);
    font-size: .9375rem;
    font-weight: 600;
    letter-spacing: .02em;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
}

.wt-btn svg { width: 19px; height: 19px; flex: 0 0 auto; }

/* Primário — o arco da marca. Um destaque por vista. */
.wt-btn--primary {
    background: var(--tk-arco);
    background-size: 160% 100%;
    background-position: 0% 50%;
    color: #fff;
    box-shadow: 0 10px 24px rgba(4, 39, 126, .22);
}
.wt-btn--primary:hover {
    color: #fff;
    background-position: 100% 50%;
    transform: translateY(-2px);
    box-shadow: var(--tk-sombra-forte);
}

.wt-btn--outline {
    background: transparent;
    color: var(--tk-azul);
    border-color: var(--tk-prata);
}
.wt-btn--outline:hover {
    color: var(--tk-azul);
    border-color: var(--tk-azul);
    background: var(--tk-nevoa-azul);
    transform: translateY(-2px);
}

.wt-btn--sm { padding: 11px 20px; font-size: .875rem; }
.wt-btn--block { width: 100%; }

/* Variantes sobre fundo escuro */
.wt-footer .wt-btn--outline,
.wt-legal .wt-btn--outline {
    color: #fff;
    border-color: rgba(255, 255, 255, .3);
}
.wt-footer .wt-btn--outline:hover,
.wt-legal .wt-btn--outline:hover {
    background: rgba(255, 255, 255, .08);
    border-color: var(--tk-ciano);
    color: #fff;
}

/* -------------------------------------------------------------------------
   03. Hero
   (o site não tem barra de cabeçalho — a marca abre o hero)
   ---------------------------------------------------------------------- */

.wt-hero {
    position: relative;
    padding-block: 56px 96px;
    overflow: hidden;
}

/* O logo ocupa o lugar do antigo eyebrow: é o primeiro elemento da página.
   A altura vive numa variável porque a imagem ao lado usa ela para se alinhar. */
.wt-hero {
    --wt-hero-logo-h:  112px;
    --wt-hero-logo-mb: 28px;
}

.wt-hero__logo {
    width: auto;
    height: var(--wt-hero-logo-h);
    margin-bottom: var(--wt-hero-logo-mb);
    object-fit: contain;
}

.wt-hero__inner {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: stretch;
    gap: 64px;
}

.wt-hero__title { margin-bottom: 22px; }

.wt-hero__desc {
    max-width: 56ch;
    margin-bottom: 34px;
    text-align: justify;
    color: var(--tk-fumaca);
    font-size: 1.0625rem;
}

.wt-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Mídia — a imagem cobre exatamente o bloco de texto: começa na linha do H1
   (daí o recuo igual à altura do logo) e termina no fim dos botões. Sem
   aspect-ratio: quem manda na altura é a coluna de texto ao lado. */
.wt-hero__media {
    position: relative;
    display: flex;
    margin-top: calc(var(--wt-hero-logo-h) + var(--wt-hero-logo-mb));
}

.wt-slideshow {
    position: relative;
    flex: 1;
    min-height: 420px;
    border-radius: var(--wt-radius);
    overflow: hidden;
    background: var(--tk-nevoa);
    box-shadow: var(--tk-sombra-forte);
}
.wt-slideshow__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
}
.wt-slideshow__img.is-active { opacity: 1; }

/* Arco metálico atrás da imagem — assinatura da marca */
.wt-hero__arco {
    position: absolute;
    z-index: -1;
    right: -70px;
    bottom: -70px;
    width: 78%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--tk-arco);
    opacity: .16;
    filter: blur(2px);
}

/* -------------------------------------------------------------------------
   04. Selos de credibilidade
   ---------------------------------------------------------------------- */

.wt-cred {
    background: var(--tk-grafite-profundo);
    color: #fff;
    padding-block: 46px;
    position: relative;
}
.wt-cred::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: var(--tk-arco);
}

.wt-cred__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.wt-cred__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.wt-cred__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(201, 207, 216, .28);
    border-radius: var(--wt-radius);
    background: rgba(255, 255, 255, .04);
    color: var(--tk-ciano);
}
.wt-cred__icon svg { width: 24px; height: 24px; }

.wt-cred__title {
    margin: 0 0 6px;
    color: #fff;
    font-size: 1.0625rem;
}
.wt-cred__text {
    margin: 0;
    font-size: .9375rem;
    line-height: 1.6;
    color: var(--tk-prata);
}

/* -------------------------------------------------------------------------
   05. Esquadrias de Alumínio
   ---------------------------------------------------------------------- */

.wt-esquadrias__inner {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    align-items: center;
    gap: 64px;
}

/* A foto menor invade para a ESQUERDA (borda da página), nunca para o lado do
   texto — se sair pela direita ela come o gap do grid e encosta no parágrafo. */
.wt-esquadrias__media {
    position: relative;
    padding-bottom: 56px;
    padding-left: 56px;
}
.wt-esquadrias__media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--wt-radius);
    box-shadow: var(--tk-sombra-sutil);
}
.wt-esquadrias__media-2 {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 48% !important;
    aspect-ratio: 1 !important;
    border: 6px solid #fff;
    box-shadow: var(--tk-sombra-forte) !important;
}

.wt-esquadrias__texto {
    margin-bottom: 32px;
    text-align: justify;
    color: var(--tk-fumaca);
}

/* -------------------------------------------------------------------------
   06. Produtos
   ---------------------------------------------------------------------- */

.wt-produtos { background: var(--tk-nevoa); }

.wt-produtos__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* São 7 produtos: o último sobraria sozinho na última linha. Em vez de deixar
   dois vãos vazios ao lado, ele ocupa a largura toda deitado (foto à esquerda).
   Abaixo de 769px o grid é de 1 coluna e o cartão volta a ser vertical. */
/* Prefixo .wt-produtos__grid é necessário: as regras base de .wt-produto vêm
   depois no arquivo e, com a mesma especificidade, venceriam por ordem. */
@media (min-width: 769px) {
    .wt-produtos__grid .wt-produto--largo {
        grid-column: 1 / -1;
        flex-direction: row;
    }
    .wt-produtos__grid .wt-produto--largo .wt-produto__media {
        flex: 0 0 44%;
        aspect-ratio: auto;
        min-height: 340px;
    }
    .wt-produtos__grid .wt-produto--largo .wt-produto__body {
        justify-content: center;
        padding: 40px 44px;
    }
    .wt-produtos__grid .wt-produto--largo .wt-produto__desc { flex: 0 0 auto; }

    /* Deitado, o cartão mantém o texto à esquerda — centralizar só faz sentido
       nos verticais, onde a coluna é estreita. */
    .wt-produtos__grid .wt-produto--largo .wt-produto__title { text-align: left; }
    .wt-produtos__grid .wt-produto--largo .wt-produto__cta { align-self: flex-start; }

    /* O fio do arco acompanha a divisa: aqui ela é vertical. */
    .wt-produtos__grid .wt-produto--largo .wt-produto__media::after {
        top: 0; bottom: 0; left: auto; right: 0;
        width: 3px; height: auto;
        transform: scaleY(0);
        transform-origin: top;
    }
    .wt-produtos__grid .wt-produto--largo:hover .wt-produto__media::after { transform: scaleY(1); }
}

.wt-produto {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid rgba(201, 207, 216, .5);
    border-radius: var(--wt-radius);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.wt-produto:hover {
    transform: translateY(-4px);
    border-color: transparent;
    box-shadow: var(--tk-sombra-forte);
}

.wt-produto__media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--tk-nevoa);
}
.wt-produto__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.wt-produto:hover .wt-produto__media img { transform: scale(1.05); }

/* Fio do arco entre a foto e o texto */
.wt-produto__media::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 3px;
    background: var(--tk-arco);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}
.wt-produto:hover .wt-produto__media::after { transform: scaleX(1); }

.wt-produto__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 26px 24px 24px;
}

.wt-produto__title { margin-bottom: 10px; text-align: center; }

.wt-produto__desc {
    flex: 1;
    margin-bottom: 20px;
    font-size: .9375rem;
    line-height: 1.68;
    color: var(--tk-fumaca);
    text-align: justify;
}

.wt-produto__cta { align-self: center; }

/* -------------------------------------------------------------------------
   07. Portfólio (marquee + vídeos)
   ---------------------------------------------------------------------- */

.wt-portfolio { overflow: hidden; }

.wt-marquee {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.wt-marquee__track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: wt-marquee 80s linear infinite;
}
.wt-marquee--reverse .wt-marquee__track { animation-direction: reverse; }

.wt-marquee__item {
    flex: 0 0 auto;
    margin: 0;
    width: 340px;
    height: 260px;
    border-radius: var(--wt-radius);
    overflow: hidden;
    background: var(--tk-nevoa);
}
.wt-marquee__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes wt-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.wt-portfolio__videos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 48px;
}

.wt-video-btn {
    position: relative;
    display: block;
    padding: 0;
    border: 0;
    border-radius: var(--wt-radius);
    overflow: hidden;
    cursor: pointer;
    background: #000;
    line-height: 0;
}
.wt-video-btn img { width: 100%; height: 100%; object-fit: cover; }

.wt-video-btn--vertical {
    flex: 0 0 auto;
    width: 300px;
    aspect-ratio: 9 / 16;
}

.wt-video-btn__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(17, 17, 17, .22);
    transition: background-color .2s ease;
}
.wt-video-btn__play svg {
    width: 34px; height: 34px;
    padding: 14px;
    box-sizing: content-box;
    border-radius: 50%;
    background: var(--tk-arco);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .35);
    transition: transform .2s ease;
}
.wt-video-btn:hover .wt-video-btn__play { background: rgba(17, 17, 17, .1); }
.wt-video-btn:hover .wt-video-btn__play svg { transform: scale(1.08); }

.wt-video-placeholder {
    flex: 0 0 auto;
    width: 300px;
    aspect-ratio: 9 / 16;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px dashed var(--tk-prata);
    border-radius: var(--wt-radius);
    background: var(--tk-nevoa);
    color: var(--tk-fumaca);
    font-size: .875rem;
    letter-spacing: .04em;
}
.wt-video-placeholder svg { width: 34px; height: 34px; color: var(--tk-prata); }

/* Mesmo placeholder sobre as seções grafite */
.wt-video-placeholder--escuro {
    border-color: rgba(201, 207, 216, .28);
    background: rgba(255, 255, 255, .04);
    color: var(--tk-prata);
}
.wt-video-placeholder--escuro svg { color: var(--tk-ciano); }

.wt-portfolio__cta { margin-top: 48px; text-align: center; }

/* -------------------------------------------------------------------------
   08. Depoimentos
   ---------------------------------------------------------------------- */

.wt-reviews { background: var(--tk-nevoa); }

/* NUNCA limitar a largura: o Trustindex decide quantos cards mostrar por ela. */
.wt-reviews__widget { width: 100%; }

.wt-reviews__cta { text-align: center; margin-top: 32px; }

/* -------------------------------------------------------------------------
   09. Quem Somos
   ---------------------------------------------------------------------- */

/* Névoa: sem isso, Quem Somos ficaria branco encostado no Portfólio branco e a
   divisa entre as duas seções sumiria. */
.wt-quem { background: var(--tk-nevoa); }

.wt-quem__inner {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 64px;
}

.wt-quem__texto {
    margin-bottom: 32px;
    text-align: justify;
    color: var(--tk-fumaca);
}

.wt-quem__media { margin: 0; position: relative; }
.wt-quem__media img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--wt-radius);
    box-shadow: var(--tk-sombra-forte);
}
.wt-quem__media figcaption {
    margin-top: 14px;
    font-size: .8125rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--tk-fumaca);
    text-align: center;
}

/* -------------------------------------------------------------------------
   10. Contato (formulário)
   ---------------------------------------------------------------------- */

/* Fica no branco para alternar com o Quem Somos (névoa) logo acima. */
.wt-contato__inner {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 64px;
    align-items: start;
}

.wt-contato__list {
    list-style: none;
    margin: 30px 0 26px;
    padding: 0;
    display: grid;
    gap: 12px;
}
.wt-contato__list a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--tk-grafite);
    word-break: break-word;
}
.wt-contato__list svg { width: 19px; height: 19px; flex: 0 0 auto; color: var(--tk-azul); }
.wt-contato__list a:hover { color: var(--tk-azul); }

.wt-contato__horario {
    padding-top: 22px;
    border-top: 1px solid var(--tk-prata);
    font-size: .9375rem;
    color: var(--tk-fumaca);
}
.wt-contato__horario strong { color: var(--tk-grafite); }

/* Sobre o branco da seção, o cartão precisa da névoa para se destacar. */
.wt-contato__form-wrap {
    background: var(--tk-nevoa);
    border: 1px solid rgba(201, 207, 216, .7);
    border-radius: var(--wt-radius);
    padding: 36px;
    box-shadow: var(--tk-sombra-sutil);
}

.wt-form { display: grid; gap: 18px; }

.wt-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.wt-form__field { display: grid; gap: 8px; }
.wt-form__field > span {
    font-size: .8125rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--tk-fumaca);
}
.wt-form__field em { font-style: normal; color: var(--tk-ciano); }

.wt-form input,
.wt-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--tk-prata);
    border-radius: var(--wt-radius);
    background: #fff;
    font-size: 1rem;
    transition: border-color .18s ease, box-shadow .18s ease;
}
.wt-form input::placeholder,
.wt-form textarea::placeholder { color: #9aa2ad; }

.wt-form input:focus,
.wt-form textarea:focus {
    outline: 0;
    border-color: var(--tk-azul);
    box-shadow: 0 0 0 3px rgba(4, 39, 126, .12);
}

.wt-form textarea { resize: vertical; min-height: 132px; }

/* Honeypot — fora da tela, sem display:none (bots ignoram os escondidos) */
.wt-form__hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.wt-form__nota {
    margin: 0;
    font-size: .8125rem;
    color: var(--tk-fumaca);
    text-align: center;
}

.wt-alert {
    margin: 0 0 22px;
    padding: 14px 18px;
    border-radius: var(--wt-radius);
    font-size: .9375rem;
    border: 1px solid transparent;
}
.wt-alert--ok {
    background: var(--tk-nevoa-azul);
    border-color: var(--tk-azul);
    color: var(--tk-azul);
}
.wt-alert--erro {
    background: #FDECEC;
    border-color: #D94A4A;
    color: #A32020;
}

/* -------------------------------------------------------------------------
   11. Mapa (full-bleed)
   ---------------------------------------------------------------------- */

.wt-mapa {
    position: relative;
    line-height: 0;
    background: var(--tk-nevoa);
    border-top: 3px solid transparent;
    border-image: var(--tk-arco) 1;
}
.wt-mapa iframe {
    width: 100%;
    height: 460px;
    border: 0;
    filter: grayscale(.25) contrast(1.04);
}

/* -------------------------------------------------------------------------
   12. Rodapé
   ---------------------------------------------------------------------- */

.wt-footer {
    background: var(--tk-grafite-profundo);
    color: var(--tk-prata);
    font-size: .9375rem;
}

/* A coluna de contato ganha folga: com 1fr o e-mail quebrava no meio do
   domínio ("...dealumi / nio.com.br"). A de redes só precisa dos 3 ícones. */
.wt-footer__grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1.25fr .6fr;
    gap: 44px;
    padding-block: 64px 52px;
}

/* O logo é preto e não sobrevive ao fundo grafite. Em vez de uma placa branca
   atrás dele, recortamos a própria arte como máscara e pintamos de branco —
   a silhueta fica sobre o fundo escuro, sem caixa. A URL vem no --tk-logo
   inline, para acompanhar o logo do Customizer. */
.wt-footer__logo {
    display: block;
    width: 118px;
    aspect-ratio: 420 / 414;
    margin-bottom: 22px;
    background-color: #fff;

    -webkit-mask-image: var(--tk-logo);
            mask-image: var(--tk-logo);
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: left center;
            mask-position: left center;
    -webkit-mask-size: contain;
            mask-size: contain;
}

.wt-footer__brand p { color: var(--tk-prata); line-height: 1.7; }

.wt-footer__title {
    margin-bottom: 18px;
    font-size: .8125rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #fff;
}

.wt-footer__endereco {
    display: block;
    color: var(--tk-prata);
    line-height: 1.7;
}
.wt-footer__endereco:hover { color: var(--tk-ciano); }

.wt-footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }

.wt-footer__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--tk-prata);
    word-break: break-word;
}
.wt-footer__link svg { width: 18px; height: 18px; flex: 0 0 auto; color: var(--tk-ciano); }
.wt-footer__link:hover { color: #fff; }

/* contato@tkesquadriasdealuminio.com.br tem 37 caracteres: no corpo de 15px ele
   quebrava no meio do domínio. Um ponto menor cabe em uma linha só. */
.wt-footer__link--email span { font-size: .8125rem; letter-spacing: -.005em; }

.wt-footer__social { display: flex; gap: 12px; }
.wt-footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(201, 207, 216, .25);
    border-radius: var(--wt-radius);
    color: var(--tk-prata);
    transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.wt-footer__social a:hover {
    background: var(--tk-arco);
    border-color: transparent;
    color: #fff;
    transform: translateY(-2px);
}
.wt-footer__social svg { width: 20px; height: 20px; }

.wt-footer__bottom { border-top: 1px solid rgba(201, 207, 216, .16); }
.wt-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-block: 22px;
    font-size: .875rem;
}
.wt-footer__bottom-inner p { margin: 0; color: #8f97a3; }
.wt-footer__bottom-inner a { color: var(--tk-prata); }
.wt-footer__bottom-inner a:hover { color: var(--tk-ciano); }

.wt-footer__credit {
    border-top: 1px solid rgba(201, 207, 216, .16);
    padding-block: 9px;
    text-align: center;
    font-size: .8125rem;
    color: #7c838e;
}
.wt-footer__credit a { color: var(--tk-prata); }
.wt-footer__credit a:hover { color: var(--tk-ciano); }

/* -------------------------------------------------------------------------
   13. Página de Política de Privacidade
   ---------------------------------------------------------------------- */

.wt-legal { background: var(--tk-grafite-profundo); color: var(--tk-prata); }

.wt-legal__inner {
    width: 100%;
    max-width: 900px;
    margin-inline: auto;
    padding: 40px var(--wt-gutter) 88px;
}

.wt-legal__topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 64px;
}
.wt-legal__topbar .wt-footer__logo { margin-bottom: 0; }

.wt-legal .wt-section__head { margin-bottom: 12px; }
.wt-legal__title {
    color: #fff;
    white-space: nowrap;
}

.wt-legal__meta {
    margin-bottom: 56px;
    text-align: center;
    font-size: .875rem;
    color: #8f97a3;
}

.wt-legal__body { font-size: .9375rem; line-height: 1.8; }
.wt-legal__body p { text-align: justify; margin-bottom: 1.2em; }
.wt-legal__body h2 {
    margin: 48px 0 18px;
    padding-top: 32px;
    border-top: 1px solid rgba(201, 207, 216, .18);
    font-size: 1.5rem;
    color: #fff;
}
.wt-legal__body h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.wt-legal__body ul { margin: 0 0 1.2em; padding-left: 22px; }
.wt-legal__body li { margin-bottom: .5em; }
.wt-legal__body strong { color: #fff; }
.wt-legal__body a { color: var(--tk-ciano); text-decoration: underline; }

.wt-legal__actions--bottom { margin-top: 56px; text-align: center; }

/* -------------------------------------------------------------------------
   14. Responsivo
   ---------------------------------------------------------------------- */

@media (max-width: 1024px) {
    :root { --wt-section-pad: 72px; }

    .wt-hero__inner,
    .wt-esquadrias__inner,
    .wt-quem__inner,
    .wt-contato__inner {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .wt-hero { padding-block: 56px 72px; }
    .wt-hero__desc { max-width: none; }

    /* Em coluna única não há texto ao lado para alinhar: o recuo do logo sai. */
    .wt-hero__media { margin-top: 0; }

    /* Mídia depois do texto no mobile */
    .wt-esquadrias__media { order: 2; padding-right: 48px; padding-bottom: 48px; }
    .wt-esquadrias__content { order: 1; }

    .wt-produtos__grid { grid-template-columns: repeat(2, 1fr); }

    .wt-cred__grid { grid-template-columns: 1fr; gap: 24px; }

    .wt-footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    /* Marquee ~20% mais rápido em telas menores */
    .wt-marquee__track { animation-duration: 64s; }
    .wt-marquee__item { width: 260px; height: 200px; }

    .wt-mapa iframe { height: 340px; }

    /* Todo botão ocupa a linha inteira no mobile. */
    .wt-btn { width: 100%; }
    .wt-hero__actions,
    .wt-portfolio__cta,
    .wt-reviews__cta,
    .wt-legal__actions--bottom { display: flex; }
    .wt-produto__cta { align-self: stretch; }
    .wt-legal__topbar .wt-btn { width: auto; }
}

@media (max-width: 600px) {
    body { font-size: 16px; }

    .wt-hero__logo { height: 84px; margin-bottom: 22px; }

    .wt-section__head { margin-bottom: 40px; }

    .wt-produtos__grid { grid-template-columns: 1fr; }

    /* "O que fazemos": a foto passa a ocupar a largura toda e ganha altura —
       o recuo existia só para acomodar a segunda imagem, que aqui some. */
    .wt-esquadrias__media { padding: 0; }
    .wt-esquadrias__media-2 { display: none; }
    .wt-esquadrias__media img { aspect-ratio: 4 / 3.4; }

    /* Vídeos verticais do portfólio: dois por linha. Sem o padding-inline de
       48px do padrão — ele vale para um vídeo por linha; com dois, sobrariam
       ~108px de largura por vídeo. O respiro lateral fica por conta do
       .wt-container. */
    .wt-portfolio__videos {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
        padding-inline: 0;
    }
    .wt-portfolio__videos > * { width: 100%; max-width: none; }

    /* Telefone e e-mail: no corpo cheio o endereço de 37 caracteres quebrava
       em duas linhas na largura do celular. */
    .wt-contato__list a { font-size: .8125rem; gap: 10px; }
    .wt-contato__list svg { width: 17px; height: 17px; }

    .wt-contato__form-wrap { padding: 24px 20px; }
    .wt-form__row { grid-template-columns: 1fr; }

    /* Rodapé em 1 coluna, centralizado */
    .wt-footer__grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
    /* O logo é um bloco de largura fixa: text-align não o move. */
    .wt-footer__logo {
        margin-inline: auto;
        -webkit-mask-position: center;
                mask-position: center;
    }
    .wt-footer__list { justify-items: center; }
    .wt-footer__link { flex-direction: column; gap: 6px; }
    .wt-footer__social { justify-content: center; }
    .wt-footer__bottom-inner { flex-direction: column; align-items: center; text-align: center; }

    .wt-legal__topbar { flex-direction: column; margin-bottom: 40px; }
    .wt-legal__title { white-space: normal; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .wt-marquee__track { animation: none; }
    .wt-slideshow__img { transition: none; }
    .wt-btn:hover,
    .wt-produto:hover { transform: none; }
}
