/*
Theme Name: o-brasil-na-decada-do-oceano
Theme URI:
Description: Tema base para criação de novos temas WordPress.
Version: 1.0.0
Author: Comunik16
Author URI: http://comunik16.dev
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tema-base
*/

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --r: 1;

  --font-1: "Inter_18pt", sans-serif;
  --font-2: "Helvetica Neue LT Pro", sans-serif;

  --logo: calc(120px * var(--r));
  --logo-sticky: calc(80px * var(--r));
  --topo-h: calc(1.5rem + var(--logo-sticky));
  --font-size: 22px;
  --cor: #222222;
  --cor-azul: #1b5d8d;
  --cor-azul-2: #c6e1f4;
  --cor-marrom: #573d07;
  --cor-bege: #efebe4;
  --cor-verde: #5f7d41;

  --cor-1: #34566e;
  --cor-1-rgb: 52 86 110;
  --cor-2: #3b7b8d;
  --cor-2-rgb: 59 123 141;
  --cor-3: #80acd4;

  --container: 90%;
  --container-2: 60%;
  --container-3: 50%;

  --hero-height: 95vh;
  --hero-titulo: calc(3.5rem * var(--r));
  --hero-titulo-etapas: calc(2.75rem * var(--r));
  --hero-sw-btn-circ: calc(72px * var(--r));
  --hero-sw-btn-arrow: calc(22px * var(--r));
  --hero-text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
  --topo-inner-bg: rgba(27, 93, 141, 0.95);
  --hero-overlay: rgba(239, 235, 228, 0.5);
  --hero-overlay: rgba(27, 93, 141, 0.5);
  --titulo-cor-1: #34566e;
  --titulo-cor-2: #3b7b8d;

  --bloco-titulo: calc(2.5rem * var(--r));
  --bloco-subtitulo: calc(1.15rem * var(--r));
  --bloco-subtitulo-2: calc(1.75rem * var(--r));
  --bloco-texto: 1rem;
  --bloco-botao: 1rem;
  --bloco-titulo-cor: #36546d;

  --bloco-conteudo-overlay: rgba(239, 235, 228, 0.5);
  --acordeon-texto: 75%;

  --bloco-etapa-titulo: 1rem;
  --bloco-etapa-imagem: calc(8rem * var(--r));
  --bloco-etapa-descricao: 0.8rem;
  --bloco-etapa-ponto: 30px;
  --bloco-etapa-numero: 2.185rem;
  --bloco-etapa-padding: var(--r2);
  --bloco-linha-top: calc(
    var(--bloco-etapa-padding) + var(--bloco-etapa-imagem) + var(--r1) +
      calc(var(--bloco-etapa-numero) / 2)
  );
  --bloco-linha-left: calc(var(--bloco-etapa-imagem) + var(--r05) + 22px);

  --bloco-tema-icone: 3.5rem;
  --bloco-tema-bg: #efebe4;

  --menu-link: 1.15rem;
  --saiba-mais-link: 16px;

  --padding: 4rem;

  --r05: calc(0.5rem * var(--r));
  --r1: calc(1rem * var(--r));
  --r2: calc(2rem * var(--r));
  --r4: calc(4rem * var(--r));
  --r6: calc(6rem * var(--r));

  --flex-direction: row;
  --flex-2: 2;
}

html {
  scroll-behavior: smooth;
  font-size: var(--font-size);
}

@media (max-width: 1536px) {
  :root {
    --font-size: 19px;
    --r: 0.92;
  }
}

@media (max-width: 1440px) {
  :root {
    --font-size: 18px;
    --r: 0.88;
  }
}

@media (max-width: 1366px) {
  :root {
    --font-size: 17px;
    --r: 0.84;
  }
}

@media (max-width: 1200px) {
  :root {
    --font-size: 16px;
    --r: 0.8;
  }
}

@media (max-width: 992px) {
  :root {
    --r: 0.75;
    --font-size: 16px;

    --logo: 70px;
    --container-2: 90%;
    --container-3: 90%;

    --padding: 2rem;

    --flex-direction: column;
    --flex-2: 1;

    --hero-titulo: 1.75rem;
    --hero-titulo-etapas: 1.5rem;
    --hero-height: 70vh;
    --hero-sw-btn-circ: 36px;
    --bloco-titulo: 1.35rem;
    --bloco-subtitulo: 1rem;
    --bloco-etapa-titulo: 1.25rem;
    --bloco-etapa-imagem: 4rem;
    --bloco-etapa-descricao: 1rem;
    --acordeon-texto: 100%;
  }
}

html,
body {
  height: 100%;
}

body {
  font-family: var(--font-1);
  line-height: 1.5;
  color: var(--cor);
  background-color: #fff;
  overflow-x: hidden;
  font-weight: 300;
}

