/*
Theme Name: Transporte Seguros
Description: Tema filho do Hello Elementor com a identidade do Transporte Seguros (gradiente azul → verde). O conteúdo das páginas é montado no Elementor; a identidade visual (cores, cards, gradientes, formulários) vive aqui, num só lugar.
Author: Rodrigo Sasso
Template: hello-elementor
Version: 1.0.0
Requires PHP: 8.1
Text Domain: transporteseguros
*/

/* ============================================================
   COMO LER ESTE ARQUIVO

   1. Esta folha é carregada DEPOIS da do Elementor (a dependência está em
      functions.php). Vários seletores empatam em especificidade com os dele
      (`.e-con-full.e-flex` x `.e-con.grid3`) e, no empate, vale a última.
   2. Layout de container usa `.e-con.classe`; cor e tamanho de texto usam o
      prefixo `body`, porque o Elementor estiliza o conteúdo pelos seletores
      dele (`.elementor-widget-heading .elementor-heading-title`).
   3. Container "boxed" tem moldura em `.e-con` e conteúdo em `.e-con-inner`.
      Container "full" não tem `.e-con-inner`: os filhos são diretos.
   4. `::before` de container é do Elementor (o "background overlay" dele zera
      o nosso `content`). Usamos só `::after`, com camadas empilhadas.
   5. Ícones são SVG embutido em CSS. O site não carrega Font Awesome.
   6. O CSS que o Elementor gera por página vai embutido na página
      (`elementor_css_print_method=internal`): em hospedagem compartilhada o
      arquivo em uploads/ às vezes não é gravado e o layout desmonta.
   ============================================================ */

/* ============================================================
   1. Design tokens
   ============================================================ */
:root {
  --ts-blue: #0e3f76;
  --ts-blue-2: #155ea0;
  --ts-green: #2f9e44;
  --ts-green-d: #26863b;
  --ts-green-l: #8fe6a3;
  --ts-navy: #0f2740;
  --ts-ink: #12314f;
  --ts-muted: #5b6b7d;
  --ts-line: #e5ebf1;
  --ts-bg: #f4f8f4;
  --ts-wrap: 1140px;
  --ts-grad: linear-gradient(115deg, var(--ts-blue), var(--ts-blue-2) 45%, var(--ts-green));
}

/* ============================================================
   2. Base
   ============================================================ */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ts-ink);
  line-height: 1.6;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

body h1, body h2, body h3, body h4,
body .elementor-widget-heading .elementor-heading-title {
  margin: 0 0 .4em;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ts-ink);
}

body p { margin: 0 0 1em; }
img { max-width: 100%; height: auto; }

/* Esconder sem criar rolagem horizontal: `left:-9999px` amplia a área rolável
   da página e no celular o site sai torto. `clip` não tem esse efeito. */
.ts-oculto,
.ts-skip-link,
.nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.ts-skip-link {
  background: #fff;
  color: var(--ts-ink);
  z-index: 9999;
  border-radius: 0 0 8px 0;
  font-weight: 700;
}
.ts-skip-link:focus {
  width: auto;
  height: auto;
  margin: 0;
  padding: 12px 18px;
  overflow: visible;
  clip: auto;
  clip-path: none;
  top: 0;
  left: 0;
}

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

.wrap {
  max-width: var(--ts-wrap);
  margin-inline: auto;
  padding-inline: 24px;
  width: 100%;
}

/* ============================================================
   3. Header
   ============================================================ */
.ts-header {
  background: var(--ts-navy);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.ts-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}
