/* =========================
   ANIMAÇÕES MODERNAS
========================= */

/* Variáveis para facilitar manutenção */
:root {
  --anime-duration: 0.8s;
  --anime-ease: cubic-bezier(0.22, 1, 0.36, 1); /* easing mais moderno */
  --anime-distance: 60px;
}

/* Estado inicial */
[data-anime] {
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(0.98);
  transition:
    opacity var(--anime-duration) var(--anime-ease),
    transform var(--anime-duration) var(--anime-ease);
  will-change: opacity, transform;
}

/* Direções */
[data-anime="left"] {
  transform: translate3d(calc(-1 * var(--anime-distance)), 0, 0) scale(0.98);
}

[data-anime="right"] {
  transform: translate3d(var(--anime-distance), 0, 0) scale(0.98);
}

[data-anime="top"] {
  transform: translate3d(0, calc(-1 * var(--anime-distance)), 0) scale(0.98);
}

[data-anime="down"] {
  transform: translate3d(0, var(--anime-distance), 0) scale(0.98);
}

/* Estado ativo */
[data-anime].animate {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

/* =========================
   MELHORIAS VISUAIS OPCIONAIS
========================= */

/* Fade com leve blur (efeito moderno) */
[data-anime].animate {
  filter: blur(0);
}

[data-anime] {
  filter: blur(6px);
  transition:
    opacity var(--anime-duration) var(--anime-ease),
    transform var(--anime-duration) var(--anime-ease),
    filter var(--anime-duration) var(--anime-ease);
}

/* =========================
   MOBILE (mais fluido)
========================= */

@media (max-width: 480px) {
  .container {
    overflow-x: hidden;
  }

  /* Reduz intensidade ao invés de remover */
  :root {
    --anime-distance: 20px;
  }

  [data-anime] {
    filter: none; /* remove blur para performance */
  }
}

/* =========================
   ACESSIBILIDADE
========================= */

/* Usuários que preferem menos animação */
@media (prefers-reduced-motion: reduce) {
  [data-anime] {
    transition: none;
    transform: none;
    opacity: 1;
    filter: none;
  }
}

/* =========================
   PEDREIRAS SAO TOME - LANDING APPROVED SKIN
========================= */
:root {
  --pst-bg: #f7f6f2;
  --pst-paper: #ffffff;
  --pst-ink: #171819;
  --pst-muted: #666a6e;
  --pst-line: rgba(23, 24, 25, .11);
  --pst-graphite: #2b2e30;
  --pst-stone: #d9d7cf;
  --pst-mist: #e4ebee;
  --pst-blue: #2f7f9f;
  --pst-blue-soft: #85b5cd;
  --pst-whatsapp: #1fae63;
  --pst-whatsapp-dark: #128c4d;
  --pst-whatsapp-soft: rgba(31, 174, 99, .16);
  --pst-moss: #6f8268;
  --pst-sand: #b8aa90;
  --pst-shadow: 0 24px 70px rgba(26, 27, 27, .08);
  --pst-radius: 8px;
  --pst-font-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --pst-font-display: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--pst-bg) !important;
  color: var(--pst-ink);
  font-family: var(--pst-font-body) !important;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body,
p,
li,
a,
button,
input,
select,
textarea {
  font-family: var(--pst-font-body) !important;
  letter-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--pst-ink);
  font-family: var(--pst-font-display) !important;
  letter-spacing: 0 !important;
}

p {
  color: var(--pst-muted);
}

img {
  max-width: 100%;
}

.text-primary,
.color-principal,
#paginas-seo p strong,
#paginas-seo li strong,
.linkagen a,
footer a:hover {
  color: var(--pst-blue) !important;
}

.bg-principal {
  background: var(--pst-blue) !important;
}

body::-webkit-scrollbar-thumb,
.sub-menu-info::-webkit-scrollbar-thumb {
  background: var(--pst-blue);
}