.container,
.container_2,
.container_3,
.wrapper {
  margin-left: auto;
  margin-right: auto;
}

.container {
  max-width: var(--container);
}

.container_2 {
  max-width: var(--container-2);
}

.container_3 {
  max-width: var(--container-3);
}

.pagina .container {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.ba {
  text-wrap: balance;
}

.padding {
  padding: var(--padding) 0;
}

.padding-b {
  padding-bottom: var(--padding);
}

.padding-t {
  padding-top: var(--padding);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-2);
  line-height: 1;
  letter-spacing: -0.02em;
}

h1,
h2 {
  font-weight: bold;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h2 {
  max-width: 80%;
  margin-inline: auto;
}

.bloco_info h2 {
  max-width: unset;
}

ul {
  list-style-type: none;
  padding-left: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

.separador,
.separador_2 {
  width: 32px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.15;
}

.separador {
  margin: calc(var(--r05) * -1) auto calc(var(--r1) * -1) auto;
}

.separador_2 {
  margin: var(--r05) auto;
}

.bloco_deco_bolha .icone,
.bloco_deco_bolha svg {
  display: block;
  width: 4rem;
  height: auto;
  opacity: 0.35;
  margin: 0 auto;
}

.bloco .container {
  display: flex;
  flex-direction: column;
  gap: var(--r2);
}

.botoes {
  display: flex;
  justify-content: center;
}

.botao,
a.botao,
.bloco_botao,
.botao_hero {
  padding: var(--r05) var(--r1);
  font-weight: 500;
  display: inline-block;
  max-width: fit-content;
  cursor: pointer;
  max-width: 400px;
  text-align: center;
  border-radius: 0.5rem;
  text-transform: uppercase;
  text-wrap: balance;
}

.bloco_botao_1 {
  background: var(--cor-1);
  color: #fff;
}

.bloco_botao_2 {
  background: #fff;
  color: var(--cor-1);
}

.bloco_botao_3,
.botao_hero {
  background: none;
  color: #fff;
  border: 1px solid #fff;
}

.botao_hero {
  margin-top: var(--r2);
  margin-left: auto;
  margin-right: auto;
}

.link {
  text-decoration: underline;
  cursor: pointer;
}

img,
picture,
video,
canvas {
  max-width: 100%;
  height: auto;
  display: block;
}

p a {
  font-weight: 500;
  color: var(--cor-2);
}

button,
input,
select,
textarea {
  font: inherit;
  line-height: inherit;
}

ul,
ol {
  margin-left: 28px;
}

ul {
  list-style-type: disc;
}

ol li::marker,
ul li::marker,
ul li span,
ol li span {
  font-weight: 500;
  color: var(--cor-2);
}

li {
  line-height: 1.7;
  margin-bottom: 10px;
}

.tag {
  background-color: #4d868d;
  color: #fff;
  padding: var(--r05) var(--r1);
  border-radius: 0.5rem;
  margin: 0 auto 1rem auto;
  display: block;
  font-size: 0.9rem;
  width: max-content;
  font-weight: 500;
}

.fixed {
  background-attachment: fixed;
}

.texto {
  display: flex;
  flex-direction: column;
  gap: var(--r1);
}

.titulo {
  font-weight: bold;
}

.subtitulo {
  font-weight: 500;
}

.pagina {
  min-height: 100vh;
}

.paginacao {
  margin-top: 2rem;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  text-align: center;
}

.ico_data {
  max-width: 16px;
}

.paginacao > a,
.paginacao > span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 2rem;
  min-height: 2rem;
  border-radius: 50%;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  background: var(--cor-2);
  transition: background 0.2s;
}

.paginacao > span.page-numbers.current {
  background: var(--cor-1);
}

.paginacao > a:hover {
  background: var(--cor-1);
}

.paginacao__seta svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: currentColor;
}