.ts-brand {
  display: flex;
  align-items: center;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -.02em;
  text-decoration: none;
  white-space: nowrap;
}
.ts-brand b { color: #fff; }
.ts-brand span { color: var(--ts-green); }
.ts-brand .ts-brand-nome { color: #fff; }

/* Assinatura dupla: logotipo do órgão (Aparência > Personalizar > Identidade do
   site) à esquerda e o nome do site à direita, separados por um filete. Sem
   logotipo cadastrado, sobra só o nome — nada muda para quem não usa imagem.
   O limite de altura e largura evita que um arquivo grande estique o cabeçalho. */
.ts-brand-logo {
  display: block;
  height: 46px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
}
.ts-brand.has-logo { gap: 16px; }
.ts-brand.has-logo .ts-brand-nome {
  border-left: 1px solid rgba(255, 255, 255, .28);
  padding-left: 16px;
  font-size: 19px;
}

@media (max-width: 900px) {
  .ts-brand-logo { height: 38px; max-width: 210px; }
  .ts-brand.has-logo { gap: 12px; }
  .ts-brand.has-logo .ts-brand-nome { padding-left: 12px; font-size: 17px; }
}

/* No celular as duas marcas lado a lado não cabem junto com o botão do menu (42px):
   empilhadas, a assinatura ocupa a largura do logotipo e o botão volta para a linha. */
@media (max-width: 600px) {
  .ts-brand-logo { height: 26px; max-width: 146px; }
  .ts-brand.has-logo {
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
  }
  .ts-brand.has-logo .ts-brand-nome {
    border-left: 0;
    padding-left: 2px;
    font-size: 13px;
  }
}

.ts-nav ul {
  display: flex;
  gap: 26px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.ts-nav a {
  color: #dbe6f2;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}
.ts-nav a:hover,
.ts-nav .current-menu-item > a { color: var(--ts-green); }
.ts-nav .nav-cta > a {
  background: var(--ts-green);
  color: #fff;
  padding: 9px 18px;
  border-radius: 8px;
}
.ts-nav .nav-cta > a:hover { background: var(--ts-green-d); color: #fff; }

/* A caixa de seleção do menu mobile fica invisível mas continua focável (dá
   para abrir o menu pelo teclado, com Espaço). O rótulo só aparece no mobile. */
.nav-toggle-label { display: none; }
.nav-toggle:focus-visible + .nav-toggle-label {
  outline: 3px solid var(--ts-green);
  outline-offset: 2px;
}

/* ============================================================
   4. Footer
   ============================================================ */
.ts-footer { background: var(--ts-navy); color: #9fb3c8; }
.ts-footer .logos {
  display: flex;
  gap: 56px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 44px 24px;
  margin: 0;
  list-style: none;
}
.ts-footer .logos li {
  color: #c6d5e6;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
}

/* Selos em imagem: PNG branco em fundo transparente. O limite duplo (altura e
   largura) equilibra logos de proporções muito diferentes — o do INFRA S.A. é
   quase três vezes mais largo que o da ANTT na mesma altura. */
.ts-footer .logos-img { gap: 48px; }
.ts-footer .logos-img li { display: flex; align-items: center; }
.ts-footer .logos-img img {
  display: block;
  height: 40px;
  width: auto;
  max-width: 152px;
  object-fit: contain;
  opacity: .92;
  transition: opacity .2s;
}
.ts-footer .logos-img img:hover { opacity: 1; }

/* Selo quadrado (o brasão da República): a 40px de altura ele fica com metade da
   presença dos wordmarks e o desenho vira mancha. A classe vem do footer.php,
   pela proporção do arquivo. */
.ts-footer .logos-img .selo-alto img { height: 56px; max-width: 72px; }

@media (max-width: 600px) {
  .ts-footer .logos-img { gap: 32px; }
  .ts-footer .logos-img img { height: 34px; max-width: 150px; }
  .ts-footer .logos-img .selo-alto img { height: 46px; max-width: 60px; }
}
.ts-footer .copy {
  border-top: 1px solid rgba(255, 255, 255, .08);
  text-align: center;
  padding: 16px;
  font-size: 13.5px;
}
.ts-footer a { color: #c6d5e6; }

/* ============================================================
   5. Botões
   ============================================================ */
.ts-btn,
body .elementor-widget-button .elementor-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 28px;
  border-radius: 10px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: .2s;
  background: var(--ts-green);
  color: #fff;
  line-height: 1.2;
  fill: #fff;
}
.ts-btn:hover,
body .elementor-widget-button .elementor-button:hover {
  background: var(--ts-green-d);
  color: #fff;
  transform: translateY(-2px);
}

body .btn-ghost .elementor-button,
.ts-btn.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .45);
}
body .btn-ghost .elementor-button:hover,
.ts-btn.btn-ghost:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
  color: #fff;
}

body .btn-light .elementor-button,
.ts-btn.btn-light { background: #fff; color: var(--ts-green-d); }
body .btn-light .elementor-button:hover,
.ts-btn.btn-light:hover { background: #eafaef; color: var(--ts-green-d); }

/* ============================================================
   6. Seções
   ============================================================ */
.sec { padding: 84px 0; }
.e-con.sec { padding-block: 0; padding-inline: 24px; }
.e-con.sec > .e-con-inner { padding-block: 84px; }
.sec-bg { background: var(--ts-bg); }

/* cabeçalho centralizado */
.e-con.head { display: block; padding: 0 0 52px; max-width: 720px; margin-inline: auto; text-align: center; }
body .head .elementor-widget-heading:not(.eyebrow) .elementor-heading-title { font-size: clamp(26px, 3.4vw, 38px); }
body .head .elementor-widget-text-editor { color: var(--ts-muted); font-size: 17px; }
body .head .elementor-widget-text-editor p:last-child { margin-bottom: 0; }

/* Linha fina acima do título. As regras de tamanho das seções usam
   `:not(.eyebrow)` para não brigar com esta — assim a ordem no arquivo deixa
   de importar. */
.eyebrow,
body .elementor-widget-heading.eyebrow .elementor-heading-title {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ts-green-d);
  margin: 0 0 10px;
}
body .elementor-widget-heading.eyebrow-light .elementor-heading-title { color: var(--ts-green-l); }

/* ------------------------------------------------------------
   HERO
   A foto é o background do container (editável no Elementor); o gradiente
   azul → verde translúcido entra no ::before e um scrim escuro à esquerda no
   ::after garante o contraste do texto. `mix-blend-mode` não serve: a textura
   desaparece no lado azul escuro.
   ------------------------------------------------------------ */
.hero { position: relative; overflow: hidden; background-color: var(--ts-blue); }
.e-con.hero { padding-inline: 24px; }
.e-con.hero > .e-con-inner { padding-block: 96px; }
/* Só ::after: o ::before de um container pertence ao Elementor (é o
   "background overlay" dele, e ele zera o nosso `content`). As duas camadas
   vão empilhadas num mesmo pseudo-elemento — a primeira pinta por cima. */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    /* scrim escuro à esquerda, para o texto ter contraste */
    linear-gradient(90deg, rgba(7, 28, 54, .42) 0%, rgba(7, 28, 54, .18) 45%, rgba(7, 28, 54, 0) 72%),
    /* gradiente azul -> verde translúcido, deixando a foto aparecer */
    linear-gradient(115deg, rgba(14, 63, 118, .90) 0%, rgba(21, 94, 160, .87) 40%, rgba(47, 158, 68, .89) 100%);
}
.hero > .e-con-inner { position: relative; z-index: 1; }

body .hero .elementor-widget-heading .elementor-heading-title { color: #fff; }
body .hero .hero-title .elementor-heading-title {
  font-size: clamp(30px, 5vw, 54px);
  max-width: 16ch;
}
body .hero .hero-sub {
  max-width: 56ch;
  margin-bottom: 12px;
}
body .hero .hero-sub.elementor-widget-text-editor {
  font-size: clamp(17px, 2.2vw, 21px);
  color: #eaf2fb;
}

.e-con.hero-cta {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  padding: 0;
  width: auto;
}

/* selos do hero */
body .badges .elementor-icon-list-items { display: flex; flex-wrap: wrap; gap: 10px; }
body .badges .elementor-icon-list-item {
  border: 1px solid rgba(255, 255, 255, .4);
  background: rgba(255, 255, 255, .1);
  padding: 7px 13px;
  border-radius: 999px;
}
body .badges .elementor-icon-list-text {
  color: #eafaef;
  font-size: 12.5px;
  font-weight: 700;
  padding: 0;
}

/* ------------------------------------------------------------
   FAIXA DE ALERTA
   ------------------------------------------------------------ */
.strip { background: var(--ts-green); }
.e-con.strip { padding-inline: 24px; }
.e-con.strip > .e-con-inner { flex-direction: row; align-items: center; padding-block: 20px; }

body .strip .elementor-icon-list-item { align-items: center; gap: 14px; }
body .strip .elementor-icon-list-text {
  color: #fff;
  font-weight: 700;
  font-size: clamp(15px, 2vw, 18px);
  padding: 0;
}
/* o ícone vem do Elementor (SVG embutido) — aqui só a cor e o tamanho */
body .strip .elementor-icon-list-icon svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

/* ------------------------------------------------------------
   CARDS
   ------------------------------------------------------------ */
.grid3, .e-con.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 0; }
.grid2, .e-con.grid2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; padding: 0; }

.e-con.card {
  display: block;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--ts-line);
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(10, 31, 56, .05);
  transition: .2s;
}
.e-con.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(10, 31, 56, .10);
  border-color: #cfe9e8;
}
body .card .tag .elementor-heading-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--ts-green-d);
  text-transform: uppercase;
  margin-bottom: 6px;
}
body .card .elementor-widget-heading .elementor-heading-title { font-size: 22px; }
body .card .elementor-widget-text-editor { color: var(--ts-muted); font-size: 15.5px; }
body .card .elementor-widget-text-editor p:last-child { margin-bottom: 0; }

