/*!
 * efeitos.css — Universo FX (site estático)
 * =============================================================================
 * CAMADA 3 de 4:  base.css -> componentes.css -> [efeitos.css] -> paginas.css
 *
 * Origem: spec/efeitos.css (entregue). Este arquivo é aquele, com as emendas
 * do plano de construção §3.3 aplicadas. As 112 classes fx-* foram mantidas
 * uma a uma: são o contrato com efeitos.js e o gerador de HTML.
 *
 * EMENDAS APLICADAS
 *   E1  .fx-reveal deixa de nascer invisível (bug A8: 165 elementos sumiam
 *       sem JavaScript). Agora só some quando HÁ JS e o usuário aceita
 *       movimento.                                              [§1, obrigatória]
 *   E2  Máscaras com prefixo duplo (-webkit-mask-* + mask-*).   [§4, obrigatória]
 *       CONFERIDO: o arquivo entregue já traz os 13 pares completos
 *       (image, size, position, repeat). Nada a fazer — verificado, não omitido.
 *   E3  Foco visível ao fim da cascata (bug M14).               [§18, obrigatória]
 *   E4  Os tokens --fx-* passam a apontar para os --uf-* de base.css em vez de
 *       repetir os literais. Valores idênticos, zero mudança visual; elimina a
 *       segunda paleta do projeto.                              [não prevista — ver retorno]
 *   E5  Correção de caminho: a textura da frente do flip-box apontava para
 *       ../img/abstract-…jpg, mas o arquivo mora em ../img/2025/04/. Sem isso
 *       os 6 cards da Home ficam sem textura.                    [não prevista — ver retorno]
 *
 * O que este arquivo cobre: animações de entrada, Ken Burns, ondas, máscaras,
 * gradientes, hovers, flip-box, acordeão, carrossel, menu mobile, voltar ao
 * topo, sticky, motion FX, título com traço, vídeo, cookies e o desligamento
 * por prefers-reduced-motion.
 *
 * Sumário
 *   0.  Tokens e transições globais
 *   1.  Animações de entrada ao rolar (@keyframes + classes)
 *   2.  Slideshow de fundo com Ken Burns
 *   3.  Divisores em onda (shape dividers) — SVG inline em data URI
 *   4.  Máscaras de imagem
 *   5.  Gradientes, sobreposições e blends
 *   6.  Estados de hover (botões, links, ícones, cards, listas, menu)
 *   7.  Flip box
 *   8.  Acordeão
 *   9.  Carrossel
 *   10. Menu mobile (hambúrguer)
 *   11. Botão voltar ao topo
 *   12. Sticky
 *   13. Motion FX (rotação no scroll e parallax de mouse)
 *   14. Título com traço animado
 *   15. Vídeo (capa clicável)
 *   16. Banner de cookies (opcional)
 *   17. prefers-reduced-motion — desligamento global
 *   18. Foco visível (emenda E3)
 * =============================================================================
 */

/* ===========================================================================
 * 0. TOKENS E TRANSIÇÕES GLOBAIS
 * ========================================================================= */
:root{
  /* E4 — a paleta é a de base.css (--uf-*); os aliases --fx-* continuam
     existindo porque as regras deste arquivo os consomem. Valores idênticos
     aos do kit 207, conferidos um a um. */
  --fx-azul:            var(--uf-azul-royal);        /* #062F95 primary        */
  --fx-amarelo:         var(--uf-amarelo);           /* #EAB618 secondary      */
  --fx-azul-escuro:     var(--uf-azul-escuro);       /* #092B65 text / 1eb6d77 */
  --fx-cinza:           var(--uf-cinza);             /* #909095 accent         */
  --fx-branco:          var(--uf-branco);            /* #FFFFFF de59c20        */
  --fx-cinza-claro:     var(--uf-cinza-claro);       /* #F2F3F9 492a581        */
  --fx-transparente:    var(--uf-transparente);      /* #00000000 ec68a4f      */
  --fx-azul-hero-a:     var(--uf-azul-hero);         /* var(--uf-azul-hero)                */
  --fx-azul-hero-b:     var(--uf-azul-diagonal-fim); /* #20608F                */
  --fx-azul-rodape:     var(--uf-azul-radial-fim);   /* #27468B                */

  /* Tempos usados pelo Elementor — mantidos idênticos */
  --fx-dur-anim:        var(--uf-dur-entrada);       /* 1.25s  .animated       */
  --fx-dur-anim-lenta:  2s;                          /* .animated-slow         */
  --fx-dur-anim-rapida: .75s;                        /* .animated-fast         */
  --fx-dur-hover:       var(--uf-dur-rapida);        /* .3s  hover             */
  --fx-dur-transform:   var(--uf-dur-media);         /* .4s                    */
  --fx-dur-flip:        .6s;                         /* flip box               */
  --fx-easing-motion:   cubic-bezier(0, .33, .07, 1.03); /* motion fx          */
}

/* Rolagem suave nativa — exatamente como o Elementor faz. */
@media (prefers-reduced-motion: no-preference){
  html{ scroll-behavior: smooth; }
}

/* Transições padrão herdadas (containers e widgets do Elementor). */
.fx-container,
.fx-card{
  transition:
    background var(--fx-dur-hover),
    border var(--fx-dur-hover),
    box-shadow var(--fx-dur-hover),
    transform var(--fx-dur-transform);
}
.fx-widget{
  transition:
    background var(--fx-dur-hover),
    border var(--fx-dur-hover),
    border-radius var(--fx-dur-hover),
    box-shadow var(--fx-dur-hover),
    transform var(--fx-dur-transform);
}

/* ===========================================================================
 * 1. ANIMAÇÕES DE ENTRADA AO ROLAR
 * ---------------------------------------------------------------------------
 * Keyframes copiados de elementor/assets/lib/animations/animations.min.css.
 * Só as 5 animações realmente usadas no site.
 * ========================================================================= */