.camada {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.conteudo {
  position: relative;
  z-index: 2;
}

.titulo__principal_wrapper {
  height: 40vh;
  position: relative;
}

.hero__titulo {
  font-size: var(--hero-titulo);
  color: var(--titulo-cor-1);
  color: #fff;
  text-align: center;
  text-wrap: balance;
  text-shadow: var(--hero-text-shadow);
}

.hero__titulo span {
  color: var(--titulo-cor-2);
  color: #fff;
}

.titulo__principal {
  color: #fff;
}

.img_fundo {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.flex_center,
.flex_center_col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex_center_col {
  flex-direction: column;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.anima_hover:hover,
.botao:hover,
.bloco_botao:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease-in-out;
}

@media (max-width: 992px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

/* ── Header / Topo ───────────────────────────────────────────────────────── */
:root {
  --header-altura: 5rem;
}

.topo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.topo:not(.topo--hero) {
  background: #fff;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
}

.topo__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  transition: padding 0.35s ease;
}

.topo--scrolled {
  background: var(--topo-inner-bg);
}

.topo--scrolled .topo__inner {
  padding: 0.75rem 0;
}

.topo--scrolled .topo__logo img {
  max-height: var(--logo-sticky);
}

summary {
  scroll-margin-top: var(--topo-h);
}

.topo__logo {
  display: flex;
  align-items: center;
  gap: var(--r1);
  text-decoration: none;
  color: inherit;
}

.topo__logo img {
  max-height: var(--logo);
  width: auto;
  transition:
    max-height 0.35s ease,
    filter 0.35s ease;
}

.logo_titulo {
  font-size: 1rem;
  line-height: 1.3;
}

.topo__burger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  width: 2.5rem;
  padding: 4px 0;
  flex-shrink: 0;
}

.topo__burger-label {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  line-height: 1;
  margin-top: -2px;
}

.topo__burger span:not(.topo__burger-label) {
  display: block;
  width: 100%;
  height: 4px;
  background: #fff;
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.topo__burger.ativo span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.topo__burger.ativo span:nth-child(2) {
  opacity: 0;
}

.topo__burger.ativo span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ── Menu painel ─────────────────────────────────────────────────────────── */

.menu-painel {
  position: fixed;
  top: 0;
  right: 0;
  width: 360px;
  max-width: 90vw;
  height: 100dvh;
  background: var(--cor-azul);
  color: #fff;
  z-index: 300;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  padding: var(--r2) var(--r2) var(--r4);
}

.menu-painel.aberto {
  transform: translateX(0);
}

.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 250;
  cursor: pointer;
}

.menu-overlay.aberto {
  display: block;
}

.menu-painel__lista {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.menu-painel__lista li {
  margin-bottom: 0;
}

.menu-painel__fechar {
  display: block;
  margin-left: auto;
  background: none;
  border: none;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  padding: 0;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.menu-painel__fechar:hover {
  opacity: 1;
}

.menu-painel__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.menu-painel__item:first-child {
  padding-top: 0;
}

.menu-painel__link {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
}

.menu-painel__link:hover,
.menu-painel__link.ativo {
  opacity: 0.7;
}

.menu-painel__sub {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.menu-painel__sub li a {
  display: block;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.menu-painel__sub li a:hover {
  color: #fff;
}

.menu-painel__sub-titulo {
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
}

/* ── Hero: bloco título (páginas) ────────────────────────────────────────── */
.pagina_titulo__wrapper {
  position: relative;
  min-height: var(--hero-height);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1a2e3b;
  padding-top: var(--header-altura);
}

@keyframes ken-burns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

.pagina_titulo__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  animation: ken-burns 10s ease-in-out infinite alternate;
}

.pagina_titulo__video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.pagina_titulo__video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: 177.78vh;
  height: 56.25vw;
  pointer-events: none;
  border: none;
}

.pagina_titulo__overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  z-index: 1;
}

.pagina_titulo__wrapper--video .pagina_titulo__overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.15) 1px,
    transparent 0
  );
  background-size: 5px 5px;
}

.pagina_titulo__conteudo {
  position: relative;
  z-index: 2;
  padding: var(--padding) 0;
  width: 100%;
  max-width: var(--container-2);
  text-align: center;
}

.pagina_titulo__supertitulo {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.pagina_titulo {
  color: #fff;
  font-size: var(--hero-titulo);
  text-transform: uppercase;
  text-shadow: var(--hero-text-shadow);
}

#etapas_padrao .pagina_titulo,
#etapas_oficinas_livres .pagina_titulo {
  font-size: var(--hero-titulo-etapas);
}

.pagina_subtitulo {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  font-weight: 400;
  margin-top: 0.5rem;
}

.pagina_titulo__botao {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--r2);
  padding: 0.75rem 1.75rem;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.pagina_titulo__botao:hover {
  background: #fff;
  color: var(--cor-1);
}

/* ── Hero: carrossel home ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
}

.hero__deco {
  position: absolute;
  display: block;
  pointer-events: none;
  z-index: 5;
}

.hero__deco--bolha {
  bottom: -5%;
  left: -2%;
  width: 15%;
  opacity: 0.25;
}

.hero__deco--bolha .icone,
.hero__deco--bolha svg {
  width: 100%;
  height: auto;
  display: block;
}

.pagina_titulo__wrapper .el__curva_out_2 {
  bottom: 0;
  left: 0;
  width: 18%;
  opacity: 0.3;
}

.hero__swiper,
.hero__slide {
  height: var(--hero-height);
  min-height: 380px;
}

.hero__slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-altura);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}

.swiper-slide-active .hero__bg {
  animation: ken-burns 10s ease-in-out forwards;
}

.hero__video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: 177.78vh;
  height: 56.25vw;
  pointer-events: none;
  border: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    180deg,
    rgba(27, 93, 141, 0.55) 0%,
    rgba(27, 93, 141, 0.35) 40%,
    rgba(27, 93, 141, 0.65) 100%
  );
  z-index: 1;
}

/* .hero__slide--video .hero__overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.15) 1px,
    transparent 0
  );
  background-size: 5px 5px;
} */

