/*
Theme Name: medicina-hiperbarica
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
*/

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Outfit:wght@400;600&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --r: 1;

  --font-1: "Inter", sans-serif;
  --font-2: "Outfit", sans-serif;

  --font-size: 19px;

  --bg: #79ced5;
  --cor-1: #05578d;
  --cor-2: #4a819c;
  --logo-titulo: 1rem;

  --carrossel-texto: calc(1.25rem * var(--r));

  --container: 70%;
  --container-2: 70%;
  --container-3: 60%;

  --menu-link: 1rem;

  --padding: 4rem;

  --r05: calc(0.5rem * var(--r));
  --r1: calc(1rem * var(--r));
  --r15: calc(1.5rem * var(--r));
  --r2: calc(2rem * var(--r));
  --r3: calc(3rem * var(--r));
  --r4: calc(4rem * var(--r));
  --r5: calc(5rem * var(--r));
  --r6: calc(6rem * var(--r));

  --flex-direction: row;
  --flex-2: 2;

  /* Carrossel — cores do texto/fundo (edite aqui para mudar globalmente) */
  --slide-fundo-claro: rgba(255, 255, 255, 0.5);
  --slide-fundo-escuro: rgba(0, 0, 0, 0.5);
  --slide-letra-clara: #ffffff;
  --slide-letra-escura: #222222;
}

html {
  scroll-behavior: smooth;
  font-size: var(--font-size);
}

@media (max-width: 1560px) {
  :root {
    --r: 0.95;
    --menu-link: 0.9rem;
  }
}

@media (max-width: 1366px) {
  :root {
    --font-size: 17px;
    --r: 0.9;
  }
}

@media (max-width: 1200px) {
  :root {
    --r: 0.8;
    --menu-link: 0.8rem;
  }
}

@media (max-width: 992px) {
  :root {
    --r: 0.75;
    --font-size: 16px;

    --container: 85%;
    --container-2: 85%;

    --padding: 2rem;

    --flex-direction: column;
    --flex-2: 1;
  }
}

html,
body {
  height: 100%;
}

body {
  font-family: var(--font-1);
  font-weight: 400;
  line-height: 1.5;
  background: linear-gradient(180deg, #aee9ee 0%, #8fd8df 100%);
  color: #222222;
}

.container,
.wrapper {
  margin-left: auto;
  margin-right: auto;
}

.container {
  max-width: var(--container);
}

.pagina .container {
  width: 100%;
  max-width: var(--container-2);
}

.padding {
  padding: var(--padding) 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-2);
  font-weight: 600;
  line-height: 1.25;
}

h1 {
  text-wrap: balance;
}

h1,
h2 {
  font-weight: bold;
}

ul {
  list-style-type: none;
  padding-left: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

.botao,
a.botao {
  padding: var(--r05) var(--r1);
  font-weight: 500;
  display: inline-block;
  max-width: fit-content;
  cursor: pointer;
}

.link {
  text-decoration: underline;
  cursor: pointer;
}

img,
picture,
video,
canvas {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
  line-height: inherit;
}

.texto {
  display: flex;
  flex-direction: column;
  gap: var(--r1);
}

.titulo {
  font-weight: bold;
}

.subtitulo {
  font-weight: 400;
}

/* .pagina {
  min-height: 100vh;
} */

.pagina_titulo {
  font-size: 3rem;
  color: var(--cor-1);
}

.paginacao {
  margin-top: 2rem;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  text-align: center;
}

.paginacao a,
.paginacao span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 1.75rem;
  min-height: 1.75rem;
  padding: 0.15rem 0.25rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-family: var(--font-2);
  font-weight: var(--font-2-bold);
}

.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;
}

.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 {
  transform: translateY(-5px);
  transition: transform 0.3s ease-in-out;
}