/* Header */
.sitebase-header {
  position: fixed;
  inset: 18px 20px auto;
  z-index: 1030;
  width: min(1180px, calc(100vw - 40px));
  margin: auto;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: var(--pst-radius);
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.sitebase-header .container {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.logo {
  width: 118px;
  max-height: 62px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.navbar-light .navbar-nav {
  align-items: center;
  gap: 8px;
}

.navbar-light .navbar-nav .nav-link {
  color: rgba(23, 24, 25, .74) !important;
  font-size: .9rem !important;
  font-weight: 800 !important;
  padding: 10px 12px !important;
}

.navbar-light .navbar-nav .nav-link::before {
  display: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
  color: var(--pst-blue) !important;
}

.navbar-toggler {
  width: 44px;
  height: 44px;
  border: 1px solid var(--pst-line) !important;
  border-radius: var(--pst-radius);
  background: rgba(255, 255, 255, .7);
  box-shadow: none !important;
}

.btn-orca,
.header-cta {
  min-height: 46px;
  padding: 0 16px !important;
  border-radius: var(--pst-radius) !important;
  background: linear-gradient(135deg, var(--pst-whatsapp), var(--pst-whatsapp-dark)) !important;
  color: #fff !important;
  font-size: .86rem;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(31, 174, 99, .24);
}

.btn-orca:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(31, 174, 99, .30);
}

.dropdown-menu.sub-menu-info {
  width: 320px;
  max-height: 430px;
  padding: 10px;
  border: 1px solid var(--pst-line);
  border-radius: var(--pst-radius);
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--pst-shadow);
}

.sub-menu-info a {
  border-radius: 6px;
  color: var(--pst-muted);
  font-family: var(--pst-font-body) !important;
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.25;
}

.dropdown-item:focus,
.dropdown-item:hover,
.sub-menu-info a:hover {
  background: var(--pst-bg);
  color: var(--pst-blue) !important;
}

/* Hero baseado na landing aprovada */
.sitebase-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 148px 20px 78px;
  color: #fff;
}

.sitebase-hero .hero-media,
.sitebase-hero .hero-overlay {
  position: absolute;
  inset: 0;
}

.sitebase-hero .hero-media img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, 0, 0) scale(1.04);
}

.sitebase-hero .hero-overlay {
  background:
    linear-gradient(180deg, rgba(8, 9, 9, .35), rgba(8, 9, 9, .42) 42%, rgba(8, 9, 9, .72)),
    radial-gradient(circle at 78% 18%, rgba(79, 159, 197, .22), transparent 34%);
}

.sitebase-hero .hero-content {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100vw - 40px));
  margin: 0 auto;
}

.eyebrow,
.produtos-tag,
.sobre-tag,
.cta-pedreira-tag,
.badge-projeto,
.mini-banner-tag {
  color: var(--pst-blue);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em !important;
  text-transform: uppercase;
}

.sitebase-hero .eyebrow {
  margin: 0 0 14px;
  color: #d7eef8;
}

.sitebase-hero h1 {
  max-width: 850px;
  margin: 0;
  color: #fff;
  font-size: clamp(3.1rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 1;
}

.hero-subtitle {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions,
.section-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.hero-actions .btn,
.btn-sobre,
.btn-cta-pedreira,
.cta-bottom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--pst-radius) !important;
  font-weight: 800;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.hero-actions .btn:hover,
.btn-sobre:hover,
.btn-cta-pedreira:hover,
.cta-bottom:hover {
  transform: translateY(-2px);
}

.hero-actions .btn-primary,
.btn-sobre,
.btn-cta-pedreira,
.cta-bottom {
  background: linear-gradient(135deg, var(--pst-whatsapp), var(--pst-whatsapp-dark)) !important;
  color: #fff !important;
  box-shadow: 0 18px 44px rgba(31, 174, 99, .28);
}

.btn-glass {
  color: #fff !important;
  border-color: rgba(255, 255, 255, .34) !important;
  background: rgba(255, 255, 255, .1) !important;
  backdrop-filter: blur(12px);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.hero-proof li {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--pst-radius);
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font-size: .88rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.hero-proof li::before {
  content: "✓";
  margin-right: 8px;
  color: #d7eef8;
}

.scroll-cue {
  position: absolute;
  right: 32px;
  bottom: 30px;
  z-index: 2;
  width: 42px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 999px;
}

.scroll-cue::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 14px;
  width: 5px;
  height: 10px;
  border-radius: 999px;
  background: #fff;
  transform: translateX(-50%);
}

.intro-band {
  position: relative;
  z-index: 2;
  margin-top: -34px;
  padding: 0 20px 70px;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--pst-line);
  border-radius: var(--pst-radius);
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--pst-shadow);
  overflow: hidden;
}

.intro-grid article {
  padding: 26px;
  border-right: 1px solid var(--pst-line);
}

.intro-grid article:last-child {
  border-right: 0;
}

.intro-grid strong {
  display: block;
  color: var(--pst-ink);
  font-family: var(--pst-font-display);
  font-size: clamp(1.65rem, 3vw, 2.7rem);
  line-height: 1;
}