/* E1 — o conteúdo NASCE VISÍVEL. Só some se houver JavaScript (html.js, posto
   pelo script de uma linha do <head>) E o usuário aceitar movimento. Sem isso,
   165 elementos em 86 páginas ficavam invisíveis para quem navega sem JS. */
.fx-reveal{ visibility: visible; }
@media (prefers-reduced-motion: no-preference){
  html.js .fx-reveal:not(.fx-animado){ visibility: hidden; }
}

/* Estado animado: equivale a .animated do Elementor. */
.fx-animado{
  animation-duration: var(--fx-dur-anim);
  animation-fill-mode: both;
}
.fx-animado[data-anim-duration="slow"]{  animation-duration: var(--fx-dur-anim-lenta);  }
.fx-animado[data-anim-duration="fast"]{  animation-duration: var(--fx-dur-anim-rapida); }

@keyframes fadeInUp{
  from{ opacity: 0; transform: translate3d(0, 100%, 0); }
  to  { opacity: 1; transform: none; }
}
.fx-animado.fadeInUp{ animation-name: fadeInUp; }

@keyframes fadeInLeft{
  from{ opacity: 0; transform: translate3d(-100%, 0, 0); }
  to  { opacity: 1; transform: none; }
}
.fx-animado.fadeInLeft{ animation-name: fadeInLeft; }

@keyframes rollIn{
  from{ opacity: 0; transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  to  { opacity: 1; transform: none; }
}
.fx-animado.rollIn{ animation-name: rollIn; }

@keyframes rotateInDownRight{
  from{ transform-origin: right bottom; transform: rotate3d(0, 0, 1, 45deg); opacity: 0; }
  to  { transform-origin: right bottom; transform: none; opacity: 1; }
}
.fx-animado.rotateInDownRight{ animation-name: rotateInDownRight; }

@keyframes zoomInUp{
  from{
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19);
  }
  60%{
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1);
  }
}
.fx-animado.zoomInUp{ animation-name: zoomInUp; }

/* ===========================================================================
 * 2. SLIDESHOW DE FUNDO COM KEN BURNS  (hero da home)
 * ---------------------------------------------------------------------------
 * 3 imagens · troca a cada 4000 ms · crossfade 1600 ms · loop · zoom "in".
 * O zoom vai de scale(1) a scale(1.3) em 20 s linear enquanto o slide está no ar;
 * ao sair, volta a scale(1) em 10 s (idêntico ao .elementor-ken-burns).
 * ========================================================================= */
.fx-slideshow{
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.fx-slideshow__slide{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: top center;   /* posição real do hero da home */
  background-repeat: no-repeat;
  opacity: 0;
  transition-property: opacity;
  transition-duration: 1600ms;       /* sobrescrito pelo JS via data-transicao */
  transition-timing-function: ease;
  will-change: opacity, transform;
}
.fx-slideshow__slide.esta-ativo{ opacity: 1; }

/* Ken Burns — as durações são as mesmas do Elementor. */
.fx-slideshow__slide.fx-kenburns--in,
.fx-slideshow__slide.fx-kenburns--out{
  transition-property: opacity, transform;
  transition-duration: 1600ms, 10s;
  transition-timing-function: ease, linear;
}
.fx-slideshow__slide.fx-kenburns--out{ transform: scale(1.3); }
.fx-slideshow__slide.fx-kenburns--in { transform: scale(1);   }

.fx-slideshow__slide.fx-kenburns--ativo{
  transition-duration: 1600ms, 20s;
}
.fx-slideshow__slide.fx-kenburns--in.fx-kenburns--ativo { transform: scale(1.3); }
.fx-slideshow__slide.fx-kenburns--out.fx-kenburns--ativo{ transform: scale(1);   }

/* Hero que hospeda o slideshow. */
.fx-hero{
  position: relative;
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 20px 20px 80px;
  overflow: visible;
  isolation: isolate;
}
.fx-hero > *{ position: relative; z-index: 2; }
/* [EMENDA P0] O slideshow é filho direto do herói, então a regra acima o tornaria
   position:relative/z-index:2 — vira item flex de altura 0 e as fotos somem.
   Precisa continuar absoluto e no fundo, dentro do mesmo contexto de empilhamento
   (o ::before em mix-blend-mode:multiply depende disso). */
.fx-hero > .fx-slideshow{ position: absolute; inset: 0; z-index: 0; }
/* gancho canônico de imagem por slide, conforme o CONTRATO §6.10 */
.fx-slideshow__slide{ background-image: var(--uf-imagem-fundo, none); }

/* Sobreposição do hero: gradiente 110deg em multiply, opacidade 1. */
.fx-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: linear-gradient(110deg, var(--fx-azul-hero-a) 20%, var(--fx-azul-hero-b) 86%);
  opacity: 1;
  mix-blend-mode: multiply;
  pointer-events: none;
  transition: background var(--fx-dur-hover), opacity var(--fx-dur-hover);
}
@media (max-width: 1024px){
  .fx-hero{ gap: 20px; flex-wrap: wrap; margin-top: -23px; padding: 160px 80px 133px; }
}
@media (max-width: 767px){
  .fx-hero{ min-height: 0; margin-top: 0; padding: 10px 10px 30px; }
}

/* ===========================================================================
 * 3. DIVISORES EM ONDA (shape dividers) — SVG inline
 * ---------------------------------------------------------------------------
 * Forma única do site: "waves", nas variantes normal e negativa.
 * Alturas reais: 90px (hero desktop) / 70px / 60px (topo do rodapé) /
 * 40px / 30px (padrão e ≤1024px nos heróis).
 *
 * HTML:
 *   <div class="fx-onda fx-onda--baixo"           aria-hidden="true"></div>
 *   <div class="fx-onda fx-onda--cima fx-onda--negativa" aria-hidden="true"></div>
 * O SVG entra como máscara para que a COR seja controlada por `background-color`.
 * ========================================================================= */