.hero__conteudo {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero__slide .hero__conteudo {
  opacity: 0;
  transform: translateY(28px);
}

.swiper-slide-active .hero__conteudo {
  animation: hero-conteudo-in 0.65s ease forwards;
  animation-delay: 0.25s;
}

@keyframes hero-conteudo-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__texto {
  color: #fff;
}

.hero__texto p,
.hero__texto h1,
.hero__texto h2,
.hero__texto h3 {
  color: inherit;
}

.hero__btn-prev,
.hero__btn-next {
  width: var(--hero-sw-btn-circ);
  height: var(--hero-sw-btn-circ);
  border-radius: 50%;
  background: rgba(12, 40, 68, 0.35);
  backdrop-filter: blur(10px);
  transition: background 0.3s;
  border: none;
  padding: 0;
  cursor: pointer;
}

.hero__btn-prev:hover,
.hero__btn-next:hover {
  background: rgba(12, 40, 68, 0.55);
}

.hero__btn-prev {
  left: calc((100% - var(--container)) / 2);
}

.hero__btn-next {
  right: calc((100% - var(--container)) / 2);
}

.hero__btn-prev::after,
.hero__btn-next::after {
  color: #fff;
  font-size: var(--hero-sw-btn-arrow);
  font-weight: 700;
  -webkit-text-stroke: 0;
}

.hero__pagination .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.6;
}

.hero__pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

.hero__scroll {
  position: absolute;
  bottom: var(--r2);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: #fff;
  opacity: 0.85;
}

.hero__scroll span {
  font-size: 0.45rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes scroll-wheel {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  60% {
    transform: translateY(4px);
    opacity: 0.2;
  }
}

.hero__scroll-wheel {
  transform-box: fill-box;
  transform-origin: center;
  animation: scroll-wheel 1.8s ease-in-out infinite;
}

@media (max-width: 992px) {
  .pagina_titulo__wrapper {
    min-height: var(--hero-height);
  }

  .hero__swiper,
  .hero__slide {
    height: var(--hero-height);
    min-height: 280px;
    overflow: hidden;
  }

  .hero__video,
  .pagina_titulo__video {
    width: calc(70vh * 1.7778);
    height: 70vh;
    min-width: 100%;
    min-height: 70vh;
    max-width: unset;
  }
}

.bloco .container {
  display: flex;
  flex-direction: column;
}

.bloco_titulo,
.bloco_subtitulo {
  text-align: center;
}

.bloco_titulo {
  font-size: var(--bloco-titulo);
  color: var(--cor-1);
  text-transform: uppercase;
}

.bloco_titulo span {
  color: var(--cor-2);
}

.bloco_subtitulo {
  font-size: var(--bloco-subtitulo);
  color: var(--cor-2);
  font-family: var(--font-1);
  font-weight: 400;
}

.bloco_titulo + .bloco_subtitulo {
  margin-top: 0.5rem;
}

.bloco_texto {
  margin-top: 0.5rem;
  font-size: var(--bloco-texto);
  max-width: 75%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: var(--r1);
}

.bloco_botao {
  font-size: var(--bloco-botao);
}

/* ── Home: etapas ───────────────────────────────────────────────────────── */
.home_etapas__link {
  display: inline-block;
  vertical-align: baseline;
  color: var(--cor-azul);
  font-size: var(--saiba-mais-link);
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
  margin-left: 0.5rem;
  transition: transform 0.3s ease-in-out;
}
.home_etapas__link:hover {
  transform: translateY(-3px);
}
.home_oficina_livre__texto .home_etapas__link {
  color: var(--cor-3);
}
.home_temas__header .home_etapas__link {
  color: var(--cor-verde);
  margin-left: 0;
  display: block;
  text-align: center;
}

.etapas_timeline__rodape {
  margin-top: var(--r4);
}

/* ── Bloco: etapas ──────────────────────────────────────────────────────── */
.bloco_etapas__lista {
  display: flex;
  position: relative;
  gap: var(--r1);
  margin-top: var(--r2);
}

.bloco_etapas__linha {
  position: absolute;
  left: 2%;
  right: 2%;
  top: var(--bloco-linha-top);
  height: 0;
  border-top: 2px dashed var(--bloco-titulo-cor);
  z-index: 2;
}

/* Caps sólidos nas pontas — ficam no próprio elemento da linha e animam com ela */
.bloco_etapas__linha::before,
.bloco_etapas__linha::after {
  content: "";
  position: absolute;
  top: -2px;
  height: 2px;
  width: var(--cap-width, 10%);
  background: var(--bloco-titulo-cor);
}

.bloco_etapas__linha::before {
  left: 0;
}
.bloco_etapas__linha::after {
  right: 0;
}

@media (max-width: 992px) {
  .bloco_etapas__linha::before,
  .bloco_etapas__linha::after {
    display: none;
  }
}

.bloco_etapa {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--r1);
  position: relative;
  text-align: center;
  padding: var(--bloco-etapa-padding) 0;
  border-radius: 1rem;
}