.intro-grid span {
  display: block;
  margin-top: 7px;
  color: var(--pst-muted);
  font-size: .94rem;
  font-weight: 700;
}

/* Home sections */
.sobre-pedreira,
.produtos-section,
.projetos-section,
#paginas-seo,
#sobre-nos,
#servicos,
#contato {
  background: var(--pst-bg) !important;
}

.sobre-pedreira,
.produtos-section,
.projetos-section {
  padding-top: 88px !important;
  padding-bottom: 88px !important;
}

.sobre-imagem img,
.produto-card,
.projeto-card,
#menu-lateral .card,
#paginas-seo .card,
.about-card,
.vantagem-card {
  border-radius: var(--pst-radius) !important;
}

.sobre-imagem img {
  height: 560px;
  box-shadow: var(--pst-shadow);
}

.sobre-box {
  border-radius: var(--pst-radius);
  background: rgba(255, 255, 255, .92);
  color: var(--pst-ink);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .16);
  backdrop-filter: blur(12px);
}

.sobre-pedreira h2,
.produtos-header h2,
.cta-pedreira-content h2,
.projetos-section h2 {
  max-width: 820px;
  color: var(--pst-ink);
  font-size: clamp(2rem, 3.4vw, 3.15rem);
  font-weight: 800;
  line-height: 1.08;
}

.sobre-pedreira h2 strong,
.produtos-header h2 span {
  color: var(--pst-blue);
}

.sobre-pedreira h2 {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.sobre-pedreira h2 strong {
  display: inline;
}

.sobre-pedreira .col-lg-6 {
  min-width: 0;
  overflow: visible;
}

.sobre-lista div {
  color: var(--pst-graphite);
}

.sobre-lista i,
.cta-pedreira-info i,
.produto-btn,
.about-card i,
.vantagem-card i {
  color: var(--pst-blue);
}

.produtos-header p,
.projeto-texto,
.sobre-pedreira p {
  color: var(--pst-muted) !important;
}

.produto-card,
.projeto-card {
  border: 1px solid var(--pst-line);
  box-shadow: var(--pst-shadow);
}

.projeto-overlay {
  background:
    linear-gradient(
      0deg,
      rgba(0, 0, 0, .82) 0%,
      rgba(0, 0, 0, .48) 42%,
      rgba(0, 0, 0, .12) 100%
    ) !important;
}

.projeto-overlay > div {
  position: relative;
  z-index: 1;
  max-width: 92%;
}

.projeto-overlay i,
.projeto-overlay h3,
.projeto-overlay p {
  color: #fff !important;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .45);
}

.projeto-overlay h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  line-height: 1.08;
}

.projeto-overlay p {
  color: rgba(255, 255, 255, .88) !important;
}

.projeto-card:hover .projeto-overlay {
  background:
    linear-gradient(
      0deg,
      rgba(8, 9, 9, .88) 0%,
      rgba(47, 127, 159, .34) 48%,
      rgba(0, 0, 0, .12) 100%
    ) !important;
}

.projeto-overlay h1,
.projeto-overlay h2,
.projeto-overlay h3,
.projeto-overlay h4,
.produto-overlay h1,
.produto-overlay h2,
.produto-overlay h3,
.produto-overlay h4 {
  color: #fff !important;
}

.sobre-pedreira h2,
.produtos-header h2,
.projetos-section h2,
.produto-content h3,
.projeto-overlay h3 {
  hyphens: auto;
  word-break: normal;
}

.produto-img {
  height: 260px;
}

.produto-content {
  padding: 22px;
}

.produto-content h3 {
  margin-bottom: 8px;
  color: var(--pst-ink);
  font-size: 1.35rem;
  font-weight: 800;
}

.produto-content span {
  color: var(--pst-whatsapp-dark);
  font-size: .92rem;
  font-weight: 800;
}

.produto-btn {
  background: rgba(255, 255, 255, .92);
}

.badge-projeto {
  display: inline-flex;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.cta-pedreira {
  min-height: 480px;
  background: url("../image/cta.jpg") center center / cover no-repeat !important;
}

.cta-pedreira-overlay {
  background:
    linear-gradient(180deg, rgba(8, 9, 9, .35), rgba(8, 9, 9, .78)),
    radial-gradient(circle at 78% 18%, rgba(79, 159, 197, .25), transparent 34%) !important;
}

.cta-pedreira-tag,
.cta-pedreira-content h2,
.cta-pedreira-content h2 strong,
.cta-pedreira-content p {
  color: #fff !important;
}

.cta-pedreira-content p {
  opacity: .84;
}

.cta-pedreira-info div {
  color: #fff;
}

/* Internal pages */
.mini-banner-interno {
  position: relative;
  min-height: 470px;
  display: flex;
  align-items: end;
  padding: 140px 0 58px;
  overflow: hidden;
  color: #fff;
}

.mini-banner-media,
.mini-banner-overlay {
  position: absolute;
  inset: 0;
}

.mini-banner-media img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
}