.fx-onda{
  --fx-onda-altura: 30px;
  --fx-onda-cor: var(--fx-branco);
  --fx-onda-largura: calc(100% + 1.3px);

  position: absolute;
  left: 50%;
  width: var(--fx-onda-largura);
  height: var(--fx-onda-altura);
  transform: translateX(-50%);
  background-color: var(--fx-onda-cor);
  line-height: 0;
  direction: ltr;
  pointer-events: none;
  z-index: 1;

  /* Onda NORMAL (data-negative="false" do Elementor) */
  --fx-onda-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'%3E%3Cpath d='M421.9,6.5c22.6-2.5,51.5,0.4,75.5,5.3c23.6,4.9,70.9,23.5,100.5,35.7c75.8,32.2,133.7,44.5,192.6,49.7c23.6,2.1,48.7,3.5,103.4-2.5c54.7-6,106.2-25.6,106.2-25.6V0H0v30.3c0,0,72,32.6,158.4,30.5c39.2-0.7,92.8-6.7,134-22.4c21.2-8.1,52.2-18.2,79.7-24.2C399.3,7.9,411.6,7.5,421.9,6.5z'/%3E%3C/svg%3E");

  -webkit-mask-image: var(--fx-onda-svg);
          mask-image: var(--fx-onda-svg);
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}

/* Onda NEGATIVA (data-negative="true") — o outro caminho do Elementor. */
.fx-onda--negativa{
  --fx-onda-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'%3E%3Cpath d='M790.5,93.1c-59.3-5.3-116.8-18-192.6-50c-29.6-12.7-76.9-31-100.5-35.9c-23.6-4.9-52.6-7.8-75.5-5.3c-10.2,1.1-22.6,1.4-50.1,7.4c-27.2,6.3-58.2,16.6-79.4,24.7c-41.3,15.9-94.9,21.9-134,22.6C72,58.2,0,25.8,0,25.8V100h1000V65.3c0,0-51.5,19.4-106.2,25.7C839.5,97,814.1,95.2,790.5,93.1z'/%3E%3C/svg%3E");
}

/* Posições e rotações — exatamente as regras do shapes.css. */
.fx-onda--cima { top: -1px; }
.fx-onda--baixo{ bottom: -1px; }
.fx-onda--baixo:not(.fx-onda--negativa){ transform: translateX(-50%) rotate(180deg); }
.fx-onda--cima.fx-onda--negativa       { transform: translateX(-50%) rotate(180deg); }

/* Espelhamento horizontal usado em várias seções do site. */
.fx-onda--espelhada{ transform: translateX(-50%) rotateY(180deg); }
.fx-onda--baixo.fx-onda--espelhada:not(.fx-onda--negativa){ transform: translateX(-50%) rotate(180deg) rotateY(180deg); }

/* Alturas reais medidas no site. */
.fx-onda--h30{ --fx-onda-altura: 30px; }
.fx-onda--h40{ --fx-onda-altura: 40px; }
.fx-onda--h60{ --fx-onda-altura: 60px; }
.fx-onda--h70{ --fx-onda-altura: 70px; }
.fx-onda--h90{ --fx-onda-altura: 90px; }

/* Heróis: 90px no desktop, 30px em ≤1024px (regra observada em todas as páginas). */
@media (max-width: 1024px){
  .fx-onda--hero{ --fx-onda-altura: 30px; }
}
.fx-onda--hero{ --fx-onda-altura: 90px; }

/* Cores especiais registradas no site. */
.fx-onda--cinza-claro{ --fx-onda-cor: var(--fx-cinza-claro); } /* home 54db1690 topo */
.fx-onda--azul-002E97{ --fx-onda-cor: var(--uf-azul-hero); }               /* rodapé, base       */

/* Caso especial: Todos os Cursos, seção 2390ecc3 (ondas mais largas). */
.fx-onda--larga-135{ --fx-onda-largura: calc(135% + 1.3px); }
.fx-onda--larga-130{ --fx-onda-largura: calc(130% + 1.3px); }
.fx-onda--acima    { z-index: 2; }

/* ===========================================================================
 * 4. MÁSCARAS DE IMAGEM
 * ---------------------------------------------------------------------------
 * A única máscara do site cujo arquivo existe é circle.svg — reproduzida aqui
 * como data URI (nada de requisição externa).
 *
 * ATENÇÃO: custom.svg, imagee1.png e Logo-Edubyte-01.png retornam 404 no site
 * original. Um mask-image que falha deixa o elemento INVISÍVEL — por isso os
 * blobs decorativos que dependem deles NÃO aparecem hoje. Ver 02-efeitos.md §4.
 * As classes abaixo existem só para quando/se os arquivos forem recriados.
 * ========================================================================= */
.fx-mask-circle{
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='50'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='50'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;          mask-size: contain;
  -webkit-mask-position: center right; mask-position: center right;
  -webkit-mask-repeat: no-repeat;      mask-repeat: no-repeat;
}
.fx-mask--contain     { -webkit-mask-size: contain;      mask-size: contain; }
.fx-mask--200         { -webkit-mask-size: 200%;         mask-size: 200%; }
.fx-mask--top-left    { -webkit-mask-position: top left;     mask-position: top left; }
.fx-mask--bottom-right{ -webkit-mask-position: bottom right; mask-position: bottom right; }
.fx-mask--center      { -webkit-mask-position: center center;mask-position: center center; }

/* ===========================================================================
 * 5. GRADIENTES, SOBREPOSIÇÕES E BLENDS
 * ---------------------------------------------------------------------------
 * Todos os gradientes reais do site, prontos para uso como classe.
 * ========================================================================= */