.bloco_etapa__imagem-wrap {
  width: var(--bloco-etapa-imagem);
  height: var(--bloco-etapa-imagem);
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  z-index: 3;
}

.bloco_etapa__imagem {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bloco_etapa__imagem--placeholder {
  width: 100%;
  height: 100%;
  background: var(--cor-1);
}

/* .bloco_etapa__ponto {
  width: var(--bloco-etapa-ponto);
  height: var(--bloco-etapa-ponto);
  border-radius: 50%;
  background: var(--bloco-titulo-cor);
  flex-shrink: 0;
  background-color: #fff;
  border: 8px solid var(--cor-1);
} */
.bloco_etapa__ponto {
  display: none;
}

.bloco_etapa__numero {
  font-weight: bold;
  color: var(--bloco-titulo-cor);
  background-color: var(--cor-1);
  width: var(--bloco-etapa-numero);
  height: var(--bloco-etapa-numero);
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 3;
  flex-shrink: 0;
}

.bloco_etapa__titulo {
  font-weight: bold;
  font-size: var(--bloco-etapa-titulo);
  color: var(--cor-1);
  min-height: 2lh;
}

.bloco_etapa__data {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--r05);
  font-size: 14px;
  color: var(--cor-1);
  font-weight: 600;
}

.bloco_etapa__data {
  --icone-cor: #dbe1e1;
}

.bloco_etapa__data_icone {
  width: 30px;
  fill: var(--icone-cor);
}

.bloco_etapa__data span {
  color: var(--icone-cor);
}

.bloco_etapas__lista > .bloco_etapa:nth-child(2) .bloco_etapa__data {
  --icone-cor: #4d868d;
}
.bloco_etapas__lista > .bloco_etapa:nth-child(3) .bloco_etapa__data {
  --icone-cor: #456bb0;
}
.bloco_etapas__lista > .bloco_etapa:nth-child(4) .bloco_etapa__data {
  --icone-cor: #e08143;
}
.bloco_etapas__lista > .bloco_etapa:nth-child(5) .bloco_etapa__data {
  --icone-cor: #5e4a8d;
}

.bloco_etapa__descricao {
  font-size: var(--bloco-etapa-descricao);
  color: var(--cor-2);
}

.bloco_etapa__link-mais {
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
  color: var(--bloco-titulo-cor);
  flex-shrink: 0;
  display: block;
}

.bloco_etapa__link-mais::before,
.bloco_etapa__link-mais::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.bloco_etapa__link-mais::before {
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.bloco_etapa__link-mais::after {
  width: 1px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.etapas_padrao__data {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.etapas_padrao__data svg {
  width: 16px;
  height: 16px;
  fill: #fff;
  flex-shrink: 0;
  display: block;
}

.etapas_padrao__data--1 {
  background-color: #4d868d;
}
.etapas_padrao__data--2 {
  background-color: #456bb0;
}
.etapas_padrao__data--3 {
  background-color: #e08143;
}
.etapas_padrao__data--4 {
  background-color: #5e4a8d;
}

.etapas_info {
  background-size: cover;
  background-position: top center;
  position: relative;
  overflow: hidden;
}

.etapas_info__overlay {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.25);
}

.etapas_info__conteudo {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: var(--r2);
  padding: var(--r2);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
}

.etapas_info__titulo,
.etapas_info__texto {
  color: #fff;
}

.etapas_info__texto.bloco_texto {
  max-width: unset;
}

.bloco_etapa__ativo {
  background: transparent;
  animation: etapa-ativa-bg 0.5s ease var(--delay-ativo, 1200ms) both;
}

.etapas_info .separador {
  background-color: #fff;
}

@keyframes etapa-ativa-bg {
  from {
    background: transparent;
  }
  to {
    background: color-mix(in srgb, var(--cor-bege) 50%, transparent);
  }
}

.bloco_etapa__ativo .bloco_etapa__ponto {
  width: calc(var(--bloco-etapa-ponto) * 1.5);
  height: calc(var(--bloco-etapa-ponto) * 1.5);
}

.bloco_etapa__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--r05);
  padding: 0 var(--r1);
}