@media (max-width: 992px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

/* ====== Carrossel ====== */

.carrossel {
  position: relative;
  width: 100%;
}

.carossel__sw {
  width: 100%;
  height: 80vh;
  min-height: 320px;
}

.swiper-slide {
  position: relative;
  overflow: hidden;
  background-image: var(--bg-desktop);
}

@media (max-width: 768px) {
  .swiper-slide {
    background-image: var(--bg-mobile, var(--bg-desktop));
  }
}

.carrossel__link {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
}

.carrossel__conteudo {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  padding: var(--r2) 0 var(--r4);
  pointer-events: none;
  align-items: flex-end;
}

.carrossel__conteudo .container {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

.carrossel__link .carrossel__conteudo {
  pointer-events: auto;
}

@keyframes carrossel-bolinhas-entrada {
  from {
    opacity: 0;
    transform: translateY(-50%) translateX(-40px);
  }
  to {
    opacity: 0.45;
    transform: translateY(-50%) translateX(0);
  }
}

@keyframes carrossel-texto-entrada {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.carrossel__texto {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 1.45rem;

  max-width: 560px;
  padding: var(--r15) var(--r3);

  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 18px 45px rgba(30, 70, 120, 0.12);
}

.carrossel__texto::before {
  content: "";
  width: 4px;
  align-self: stretch;
  background: var(--cor-1);
  flex: 0 0 auto;
}

.carrossel__texto p {
  margin: 0;
  font-size: var(--carrossel-texto);
  line-height: 1.3;
  font-weight: 400;
  color: #1f2a44;
  letter-spacing: 0.02em;
  text-wrap: balance;
}

.carrossel__texto * {
  color: inherit;
}

.carrossel__texto strong,
.carrossel__texto b {
  color: var(--cor-1);
  font-weight: 700;
}

.carrossel__conteudo .container {
  position: relative;
}

.swiper-slide:not(.swiper-slide-active) .carrossel__texto,
.swiper-slide:not(.swiper-slide-active)
  .carrossel__conteudo
  .container::before {
  opacity: 0;
}

.swiper-slide-active .carrossel__texto {
  animation: carrossel-texto-entrada 0.55s 0.3s ease both;
}

.swiper-slide-active .carrossel__conteudo .container::before {
  animation: carrossel-bolinhas-entrada 0.6s 0.2s ease both;
}

.carrossel__conteudo .container::before {
  content: "";
  position: absolute;
  left: -130px;
  top: 50%;
  transform: translateY(-50%);

  width: 95px;
  height: 106px;

  background-image: radial-gradient(var(--cor-1) 2px, transparent 2px);
  background-size: 22px 22px;
  opacity: 0.45;
  pointer-events: none;
}

.carrossel__conteudo--bolinhas-claras .container::before {
  background-image: radial-gradient(#ffffff 2px, transparent 2px);
  opacity: 0.6;
}

@media (max-width: 992px) {
  .carrossel__conteudo {
    align-items: flex-end;
    padding-bottom: 48px;
    padding: 0 0 48px 0;
    max-width: 100%;
  }

  .carrossel__texto {
    width: 100%;
    max-width: none;
    padding: 26px 24px;
    gap: 18px;
  }

  .carrossel__texto p {
    font-size: 1.2rem;
    text-wrap: initial;
  }

  .carrossel__conteudo .container::before {
    display: none;
  }
}

.carossel__pagination {
  position: absolute !important;
  bottom: 1.5rem !important;
  left: 50% !important;
  transform: translateX(-50%);
  width: auto !important;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.carossel__pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #fff;
  opacity: 0.6;
  margin: 0 !important;
}

.carossel__pagination .swiper-pagination-bullet-active {
  background: #fff;
  opacity: 1;
}

/* ====== Busca ====== */

/* ====== Menu ====== */

.topo {
  background-color: #fff;
  color: var(--cor-1);
}

.topo svg {
  fill: var(--cor-1);
}

.topo_wrapper {
  padding: var(--r2) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.topo_wrapper > * {
  flex: 1;
  display: flex;
  align-items: center;
}

.topo_wrapper > *:nth-child(2) {
  justify-content: center;
}

.topo_wrapper > *:nth-child(3) {
  justify-content: flex-end;
}

.topo_wrapper .logo_titulo {
  font-size: var(--logo-titulo);
  font-weight: 600;
  text-align: center;
}

.topo__direita {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.topo__redes {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.topo__rede svg,
.topo__telefone svg {
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.topo__telefone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
}

.menu__acesso-rapido {
  display: none;
}

@media (max-width: 992px) {
  .topo__direita {
    display: none;
  }

  .topo_wrapper {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
  }

  .topo_wrapper > * {
    flex: none;
  }

  .topo_wrapper .logo_titulo {
    text-align: center;
    justify-content: center;
    font-size: 0.85rem;
  }

  .menu .container {
    justify-content: space-between;
  }

  .menu__acesso-rapido {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .menu__acesso-rapido__link {
    display: flex;
    align-items: center;
    color: #fff;
  }

  .menu__acesso-rapido__link svg {
    width: 22px;
    height: 22px;
    fill: #fff;
    display: block;
  }
}

.menu {
  padding: 0.75rem 0;
}

.menu {
  background-color: #05578d;
}

.menu svg {
  fill: #fff;
}

.menu .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu .nav {
  flex: 1;
}

.nav__link {
  font-weight: 400;
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 100%;
  height: 4px;
  background-color: color-mix(in srgb, var(--cor-1) 70%, black);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.3s ease;
}

.nav__link.ativo {
  font-weight: 400;
}

.nav__link:hover::after,
.nav__link.ativo::after {
  transform: scaleX(1);
}

.nav__link,
.submenu li a {
  font-size: var(--menu-link);
  font-family: var(--font-2);
  color: var(--cor);
  text-decoration: none;
}

.nav__menu {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.nav__item {
  position: relative;
}

.submenu {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  z-index: 1000;
  min-width: 200px;
  background-color: var(--cor-1);
  color: #fff;
  list-style: none;
  padding: 1rem 0.5rem;
}

.nav__item:hover .submenu {
  display: block;
}

.nav__item:hover .submenu__mega {
  display: flex;
}

.submenu__mega {
  flex-direction: var(--flex-direction);
  gap: 2rem;
  min-width: max-content;
  padding: 1.5rem;
}

.submenu__grupo {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 150px;
}

.submenu__grupo_titulo {
  font-weight: bold;
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.submenu__grupo li {
  padding-left: 0.5rem;
}

.submenu__grupo li a {
  font-size: 0.9rem;
  padding: 0.2rem 0;
  display: block;
}

.submenu li {
  display: block;
}

.submenu li a {
  display: block;
  padding: 0.5rem 1rem;
  white-space: nowrap;
  transition: background-color 0.2s;
  font-size: 0.85em;
}

.submenu li a:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.nav a {
  position: relative;
  text-decoration: none;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-transform: uppercase;
}

.nav a svg {
  margin-left: 0.2rem;
}

.show-menu {
  width: 32px;
  height: 22px;
  display: none;
  cursor: pointer;
  align-items: center;
  position: relative;
  justify-content: center;
}

.show-menu span,
.show-menu:before,
.show-menu:after {
  width: 100%;
  height: 4px;
  background: #ffffff;
  border-radius: 3px;
}

.show-menu:before,
.show-menu:after {
  content: "";
  left: 0;
  position: absolute;
  transition: all 0.3s ease;
}

.show-menu:before {
  top: 0;
}

.show-menu:after {
  top: 18px;
}

.menu-toggler {
  display: none;
}

.menu-toggler:checked + .show-menu span {
  background: transparent;
}

.menu-toggler:checked + .show-menu:after {
  top: 9px;
  transform: rotate(45deg);
}

.menu-toggler:checked + .show-menu:before {
  top: 9px;
  transform: rotate(-45deg);
}

.menu-toggler:checked ~ .nav ul {
  display: block;
  transform: translateX(0);
}

@media (max-width: 992px) {
  .show-menu {
    display: flex;
  }

  .menu {
    position: relative;
  }

  .menu .container {
    position: static;
  }

  .menu .nav {
    flex: none;
    width: 0;
    overflow: visible;
  }

  .nav ul {
    display: block;
    transform: translateX(-100%);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem;
    flex-direction: column;
    transition: transform 0.3s ease-in-out;
    text-align: center;
    z-index: 100;
    background-color: var(--cor-1);
  }

  .nav__menu {
    height: max-content;
    transition: height 0.5s ease-in;
  }

  .menu-toggler:checked ~ .nav ul {
    transform: translateX(0);
  }

  .nav ul li .submenu {
    display: none !important;
    position: initial;
    width: 100%;
    box-shadow: none;
  }

  .nav ul li .submenu.abrir {
    display: block !important;
    position: relative !important;
    z-index: 100 !important;
    padding: 0;
  }

  .nav ul li:hover .submenu {
    display: initial;
  }

  .nav__link svg {
    transition: transform 0.3s ease;
  }

  .nav__item.open svg {
    transform: rotate(180deg);
  }

  .nav__item,
  .submenu {
    margin-bottom: 1.25rem;
  }

  .submenu li:first-child {
    margin-top: 1.25rem;
  }
}

/* ====== Título de seção (home) ====== */

.secao-titulo {
  text-align: center;
  margin-bottom: var(--r2);
}

.secao-titulo::before {
  content: "";
  display: block;
  width: 3rem;
  height: 3px;
  background-color: var(--cor-2);
  margin: 0 auto var(--r1);
}

.secao-titulo h2 {
  color: var(--cor-1);
  margin: 0;
}

.secao-titulo__sub {
  margin-top: 0.5rem;
  color: #666;
  font-size: 1rem;
}

/* ====== Carrossel Tratamentos (home) ====== */

.tratamentos-carrossel {
  padding: var(--r4) 0;
  background: #fff;
  position: relative;
}

.tratamentos__slider-area {
  position: relative;
}

.tratamentos__button-prev,
.tratamentos__button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cor-1);
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.2s;
}

.tratamentos__button-prev {
  left: calc((100% - var(--container)) / 2 - 2rem - 2.5rem);
}
.tratamentos__button-next {
  right: calc((100% - var(--container)) / 2 - 2rem - 2.5rem);
}

.tratamentos__button-prev svg,
.tratamentos__button-next svg {
  width: 2rem;
  height: 2rem;
}

.tratamentos__button-prev.swiper-button-disabled,
.tratamentos__button-next.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
}

.tratamentos__sw {
  position: relative;
  padding-bottom: 2.5rem;
  margin-top: var(--r2);
  transition: opacity 0.2s;
}

/* ── Card de tratamento ─────────────────────────────────────────────────── */
.trat-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.trat-card__foto {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.trat-card__foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.trat-card__foto::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(to bottom, transparent, var(--cor-1));
  pointer-events: none;
}

.trat-card__icone {
  position: relative;
  align-self: center;
  margin-top: -1.75rem;
  z-index: 1;
  width: 3.5rem;
  height: 3.5rem;
  background: var(--cor-1);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trat-card__icone img {
  width: 55%;
  height: 55%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.trat-card__titulo {
  background-color: var(--cor-1);
  padding: 0.5rem 1rem 1rem;
  text-align: center;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -1px;
}

.trat-card__titulo h3 {
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}

.tratamentos__sw .swiper-wrapper {
  align-items: stretch;
}

.tratamentos__sw .swiper-slide {
  height: auto;
}

.tratamentos__pagination .swiper-pagination-bullet-active {
  background: var(--cor-1);
}

/* ====== Rodapé ====== */

#rodape {
  margin-top: auto;
}

/* ── Corpo ─────────────────────────────────────────────────────────────── */
.rodape__corpo {
  background-color: var(--cor-1);
  padding: var(--r4) 0;
}

.rodape__corpo .container {
  display: grid;
  grid-template-columns: repeat(3, 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: 180px;
  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: 340px;
}

/* ── 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__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.8);
  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;
  padding: 0.75rem 0;
}

.rodape__barra .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--r1);
}

.rodape__copyright {
  font-size: 0.8rem;
  color: var(--cor-1);
}

.rodape__topo {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cor-1);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
}

.rodape__topo:hover {
  opacity: 0.7;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background-color: #82c2cd;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
}

.loader {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow:
    32px 0 #fff,
    -32px 0 #fff;
  position: relative;
  animation: flash 0.5s ease-out infinite alternate;
}

@keyframes flash {
  0% {
    background-color: #fff2;
    box-shadow:
      32px 0 #fff2,
      -32px 0 #fff;
  }
  50% {
    background-color: #fff;
    box-shadow:
      32px 0 #fff2,
      -32px 0 #fff2;
  }
  100% {
    background-color: #fff2;
    box-shadow:
      32px 0 #fff,
      -32px 0 #fff2;
  }
}

/* ── Responsivo ──────────────────────────────────────────────────────────── */
@media (max-width: 992px) {
  .tratamentos__button-prev,
  .tratamentos__button-next {
    display: none;
  }

  .rodape__corpo .container {
    grid-template-columns: 1fr;
    gap: var(--r2);
  }

  .rodape__barra .container {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .rodape__sitemap_titulo {
    margin-top: 1rem;
  }
}