.fx-grad-azul        { background-image: linear-gradient(180deg, var(--uf-azul-hero) 0%, var(--fx-azul-escuro) 100%); }
.fx-grad-azul-052E97 { background-image: linear-gradient(180deg, var(--uf-azul-hero-c) 0%, var(--fx-azul-escuro) 100%); }
.fx-grad-azul-042E97 { background-image: linear-gradient(180deg, var(--uf-azul-hero-b) 0%, var(--fx-azul-escuro) 100%); }
.fx-grad-azul-242656 { background-image: linear-gradient(180deg, var(--uf-navy-overlay) 0%, var(--fx-azul-escuro) 100%); }
.fx-grad-primary     { background-image: linear-gradient(180deg, var(--fx-azul) 0%, var(--fx-azul-escuro) 100%); }
.fx-grad-cinza       { background-image: linear-gradient(180deg, var(--fx-cinza) 0%, var(--fx-azul-escuro) 100%); }
.fx-grad-cinza-241   { background-image: linear-gradient(241deg, var(--fx-cinza) 0%, var(--fx-azul-escuro) 100%); }
.fx-grad-amarelo-fade{ background-image: linear-gradient(180deg, var(--fx-amarelo) 0%, var(--fx-transparente) 100%); }
.fx-grad-azul-fade   { background-image: linear-gradient(180deg, var(--fx-azul-escuro) 0%, var(--fx-transparente) 100%); }
.fx-grad-azulprim-fade{background-image: linear-gradient(180deg, var(--fx-azul) 0%, var(--fx-transparente) 100%); }
.fx-grad-branco-fade { background-image: linear-gradient(180deg, var(--fx-azul) 0%, var(--fx-branco) 100%); }

/* Rodapé global: radial + overlay 55 % em multiply. */
.fx-rodape{ position: relative; isolation: isolate; padding-top: 90px; overflow: visible; }
.fx-rodape::before{
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background-image: radial-gradient(at center center, var(--uf-azul-hero) 0%, var(--fx-azul-rodape) 100%);
  opacity: .55;
  mix-blend-mode: multiply;
  pointer-events: none;
  transition: background var(--fx-dur-hover), opacity var(--fx-dur-hover);
}
.fx-rodape > *{ position: relative; z-index: 2; }

/* Blobs decorativos (spacers absolutos do original). */
.fx-blob{
  position: absolute;
  pointer-events: none;
  transition: transform var(--fx-dur-transform);
}
.fx-blob--pilula{ border-radius: 100px; }

/* ===========================================================================
 * 6. ESTADOS DE HOVER
 * ---------------------------------------------------------------------------
 * Catálogo completo (as 15 famílias encontradas nas 87 páginas).
 * ========================================================================= */

/* 6.1 Links globais: azul escuro -> amarelo */
a{ color: var(--fx-azul-escuro); transition: color var(--fx-dur-hover); }
a:hover, a:focus-visible{ color: var(--fx-amarelo); }

/* 6.2 Botões globais: amarelo -> azul escuro, texto branco, pílula */
.fx-botao,
button, input[type="button"], input[type="submit"]{
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  background-color: var(--fx-amarelo);
  color: var(--fx-azul-escuro);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 16px; font-weight: 600; line-height: 1.6em;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: background-color var(--fx-dur-hover), color var(--fx-dur-hover),
              border-color var(--fx-dur-hover), transform var(--fx-dur-hover);
}
.fx-botao:hover, .fx-botao:focus-visible,
button:hover, button:focus-visible,
input[type="button"]:hover, input[type="button"]:focus-visible,
input[type="submit"]:hover, input[type="submit"]:focus-visible{
  background-color: var(--fx-azul-escuro);
  color: var(--fx-branco);
  border: none;
  border-radius: 100px;
}
/* Variante do hero da home: fundo amarelo, borda azul. */
.fx-botao--hero:hover, .fx-botao--hero:focus-visible{
  background-color: var(--fx-amarelo);
  border: 1px solid var(--fx-azul);
  color: var(--fx-azul-escuro);
}
/* Variante de Todos os Cursos: fica transparente com borda branca. */
.fx-botao--vazado:hover, .fx-botao--vazado:focus-visible{
  background-color: transparent;
  border: 1px solid var(--fx-branco);
  color: var(--fx-branco);
}

/* 6.3 Hover "grow" (Hover.css do Elementor: elementor-animation-grow) */
.fx-crescer{
  transition-duration: .3s;
  transition-property: transform;
}
.fx-crescer:hover, .fx-crescer:focus-visible, .fx-crescer:active{
  transform: scale(1.1);
}

/* 6.4 Listas de ícones (rodapé, contato): texto vira amarelo */
.fx-lista-icones__item{ display: flex; align-items: center; gap: .6em; }
.fx-lista-icones__texto{ color: var(--fx-branco); transition: color var(--fx-dur-hover); }
.fx-lista-icones__icone svg{ fill: var(--fx-branco); transition: fill var(--fx-dur-hover); }
.fx-lista-icones__icone i  { color: var(--fx-branco); transition: color var(--fx-dur-hover); }
.fx-lista-icones__item:hover .fx-lista-icones__texto{ color: var(--fx-amarelo); }

/* 6.5 Ícones sociais: fundo amarelo -> azul, glifo azul -> branco */
.fx-social{
  display: inline-flex; align-items: center; justify-content: center;
  width: calc(25px + 1em); height: calc(25px + 1em);
  font-size: 25px; line-height: 25px;
  background-color: var(--fx-amarelo);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color var(--fx-dur-hover);
}
.fx-social i  { color: var(--fx-azul-escuro); transition: color var(--fx-dur-hover); }
.fx-social svg{ fill:  var(--fx-azul-escuro); transition: fill  var(--fx-dur-hover); }
.fx-social:hover{ background-color: var(--fx-azul); }
.fx-social:hover i  { color: var(--fx-branco); }
.fx-social:hover svg{ fill:  var(--fx-branco); }
/* Variante da página Contato: fundo vira azul escuro. */
.fx-social--contato:hover{ background-color: var(--fx-azul-escuro); }