@media (max-width: 992px) {
  .bloco_etapas__lista {
    flex-direction: column;
    gap: var(--r2);
  }

  .bloco_etapas__linha {
    left: var(--bloco-linha-left);
    right: auto;
    top: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    border-top: none;
    border-left: 3px dashed var(--bloco-titulo-cor);
  }

  .bloco_etapa {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }

  .bloco_etapa__numero {
    flex-shrink: 0;
  }

  .bloco_etapa__info {
    align-items: flex-start;
    justify-content: center;
  }

  .bloco_etapa__data {
    justify-content: flex-start;
  }
}

#etapas .separador_2 {
  display: none;
}

@media (min-width: 993px) {
  #etapas .bloco_etapas__lista {
    flex-direction: column;
    gap: 0;
  }

  #etapas .bloco_etapas__linha {
    left: 23px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    border-top: none;
    border-left: 3px dashed var(--bloco-titulo-cor);
  }

  #etapas .bloco_etapas__linha::before,
  #etapas .bloco_etapas__linha::after {
    display: none;
  }

  #etapas .bloco_etapa {
    display: grid;
    grid-template-columns: 48px var(--bloco-etapa-imagem) 1.5fr 1fr 2fr 48px;
    align-items: center;
    column-gap: var(--r2);
    padding: var(--r2) 0;
    text-align: left;
  }

  #etapas .bloco_etapa__numero {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
  }

  #etapas .bloco_etapa__imagem-wrap {
    grid-column: 2;
    grid-row: 1;
  }

  #etapas .bloco_etapa__info {
    display: contents;
  }

  #etapas .bloco_etapa__titulo {
    grid-column: 3;
    grid-row: 1;
  }

  #etapas .bloco_etapa__data {
    grid-column: 4;
    grid-row: 1;
    flex-direction: column;
    align-items: flex-start;
  }

  #etapas .bloco_etapa__descricao {
    grid-column: 5;
    grid-row: 1;
  }

  #etapas .bloco_etapa__link-mais {
    grid-column: 6;
    grid-row: 1;
    justify-self: center;
    position: relative;
    width: 1.5rem;
    height: 1.5rem;
    color: var(--bloco-titulo-cor);
    flex-shrink: 0;
  }

  #etapas .bloco_etapa__link-mais::before,
  #etapas .bloco_etapa__link-mais::after {
    content: "";
    position: absolute;
    background: currentColor;
  }

  #etapas .bloco_etapa__link-mais::before {
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  #etapas .bloco_etapa__link-mais::after {
    width: 1px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
  }

  #etapas .bloco_etapa__ativo {
    background: none;
  }

  #etapas .bloco_etapa__ativo::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: var(--cor-bege);
    z-index: 0;
  }

  #etapas .bloco_etapa__ativo .bloco_etapa__titulo,
  #etapas .bloco_etapa__ativo .bloco_etapa__data,
  #etapas .bloco_etapa__ativo .bloco_etapa__descricao,
  #etapas .bloco_etapa__ativo .bloco_etapa__link-mais {
    position: relative;
    z-index: 1;
  }

  #etapas .bloco_etapa__ativo .bloco_etapa__imagem-wrap,
  #etapas .bloco_etapa__ativo .bloco_etapa__numero {
    position: relative;
    z-index: 3;
  }
}

/* ── Bloco: temas ───────────────────────────────────────────────────────── */

#temas .container {
  display: flex;
  flex-direction: column;
  gap: var(--r2);
}
.bloco_temas__lista {
  display: flex;
  flex-direction: column;
  gap: var(--r1);
}

.bloco_tema {
  display: block;
}