.mini-banner-overlay {
  background:
    linear-gradient(180deg, rgba(8, 9, 9, .35), rgba(8, 9, 9, .45) 45%, rgba(8, 9, 9, .78)),
    radial-gradient(circle at 78% 18%, rgba(79, 159, 197, .22), transparent 34%);
}

.mini-banner-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  color: #fff;
}

.mini-banner-tag {
  display: inline-block;
  margin-bottom: 14px;
  color: #d7eef8;
}

.mini-banner-content h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.45rem, 5.4vw, 5rem);
  font-weight: 800;
  line-height: 1;
}

.mini-banner-content p {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .84);
  font-size: 1.12rem;
}

#caminho {
  border: 0 !important;
  background: var(--pst-paper) !important;
  box-shadow: 0 1px 0 var(--pst-line);
}

.breadcrumb a,
.breadcrumb i,
.breadcrumb-item.active {
  color: var(--pst-muted) !important;
}

.breadcrumb a:hover {
  color: var(--pst-blue) !important;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(23, 24, 25, .34);
}

#paginas-seo {
  padding: 64px 0 80px;
}

#paginas-seo .container > .row {
  align-items: flex-start;
}

#paginas-seo .col-lg-8 {
  padding: 38px;
  border: 1px solid var(--pst-line);
  border-radius: var(--pst-radius);
  background: var(--pst-paper);
  box-shadow: var(--pst-shadow);
}

#paginas-seo h1 {
  margin-bottom: 24px;
  color: var(--pst-ink);
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  font-weight: 800;
  line-height: 1.08;
}

#paginas-seo h2 {
  margin-top: 34px;
  margin-bottom: 14px;
  color: var(--pst-ink);
  font-size: clamp(1.55rem, 2.3vw, 2.1rem);
  font-weight: 800;
  line-height: 1.1;
}

#paginas-seo h3 {
  margin-top: 22px;
  color: var(--pst-graphite);
  font-size: 1.25rem;
  font-weight: 800;
}

#paginas-seo p,
#paginas-seo li,
#paginas-seo a {
  color: var(--pst-muted);
  font-size: 1rem;
  line-height: 1.72;
  text-align: left;
}

#paginas-seo ul {
  padding-left: 1.2rem;
}

.img-cta {
  position: relative;
  max-width: 360px;
  margin: 4px 28px 18px 0;
}

.img-seo {
  width: 100%;
  border-radius: var(--pst-radius);
  box-shadow: none;
}

#menu-lateral {
  position: sticky;
  top: 112px;
}

#menu-lateral .card {
  border: 1px solid var(--pst-line) !important;
  background: var(--pst-paper);
  box-shadow: var(--pst-shadow) !important;
}

#menu-lateral h2 {
  color: var(--pst-ink);
  font-size: 1.2rem;
  font-weight: 800;
}

#menu-lateral .btn {
  border-radius: var(--pst-radius);
  font-weight: 800;
}

#menu-lateral .btn-custom {
  border: 0;
  background: var(--pst-whatsapp-soft) !important;
  color: var(--pst-whatsapp-dark) !important;
}

#menu-lateral .btn-success {
  background: linear-gradient(135deg, var(--pst-whatsapp), var(--pst-whatsapp-dark)) !important;
}

.sublateral {
  max-height: calc(100vh - 360px);
  height: auto;
  padding-right: 6px;
}

#menu-lateral .list-group-item {
  border: 0;
  border-bottom: 1px solid var(--pst-line);
  color: var(--pst-muted);
  font-size: .93rem;
  font-weight: 700;
}

#menu-lateral .list-group-item:hover {
  padding-left: 12px;
  background: var(--pst-bg);
  color: var(--pst-blue) !important;
}

/* Footer and utility buttons */
footer {
  background: var(--pst-graphite) !important;
  color: #fff;
  font-family: var(--pst-font-body) !important;
}

.footer-top {
  padding: 64px 0;
}

.logo-footer {
  max-width: 170px;
  border-radius: var(--pst-radius);
  mix-blend-mode: normal;
}