/* ------------------------------------------------------------
   VÍDEOS
   ------------------------------------------------------------ */
.videos { background: var(--ts-blue); }
body .videos .elementor-widget-heading .elementor-heading-title { color: #fff; }
body .videos .head .elementor-widget-text-editor { color: #9fb3c8; }

.e-con.vid {
  display: block;
  padding: 0;
  background: #0c2544;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  overflow: hidden;
}
.vid .elementor-widget-video { margin: 0; }
.vid .elementor-wrapper { background: #08192e; }
.e-con.vid-cap { display: block; padding: 16px 20px; }
body .vid .elementor-widget-heading .elementor-heading-title {
  font-size: 17px;
  color: #fff;
  margin: 0 0 4px;
}
body .vid .elementor-widget-text-editor { color: #8fa6bd; font-size: 13.5px; }
body .vid .elementor-widget-text-editor p { margin: 0; }

/* ------------------------------------------------------------
   PASSOS
   ------------------------------------------------------------ */
.steps, .e-con.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0;
  counter-reset: ts-step;
}
.e-con.step {
  display: block;
  position: relative;
  padding: 28px 26px 26px;
  border: 1px solid var(--ts-line);
  border-radius: 16px;
  background: var(--ts-bg);
}
.e-con.step::before {
  counter-increment: ts-step;
  content: counter(ts-step);
  position: absolute;
  top: -18px;
  left: 26px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ts-green);
  color: #fff;
  font-weight: 800;
  font-size: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(47, 158, 68, .35);
}
body .step .elementor-widget-heading .elementor-heading-title { font-size: 19px; margin-top: 12px; }
body .step .elementor-widget-text-editor { color: var(--ts-muted); font-size: 15px; }
body .step .elementor-widget-text-editor p:last-child { margin-bottom: 0; }

/* ------------------------------------------------------------
   BLOCO COM GRADIENTE (gerenciamento de risco / topo do mapa)
   ------------------------------------------------------------ */
.grad { background: var(--ts-grad); }
body .grad .elementor-widget-heading .elementor-heading-title { color: #fff; }
body .grad .grad-col .elementor-widget-heading:not(.eyebrow) .elementor-heading-title { font-size: clamp(24px, 3vw, 34px); }
body .grad .elementor-widget-text-editor { color: #c6d5e6; }

.e-con.grad-flex {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 0;
}
.e-con.grad-col { display: block; padding: 0; }

body .grad .elementor-icon-list-items { display: grid; gap: 12px; }
body .grad .elementor-icon-list-item { align-items: flex-start; }
body .grad .elementor-icon-list-item { gap: 12px; }
body .grad .elementor-icon-list-text {
  color: #dbe6f2;
  font-size: 15.5px;
  padding: 0;
}
body .grad .elementor-icon-list-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--ts-green-l);
  margin-top: 3px;
}

/* ------------------------------------------------------------
   PÁGINA DO MAPA
   ------------------------------------------------------------ */
.e-con.mhead { padding-inline: 24px; }
.e-con.mhead > .e-con-inner { padding: 44px 0 90px; text-align: center; }
body .mhead .elementor-widget-heading:not(.eyebrow) .elementor-heading-title { font-size: clamp(24px, 3.4vw, 34px); }
body .mhead .elementor-widget-text-editor {
  color: #dce8f5;
  margin-inline: auto;
  max-width: 60ch;
  font-size: 16px;
}
.e-con.maparea { display: block; padding: 0 24px 60px; max-width: 1180px; margin-inline: auto; }

/* ------------------------------------------------------------
   ACORDEÃO DA LEGISLAÇÃO
   ------------------------------------------------------------ */
.e-con.faq { display: block; padding: 0; max-width: 860px; margin-inline: auto; }

.faq .e-n-accordion-item {
  background: #fff;
  border: 1px solid var(--ts-line);
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
}
.faq .e-n-accordion-item[open] {
  border-color: #bfe3c8;
  box-shadow: 0 12px 30px rgba(18, 49, 79, .08);
}
.faq .e-n-accordion-item-title { padding: 22px 26px; cursor: pointer; gap: 16px; }
body .faq .e-n-accordion-item-title-text {
  font-weight: 800;
  font-size: 18px;
  color: var(--ts-ink);
  margin: 0;
  letter-spacing: -.01em;
}
/* Ordem dos três elementos do título: nome à esquerda, pílula, seta.
   A seta é ícone do Elementor (editável no painel); a ordem dela sai da
   variável que o próprio Elementor usa. */
.faq .e-n-accordion-item { --n-accordion-title-icon-order: 2; }
.faq .e-n-accordion-item-title-header { flex: 1; }
.faq .e-n-accordion-item-title-icon { margin-left: 14px; }
.faq .e-n-accordion-item-title-icon svg { width: 14px; height: 14px; fill: var(--ts-green); }

/* Pílula à direita de cada item. Em CSS de propósito: o campo de título no
   painel do Elementor continua texto puro, sem HTML para o cliente tropeçar.
   O gancho é o "CSS ID" do item do acordeão. */
#faq-lei-14599 > summary::after,
#faq-cnsp-472 > summary::after,
#faq-cnsp-478-488 > summary::after {
  order: 1;
  margin-left: auto;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ts-green-d);
  background: rgba(47, 158, 70, .1);
  padding: 5px 11px;
  border-radius: 999px;
  white-space: nowrap;
}
#faq-lei-14599 > summary::after { content: "Contratação"; }
#faq-cnsp-472 > summary::after { content: "RCTR-C e RC-DC"; }
#faq-cnsp-478-488 > summary::after { content: "RC-V"; }