.bloco_tema__icone-wrap {
  width: var(--bloco-tema-icone);
  height: var(--bloco-tema-icone);
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.bloco_tema__icone {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bloco_tema__icone--vazio {
  width: 100%;
  height: 100%;
  background: var(--bloco-titulo-cor);
}

.bloco_tema__acordeao {
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
}

.bloco_tema__cabecalho {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--r2);
  padding: var(--r1) var(--r2);
  background: var(--bloco-tema-bg);
  cursor: pointer;
  list-style: none;
}

.bloco_tema__cabecalho::-webkit-details-marker {
  display: none;
}

.bloco_tema__linha-header {
  display: flex;
  gap: 0.5rem;
  flex: 1;
}

.bloco_tema__titulo {
  font: inherit;
  font-weight: 400;
  margin: 0;
}

.bloco_tema__rotulo {
  color: var(--cor-1);
  font-weight: 500;
  text-transform: uppercase;
  white-space: nowrap;
}

.bloco_tema__toggle {
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.bloco_tema__toggle::before,
.bloco_tema__toggle::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.bloco_tema__toggle::before {
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.bloco_tema__toggle::after {
  width: 1px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

details[open] .bloco_tema__toggle::after {
  opacity: 0;
}

.bloco_tema__corpo {
  background: var(--bloco-tema-bg);
}

.bloco_tema__corpo__inner {
  display: flex;
  padding: 0 var(--r2) var(--r2) var(--r2);
}

.bloco_tema__corpo__inner::before {
  content: "";
  flex-shrink: 0;
  width: calc(var(--bloco-tema-icone) + var(--r2));
}

/* ── Dúvidas / FAQ: mesmo estilo do acordeão de temas ───────────────────── */
.duvidas_acordeon__lista,
.oficinas_livres_faq__lista {
  display: flex;
  flex-direction: column;
  gap: var(--r1);
}

.duvidas_acordeon__pergunta,
.oficinas_livres_faq__pergunta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--r2);
  padding: var(--r1) var(--r2);
  background: var(--bloco-tema-bg);
  cursor: pointer;
  list-style: none;
  border-radius: 1rem;
}

.duvidas_acordeon__pergunta::-webkit-details-marker,
.oficinas_livres_faq__pergunta::-webkit-details-marker {
  display: none;
}

.duvidas_acordeon__resposta,
.oficinas_livres_faq__resposta {
  background: var(--bloco-tema-bg);
}

.duvidas_acordeon__item,
.oficinas_livres_faq__item {
  border-radius: 1rem;
  overflow: hidden;
}

.duvidas_acordeon__pergunta,
.oficinas_livres_faq__pergunta {
  border-radius: 0;
}

.duvidas_acordeon__resposta > *,
.oficinas_livres_faq__resposta > * {
  padding: var(--r1) var(--r2);
}

.acordeon_conteudo {
  display: block;
  overflow: hidden;
  height: 0;
}

details[open] .acordeon_conteudo {
  height: auto;
}

.duvidas_acordeon__resposta p,
.oficinas_livres_faq__resposta p,
.bloco_tema__corpo__inner p {
  max-width: var(--acordeon-texto);
}

.duvidas_acordeon__pergunta-texto,
.oficinas_livres_faq__pergunta-texto {
  font: inherit;
  margin: 0;
  font-weight: 500;
  color: var(--cor-1);
}

/* Parceiros */

.el__curva_1,
.el__curva_2,
.el__curva_out_2 {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.el__curva_1 .icone,
.el__curva_1 svg,
.el__curva_2 .icone,
.el__curva_2 svg,
.el__curva_out_2 .icone,
.el__curva_out_2 svg {
  display: block;
  width: 100%;
  height: auto;
}

.parceiros {
  position: relative;
  overflow: hidden;
}

.parceiros .el__curva_2 {
  bottom: -10px;
  right: 0;
  width: 20%;
  color: var(--cor-verde);
}

.parceiros__grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--r2);
}

.parceiros__item {
  gap: 0 2rem;
  display: flex;
  align-items: center;
  position: relative;
}

.parceiros__rotulo {
  position: absolute;
  top: 16px;
  left: 6px;
  font-size: 13px;
  font-weight: bold;
  color: var(--cor-1);
}

.parceiros__item img {
  width: 100%;
  max-width: 230px;
  min-width: 150px;
}

/* ====== Rodapé ====== */

#rodape {
  margin-top: auto;
}

#rodape ul,
#rodape li {
  list-style: none;
  margin-left: 0;
  line-height: 1.2;
}

/* ── Corpo ─────────────────────────────────────────────────────────────── */
.rodape__corpo {
  background-color: var(--cor-1);
  background-color: var(--cor-verde);
  padding: var(--r4) 0;
}

.rodape__corpo .container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--r4);
  align-items: flex-start;
}

.rodape__col {
  display: flex;
  flex-direction: column;
  gap: var(--r1);
  min-width: 0;
}

/* ── Logo ───────────────────────────────────────────────────────────────── */
.logo {
  max-width: 200px;
}

.rodape__logo_col {
  max-width: 250px;
  filter: brightness(0) invert(1);
}

/* ── Descrição ──────────────────────────────────────────────────────────── */
.rodape__descricao {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 85%;
}

/* ── Info: endereço + telefone ──────────────────────────────────────────── */
.rodape__info {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rodape__info_item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.rodape__icone {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

.rodape__icone svg {
  width: 20px;
  height: 20px;
  display: block;
}

.rodape__info_texto a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.rodape__info_texto a:hover {
  color: #fff;
}

/* ── Redes ──────────────────────────────────────────────────────────────── */
.rodape__redes {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rodape__rede {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.rodape__rede svg {
  display: block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: color 0.2s;
}

.rodape__rede:hover {
  color: #fff;
}

/* ── Sitemap ────────────────────────────────────────────────────────────── */
.rodape__sitemap_titulo {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
}

.rodape__sitemap {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rodape__sitemap li a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s;
}

.rodape__sitemap li a:hover {
  color: #fff;
}

/* ── Barra copyright ────────────────────────────────────────────────────── */
.rodape__barra {
  background-color: #5bc5c7;
  background-color: var(--cor-azul);

  padding: 0.75rem 0;
}

.rodape__barra .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--r1);
}

.rodape__copyright {
  font-size: 14px;
  color: #fff;
}

.rodape__topo {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
}

.rodape__topo:hover {
  opacity: 0.7;
}

/* Contato */

.fale_conosco_form {
  width: 100%;
}

.fale_conosco_form .wpforms-container {
  width: 100%;
  max-width: 100%;
}

.social {
  display: flex;
  gap: 0.75rem;
  color: #fff;
}

.social a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
}

.social__link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: rgba(255, 255, 255, 0.7);
}