/* 6.6 Cards de conteúdo com sombra no hover (home 334f28ec, quem-somos) */
.fx-card{
  background-color: var(--fx-branco);
  border-radius: 10px;
  padding: 30px;
}
.fx-card:hover{ box-shadow: 0 0 30px 0 rgba(0, 0, 0, .1); }

/* 6.7 Menu principal: "pointer background" com animação fade */
.fx-menu{ display: flex; gap: 0; list-style: none; margin: 0; padding: 0; }
.fx-menu__link{
  position: relative;
  display: block;
  padding: 13px 20px;
  color: var(--fx-branco);
  fill: var(--fx-branco);
  text-decoration: none;
  z-index: 0;
  transition: color var(--fx-dur-hover);
}
.fx-menu__link::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: var(--fx-amarelo);
  opacity: 0;
  transition: opacity var(--fx-dur-hover);  /* animação "fade" do Elementor */
}
.fx-menu__link:hover,
.fx-menu__link:focus-visible,
.fx-menu__link.esta-ativo{ color: var(--fx-branco); }
.fx-menu__link:hover::before,
.fx-menu__link:focus-visible::before,
.fx-menu__link.esta-ativo::before{ opacity: 1; }

/* 6.8 Card de equipe (ElementsKit, estilo overlay) */
.fx-equipe{ position: relative; overflow: hidden; }
.fx-equipe img{ display: block; width: 100%; height: auto; }
.fx-equipe::before{
  content: "";
  position: absolute;
  top: 100%; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, .7);
  opacity: 0; visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  transition: all .4s ease .2s;
}
.fx-equipe:hover::before,
.fx-equipe:focus-within::before{
  top: 0; opacity: 1; visibility: visible;
  transition: all .4s ease 0s;
}
.fx-equipe__hover{
  position: absolute;
  top: 50%;
  width: 100%;
  z-index: 2;
  opacity: 0; visibility: hidden;
  transform: translateY(-20%);
  text-align: center;
  transition: all .3s ease;
}
.fx-equipe:hover .fx-equipe__hover,
.fx-equipe:focus-within .fx-equipe__hover{
  opacity: 1; visibility: visible;
  transform: translateY(-50%);
  transition: all .3s ease .1s;
}
.fx-equipe__hover .fx-equipe__titulo,
.fx-equipe__hover .fx-equipe__cargo,
.fx-equipe__hover .fx-equipe__texto{ color: var(--fx-branco); }
.fx-equipe:hover .fx-equipe__texto{ color: var(--fx-amarelo); }
.fx-equipe__social{ display: flex; gap: 10px; justify-content: center; list-style: none; margin: 0; padding: 0; }
.fx-equipe__social a{ color: var(--fx-branco); fill: var(--fx-branco); transition: all .4s ease; }
.fx-equipe__social a:hover{ color: var(--fx-cinza); fill: var(--fx-cinza); background-color: var(--uf-facebook); }

/* 6.9 Grade de posts do blog — sem hover próprio no original;
       apenas o link herda o a:hover global (amarelo). */
.fx-post__thumb{
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: calc(.66 * 100%);   /* proporção real do site */
  margin-bottom: 25px;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 1024px){
  .fx-post__thumb{ padding-bottom: calc(.5 * 100%); }
}
.fx-post__thumb img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.fx-post__titulo{ margin: 0 0 25px; color: var(--fx-azul); }
.fx-post__resumo{ margin: 0 0 20px; }

/* ===========================================================================
 * 7. FLIP BOX
 * ---------------------------------------------------------------------------
 * Duas variantes reais: --fade (94 ocorrências) e --flip-up (12, na home).
 * Transição de .6s ease-in-out, idêntica ao Elementor.
 * ========================================================================= */
.fx-flipbox{
  position: relative;
  height: 280px;                  /* padrão do Elementor */
  perspective: 1000px;
  transform-style: preserve-3d;
}
.fx-flipbox--alt450{ height: 450px; }   /* altura usada em Todos os Cursos / Serviços */

.fx-flipbox__face{
  position: absolute;
  width: 100%; height: 100%;
  transition: all var(--fx-dur-flip) ease-in-out;
}
.fx-flipbox__conteudo{
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  width: 100%; height: 100%;
  padding: 35px;
  color: var(--fx-branco);
  text-align: center;
}
.fx-flipbox__titulo{ margin: 0 0 20px; font-size: 21px; font-weight: 600; line-height: 1; }
.fx-flipbox__desc  { margin: 0 0 20px; font-size: 14px; }
.fx-flipbox__botao{
  align-self: center;
  margin-inline: auto;
  background-color: var(--fx-amarelo);
  color: var(--fx-azul-escuro);
  border: 2px solid var(--fx-amarelo);
  padding: .6em 1.4em;
  border-radius: 100px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color var(--fx-dur-hover), color var(--fx-dur-hover), border-color var(--fx-dur-hover);
}
.fx-flipbox__botao:hover, .fx-flipbox__botao:focus-visible{
  background-color: var(--fx-branco);
  color: var(--fx-cinza);
  border-color: var(--fx-branco);
}

/* 7.1 Variante FADE (nossos-servicos, todos-os-cursos, treinamentos) */
.fx-flipbox--fade .fx-flipbox__verso{ opacity: 0; }
.fx-flipbox--fade:hover .fx-flipbox__verso,
.fx-flipbox--fade:focus-within .fx-flipbox__verso,
.fx-flipbox--fade.esta-virado .fx-flipbox__verso{ opacity: 1; }