.faq .e-n-accordion-item > .e-con { padding: 0 26px 24px; }
body .faq .elementor-widget-text-editor { color: var(--ts-muted); font-size: 15.5px; }
body .faq .elementor-widget-text-editor strong { color: var(--ts-ink); }
body .faq .elementor-widget-text-editor ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
body .faq .elementor-widget-text-editor li { padding-left: 22px; position: relative; }
body .faq .elementor-widget-text-editor li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--ts-green);
}

/* ------------------------------------------------------------
   CARD DO FORMULÁRIO
   ------------------------------------------------------------ */
.formcard,
.e-con.formcard {
  max-width: 900px;
  margin-inline: auto;
  background: #fff;
  border: 1px solid var(--ts-line);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(10, 31, 56, .08);
  overflow: hidden;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 0;
  padding: 0;
  align-items: stretch;
}
.e-con.side {
  display: block;
  background: linear-gradient(160deg, var(--ts-blue), var(--ts-green));
  padding: 40px 34px;
}
body .side .elementor-widget-heading .elementor-heading-title { color: #fff; font-size: 26px; }
body .side .elementor-widget-text-editor { color: #bcccdd; font-size: 15px; }
.formcard .elementor-widget-shortcode { width: 100%; }

/* ------------------------------------------------------------
   CHAMADA FINAL
   ------------------------------------------------------------ */
.final { position: relative; overflow: hidden; background-color: var(--ts-blue); }
.final::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    /* escurece o centro para o texto não competir com os rostos da foto */
    radial-gradient(58% 110% at 50% 50%, rgba(7, 28, 54, .5) 0%, rgba(7, 28, 54, .2) 62%, rgba(7, 28, 54, 0) 100%),
    linear-gradient(115deg, rgba(14, 63, 118, .90) 0%, rgba(23, 104, 120, .88) 50%, rgba(47, 158, 68, .89) 100%);
}
.final > .e-con-inner { position: relative; z-index: 1; text-align: center; }
body .final .elementor-widget-heading:not(.eyebrow) .elementor-heading-title {
  color: #fff;
  font-size: clamp(24px, 3vw, 34px);
}
body .final .elementor-widget-text-editor {
  color: #e8f3ec;
  max-width: 56ch;
  margin-inline: auto;
  font-weight: 500;
}

/* ============================================================
   7. Responsivo
   ============================================================ */
@media (max-width: 900px) {
  .grid3, .e-con.grid3,
  .grid2, .e-con.grid2,
  .steps, .e-con.steps { grid-template-columns: 1fr; }
  .e-con.grad-flex { grid-template-columns: 1fr; gap: 28px; }
  .formcard, .e-con.formcard { grid-template-columns: 1fr; }
  .sec { padding: 60px 0; }
  .e-con.sec > .e-con-inner { padding-block: 60px; }
  .e-con.hero > .e-con-inner { padding-block: 64px; }

  .nav-toggle-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .25);
    color: #fff;
    cursor: pointer;
  }
  .ts-nav {
    display: none;
    flex-basis: 100%;
    padding-bottom: 16px;
  }
  .ts-nav ul { flex-direction: column; align-items: flex-start; gap: 14px; }
  .nav-toggle:checked ~ .ts-nav { display: block; }
  .ts-header .wrap { flex-wrap: wrap; padding-block: 12px; }
}

@media (max-width: 600px) {
  #faq-lei-14599 > summary::after,
  #faq-cnsp-472 > summary::after,
  #faq-cnsp-478-488 > summary::after { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  .ts-btn:hover,
  .e-con.card:hover,
  body .elementor-widget-button .elementor-button:hover { transform: none; }
}