.social + .rodape__sitemap_titulo {
  margin-top: var(--r1);
}

.fale_conosco_redes {
  display: flex;
  flex-direction: column;
  gap: var(--r1);
  margin-top: var(--r2);
}

.fale_conosco_redes__titulo {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cor-azul);
}

.social--info {
  color: var(--cor-azul);
}

.social--info .social__link {
  background-color: rgba(27, 93, 141, 0.1);
}

.social--info .social__link svg {
  fill: var(--cor-azul);
}

.social--info .social__link:hover {
  background-color: var(--cor-azul);
}

.social--info .social__link:hover svg {
  fill: #fff;
}

.rodape__emails__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.rodape__emails__link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* preloader */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background:
    linear-gradient(to bottom, rgba(9, 67, 115, 0.22) 0%, transparent 12%),
    linear-gradient(to top, rgba(9, 67, 115, 0.22) 0%, transparent 12%),
    radial-gradient(
      ellipse at 15% 85%,
      rgba(9, 67, 115, 0.28) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 85% 15%,
      rgba(9, 67, 115, 0.2) 0%,
      transparent 45%
    ),
    #e8f1f8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
}

.loader {
  width: 100px;
  color: var(--cor-azul);
}

.loader svg {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.3;
  overflow: visible;
}

.loader svg path {
  transform-box: fill-box;
  transform-origin: center;
  animation: bubbleFloat 1.8s ease-in-out infinite;
}

.loader svg path:nth-child(1) {
  animation-delay: 0s;
}

.loader svg path:nth-child(2) {
  animation-delay: 0.15s;
}

.loader svg path:nth-child(3) {
  animation-delay: 0.3s;
}

.loader svg path:nth-child(4) {
  animation-delay: 0.45s;
}

.loader svg path:nth-child(5) {
  animation-delay: 0.6s;
}

.loader svg path:nth-child(6) {
  animation-delay: 0.75s;
}

@keyframes bubbleFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.45;
  }

  50% {
    transform: translateY(-10px) scale(1.12);
    opacity: 1;
  }
}

@media (max-width: 992px) {
  h2 {
    max-width: unset;
  }
  .bloco_texto {
    max-width: unset;
  }

  .bloco_tema__linha-header {
    display: block;
  }

  .bloco_tema__cabecalho {
    flex-direction: column;
    justify-content: flex-start;
  }

  .bloco_tema__corpo__inner::before {
    width: 0;
  }

  .bloco_tema__linha-header {
    text-align: center;
  }

  .bloco_etapa__titulo {
    min-height: unset;
  }

  .rodape__corpo .container {
    display: flex;
    flex-direction: column;
  }

  .rodape__descricao {
    max-width: unset;
  }

  .rodape__barra .container {
    flex-direction: column-reverse;
  }

  .rodape__barra span {
    text-align: center;
  }

  .bloco_botao {
    width: 100%;
  }

  .bloco_etapas__lista .separador_2 {
    margin-left: 0;
  }

  .parceiros .el__curva_2 {
    width: 35%;
  }

  .bloco_tema__cabecalho {
    gap: 0.5rem;
    padding: var(--r2);
  }

  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }

  .etapas_timeline__rodape {
    margin-top: var(--r2);
  }
}

/* ── Acessibilidade ─────────────────────────────────────────────────────── */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  overflow: hidden;
}

.screen-reader-text:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  clip: auto;
  white-space: normal;
  overflow: visible;
  background: #fff;
  color: var(--cor-azul);
  padding: 0.5rem 1rem;
  z-index: 9999;
  font-size: 1rem;
  border-radius: 0.25rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

:focus-visible {
  outline: 3px solid var(--cor-azul);
  outline-offset: 3px;
}

.swiper-button-prev,
.swiper-button-next {
  border: none;
  padding: 0;
  cursor: pointer;
}

.swiper-button-prev:focus-visible,
.swiper-button-next:focus-visible {
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-aos] {
    transition: none !important;
    animation: none !important;
  }
}

/* ── Scrollbar ───────────────────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--cor-2);
}

::-webkit-scrollbar-thumb {
  background: #fff;
  border-radius: 4px;
  border: 2px solid var(--cor-2);
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.75);
}