footer h2 {
  font-family: var(--pst-font-display) !important;
  font-size: 1.18rem;
}

footer p,
footer a {
  color: rgba(255, 255, 255, .76) !important;
  font-size: 1rem;
  line-height: 1.65;
}

#assinatura {
  background: var(--pst-bg);
}

#assinatura strong,
#assinatura a,
.copyright {
  color: var(--pst-muted) !important;
}

.back-to-top {
  background: var(--pst-ink) !important;
}

.whatsapp-button,
#whatsapp-button {
  background: var(--pst-whatsapp) !important;
}

@media (max-width: 991px) {
  .sitebase-header {
    inset: 12px 14px auto;
    width: calc(100vw - 28px);
  }

  .navbar-collapse {
    margin-top: 10px;
    padding: 12px;
    border: 1px solid var(--pst-line);
    border-radius: var(--pst-radius);
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--pst-shadow);
  }

  .dropdown-menu.sub-menu-info {
    width: 100%;
    max-height: 300px;
    box-shadow: none;
  }

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

  .intro-grid article:nth-child(2) {
    border-right: 0;
  }

  .intro-grid article {
    border-bottom: 1px solid var(--pst-line);
  }

  .intro-grid article:nth-child(n+3) {
    border-bottom: 0;
  }

  .sobre-imagem img {
    height: 420px;
  }

  #menu-lateral {
    position: static;
  }
}

@media (max-width: 576px) {
  .sitebase-hero {
    padding: 112px 14px 48px;
  }

  .sitebase-hero .hero-content,
  .intro-band {
    width: auto;
  }

  .sitebase-hero h1 {
    font-size: clamp(2.7rem, 16vw, 4rem);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-proof {
    gap: 8px;
  }

  .hero-proof li {
    width: 100%;
  }

  .scroll-cue {
    display: none;
  }

  .intro-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid article,
  .intro-grid article:nth-child(n) {
    border-right: 0;
    border-bottom: 1px solid var(--pst-line);
  }

  .intro-grid article:last-child {
    border-bottom: 0;
  }

  .mini-banner-interno {
    min-height: 390px;
    padding: 120px 0 44px;
  }

  #paginas-seo .col-lg-8 {
    padding: 24px 18px;
  }

  .img-cta {
    float: none;
    max-width: 100%;
    margin: 0 0 22px;
  }

  .img-seo {
    float: none;
  }
}

/* Sitemap */
#mapasite {
  padding: 72px 0 88px;
  background: var(--pst-bg);
}

.sitemap-intro {
  max-width: 820px;
  margin-bottom: 34px;
}

.sitemap-intro h2,
.sitemap-panel-heading h2,
.sitemap-cta h2 {
  margin: 0;
  color: var(--pst-ink);
  font-size: clamp(2rem, 3.4vw, 3.15rem);
  font-weight: 800;
  line-height: 1.08;
}

.sitemap-intro p,
.sitemap-cta p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--pst-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.sitemap-featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.sitemap-card {
  display: flex;
  min-height: 178px;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid var(--pst-line);
  border-radius: var(--pst-radius);
  background: var(--pst-paper);
  box-shadow: var(--pst-shadow);
  color: var(--pst-ink) !important;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.sitemap-card:hover {
  border-color: rgba(47, 127, 159, .32);
  color: var(--pst-ink) !important;
  transform: translateY(-3px);
}

.sitemap-card i {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: var(--pst-radius);
  background: var(--pst-whatsapp-soft);
  color: var(--pst-whatsapp-dark);
  font-size: 1.35rem;
}

.sitemap-card strong {
  margin-top: 20px;
  color: var(--pst-ink);
  font-family: var(--pst-font-display);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.1;
}

.sitemap-card span {
  display: block;
  margin-top: 8px;
  color: var(--pst-muted);
  font-size: .94rem;
  font-weight: 600;
  line-height: 1.45;
}

.sitemap-panel {
  padding: 34px;
  border: 1px solid var(--pst-line);
  border-radius: var(--pst-radius);
  background: var(--pst-paper);
  box-shadow: var(--pst-shadow);
}

.sitemap-panel-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--pst-line);
}

#mapasite .menu-mapa,
#mapasite .menu-mapa ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#mapasite .menu-mapa {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

#mapasite .menu-mapa > li > a {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  border: 1px solid var(--pst-line);
  border-radius: var(--pst-radius);
  background: var(--pst-bg);
  color: var(--pst-ink);
  font-weight: 800;
}