/* Estilo do site nesta variante: cantos 10px e véus azuis sobre a foto. */
.fx-flipbox--fade .fx-flipbox__face,
.fx-flipbox--fade .fx-flipbox__conteudo{ border-radius: 10px; }
.fx-flipbox--fade .fx-flipbox__frente,
.fx-flipbox--fade .fx-flipbox__verso{
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.fx-flipbox--fade .fx-flipbox__frente .fx-flipbox__conteudo{ background-color: var(--uf-navy-overlay-58); }
.fx-flipbox--fade .fx-flipbox__verso  .fx-flipbox__conteudo{ background-color: var(--uf-navy-overlay-76); }

/* 7.2 Variante FLIP UP (os 6 cards de serviço da home) */
.fx-flipbox--flip-up{ perspective: 1000px; transform-style: preserve-3d; }
.fx-flipbox--flip-up .fx-flipbox__face{
  backface-visibility: hidden;
  transform-style: preserve-3d;
}
.fx-flipbox--flip-up .fx-flipbox__frente{ transform: none; z-index: 1; }
.fx-flipbox--flip-up .fx-flipbox__verso { transform: rotateX(-180deg) rotateY(0); }

.fx-flipbox--flip-up:hover .fx-flipbox__frente,
.fx-flipbox--flip-up:focus-within .fx-flipbox__frente,
.fx-flipbox--flip-up.esta-virado .fx-flipbox__frente{ transform: rotateX(180deg) rotateY(0); }

.fx-flipbox--flip-up:hover .fx-flipbox__verso,
.fx-flipbox--flip-up:focus-within .fx-flipbox__verso,
.fx-flipbox--flip-up.esta-virado .fx-flipbox__verso{ transform: none; }

/* Estilo do site na home: cantos 25px, azul var(--uf-azul-hero-b), textura na frente. */
.fx-flipbox--flip-up .fx-flipbox__face,
.fx-flipbox--flip-up .fx-flipbox__conteudo{ border-radius: 25px; }
.fx-flipbox--flip-up .fx-flipbox__frente{
  background-color: var(--uf-azul-hero-b);
  background-image: url("../img/2025/04/abstract-grey-tech-vector-corporate-background-min.jpg");
  background-size: cover;
}
.fx-flipbox--flip-up .fx-flipbox__verso{ background-color: var(--uf-azul-hero-b); }
.fx-flipbox--flip-up .fx-flipbox__frente .fx-flipbox__conteudo{
  background-color: var(--uf-azul-hero-b);
  mix-blend-mode: multiply;
  padding: 20px;
}
.fx-flipbox__icone{ margin-bottom: 20px; }
.fx-flipbox__icone svg{ width: 48px; height: 48px; fill: var(--fx-branco); }

/* Em telas de toque, o cursor indica que dá para tocar (igual ao original). */
@media (max-width: 1024px){
  .fx-flipbox{ cursor: pointer; }
}

/* ===========================================================================
 * 8. ACORDEÃO
 * ---------------------------------------------------------------------------
 * Serve tanto para o ElementsKit (páginas de curso) quanto para o nativo.
 * A altura é animada pelo JS; aqui ficam só o visual e o giro do ícone.
 * ========================================================================= */
.fx-acordeao{ text-align: start; }

.fx-acordeao__item{ transition: all .4s ease; }
.fx-acordeao__item + .fx-acordeao__item{ margin-top: 10px; }

.fx-acordeao__gatilho{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  width: 100%;
  padding: 14px 30px;
  background-color: var(--uf-cinza-acordeao);
  border: 1px solid transparent;
  border-radius: 0;
  color: var(--fx-cinza);
  font-weight: 700;
  text-align: start;
  cursor: pointer;
  transition: all .4s ease;
}
.fx-acordeao__item.esta-aberto > .fx-acordeao__gatilho{ color: var(--fx-azul-escuro); }

.fx-acordeao__icone{
  flex: 0 0 auto;
  display: inline-block;
  transition: transform .4s ease;
}
.fx-acordeao__item.esta-aberto > .fx-acordeao__gatilho .fx-acordeao__icone{
  transform: rotate(180deg);
}

.fx-acordeao__painel{
  overflow: hidden;
  height: 0;
}
.fx-acordeao__painel > *{ padding: 20px 30px; margin: 0; }
.fx-acordeao__painel ul{ margin: 0; padding: 20px 30px 20px 50px; }

/* 8.1 Variante "nativa do Elementor": bordas cinza e ícone + / − */
.fx-acordeao--classico .fx-acordeao__item{
  border: 1px solid var(--uf-cinza-borda-suave);
}
.fx-acordeao--classico .fx-acordeao__item + .fx-acordeao__item{
  margin-top: 0;
  border-top: none;
}
.fx-acordeao--classico .fx-acordeao__gatilho{
  flex-direction: row-reverse;
  justify-content: flex-end;
  background: transparent;
  padding: 15px 20px;
  line-height: 1;
}
.fx-acordeao--classico .fx-acordeao__icone{
  width: 1.5em;
  text-align: left;
  transform: none;              /* aqui o ícone TROCA, não gira */
}
.fx-acordeao--classico .fx-acordeao__item.esta-aberto .fx-acordeao__icone{ transform: none; }
.fx-acordeao--classico .fx-acordeao__icone .fx-icone-fechado{ display: block; }
.fx-acordeao--classico .fx-acordeao__icone .fx-icone-aberto { display: none; }
.fx-acordeao--classico .fx-acordeao__item.esta-aberto .fx-icone-fechado{ display: none; }
.fx-acordeao--classico .fx-acordeao__item.esta-aberto .fx-icone-aberto { display: block; }
.fx-acordeao--classico .fx-acordeao__painel > *{ padding: 15px 20px; border-top: 1px solid var(--uf-cinza-borda-suave); }
@media (max-width: 767px){
  .fx-acordeao--classico .fx-acordeao__gatilho{ padding: 12px 15px; }
  .fx-acordeao--classico .fx-acordeao__icone{ width: 1.2em; }
  .fx-acordeao--classico .fx-acordeao__painel > *{ padding: 7px 15px; }
}

/* ===========================================================================
 * 9. CARROSSEL DE IMAGENS  (Quem Somos)
 * ---------------------------------------------------------------------------
 * 1 slide por vez, transição de 500 ms, setas por dentro.
 * ========================================================================= */
.fx-carrossel{
  position: relative;
  overflow: hidden;
}
.fx-carrossel__trilho{
  display: flex;
  transition-property: transform;
  transition-duration: 500ms;      /* sobrescrito pelo JS via data-velocidade */
  transition-timing-function: ease;
  will-change: transform;
}
.fx-carrossel__slide{
  flex: 0 0 100%;
  min-width: 0;
}
.fx-carrossel__slide img{ display: block; width: 100%; height: auto; }

.fx-carrossel__seta{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: rgba(0, 0, 0, .5);
  color: var(--fx-branco);
  border: none; border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  transition: background-color var(--fx-dur-hover), opacity var(--fx-dur-hover);
}
.fx-carrossel__seta:hover{ background: rgba(0, 0, 0, .75); }
.fx-carrossel__seta--ant { left: 10px;  }
.fx-carrossel__seta--prox{ right: 10px; }
.fx-carrossel__seta svg{ width: 22px; height: 22px; fill: currentColor; }

/* ===========================================================================
 * 10. MENU MOBILE (hambúrguer)
 * ---------------------------------------------------------------------------
 * Painel fechado: max-height 0 + scaleY(0) · aberto: altura real + scaleY(1),
 * transição de 300 ms — idêntico ao nav-menu do Elementor Pro.
 * ========================================================================= */
.fx-menu-toggle{
  display: none;                        /* só aparece no mobile */
  align-items: center;
  justify-content: center;
  padding: .25em;
  font-size: 22px;
  color: var(--fx-branco);
  background-color: rgba(0, 0, 0, .05);
  border: 0 solid;
  border-radius: 3px;
  cursor: pointer;
  margin: 0 auto;
}
.fx-menu-toggle svg{ width: 1em; height: 1em; fill: var(--fx-branco); }
.fx-menu-toggle .fx-menu-toggle__fechar{ display: none; }
.fx-menu-toggle.esta-aberto .fx-menu-toggle__abrir { display: none; }
.fx-menu-toggle.esta-aberto .fx-menu-toggle__fechar{ display: block; }

.fx-menu-mobile{
  --fx-menu-altura: 0px;
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 9997;
  margin-top: 10px;
  max-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  transform: scaleY(0);
  transform-origin: top;
  background-color: var(--fx-branco);
  font-size: 13px;
  transition: max-height .3s, transform .3s;
}
.fx-menu-mobile.esta-aberto{
  max-height: var(--fx-menu-altura);
  transform: scaleY(1);
  animation: fx-esconde-rolagem .3s backwards;
}
/* Evita a barra de rolagem piscando durante a abertura (igual ao Elementor). */
@keyframes fx-esconde-rolagem{ 0%, 100%{ overflow: hidden; } }

.fx-menu-mobile ul{ list-style: none; margin: 0; padding: 0; }
.fx-menu-mobile a{
  display: flex;
  align-items: center;
  padding: 13px 20px;
  color: var(--uf-cinza-menu-mobile);
  text-decoration: none;
  border-inline-start: 8px solid transparent;
  text-shadow: none;
  transition: background-color var(--fx-dur-hover), color var(--fx-dur-hover);
}
.fx-menu-mobile a:hover,
.fx-menu-mobile a:focus-visible,
.fx-menu-mobile a.esta-ativo{ background-color: var(--uf-cinza-menu-ativo); color: var(--fx-branco); }

@media (max-width: 767px){
  .fx-menu-toggle{ display: flex; }
  .fx-menu{ display: none; }                 /* o menu horizontal some */
}
@media (min-width: 768px){
  .fx-menu-mobile{ display: none; }
}

/* ===========================================================================
 * 11. BOTÃO VOLTAR AO TOPO
 * ---------------------------------------------------------------------------
 * Círculo preto de 50px, 15px do canto inferior direito, fade de .3s a partir
 * de 100px de rolagem. Valores idênticos aos do Header Footer Elementor.
 * ========================================================================= */
.fx-topo{
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px; height: 50px;
  background-color: var(--uf-preto);
  color: var(--fx-branco);
  border: none;
  border-radius: 50px;
  text-align: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s, background-color .3s;
}
.fx-topo.esta-visivel{ opacity: 1; visibility: visible; }
.fx-topo svg{ width: 16px; height: 16px; fill: var(--fx-branco); }
.fx-topo i   { color: var(--fx-branco); font-size: 16px; }

/* ===========================================================================
 * 12. STICKY
 * ---------------------------------------------------------------------------
 * Só 2 casos no site (Contato: offset 10px · páginas de curso: offset 30px).
 * O pai precisa de align-items:flex-start para o sticky funcionar em flex.
 * ========================================================================= */
.fx-sticky-pai{ align-items: flex-start; }

.fx-sticky{ position: sticky; top: 10px; }
.fx-sticky--30{ top: 30px; }

/* Contato: cola em desktop, tablet e mobile (config real do site). */
/* Páginas de curso: só até tablet — some abaixo de 768px. */
@media (max-width: 767px){
  .fx-sticky--desktop-tablet{ position: static; }
}

/* ===========================================================================
 * 13. MOTION FX
 * ---------------------------------------------------------------------------
 * A suavização é a mesma do Elementor Pro (motion-fx.min.css).
 * O valor de transform vem do JS.
 * ========================================================================= */
.fx-motion{
  transition-duration: 1s;
  transition-property: transform, opacity;
  transition-timing-function: var(--fx-easing-motion);
  will-change: transform;
}
@media (prefers-reduced-motion: reduce){
  .fx-motion{ transition-duration: 0s !important; transform: none !important; }
}

/* ===========================================================================
 * 14. TÍTULO COM TRAÇO ANIMADO (hero da home)
 * ---------------------------------------------------------------------------
 * Marcador "underline", traço amarelo de 9px, desenho em 1200 ms.
 * ========================================================================= */
.fx-headline{
  --fx-headline-duracao: 1200ms;
  text-align: start;
}
.fx-headline__texto{ position: relative; z-index: 1; color: var(--fx-branco); }

.fx-headline__destaque{
  position: relative;
  display: inline-block;
  overflow: visible;
  z-index: 1;
  color: var(--fx-branco);
}
.fx-headline__destaque svg{
  position: absolute;
  top: 50%; left: 50%;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  transform: translate(-50%, -50%);
  overflow: visible;
  z-index: -1;
  pointer-events: none;
}
.fx-headline__destaque svg path{
  stroke: var(--fx-amarelo);   /* cor real do site */
  stroke-width: 9;
  fill: none;
  opacity: 0;
  stroke-dasharray: 0 1500;
  transition: .3s;
}
.fx-headline.esta-desenhado svg path{
  animation: fx-headline-traco var(--fx-headline-duracao) forwards;
  animation-iteration-count: 1;
}
.fx-headline.esta-desenhado svg path:nth-of-type(2){
  animation-delay: calc(var(--fx-headline-duracao) / 2);
}
.fx-headline.esta-sumindo svg path{
  opacity: 1;
  stroke-dasharray: 1500 1500;
  animation: fx-headline-some .4s forwards;
  animation-iteration-count: 1;
}
@keyframes fx-headline-traco{
  0%  { stroke-dasharray: 0 1500;    opacity: 1; }
  100%{ stroke-dasharray: 1500 1500; opacity: 1; }
}
@keyframes fx-headline-some{
  0%  { opacity: 1; stroke-dasharray: 1500 1500; }
  100%{ opacity: 0; filter: blur(10px); }
}

/* ===========================================================================
 * 15. VÍDEO — capa clicável
 * ========================================================================= */
.fx-video{
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  background-color: var(--uf-preto);
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}
.fx-video iframe{ position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.fx-video__play{
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  background: rgba(9, 43, 101, .85);
  border: none; border-radius: 50%;
  cursor: pointer;
  transition: background-color var(--fx-dur-hover), transform var(--fx-dur-hover);
}
.fx-video__play::before{
  content: "";
  position: absolute;
  top: 50%; left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent var(--fx-branco);
}
.fx-video:hover .fx-video__play{
  background: var(--fx-amarelo);
  transform: translate(-50%, -50%) scale(1.1);
}
.fx-video:hover .fx-video__play::before{ border-left-color: var(--fx-azul-escuro); }
.fx-video.esta-tocando .fx-video__play{ display: none; }

/* ===========================================================================
 * 16. BANNER DE COOKIES (opcional — só se substituir o goadopt)
 * ========================================================================= */
.fx-cookies{
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 10000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1100px;
  margin-inline: auto;
  padding: 18px 22px;
  background: var(--fx-branco);
  color: var(--fx-azul-escuro);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .18);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .3s ease, transform .3s ease;
}
.fx-cookies.esta-visivel{ opacity: 1; transform: translateY(0); }
.fx-cookies p{ margin: 0; font-size: 14px; line-height: 1.6; }
.fx-cookies__acoes{ display: flex; gap: 10px; }
.fx-cookies__btn{
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid var(--fx-azul-escuro);
  background: transparent;
  color: var(--fx-azul-escuro);
  cursor: pointer;
  transition: background-color var(--fx-dur-hover), color var(--fx-dur-hover);
}
.fx-cookies__btn:hover{ background: var(--fx-azul-escuro); color: var(--fx-branco); }
.fx-cookies__btn--ok{ background: var(--fx-amarelo); border-color: var(--fx-amarelo); }
.fx-cookies__btn--ok:hover{ background: var(--fx-azul-escuro); border-color: var(--fx-azul-escuro); }

/* ===========================================================================
 * 17. PREFERS-REDUCED-MOTION — desligamento global
 * ---------------------------------------------------------------------------
 * Espelha o que o Elementor faz (.animated { animation: none !important })
 * e estende para todos os efeitos deste arquivo.
 * ========================================================================= */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }

  .fx-reveal{ visibility: visible !important; }
  .fx-animado{ animation: none !important; }

  .fx-slideshow__slide{
    transition: none !important;
    transform: none !important;
  }

  .fx-flipbox__face,
  .fx-acordeao__painel,
  .fx-carrossel__trilho,
  .fx-menu-mobile,
  .fx-topo,
  .fx-cookies,
  .fx-equipe::before,
  .fx-equipe__hover{
    transition-duration: 0s !important;
    animation: none !important;
  }

  .fx-headline svg path{
    animation: none !important;
    opacity: 1;
    stroke-dasharray: 1500 1500;
  }

  .fx-crescer:hover{ transform: none; }
}

/* ===========================================================================
 * 18. FOCO VISÍVEL — emenda E3 (corrige o bug M14)
 * ---------------------------------------------------------------------------
 * O site original apaga o foco em três regras de plugin
 * (.ekit-wid-con a:focus{outline:0} e .jeg-elementor-kit button:focus{outline:0}).
 * Essas regras NÃO foram portadas. Aqui o contrato é reafirmado no fim da
 * cascata, para que nenhuma camada anterior consiga apagá-lo por engano.
 * ========================================================================= */
:focus-visible{
  outline: 3px solid var(--uf-amarelo);
  outline-offset: 2px;
}
/* Sobre fundo azul escuro o amarelo perde contraste: o anel vira branco. */
.fx-hero :focus-visible,
.cabecalho :focus-visible{ outline-color: var(--uf-branco); }