#mapasite .menu-mapa > li > a:hover {
  border-color: rgba(47, 127, 159, .32);
  color: var(--pst-blue);
}

#mapasite .menu-mapa > li > a::after {
  content: ">";
  color: var(--pst-blue);
  font-size: .9rem;
}

#mapasite .menu-mapa > li:has(.submenu) {
  grid-column: 1 / -1;
}

#mapasite .menu-mapa > li:has(.submenu) > a {
  margin-top: 10px;
  background: var(--pst-graphite);
  color: #fff !important;
}

#mapasite .menu-mapa > li:has(.submenu) > a::after {
  content: "Conteudos";
  color: rgba(255, 255, 255, .72);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

#mapasite .submenu {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 14px;
  max-height: none !important;
  margin-top: 14px !important;
  padding: 0 !important;
}

#mapasite .submenu li a {
  display: flex;
  min-height: 44px;
  align-items: center;
  padding: 10px 12px;
  border-bottom: 1px solid var(--pst-line);
  color: var(--pst-muted);
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.3;
}

#mapasite .submenu li a:hover {
  padding-left: 16px;
  background: var(--pst-bg);
  color: var(--pst-blue);
}

.sitemap-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 28px;
  padding: 34px;
  border-radius: var(--pst-radius);
  background:
    linear-gradient(180deg, rgba(8, 9, 9, .25), rgba(8, 9, 9, .76)),
    url("../image/cta.jpg") center center / cover no-repeat;
  color: #fff;
  overflow: hidden;
}

.sitemap-cta .eyebrow,
.sitemap-cta h2,
.sitemap-cta p {
  color: #fff !important;
}

.sitemap-cta p {
  opacity: .84;
}

.sitemap-cta .btn {
  flex: 0 0 auto;
  min-height: 52px;
  padding: 0 22px;
  border-radius: var(--pst-radius);
  background: linear-gradient(135deg, var(--pst-whatsapp), var(--pst-whatsapp-dark));
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 44px rgba(31, 174, 99, .28);
}

@media (max-width: 991px) {
  .sitemap-featured,
  #mapasite .menu-mapa {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #mapasite .submenu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sitemap-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  #mapasite {
    padding: 46px 0 64px;
  }

  .sitemap-featured,
  #mapasite .menu-mapa,
  #mapasite .submenu {
    grid-template-columns: 1fr;
  }

  .sitemap-panel,
  .sitemap-cta {
    padding: 22px;
  }

  .sitemap-panel-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Related articles */
#paginas-seo .title-veja {
  max-width: 920px;
  margin: 54px 0 22px;
  color: var(--pst-ink);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1.08;
}

#paginas-seo .title-veja .destaqueThumbs {
  color: var(--pst-blue);
  font-weight: 800;
}

#paginas-seo .card-artigo {
  height: 100%;
  border: 1px solid var(--pst-line) !important;
  border-radius: var(--pst-radius) !important;
  background: var(--pst-paper) !important;
  box-shadow: 0 18px 50px rgba(26, 27, 27, .08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

#paginas-seo .card-artigo:hover {
  border-color: rgba(47, 127, 159, .32) !important;
  box-shadow: 0 24px 64px rgba(26, 27, 27, .13);
  transform: translateY(-4px);
}

#paginas-seo .card-artigo > a {
  display: block;
  background: var(--pst-mist);
  overflow: hidden;
}

#paginas-seo .card-artigo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}

#paginas-seo .card-artigo:hover img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.045);
}

#paginas-seo .card-artigo .card-body {
  display: flex;
  min-height: 128px;
  align-items: flex-start;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(247, 246, 242, .08), rgba(247, 246, 242, .48)),
    var(--pst-paper);
}

#paginas-seo .card-artigo .card-title {
  margin: 0;
  font-size: clamp(1.08rem, 1.45vw, 1.26rem);
  line-height: 1.22;
}

#paginas-seo .card-artigo .card-title a {
  display: inline;
  color: var(--pst-ink) !important;
  font-family: var(--pst-font-display) !important;
  font-weight: 800;
  text-decoration: none;
  transition: color .2s ease;
}

#paginas-seo .card-artigo .card-title a:hover {
  color: var(--pst-blue) !important;
}

@media (max-width: 576px) {
  #paginas-seo .title-veja {
    margin-top: 38px;
    font-size: 1.75rem;
  }

  #paginas-seo .card-artigo .card-body {
    min-height: auto;
    padding: 18px;
  }
}
