/* Default
** ----------------------------------------------- */
:root {
  --primary-color: #00abe2;
  --secondary-color: #4b4e4d;
}

/* Default
** ----------------------------------------------- */
body {
  color: #333;
  background: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  margin: 0;
  padding: 0;
  line-height: 1.3;
}

a:hover,
a:focus {
  color: #444;
  text-decoration: none;
  outline: 0;
}

a:hover,
a:focus {
  color: #005580;
  text-decoration: underline;
}

/* Topo / Header
** ----------------------------------------------- */
:root {
  --site-header-height: 92px;
  --header-bg: #fff;
  --header-text: #1f2933;
  --header-accent: #007da8;
  --header-border: rgba(15, 23, 42, 0.08);
  --header-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  --header-shadow-scrolled: 0 14px 35px rgba(15, 23, 42, 0.12);
  --header-radius: 16px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--site-header-height) + 20px);
}

body.overflow {
  overflow: hidden;
}

body.header-fixed-active {
  padding-top: var(--site-header-height);
}

.site-header {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--header-border);
  box-shadow: var(--header-shadow);
  z-index: 99;
  transition:
    box-shadow 0.25s ease,
    background-color 0.25s ease,
    backdrop-filter 0.25s ease,
    transform 0.25s ease;
}

.site-header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--header-shadow-scrolled);
  backdrop-filter: blur(12px);
  animation: headerFixedShow 0.28s ease forwards;
}

.site-header.is-scrolled {
  background: #fff;
  box-shadow: var(--header-shadow-scrolled);
  backdrop-filter: blur(12px);
}

@keyframes headerFixedShow {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.site-header__grid {
  display: grid;
  grid-template-columns: 250px 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: var(--site-header-height);
}

.site-header__brand {
  width: 250px;
  padding: 16px 0;
}

.site-header__brand a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-header__brand img {
  display: block;
  width: 100%;
  max-width: 200px;
  height: auto;
  object-fit: contain;
}

.site-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.site-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 18px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  background: var(--header-accent);
  border: 1px solid var(--header-accent);
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease;
}

.site-header__cta:hover,
.site-header__cta:focus {
  color: #fff;
  text-decoration: none;
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.site-header__menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #fff;
  font-size: 18px;
  background: var(--header-accent);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease;
}

.site-header__menu-button:hover,
.site-header__menu-button:focus {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

/* Menu Desktop
** ----------------------------------------------- */
.site-nav {
  display: flex;
  justify-content: center;
  min-width: 0;
}

.site-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 4px;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__item {
  position: relative;
  list-style: none;
}

.site-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 34px 12px;
  color: var(--header-text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 25px;
  height: 2px;
  background: var(--header-accent);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.site-nav__item:hover > .site-nav__link,
.site-nav__item:focus-within > .site-nav__link,
.site-nav__link.menu-ativo {
  color: var(--header-accent);
  text-decoration: none;
}

.site-nav__item:hover > .site-nav__link::after,
.site-nav__item:focus-within > .site-nav__link::after,
.site-nav__link.menu-ativo::after {
  transform: scaleX(1);
}

.site-nav__submenu-button {
  display: none;
}

.site-nav__submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 20;
  display: block;
  width: 300px;
  max-height: 430px;
  margin: 0;
  padding: 10px;
  list-style: none;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--header-radius);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.14);
  overflow-x: hidden;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition:
    opacity 0.22s ease,
    visibility 0.22s ease,
    transform 0.22s ease;
}

.site-nav__submenu--wide {
  width: 330px;
  max-width: calc(100vw - 32px);
}

.site-nav__item:hover > .site-nav__submenu,
.site-nav__item:focus-within > .site-nav__submenu,
.site-nav__item.is-open > .site-nav__submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.site-nav__submenu li {
  display: block;
  width: 100%;
  list-style: none;
}

.site-nav__submenu li + li {
  margin-top: 4px;
}

.site-nav__submenu a {
  display: block;
  width: 100%;
  padding: 11px 12px;
  color: #334155;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  text-decoration: none;
  border-radius: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.site-nav__submenu a:hover,
.site-nav__submenu a:focus {
  color: #fff;
  background: var(--primary-color);
  text-decoration: none;
  transform: translateX(3px);
}

.site-nav__submenu::-webkit-scrollbar,
.menu-lateral-conteudo::-webkit-scrollbar,
.menu-lateral .site-nav__submenu::-webkit-scrollbar {
  width: 7px;
}

.site-nav__submenu::-webkit-scrollbar-thumb,
.menu-lateral-conteudo::-webkit-scrollbar-thumb,
.menu-lateral .site-nav__submenu::-webkit-scrollbar-thumb {
  background: rgba(15, 23, 42, 0.18);
  border-radius: 999px;
}

/* Menu Mobile Lateral
** ----------------------------------------------- */
.menu-lateral {
  position: fixed;
  inset: 0;
  z-index: 999;
  visibility: hidden;
  pointer-events: none;
}

.menu-lateral.menu-lateral-visivel {
  visibility: visible;
  pointer-events: auto;
}

.menu-lateral-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.48);
  opacity: 0;
  backdrop-filter: blur(4px);
  transition: opacity 0.25s ease;
}

.menu-lateral.menu-lateral-visivel .menu-lateral-overlay {
  opacity: 1;
}

.menu-lateral-conteudo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(390px, 88vw);
  background: #fff;
  box-shadow: -20px 0 50px rgba(15, 23, 42, 0.18);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-lateral.menu-lateral-visivel .menu-lateral-conteudo {
  transform: translateX(0);
}

.menu-lateral__head {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: #fff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.menu-lateral__logo {
  display: inline-flex;
  align-items: center;
  max-width: 190px;
  text-decoration: none;
}

.menu-lateral__logo img {
  display: block;
  width: 100%;
  max-width: 190px;
  height: auto;
  object-fit: contain;
}

.menu-lateral__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--primary-color);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

.menu-lateral__close:hover,
.menu-lateral__close:focus {
  background: var(--secondary-color);
  transform: rotate(90deg);
}

.menu-lateral__nav {
  padding: 14px 14px 24px;
}

.menu-lateral .site-nav__list {
  display: block;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-lateral .site-nav__item {
  position: relative;
  display: block;
  width: 100%;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.menu-lateral .site-nav__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: 50px;
  padding: 15px 56px 15px 4px;
  color: var(--header-text);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  white-space: normal;
}

.menu-lateral .site-nav__link::after {
  display: none;
}

.menu-lateral .site-nav__link > i {
  display: none;
}

.menu-lateral .site-nav__link:hover,
.menu-lateral .site-nav__link:focus,
.menu-lateral .site-nav__link.menu-ativo {
  color: var(--header-accent);
  text-decoration: none;
}

.fa,
.fa-brands,
.fa-regular,
.fa-solid,
.fab,
.far,
.fas {
  min-width: 1em;
  text-align: center;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--header-accent);
  outline-offset: 3px;
}

.menu-lateral .site-nav__submenu-button {
  position: absolute;
  top: 8px;
  right: 0;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--primary-color);
  background: #f5f5f5;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.menu-lateral .site-nav__submenu-button:hover,
.menu-lateral .site-nav__submenu-button:focus {
  color: #fff;
  background: var(--primary-color);
}

.menu-lateral .site-nav__item.is-open > .site-nav__submenu-button {
  color: #fff;
  background: var(--primary-color);
  transform: rotate(180deg);
}

.menu-lateral .site-nav__submenu {
  position: static;
  display: block;
  width: 100%;
  max-width: 100%;
  max-height: 0;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  transition:
    max-height 0.32s ease,
    padding 0.32s ease;
}

.menu-lateral .site-nav__item.is-open > .site-nav__submenu {
  max-height: 360px;
  padding: 0 0 14px 0;
  overflow-x: hidden;
  overflow-y: auto;
}

.menu-lateral .site-nav__submenu li {
  display: block;
  width: 100%;
  border: 0;
}

.menu-lateral .site-nav__submenu li + li {
  margin-top: 6px;
}

.menu-lateral .site-nav__submenu a {
  display: block;
  width: 100%;
  padding: 11px 12px;
  color: #475569;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  text-decoration: none;
  white-space: normal;
  background: #f8fafc;
  border-radius: 10px;
  overflow: visible;
  text-overflow: initial;
  transform: none;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.menu-lateral .site-nav__submenu a:hover,
.menu-lateral .site-nav__submenu a:focus {
  color: #fff;
  background: var(--primary-color);
  text-decoration: none;
  transform: none;
}

/* WhatsApp Flutuante
** ----------------------------------------------- */
.whatsapp-fixed {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 98;
}

.whatsapp-fixed__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  color: #fff;
  font-size: 34px;
  text-decoration: none;
  background: #24cc63;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(36, 204, 99, 0.34);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.whatsapp-fixed__button::before,
.whatsapp-fixed__button::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(36, 204, 99, 0.28);
  z-index: -1;
  animation: whatsappPulse 2s infinite;
}

.whatsapp-fixed__button::after {
  animation-delay: 1s;
}

.whatsapp-fixed__button:hover,
.whatsapp-fixed__button:focus {
  color: #fff;
  text-decoration: none;
  background: #1fb457;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 18px 36px rgba(36, 204, 99, 0.42);
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  70% {
    transform: scale(1.45);
    opacity: 0;
  }

  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}

/* Responsivo
** ----------------------------------------------- */
@media (max-width: 1199px) {
  .site-header__grid {
    grid-template-columns: 220px 1fr auto;
    gap: 16px;
  }

  .site-header__brand,
  .site-header__brand img {
    max-width: 220px;
  }

  .site-nav__link {
    padding-left: 9px;
    padding-right: 9px;
    font-size: 13px;
  }
}

@media (max-width: 991px) {
  :root {
    --site-header-height: 78px;
  }

  .site-header__grid {
    grid-template-columns: 1fr auto;
    min-height: var(--site-header-height);
  }

  .site-header__brand {
    width: auto;
    max-width: 200px;
    padding: 12px 0;
  }

  .site-header__brand img {
    max-width: 200px;
  }

  .site-nav {
    display: none;
  }

  .site-header__cta {
    display: none;
  }

  .site-header__menu-button {
    display: inline-flex;
  }
}

@media (max-width: 575px) {
  .site-header__brand img {
    max-width: 170px;
  }

  .menu-lateral-conteudo {
    width: min(360px, 92vw);
  }

  .menu-lateral__logo,
  .menu-lateral__logo img {
    max-width: 165px;
  }

  .whatsapp-fixed {
    right: 18px;
    bottom: 18px;
  }

  .whatsapp-fixed__button {
    width: 58px;
    height: 58px;
    font-size: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Correção final - Submenu Mobile
** ----------------------------------------------- */
@media (max-width: 991px) {
  .menu-lateral .site-nav__item--dropdown {
    position: relative;
  }

  .menu-lateral .site-nav__item--dropdown > .site-nav__link {
    padding-right: 60px !important;
  }

  .menu-lateral .site-nav__item--dropdown > .site-nav__submenu {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    display: block !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    max-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: hidden !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
    transition:
      max-height 0.32s ease,
      padding 0.32s ease !important;
  }

  .menu-lateral .site-nav__item--dropdown.is-open > .site-nav__submenu {
    max-height: 360px !important;
    padding: 0 0 14px 0 !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
  }

  .menu-lateral .site-nav__submenu li {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    list-style: none !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .menu-lateral .site-nav__submenu li + li {
    margin-top: 7px !important;
  }

  .menu-lateral .site-nav__submenu a {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: initial !important;
    margin: 0 !important;
    padding: 12px 14px !important;
    color: #475569 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.35 !important;
    text-align: left !important;
    text-indent: 0 !important;
    text-decoration: none !important;
    white-space: normal !important;
    background: #f8fafc !important;
    border: 1px solid rgba(15, 23, 42, 0.05) !important;
    border-radius: 10px !important;
    opacity: 1 !important;
    visibility: visible !important;
    overflow: visible !important;
    text-overflow: initial !important;
    transform: none !important;
  }

  .menu-lateral .site-nav__submenu a::before,
  .menu-lateral .site-nav__submenu a::after {
    display: none !important;
    content: none !important;
  }

  .menu-lateral .site-nav__submenu a:hover,
  .menu-lateral .site-nav__submenu a:focus {
    color: #fff !important;
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    text-decoration: none !important;
    transform: none !important;
  }

  .menu-lateral .site-nav__submenu-button {
    position: absolute !important;
    top: 8px !important;
    right: 0 !important;
    z-index: 5 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 42px !important;
    height: 42px !important;
    color: var(--primary-color) !important;
    background: #f5f5f5 !important;
    border: 0 !important;
    border-radius: 999px !important;
  }

  .menu-lateral .site-nav__item.is-open > .site-nav__submenu-button {
    color: #fff !important;
    background: var(--primary-color) !important;
    transform: rotate(180deg) !important;
  }
}

/* Breadcrumb
** ----------------------------------------------- */
div#breadcrumb {
  color: #fff;
  font-weight: normal;
  padding-top: 5px;
}

div#breadcrumb i {
  color: var(--secondary-color);
  font-size: 10px;
}

div#breadcrumb > a:hover,
.bread > a:hover {
  text-decoration: none;
  color: var(--secondary-color);
  transition: 0.3s all;
}

.breadcrumb i {
  padding: 0 5px;
}

.breadcrumb a {
  color: #fff;
}

.breadcrumb a:hover {
  text-decoration: none;
  color: #fff;
}

span.breadcrumb-separador {
  color: #fff;
}

.bread {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

/* Botboox (pop-up de formulários)
** ----------------------------------------------- */
.bootbox-body h3 {
  font-size: 20px;
  text-align: center;
  color: #28a745;
}

button.btn.btn-primary.bootbox-accept:hover,
button.btn.btn-primary.bootbox-accept:active,
button.btn.btn-primary.bootbox-accept:focus {
  background: #28a745;
  transition: 0.3s all;
}

/* Página de Informações
** ----------------------------------------------- */
.pagina-informacoes {
  position: relative;
  padding: 78px 0 88px;
  background: #fff;
  overflow: hidden;
}

.pagina-informacoes::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -180px;
  width: 380px;
  height: 380px;
  background: var(--primary-color);
  border-radius: 50%;
  opacity: 0.06;
  pointer-events: none;
}

.pagina-informacoes::after {
  content: "";
  position: absolute;
  left: -140px;
  bottom: -190px;
  width: 340px;
  height: 340px;
  background: var(--secondary-color);
  border-radius: 50%;
  opacity: 0.04;
  pointer-events: none;
}

.pagina-informacoes__intro {
  position: relative;
  z-index: 1;
  max-width: 830px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-tag::before,
.section-tag::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: var(--primary-color);
  border-radius: 999px;
}

.pagina-informacoes__intro h2 {
  margin: 0 0 16px;
  color: var(--secondary-color);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.pagina-informacoes__intro p {
  max-width: 720px;
  margin: 0 auto;
  color: #5f6c7b;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}

/* Grid
** ----------------------------------------------- */
.informacoes-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.informacao-card {
  position: relative;
  min-height: 100%;
}

.informacao-card__link {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 380px;
  color: inherit;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.07);
  overflow: hidden;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.informacao-card__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 4px;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.informacao-card__link:hover,
.informacao-card__link:focus {
  color: inherit;
  text-decoration: none;
  border-color: rgba(15, 23, 42, 0.13);
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.13);
  transform: translateY(-6px);
}

.informacao-card__link:hover::before,
.informacao-card__link:focus::before {
  transform: scaleX(1);
}

/* Imagem
** ----------------------------------------------- */
.informacao-card__media {
  position: relative;
  display: block;
  width: 100%;
  height: 210px;
  margin: 0;
  background: #f8fafc;
  overflow: hidden;
}

.informacao-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.14));
  opacity: 0;
  transition: opacity 0.28s ease;
}

.informacao-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

.informacao-card__link:hover .informacao-card__media::before,
.informacao-card__link:focus .informacao-card__media::before {
  opacity: 1;
}

.informacao-card__link:hover .informacao-card__media img,
.informacao-card__link:focus .informacao-card__media img {
  filter: saturate(1.05);
  transform: scale(1.07);
}

/* Conteúdo
** ----------------------------------------------- */
.informacao-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
}

.informacao-card__label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 12px;
  padding: 7px 11px;
  color: var(--primary-color);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.035);
  border-radius: 999px;
}

.informacao-card__body h3 {
  margin: 0 0 12px;
  color: var(--secondary-color);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -0.02em;
  transition: color 0.25s ease;
}

.informacao-card__body p {
  margin: 0 0 22px;
  color: #64748b;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
}

.informacao-card__action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition:
    color 0.25s ease,
    gap 0.25s ease;
}

.informacao-card__action i {
  font-size: 12px;
}

.informacao-card__link:hover .informacao-card__body h3,
.informacao-card__link:focus .informacao-card__body h3 {
  color: var(--primary-color);
}

.informacao-card__link:hover .informacao-card__action,
.informacao-card__link:focus .informacao-card__action {
  gap: 12px;
  color: var(--secondary-color);
}

/* Página SEO / Palavra-chave
** ----------------------------------------------- */
.seo-hero,
.formulario-seo {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: auto;
  padding: 96px 0 82px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.82)),
    var(--secondary-color);
  overflow: hidden;
}

.seo-hero::before,
.formulario-seo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(255, 255, 255, 0.08),
      transparent 28%
    ),
    radial-gradient(circle at 84% 22%, var(--primary-color), transparent 28%);
  opacity: 0.42;
  filter: none;
}

.seo-hero::after,
.formulario-seo::after {
  content: "";
  position: absolute;
  right: -130px;
  bottom: -170px;
  z-index: -1;
  width: 420px;
  height: 420px;
  border: 72px solid var(--primary-color);
  border-radius: 50%;
  opacity: 0.18;
  pointer-events: none;
}

.seo-hero__content {
  max-width: 650px;
}

.seo-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.86;
}

.seo-hero__tag::before {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 999px;
}

.formulario-seo h1,
.seo-hero h1 {
  position: relative;
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(28px, 5vw, 30px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.formulario-seo h1::before,
.seo-hero h1::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 86px;
  height: 5px;
  background: var(--primary-color);
  border-radius: 999px;
}

.seo-hero__content p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.75;
}

.seo-hero__form {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin-left: auto;
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
}

.seo-hero__form .form-control,
.seo-hero__form .select-form,
.seo-hero__form select,
.seo-hero__form textarea {
  min-height: 46px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: none;
}

.seo-hero__form textarea {
  min-height: 118px;
}

.seo-hero__form .btn-envia,
.seo-hero__form button[type="submit"],
.seo-hero__form input[type="submit"] {
  min-height: 48px;
  color: #fff;
  font-weight: 700;
  background: var(--primary-color);
  border-color: var(--primary-color);
  border-radius: 10px;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.seo-hero__form .btn-envia:hover,
.seo-hero__form button[type="submit"]:hover,
.seo-hero__form input[type="submit"]:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-2px);
}

.scroll-to-content {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 2;
  transform: translateX(-50%);
}

.scroll-to-content a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  transition:
    color 0.25s ease,
    background-color 0.25s ease;
}

.scroll-to-content i {
  color: inherit;
  font-size: 28px;
  animation: arrowDown 2s infinite;
}

.scroll-to-content a:hover,
.scroll-to-content a:focus {
  color: var(--primary-color);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
}

/* Conteúdo SEO
** ----------------------------------------------- */
.conteudo-seo {
  position: relative;
  padding: 58px 0 72px;
  background: #fff;
  overflow-x: hidden;
}

.seo-content-layout {
  position: relative;
  display: flow-root;
}

.texto-seo {
  color: #263241;
}

.texto-seo p {
  margin: 0 0 18px;
  color: #334155;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.78;
  text-align: left;
}

.texto-seo h2,
.texto-seo h3 {
  position: relative;
  margin: 36px 0 18px;
  color: var(--secondary-color);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.texto-seo h2 {
  font-size: clamp(26px, 3vw, 36px);
}

.texto-seo h3 {
  font-size: clamp(22px, 2.4vw, 28px);
}

.texto-seo h2::before,
.texto-seo h3::before {
  content: "";
  display: block;
  width: 54px;
  height: 4px;
  margin-bottom: 12px;
  background: var(--primary-color);
  border-radius: 999px;
}

.texto-seo ul,
.texto-seo ol {
  margin: 0 0 22px 22px;
  padding: 0;
}

.texto-seo ul li,
.texto-seo ol li {
  margin-bottom: 8px;
  color: #334155;
  font-size: 16px;
  line-height: 1.7;
}

.imagens-seo {
  float: right;
  width: min(420px, 42%);
  margin: 6px 0 24px 32px;
}

.imagens-seo a {
  display: block;
  text-decoration: none;
}

.imagens-seo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
}

/* BreadCrumb SEO
** ----------------------------------------------- */
.breadcrump-seo {
  margin-bottom: 28px;
}

.breadcrump-seo #breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 12px 16px;
  width: fit-content;
  max-width: 100%;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  text-shadow: none;
}

.breadcrump-seo #breadcrumb a {
  color: var(--secondary-color);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.breadcrump-seo #breadcrumb a:hover,
.breadcrump-seo #breadcrumb a:focus {
  color: var(--primary-color);
  text-decoration: none;
}

.breadcrump-seo #breadcrumb i {
  color: var(--primary-color);
  font-size: 13px;
}

.breadcrump-seo #breadcrumb span.page-active {
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 700;
}

/* Múltiplas imagens SEO
** ----------------------------------------------- */
.multipla-imagens-seo {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0;
}

.multipla-imagens-seo img {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
}

/* Faixa Informações
** ----------------------------------------------- */
.faixa-informacoes {
  position: relative;
  isolation: isolate;
  margin: 42px 0;
  padding: 34px 0;
  background: var(--primary-color);
  border-radius: 22px;
  overflow: hidden;
}

.faixa-informacoes::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  width: auto;
  height: auto;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.08), rgba(255, 255, 255, 0.08)),
    var(--primary-color);
}

.faixa-informacoes h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  letter-spacing: -0.035em;
}

.faixa-informacoes .btn-whatsapp {
  text-align: center;
}

.faixa-informacoes .btn-whatsapp a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 14px 34px;
  color: var(--secondary-color);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.faixa-informacoes .btn-whatsapp a:hover,
.faixa-informacoes .btn-whatsapp a:focus {
  color: #fff;
  text-decoration: none;
  background: var(--secondary-color);
  transform: translateY(-2px);
}

/* Mais visitados
** ----------------------------------------------- */
section.mais-visitados {
  position: relative;
  margin: 54px 0;
  padding: 38px 54px 46px;
  text-align: center;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  overflow: hidden;
}

section.mais-visitados::before {
  content: "";
  position: absolute;
  top: -110px;
  right: -110px;
  width: 240px;
  height: 240px;
  background: var(--primary-color);
  border-radius: 50%;
  opacity: 0.06;
}

section.mais-visitados h2,
section.mais-visitados h3 {
  position: relative;
  margin: 0 0 28px;
  color: var(--secondary-color);
  font-size: clamp(20px, 3vw, 15px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

section.mais-visitados h2::after,
section.mais-visitados h3::after {
  content: "";
  display: block;
  width: 54px;
  height: 4px;
  margin: 12px auto 0;
  background: var(--primary-color);
  border-radius: 999px;
}

section.mais-visitados .swiper {
  padding: 8px 4px 10px;
}

section.mais-visitados .swiper-button-next,
section.mais-visitados .swiper-button-prev {
  width: 44px;
  height: 44px;
  color: var(--secondary-color);
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  transition:
    color 0.25s ease,
    background-color 0.25s ease;
}

section.mais-visitados .swiper-button-next:hover,
section.mais-visitados .swiper-button-prev:hover {
  color: #fff;
  background: var(--primary-color);
}

section.mais-visitados .swiper-button-next::after,
section.mais-visitados .swiper-button-prev::after {
  font-size: 18px;
  font-weight: 800;
}

.box-mais-visitado {
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
  text-align: center;
}

.box-mais-visitado a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.box-mais-visitado img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
  margin: 0 auto 14px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.box-mais-visitado h3,
.box-mais-visitado h6 {
  margin: 0;
  color: var(--primary-color);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
  transition: color 0.25s ease;
}

.box-mais-visitado a:hover,
.box-mais-visitado a:focus {
  text-decoration: none;
}

.box-mais-visitado a:hover img,
.box-mais-visitado a:focus img {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.13);
}

.box-mais-visitado a:hover h3,
.box-mais-visitado a:hover h6,
.box-mais-visitado a:focus h3,
.box-mais-visitado a:focus h6 {
  color: var(--secondary-color);
}

/* Regiões
** ----------------------------------------------- */
.regioes-bloco {
  margin: 54px 0 0;
}

.regioes-bloco h2 {
  margin: 0 0 18px;
  color: var(--secondary-color);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

nav.regioes {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 44px;
}

nav.regioes a,
nav.regioes button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 12px;
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

nav.regioes a:hover,
nav.regioes a:focus,
nav.regioes button:hover,
nav.regioes button:focus {
  color: #fff;
  text-decoration: none;
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-2px);
}

nav.regioes a.active,
nav.regioes button.active {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}

.regioes-modal {
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
}

.regioes-modal .modal-header {
  align-items: center;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.regioes-modal .modal-title {
  margin: 0;
  color: var(--secondary-color);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
}

.regioes-modal .close {
  color: var(--secondary-color);
  opacity: 1;
  transition:
    color 0.25s ease,
    opacity 0.25s ease;
}

.regioes-modal .close:hover,
.regioes-modal .close:focus {
  color: var(--primary-color);
  opacity: 1;
}

.regioes-modal__grid {
  row-gap: 12px;
}

.regioes-modal__lista {
  margin: 0;
  padding: 0;
  list-style: none;
}

.regioes-modal__lista li {
  position: relative;
  margin: 0 0 10px;
  padding-left: 18px;
  color: #334155;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

.regioes-modal__lista li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--primary-color);
  border-radius: 50%;
  transform: translateY(-50%);
}

@media (max-width: 991px) {
  nav.regioes {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .regioes-bloco {
    margin-top: 42px;
  }

  nav.regioes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 34px;
  }

  nav.regioes a,
  nav.regioes button {
    min-height: 46px;
    font-size: 14px;
    border-radius: 10px;
  }

  .regioes-modal .modal-title {
    font-size: 20px;
  }
}

/* Direitos autorais
** ----------------------------------------------- */
.texto-direitos-autorais,
.direitos-autorais {
  margin: 38px 0 0;
  color: #475569;
  font-size: 13px;
  line-height: 1.6;
}

/* Responsivo
** ----------------------------------------------- */
@media (max-width: 991px) {
  .seo-hero,
  .formulario-seo {
    padding: 72px 0 72px;
  }

  .seo-hero__content {
    margin-bottom: 34px;
  }

  .seo-hero__form {
    max-width: 100%;
    margin-left: 0;
    padding: 22px;
  }

  .scroll-to-content {
    display: none;
  }

  .conteudo-seo {
    padding: 44px 0 58px;
  }

  .imagens-seo {
    float: none;
    width: 100%;
    margin: 0 0 28px;
  }

  .imagens-seo img {
    max-height: 360px;
  }

  .multipla-imagens-seo {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faixa-informacoes {
    padding: 30px 22px;
  }

  .faixa-informacoes h2 {
    margin-bottom: 18px;
    text-align: center;
  }

  section.mais-visitados {
    padding: 34px 42px 42px;
  }

  nav.regioes {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .seo-hero,
  .formulario-seo {
    padding: 56px 0 58px;
  }

  .formulario-seo h1,
  .seo-hero h1 {
    font-size: clamp(25px, 11vw, 35px);
  }

  .seo-hero__content p {
    font-size: 15px;
  }

  .seo-hero__form {
    padding: 18px;
    border-radius: 18px;
  }

  .breadcrump-seo #breadcrumb {
    width: 100%;
    border-radius: 14px;
  }

  .texto-seo p {
    font-size: 15px;
    line-height: 1.7;
  }

  .texto-seo h2 {
    font-size: 26px;
  }

  .texto-seo h3 {
    font-size: 22px;
  }

  .imagens-seo img {
    border-radius: 18px;
  }

  .multipla-imagens-seo {
    grid-template-columns: 1fr;
  }

  .multipla-imagens-seo img {
    height: 210px;
  }

  .faixa-informacoes {
    margin: 34px 0;
    border-radius: 18px;
  }

  .faixa-informacoes .btn-whatsapp a {
    width: 100%;
  }

  section.mais-visitados {
    margin: 42px 0;
    padding: 30px 18px 36px;
    border-radius: 18px;
  }

  section.mais-visitados .swiper-button-next,
  section.mais-visitados .swiper-button-prev {
    display: none;
  }

  .box-mais-visitado {
    max-width: 100%;
  }

  .box-mais-visitado img {
    height: 190px;
  }

  nav.regioes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 34px;
  }

  nav.regioes a {
    min-height: 46px;
    font-size: 14px;
    border-radius: 10px;
  }
}

/* Estado vazio
** ----------------------------------------------- */
.informacoes-empty {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
  padding: 28px;
  text-align: center;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
}

.informacoes-empty p {
  margin: 0;
  color: #64748b;
  font-size: 15px;
  line-height: 1.6;
}

/* Responsivo
** ----------------------------------------------- */
@media (max-width: 1199px) {
  .informacoes-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .pagina-informacoes {
    padding: 62px 0 72px;
  }

  .pagina-informacoes__intro {
    margin-bottom: 34px;
  }

  .informacoes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .informacao-card__link {
    min-height: 360px;
  }

  .informacao-card__media {
    height: 190px;
  }
}

@media (max-width: 575px) {
  .pagina-informacoes {
    padding: 48px 0 58px;
  }

  .pagina-informacoes__intro {
    text-align: left;
    margin-bottom: 28px;
  }

  .section-tag {
    justify-content: flex-start;
    font-size: 12px;
  }

  .section-tag::after {
    display: none;
  }

  .pagina-informacoes__intro h2 {
    font-size: clamp(28px, 9vw, 36px);
  }

  .pagina-informacoes__intro p {
    font-size: 15px;
    line-height: 1.65;
  }

  .informacoes-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .informacao-card__link {
    min-height: initial;
    border-radius: 18px;
  }

  .informacao-card__media {
    height: 210px;
  }

  .informacao-card__body {
    padding: 22px;
  }

  .informacao-card__body h3 {
    font-size: 19px;
  }
}

/* Direitos autorais
** ----------------------------------------------- */
.texto-direitos-autorais {
  margin-top: 40px;
  font-size: 13px;
}

/* Recursos Adicionais
** ----------------------------------------------- */
header .container {
  max-width: 1300px;
}

footer .container {
  max-width: 1300px;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-color);
}

.swiper-pagination-bullet {
  background: var(--primary-color);
}

.fixed-sidebar-link {
  /* display: flex;
	flex-direction: column; */
  text-align: center;
  padding: 16px 0;
  flex: 1;
}

.fixed-sidebar-link span {
  font-size: 13px;
}

.fixed-sidebar-link i {
  font-size: 15px;
}

.barra-footer {
  justify-content: unset !important;
  gap: 0;
}

.barra-footer a:nth-child(1) {
  background-color: var(--header-accent);
  color: #fff;
}

.barra-footer a:nth-child(2) {
  background-color: #008542;
  color: #fff;
}

/* Faixa Interna
** ----------------------------------------------- */
.faixa-page,
.faixa_page {
  position: relative;
  isolation: isolate;
  padding: 72px 0;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.72)),
    var(--secondary-color);
  overflow: hidden;
}

.faixa-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(
      circle at 12% 20%,
      color-mix(in srgb, var(--primary-color) 45%, transparent),
      transparent 32%
    ),
    radial-gradient(
      circle at 88% 10%,
      color-mix(in srgb, var(--primary-color) 28%, transparent),
      transparent 30%
    );
  opacity: 0.95;
}

.faixa-page::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -160px;
  z-index: -1;
  width: 420px;
  height: 420px;
  border: 72px solid color-mix(in srgb, var(--primary-color) 35%, transparent);
  border-radius: 50%;
  opacity: 0.42;
}

.faixa-page__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 120px;
}

.faixa-page__title {
  max-width: 720px;
}

.faixa-page__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.88;
}

.faixa-page__tag::before {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 999px;
}

.faixa-page h1,
.faixa_page h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(29px, 4vw, 30px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.faixa-page__breadcrumb {
  display: flex;
  justify-content: flex-end;
  min-width: 280px;
}

.faixa-page__breadcrumb ol,
.faixa-page__breadcrumb ul,
.faixa_page .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 12px 16px;
  list-style: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.faixa-page__breadcrumb li,
.faixa_page .breadcrumb li,
.faixa_page .breadcrumb-item {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
}

.faixa-page__breadcrumb a,
.faixa_page .breadcrumb a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.faixa-page__breadcrumb a:hover,
.faixa-page__breadcrumb a:focus,
.faixa_page .breadcrumb a:hover,
.faixa_page .breadcrumb a:focus {
  color: var(--primary-color);
  text-decoration: none;
}

.faixa-page__breadcrumb .active,
.faixa_page .breadcrumb .active,
.faixa_page .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.68);
}

.faixa_page .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.55);
}

/* Responsivo
** ----------------------------------------------- */
@media (max-width: 991px) {
  .faixa-page,
  .faixa_page {
    padding: 58px 0;
  }

  .faixa-page__content {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 22px;
    min-height: initial;
  }

  .faixa-page__breadcrumb {
    justify-content: flex-start;
    width: 100%;
    min-width: 0;
  }

  .faixa-page__breadcrumb ol,
  .faixa-page__breadcrumb ul,
  .faixa_page .breadcrumb {
    justify-content: flex-start;
    border-radius: 18px;
  }
}

@media (max-width: 575px) {
  .faixa-page,
  .faixa_page {
    padding: 46px 0;
  }

  .faixa-page::after {
    right: -180px;
    bottom: -200px;
    width: 360px;
    height: 360px;
    border-width: 58px;
  }

  .faixa-page__tag {
    font-size: 11px;
    margin-bottom: 10px;
  }

  .faixa-page__tag::before {
    width: 26px;
  }

  .faixa-page h1,
  .faixa_page h1 {
    font-size: clamp(28px, 10vw, 38px);
    line-height: 1.12;
  }

  .faixa-page__breadcrumb ol,
  .faixa-page__breadcrumb ul,
  .faixa_page .breadcrumb {
    width: 100%;
    padding: 11px 13px;
    border-radius: 14px;
  }

  .faixa-page__breadcrumb li,
  .faixa_page .breadcrumb li,
  .faixa_page .breadcrumb-item {
    font-size: 12px;
  }
}

/* Página de Contato
** ----------------------------------------------- */
.contato-page {
  position: relative;
  padding: 78px 0 88px;
  background: #fff;
  overflow: hidden;
}

.contato-page::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -180px;
  width: 380px;
  height: 380px;
  background: var(--primary-color);
  border-radius: 50%;
  opacity: 0.06;
  pointer-events: none;
}

.contato-page::after {
  content: "";
  position: absolute;
  left: -140px;
  bottom: -190px;
  width: 340px;
  height: 340px;
  background: var(--secondary-color);
  border-radius: 50%;
  opacity: 0.04;
  pointer-events: none;
}

.contato-page__intro {
  position: relative;
  z-index: 1;
  max-width: 830px;
  margin: 0 auto 44px;
  text-align: center;
}

.contato-page__intro h2 {
  margin: 0 0 16px;
  color: var(--secondary-color);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.contato-page__intro p {
  max-width: 720px;
  margin: 0 auto;
  color: #5f6c7b;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}

.contato-page__row {
  position: relative;
  z-index: 1;
  align-items: stretch;
}

/* Formulário de contato escopado
** ----------------------------------------------- */
.contato-form-scope {
  height: 100%;
}

.contato-form-card {
  position: relative;
  height: 100%;
  padding: 34px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.09);
  overflow: hidden;
}

.contato-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--primary-color);
}

.contato-form-card__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
}

.contato-form-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  color: #fff;
  font-size: 20px;
  background: var(--primary-color);
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
}

.contato-form-card__subtitle {
  margin: 0 0 4px;
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contato-form-card__title {
  margin: 0;
  color: var(--secondary-color);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.contato-form-scope .form-group {
  margin-bottom: 14px;
}

.contato-form-scope .form-control {
  width: 100%;
  min-height: 50px;
  padding: 13px 15px;
  color: #263241;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 12px;
  box-shadow: none;
  outline: none;
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.contato-form-scope textarea.form-control {
  min-height: 132px;
  resize: vertical;
}

.contato-form-scope .form-control::placeholder {
  color: #7b8794;
  opacity: 1;
}

.contato-form-scope .form-control:focus {
  color: #263241;
  background: #fff;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.04);
}

.contato-form-scope select.form-control {
  cursor: pointer;
}

.contato-form-scope .btn-envia {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  margin-top: 4px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 12px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.contato-form-scope .btn-envia:hover,
.contato-form-scope .btn-envia:focus {
  color: #fff;
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
}

.contato-form-scope .invalid-feedback {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 600;
}

.contato-form-scope .form-control.is-invalid {
  border-color: #dc3545;
}

.contato-form-scope .form-control.is-valid {
  border-color: #28a745;
}

/* Informações de contato
** ----------------------------------------------- */
.contato-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.contato-info__card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-height: 128px;
  padding: 22px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.07);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.contato-info__card:hover {
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.11);
  transform: translateY(-3px);
}

.contato-info__card--whatsapp .contato-info__icon {
  background: #24cc63;
}

.contato-info__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  color: #fff;
  font-size: 17px;
  background: var(--primary-color);
  border-radius: 14px;
}

.contato-info__content {
  min-width: 0;
}

.contato-info__label {
  margin: 0 0 7px;
  color: var(--secondary-color);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.contato-info__content p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
  word-break: break-word;
}

.contato-info__content a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.25s ease;
}

.contato-info__content a:hover,
.contato-info__content a:focus {
  color: var(--primary-color);
  text-decoration: none;
}

/* Mapa
** ----------------------------------------------- */
.contato-map {
  position: relative;
  width: 100%;
  min-height: 310px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.09);
  overflow: hidden;
}

.contato-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 310px;
  border: 0;
}

/* Utilitário acessível
** ----------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Responsivo
** ----------------------------------------------- */
@media (max-width: 991px) {
  .contato-page {
    padding: 62px 0 72px;
  }

  .contato-page__intro {
    margin-bottom: 34px;
  }

  .contato-form-card {
    height: auto;
    margin-bottom: 24px;
  }

  .contato-info {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .contato-page {
    padding: 48px 0 58px;
  }

  .contato-page__intro {
    text-align: left;
    margin-bottom: 28px;
  }

  .contato-page__intro h2 {
    font-size: clamp(28px, 9vw, 36px);
  }

  .contato-page__intro p {
    font-size: 15px;
    line-height: 1.65;
  }

  .contato-form-card {
    padding: 24px 20px;
    border-radius: 18px;
  }

  .contato-form-card__head {
    align-items: flex-start;
    margin-bottom: 22px;
  }

  .contato-form-card__icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }

  .contato-form-card__title {
    font-size: 22px;
  }

  .contato-info {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contato-info__card {
    min-height: initial;
    padding: 20px;
    border-radius: 18px;
  }

  .contato-map {
    min-height: 280px;
    border-radius: 18px;
  }

  .contato-map iframe {
    min-height: 280px;
  }
}

/* Footer
** ----------------------------------------------- */
.footer {
  position: relative;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.9)),
    var(--secondary-color);
  padding: 70px 0 0;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -180px;
  width: 380px;
  height: 380px;
  background: var(--primary-color);
  border-radius: 50%;
  opacity: 0.12;
  pointer-events: none;
}

.footer::after {
  content: "";
  position: absolute;
  left: -140px;
  bottom: -180px;
  width: 340px;
  height: 340px;
  border: 60px solid var(--primary-color);
  border-radius: 50%;
  opacity: 0.08;
  pointer-events: none;
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer__top {
  padding-bottom: 42px;
}

.footer__brand {
  margin-bottom: 18px;
}

.footer__brand a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.footer__brand img {
  display: block;
  width: 100%;
  max-width: 220px;
  height: auto;
  object-fit: contain;
}

.footer__description {
  max-width: 440px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
}

.footer__social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--secondary-color);
  font-size: 17px;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.footer__social a:hover,
.footer__social a:focus {
  color: #fff;
  text-decoration: none;
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer__nav,
.footer__contact {
  margin-top: 6px;
}

.footer__nav h2,
.footer__contact h2 {
  position: relative;
  margin: 0 0 22px;
  padding-left: 14px;
  color: #fff;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

.footer__nav h2::before,
.footer__contact h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 4px;
  height: 22px;
  background: var(--primary-color);
  border-radius: 999px;
}

.footer__nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__nav li {
  margin: 0 0 10px;
}

.footer__nav a,
.footer__contact a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  text-decoration: none;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.footer__nav a {
  display: inline-flex;
  align-items: center;
}

.footer__nav a::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 9px;
  background: var(--primary-color);
  border-radius: 50%;
  opacity: 0.8;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.footer__nav a:hover,
.footer__nav a:focus,
.footer__contact a:hover,
.footer__contact a:focus {
  color: var(--primary-color);
  text-decoration: none;
}

.footer__nav a:hover::before,
.footer__nav a:focus::before {
  opacity: 1;
  transform: scale(1.25);
}

.footer__contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 13px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

.footer__contact p > i,
.footer__contact a > i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  color: #fff;
  font-size: 13px;
  background: var(--primary-color);
  border-radius: 9px;
}

.footer__contact a {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 100%;
}

.footer__contact span {
  min-width: 0;
  word-break: break-word;
}

/* Créditos
** ----------------------------------------------- */
.footer__credits {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__credits-text small {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.footer__credits-brand a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0.9;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.footer__credits-brand a:hover,
.footer__credits-brand a:focus {
  opacity: 1;
  transform: translateY(-2px);
}

.footer__credits-brand img {
  display: block;
  width: auto;
  max-width: 110px;
  max-height: 42px;
  object-fit: contain;
}

.footer__badges {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.footer__badge {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 78px;
  min-height: 46px;
  padding: 7px 10px;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  overflow: hidden;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.footer__badge::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--primary-color);
}

.footer__badge span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
}

.footer__badge strong {
  margin-top: 4px;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}

.footer__badge:hover,
.footer__badge:focus {
  color: #fff;
  text-decoration: none;
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer__badge:hover::before,
.footer__badge:focus::before {
  background: #fff;
}

.footer__badge:hover span,
.footer__badge:focus span,
.footer__badge:hover strong,
.footer__badge:focus strong {
  color: #fff;
}

/* Compatibilidade com classes antigas
** ----------------------------------------------- */
.logo_footer img {
  display: block;
  width: 100%;
  max-width: 220px;
  height: auto;
  object-fit: contain;
}

.footer a:hover {
  text-decoration: none;
}

/* Responsivo
** ----------------------------------------------- */
@media (max-width: 991px) {
  .footer {
    padding-top: 58px;
  }

  .footer__brand img {
    max-width: 200px;
  }

  .footer__description {
    margin-bottom: 26px;
  }

  .footer__nav,
  .footer__contact {
    margin-top: 28px;
  }

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

  .footer__badges {
    justify-content: flex-start;
  }

  .footer__credits-brand img {
    max-width: 100px;
  }
}

@media (max-width: 575px) {
  .footer {
    padding-top: 48px;
  }

  .footer__top {
    padding-bottom: 30px;
  }

  .footer__brand img {
    max-width: 180px;
  }

  .footer__description {
    font-size: 14px;
    line-height: 1.7;
  }

  .footer__social a {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .footer__nav h2,
  .footer__contact h2 {
    font-size: 18px;
    margin-bottom: 18px;
  }

  .footer__credits {
    padding: 22px 0 70px 0;
    gap: 16px;
  }

  .footer__badges {
    width: 100%;
  }

  .footer__badge {
    width: calc(50% - 5px);
  }
}

/* Mapa do Site
** ----------------------------------------------- */
.mapa-site-page {
  position: relative;
  padding: 78px 0 88px;
  background: #fff;
  overflow: hidden;
}

.mapa-site-page::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -180px;
  width: 380px;
  height: 380px;
  background: var(--primary-color);
  border-radius: 50%;
  opacity: 0.06;
  pointer-events: none;
}

.mapa-site-page::after {
  content: "";
  position: absolute;
  left: -140px;
  bottom: -190px;
  width: 340px;
  height: 340px;
  background: var(--secondary-color);
  border-radius: 50%;
  opacity: 0.04;
  pointer-events: none;
}

.mapa-site__intro {
  position: relative;
  z-index: 1;
  max-width: 830px;
  margin: 0 auto 44px;
  text-align: center;
}

.mapa-site__intro h2 {
  margin: 0 0 16px;
  color: var(--secondary-color);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.mapa-site__intro p {
  max-width: 720px;
  margin: 0 auto;
  color: #5f6c7b;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}

.mapa-site__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.mapa-site__card {
  position: relative;
  padding: 30px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.mapa-site__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--primary-color);
}

.mapa-site__card:hover {
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.12);
  transform: translateY(-5px);
}

.mapa-site__card h3 {
  margin: 0 0 22px;
  color: var(--secondary-color);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.mapa-site__card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mapa-site__card a {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  padding: 11px 12px;
  color: #475569;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: 12px;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.mapa-site__card a i {
  color: var(--primary-color);
  font-size: 13px;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.mapa-site__card a:hover,
.mapa-site__card a:focus {
  color: #fff;
  text-decoration: none;
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateX(4px);
}

.mapa-site__card a:hover i,
.mapa-site__card a:focus i {
  color: #fff;
  transform: translateX(2px);
}

.mapa-site__card--wide ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Compatibilidade com classe antiga
** ----------------------------------------------- */
.mapa-site > .container > ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Responsivo
** ----------------------------------------------- */
@media (max-width: 1199px) {
  .mapa-site__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mapa-site__card--wide {
    grid-column: span 2;
  }
}

@media (max-width: 991px) {
  .mapa-site-page {
    padding: 62px 0 72px;
  }

  .mapa-site__intro {
    margin-bottom: 34px;
  }
}

@media (max-width: 575px) {
  .mapa-site-page {
    padding: 48px 0 58px;
  }

  .mapa-site__intro {
    text-align: left;
    margin-bottom: 28px;
  }

  .mapa-site__intro h2 {
    font-size: clamp(28px, 9vw, 36px);
  }

  .mapa-site__intro p {
    font-size: 15px;
    line-height: 1.65;
  }

  .mapa-site__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .mapa-site__card,
  .mapa-site__card--wide {
    grid-column: auto;
    padding: 24px 20px;
    border-radius: 18px;
  }

  .mapa-site__card h3 {
    font-size: 22px;
  }

  .mapa-site__card--wide ul {
    grid-template-columns: 1fr;
  }

  .mapa-site__card a {
    font-size: 14px;
  }
}

/* Página 404
** ----------------------------------------------- */
.erro-404 {
  position: relative;
  padding: 78px 0 88px;
  background: #fff;
  overflow: hidden;
}

.erro-404::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -180px;
  width: 380px;
  height: 380px;
  background: var(--primary-color);
  border-radius: 50%;
  opacity: 0.06;
  pointer-events: none;
}

.erro-404::after {
  content: "";
  position: absolute;
  left: -140px;
  bottom: -190px;
  width: 340px;
  height: 340px;
  background: var(--secondary-color);
  border-radius: 50%;
  opacity: 0.04;
  pointer-events: none;
}

.erro-404__box {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto 58px;
  padding: 46px;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.09);
  overflow: hidden;
}

.erro-404__box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--primary-color);
}

.erro-404__code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--primary-color);
  font-size: clamp(64px, 10vw, 128px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.erro-404__content h2 {
  max-width: 720px;
  margin: 0 auto 16px;
  color: var(--secondary-color);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.erro-404__content p {
  max-width: 680px;
  margin: 0 auto;
  color: #5f6c7b;
  font-size: 16px;
  line-height: 1.75;
}

.erro-404__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.erro-404__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  border-radius: 999px;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.erro-404__btn--primary {
  color: #fff;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.erro-404__btn--outline {
  color: var(--secondary-color);
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.12);
}

.erro-404__btn:hover,
.erro-404__btn:focus {
  color: #fff;
  text-decoration: none;
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
}

.erro-404__redirect {
  margin-top: 22px !important;
  color: #64748b !important;
  font-size: 14px !important;
}

.erro-404__redirect strong {
  color: var(--primary-color);
  font-weight: 900;
}

/* Mapa 404
** ----------------------------------------------- */
.erro-404__mapa {
  position: relative;
  z-index: 1;
}

.erro-404__intro {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.erro-404__intro h2 {
  margin: 0 0 14px;
  color: var(--secondary-color);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.erro-404__intro p {
  max-width: 620px;
  margin: 0 auto;
  color: #5f6c7b;
  font-size: 16px;
  line-height: 1.7;
}

.erro-404__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
}

.erro-404__card {
  position: relative;
  padding: 30px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.erro-404__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--primary-color);
}

.erro-404__card h3 {
  margin: 0 0 22px;
  color: var(--secondary-color);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.erro-404__card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.erro-404__card--wide ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.erro-404__card a {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  padding: 11px 12px;
  color: #475569;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: 12px;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.erro-404__card a i {
  color: var(--primary-color);
  font-size: 13px;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.erro-404__card a:hover,
.erro-404__card a:focus {
  color: #fff;
  text-decoration: none;
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateX(4px);
}

.erro-404__card a:hover i,
.erro-404__card a:focus i {
  color: #fff;
  transform: translateX(2px);
}

/* Responsivo
** ----------------------------------------------- */
@media (max-width: 991px) {
  .erro-404 {
    padding: 62px 0 72px;
  }

  .erro-404__box {
    padding: 38px 28px;
    margin-bottom: 46px;
  }

  .erro-404__grid {
    grid-template-columns: 1fr;
  }

  .erro-404__card--wide ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .erro-404 {
    padding: 48px 0 58px;
  }

  .erro-404__box {
    padding: 32px 20px;
    border-radius: 20px;
  }

  .erro-404__content h2 {
    font-size: clamp(26px, 9vw, 36px);
  }

  .erro-404__content p,
  .erro-404__intro p {
    font-size: 15px;
    line-height: 1.65;
  }

  .erro-404__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .erro-404__btn {
    width: 100%;
  }

  .erro-404__intro {
    text-align: left;
    margin-bottom: 28px;
  }

  .erro-404__intro h2 {
    font-size: clamp(28px, 9vw, 36px);
  }

  .erro-404__card {
    padding: 24px 20px;
    border-radius: 18px;
  }

  .erro-404__card h3 {
    font-size: 22px;
  }

  .erro-404__card--wide ul {
    grid-template-columns: 1fr;
  }

  .erro-404__card a {
    font-size: 14px;
  }
}

/* Segurança global contra rolagem horizontal
** ----------------------------------------------- */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Política de Privacidade
** ----------------------------------------------- */
.politica-page {
  position: relative;
  padding: 78px 0 88px;
  background: #fff;
  overflow-x: clip;
  overflow-y: visible;
}

.politica-page::before {
  content: "";
  position: absolute;
  top: -160px;
  right: 0;
  width: 320px;
  height: 320px;
  background: var(--primary-color);
  border-radius: 50%;
  opacity: 0.06;
  pointer-events: none;
  transform: translateX(45%);
}

.politica-page::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -160px;
  width: 300px;
  height: 300px;
  background: var(--secondary-color);
  border-radius: 50%;
  opacity: 0.04;
  pointer-events: none;
  transform: translateX(-45%);
}

.politica-page__intro {
  position: relative;
  z-index: 1;
  max-width: 830px;
  margin: 0 auto 44px;
  text-align: center;
}

.politica-page__intro h2 {
  margin: 0 0 16px;
  color: var(--secondary-color);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.politica-page__intro p {
  max-width: 720px;
  margin: 0 auto;
  color: #5f6c7b;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}

.politica-page__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

/* Sidebar / Sumário
** ----------------------------------------------- */
.politica-page__summary {
  position: sticky;
  top: calc(var(--site-header-height) + 24px);
  max-height: calc(100vh - var(--site-header-height) - 48px);
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.08);
  overflow-y: auto;
}

.politica-page__summary::-webkit-scrollbar {
  width: 7px;
}

.politica-page__summary::-webkit-scrollbar-thumb {
  background: rgba(15, 23, 42, 0.18);
  border-radius: 999px;
}

.politica-page__summary-title {
  margin: 0 0 16px;
  color: var(--secondary-color);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
}

.politica-page__summary ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.politica-page__summary a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 11px;
  color: #475569;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: 11px;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.politica-page__summary a::before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  background: var(--primary-color);
  border-radius: 50%;
  transition: background-color 0.25s ease;
}

.politica-page__summary a:hover,
.politica-page__summary a:focus,
.politica-page__summary a.is-active {
  color: #fff;
  text-decoration: none;
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateX(3px);
}

.politica-page__summary a:hover::before,
.politica-page__summary a:focus::before,
.politica-page__summary a.is-active::before {
  background: #fff;
}

/* Conteúdo
** ----------------------------------------------- */
.politica-page__content {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 38px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
}

.politica-page__content section {
  scroll-margin-top: calc(var(--site-header-height) + 28px);
}

.politica-page__content h2[id] {
  scroll-margin-top: calc(var(--site-header-height) + 28px);
}

.politica-page__content section + section {
  margin-top: 38px;
  padding-top: 34px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.politica-page__content h2 {
  position: relative;
  margin: 0 0 18px;
  color: var(--secondary-color);
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.politica-page__content h2::before {
  content: "";
  display: block;
  width: 54px;
  height: 4px;
  margin-bottom: 12px;
  background: var(--primary-color);
  border-radius: 999px;
}

.politica-page__content h3 {
  margin: 28px 0 14px;
  color: var(--secondary-color);
  font-size: clamp(21px, 2.4vw, 26px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.politica-page__content p {
  margin: 0 0 18px;
  color: #334155;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.78;
}

.politica-page__content p:last-child {
  margin-bottom: 0;
}

.politica-page__content a {
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: color 0.25s ease;
}

.politica-page__content a:hover,
.politica-page__content a:focus {
  color: var(--secondary-color);
  text-decoration: none;
}

.politica-page__content ul {
  display: grid;
  gap: 12px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.politica-page__content li {
  position: relative;
  padding-left: 24px;
  color: #334155;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.72;
}

.politica-page__content li::before {
  content: "";
  position: absolute;
  top: 0.8em;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--primary-color);
  border-radius: 50%;
  transform: translateY(-50%);
}

.politica-page__content li strong {
  color: var(--secondary-color);
  font-weight: 800;
}

.politica-page__date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px !important;
  padding: 12px 16px;
  color: #475569 !important;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
}

.politica-page__date strong {
  color: var(--primary-color);
  font-weight: 900;
}

/* Correção da faixa interna para evitar estouro horizontal
** ----------------------------------------------- */
.faixa-page,
.faixa_page {
  overflow: hidden;
  max-width: 100%;
}

.faixa-page::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -160px;
  z-index: -1;
  width: 420px;
  height: 420px;
  border: 72px solid var(--primary-color);
  border-radius: 50%;
  opacity: 0.42;
  transform: translateX(45%);
}

/* Responsivo
** ----------------------------------------------- */
@media (max-width: 1199px) {
  .politica-page__layout {
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 22px;
  }

  .politica-page__summary {
    padding: 22px;
  }

  .politica-page__content {
    padding: 32px;
  }
}

@media (max-width: 991px) {
  .politica-page {
    padding: 62px 0 72px;
    overflow: hidden;
  }

  .politica-page__intro {
    margin-bottom: 34px;
  }

  .politica-page__layout {
    grid-template-columns: 1fr;
  }

  .politica-page__summary {
    position: relative;
    top: auto;
    max-height: none;
    overflow: visible;
  }

  .politica-page__summary ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .politica-page__content section,
  .politica-page__content h2[id] {
    scroll-margin-top: calc(var(--site-header-height) + 20px);
  }

  .politica-page::before {
    right: 0;
    width: 260px;
    height: 260px;
    transform: translateX(50%);
  }

  .politica-page::after {
    left: 0;
    width: 240px;
    height: 240px;
    transform: translateX(-50%);
  }
}

@media (max-width: 575px) {
  .politica-page {
    padding: 48px 0 58px;
  }

  .politica-page__intro {
    text-align: left;
    margin-bottom: 28px;
  }

  .politica-page__intro h2 {
    font-size: clamp(28px, 9vw, 36px);
  }

  .politica-page__intro p {
    font-size: 15px;
    line-height: 1.65;
  }

  .politica-page__summary,
  .politica-page__content {
    padding: 22px 20px;
    border-radius: 18px;
  }

  .politica-page__summary ul {
    grid-template-columns: 1fr;
  }

  .politica-page__summary a {
    font-size: 13px;
  }

  .politica-page__content section + section {
    margin-top: 32px;
    padding-top: 28px;
  }

  .politica-page__content h2 {
    font-size: 26px;
  }

  .politica-page__content h3 {
    font-size: 22px;
  }

  .politica-page__content p,
  .politica-page__content li {
    font-size: 15px;
    line-height: 1.7;
  }

  .politica-page__date {
    display: flex;
    width: 100%;
    border-radius: 14px;
  }

  .faixa-page::after {
    right: 0;
    bottom: -170px;
    width: 340px;
    height: 340px;
    border-width: 58px;
    transform: translateX(55%);
  }
}
/*Página inicial - Home */

/* =========================================================
   BANNER PRINCIPAL — JS POLIMENTOS
========================================================= */

.jsp-hero {
    position: relative;
    display: flex;
    min-height: 100vh;
    min-height: 100svh;
    flex-direction: column;
    overflow: hidden;
    isolation: isolate;
    color: #ffffff;
    background-color: #071018;
}

.jsp-hero::before,
.jsp-hero::after {
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    content: "";
}

.jsp-hero::before {
    background:
        linear-gradient(
            90deg,
            rgba(5, 12, 20, 0.98) 0%,
            rgba(5, 12, 20, 0.92) 34%,
            rgba(5, 12, 20, 0.69) 62%,
            rgba(5, 12, 20, 0.72) 100%
        );
}

.jsp-hero::after {
    z-index: -1;
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.15) 0%,
            transparent 35%,
            rgba(3, 8, 14, 0.5) 100%
        ),
        radial-gradient(
            circle at 25% 45%,
            rgba(0, 171, 226, 0.12),
            transparent 42%
        );
}

.jsp-hero__media {
    position: absolute;
    inset: 0;
    z-index: -3;
}

.jsp-hero__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.68;
}

.jsp-hero__main {
    display: flex;
    width: 100%;
    flex: 1 0 auto;
    align-items: center;
    padding: clamp(8rem, 15vh, 11rem) 0 clamp(3.5rem, 8vh, 6rem);
}

.jsp-hero__content {
    width: 100%;
    max-width: 890px;
}

.jsp-hero__region {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    gap: 9px;
    margin-bottom: 24px;
    padding: 7px 15px;
    border: 1px solid rgba(0, 171, 226, 0.68);
    border-radius: 999px;
    color: var(--primary-color);
    background-color: rgba(0, 171, 226, 0.08);
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.jsp-hero__region-icon {
    display: inline-flex;
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    align-items: center;
    justify-content: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: 0.55rem;
}

.jsp-hero__title {
    max-width: 880px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(2rem, 4.25vw, 3.55rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.035em;
    text-wrap: balance;
}

.jsp-hero__title span {
    color: var(--primary-color);
}

.jsp-hero__description {
    max-width: 760px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(0.96rem, 1.25vw, 1.08rem);
    font-weight: 400;
    line-height: 1.75;
}

.jsp-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 29px;
}

.jsp-hero__button {
    position: relative;
    display: inline-flex;
    min-height: 51px;
    align-items: center;
    justify-content: center;
    gap: 11px;
    overflow: hidden;
    padding: 13px 24px;
    border: 1px solid transparent;
    border-radius: 9px;
    text-decoration: none !important;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.2;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}

.jsp-hero__button span,
.jsp-hero__button i {
    position: relative;
    z-index: 2;
}

.jsp-hero__button i {
    font-size: 0.78rem;
    transition: transform 0.25s ease;
}

.jsp-hero__button::before {
    position: absolute;
    top: -70%;
    left: -55%;
    z-index: 1;
    width: 36%;
    height: 240%;
    content: "";
    pointer-events: none;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.58),
        transparent
    );
    transform: rotate(18deg);
    transition: left 0.65s ease;
}

.jsp-hero__button::after {
    position: absolute;
    inset: -1px;
    z-index: 0;
    border: 1px solid rgba(0, 171, 226, 0.38);
    border-radius: inherit;
    content: "";
    pointer-events: none;
    opacity: 0;
    animation: jspHeroButtonPulse 3.2s ease-out infinite;
}

.jsp-hero__button:hover {
    color: #ffffff;
    transform: translateY(-3px);
}

.jsp-hero__button:hover::before {
    left: 125%;
}

.jsp-hero__button:hover i {
    transform: translateX(3px);
}

.jsp-hero__button:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.92);
    outline-offset: 4px;
}

.jsp-hero__button--primary {
    color: #ffffff;
    background: linear-gradient(
        135deg,
        var(--primary-color),
        #008ec1
    );
    box-shadow:
        0 12px 30px rgba(0, 171, 226, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.jsp-hero__button--primary:hover {
    box-shadow:
        0 17px 34px rgba(0, 171, 226, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.jsp-hero__button--outline {
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
}

.jsp-hero__button--outline:hover {
    border-color: var(--primary-color);
    background-color: rgba(0, 171, 226, 0.12);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.jsp-hero__benefits {
    display: grid;
    max-width: 830px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px 28px;
    margin: 34px 0 0;
    padding: 0;
    list-style: none;
}

.jsp-hero__benefits li {
    position: relative;
    min-height: 23px;
    padding-left: 25px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.45;
}

.jsp-hero__benefits li::before {
    position: absolute;
    top: 0.27em;
    left: 0;
    width: 14px;
    height: 14px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    content: "";
}

.jsp-hero__benefits li::after {
    position: absolute;
    top: calc(0.27em + 4px);
    left: 4px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    content: "";
    background-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 171, 226, 0.75);
}

/* Barra inferior de serviços */

.jsp-hero__services {
    position: relative;
    flex: 0 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    background-color: rgba(3, 8, 17, 0.94);
}

.jsp-hero__services-nav {
    width: 100%;
}

.jsp-hero__services-list {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    list-style: none;
}

.jsp-hero__services-list li {
    min-width: 0;
}

.jsp-hero__services-list a {
    display: flex;
    min-height: 78px;
    align-items: center;
    gap: 12px;
    padding: 13px 15px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.25;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        transform 0.25s ease;
}

.jsp-hero__services-list a:hover {
    color: #ffffff;
    background-color: rgba(0, 171, 226, 0.08);
}

.jsp-hero__services-list a:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: -3px;
}

.jsp-hero__service-icon {
    display: inline-flex;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--primary-color);
    background-color: rgba(0, 171, 226, 0.15);
    font-size: 0.85rem;
    transition:
        transform 0.25s ease,
        background-color 0.25s ease;
}

.jsp-hero__services-list a:hover .jsp-hero__service-icon {
    background-color: rgba(0, 171, 226, 0.24);
    transform: translateY(-2px);
}

/* Entrada fluida */

.jsp-hero [data-hero-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
}

.jsp-hero.is-loaded [data-hero-reveal] {
    opacity: 1;
    transform: translateY(0);
}

.jsp-hero [data-hero-reveal]:nth-child(2) {
    transition-delay: 0.1s;
}

.jsp-hero [data-hero-reveal]:nth-child(3) {
    transition-delay: 0.2s;
}

.jsp-hero [data-hero-reveal]:nth-child(4) {
    transition-delay: 0.3s;
}

.jsp-hero [data-hero-reveal]:nth-child(5) {
    transition-delay: 0.4s;
}

@keyframes jspHeroButtonPulse {
    0% {
        opacity: 0;
        transform: scale(1);
    }

    20% {
        opacity: 0.7;
    }

    70%,
    100% {
        opacity: 0;
        transform: scale(1.08, 1.22);
    }
}

/* =========================================================
   RESPONSIVIDADE
========================================================= */

@media (max-width: 1199.98px) {
    .jsp-hero__content {
        max-width: 790px;
    }

    .jsp-hero__services-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .jsp-hero__services-list li:nth-child(-n + 3) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }
}

@media (max-width: 991.98px) {
    .jsp-hero::before {
        background: linear-gradient(
            90deg,
            rgba(5, 12, 20, 0.97) 0%,
            rgba(5, 12, 20, 0.89) 58%,
            rgba(5, 12, 20, 0.7) 100%
        );
    }

    .jsp-hero__main {
        padding-top: 8.5rem;
    }

    .jsp-hero__benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .jsp-hero {
        min-height: auto;
    }

    .jsp-hero::before {
        background:
            linear-gradient(
                180deg,
                rgba(5, 12, 20, 0.9) 0%,
                rgba(5, 12, 20, 0.95) 58%,
                rgba(5, 12, 20, 0.99) 100%
            );
    }

    .jsp-hero__media img {
        object-position: 62% center;
        opacity: 0.5;
    }

    .jsp-hero__main {
        min-height: 680px;
        padding: 7.5rem 0 3.5rem;
    }

    .jsp-hero__region {
        margin-bottom: 19px;
        font-size: 0.65rem;
        letter-spacing: 0.12em;
    }

    .jsp-hero__title {
        letter-spacing: -0.025em;
    }

    .jsp-hero__description {
        margin-top: 19px;
        line-height: 1.65;
    }

    .jsp-hero__actions {
        margin-top: 25px;
    }

    .jsp-hero__benefits {
        gap: 12px 20px;
        margin-top: 29px;
    }

    .jsp-hero__services {
        overflow: hidden;
    }

    .jsp-hero__services-list {
        display: flex;
        width: 100%;
        gap: 0;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scroll-behavior: smooth;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
    }

    .jsp-hero__services-list::-webkit-scrollbar {
        display: none;
    }

    .jsp-hero__services-list li {
        min-width: 178px;
        flex: 0 0 178px;
        border-bottom: 0 !important;
        scroll-snap-align: start;
    }

    .jsp-hero__services-list a {
        min-height: 73px;
    }
}

@media (max-width: 575.98px) {
    .jsp-hero__main {
        min-height: auto;
        padding: 7rem 0 3rem;
    }

    .jsp-hero__content {
        max-width: 100%;
    }

    .jsp-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .jsp-hero__button {
        width: 100%;
    }

    .jsp-hero__benefits {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 359.98px) {
    .jsp-hero__main {
        padding-top: 6.5rem;
    }

    .jsp-hero__region {
        width: 100%;
        justify-content: center;
        padding-right: 9px;
        padding-left: 9px;
        text-align: center;
    }

    .jsp-hero__title {
        font-size: 1.85rem;
        line-height: 1.12;
    }

    .jsp-hero__description {
        font-size: 0.91rem;
    }

    .jsp-hero__button {
        min-height: 49px;
        padding-right: 16px;
        padding-left: 16px;
        font-size: 0.87rem;
    }

    .jsp-hero__services-list li {
        min-width: 165px;
        flex-basis: 165px;
    }
}

/* Acessibilidade e economia de processamento */

@media (prefers-reduced-motion: reduce) {
    .jsp-hero *,
    .jsp-hero *::before,
    .jsp-hero *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .jsp-hero [data-hero-reveal] {
        opacity: 1;
        transform: none;
    }
}

/* =========================================================
   SEÇÃO EMPRESA — JS POLIMENTOS
========================================================= */

.jsp-about {
    position: relative;
    overflow: hidden;
    padding: clamp(4.5rem, 8vw, 7.5rem) 0;
    background:
        radial-gradient(
            circle at 90% 15%,
            rgba(0, 171, 226, 0.08),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fbfdfe 100%
        );
}

.jsp-about::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 38%;
    height: 100%;
    content: "";
    pointer-events: none;
    opacity: 0.35;
    background-image:
        linear-gradient(
            rgba(0, 171, 226, 0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(0, 171, 226, 0.08) 1px,
            transparent 1px
        );
    background-size: 38px 38px;
    mask-image: linear-gradient(
        90deg,
        transparent,
        rgba(0, 0, 0, 0.8)
    );
}

.jsp-about .row {
    margin-right: -24px;
    margin-left: -24px;
}

.jsp-about .row > [class*="col-"] {
    padding-right: 24px;
    padding-left: 24px;
}

.jsp-about__content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.jsp-section-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-size: 0.74rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.jsp-section-label i {
    font-size: 0.42rem;
    filter: drop-shadow(
        0 0 5px rgba(0, 171, 226, 0.5)
    );
}

.jsp-section-title {
    max-width: 650px;
    margin: 0;
    color: #111820;
    font-size: clamp(1.85rem, 3.4vw, 2.75rem);
    font-weight: 650;
    line-height: 1.15;
    letter-spacing: -0.035em;
    text-wrap: balance;
}

.jsp-section-title span {
    color: var(--primary-color);
}

.jsp-about__text {
    max-width: 640px;
    margin-top: 24px;
}

.jsp-about__text p {
    margin: 0;
    color: #4f5a65;
    font-size: clamp(0.94rem, 1.2vw, 1.03rem);
    font-weight: 400;
    line-height: 1.75;
}

.jsp-about__text p + p {
    margin-top: 16px;
}

/* Diferenciais */

.jsp-about__features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 29px 0 0;
    padding: 0;
    list-style: none;
}

.jsp-about__features li {
    position: relative;
    display: flex;
    min-height: 58px;
    align-items: center;
    gap: 12px;
    overflow: hidden;
    padding: 11px 14px;
    border: 1px solid rgba(75, 78, 77, 0.15);
    border-radius: 11px;
    color: #17202a;
    background-color: rgba(255, 255, 255, 0.86);
    box-shadow:
        0 7px 22px rgba(19, 35, 48, 0.035),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.35;
    transition:
        border-color 0.28s ease,
        box-shadow 0.28s ease,
        transform 0.28s ease;
}

.jsp-about__features li::before {
    position: absolute;
    top: -40%;
    left: -50%;
    width: 24%;
    height: 190%;
    content: "";
    pointer-events: none;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 171, 226, 0.17),
        transparent
    );
    transform: rotate(20deg);
    transition: left 0.65s ease;
}

.jsp-about__features li:hover {
    border-color: rgba(0, 171, 226, 0.45);
    box-shadow:
        0 13px 28px rgba(19, 35, 48, 0.08),
        0 0 0 3px rgba(0, 171, 226, 0.045);
    transform: translateY(-3px);
}

.jsp-about__features li:hover::before {
    left: 125%;
}

.jsp-about__feature-icon {
    display: inline-flex;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    color: var(--primary-color);
    background: rgba(0, 171, 226, 0.1);
    font-size: 0.76rem;
    box-shadow: inset 0 0 0 1px rgba(0, 171, 226, 0.1);
    transition:
        color 0.28s ease,
        background-color 0.28s ease,
        transform 0.28s ease;
}

.jsp-about__features li:hover .jsp-about__feature-icon {
    color: #ffffff;
    background-color: var(--primary-color);
    transform: rotate(-4deg) scale(1.04);
}

/* Imagem */

.jsp-about__visual {
    position: relative;
    max-width: 650px;
    margin-left: auto;
    padding: 16px 14px 18px 18px;
}

.jsp-about__image {
    position: relative;
    z-index: 2;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 4 / 3;
    margin: 0;
    border-radius: 22px;
    background-color: #e8edf0;
    box-shadow:
        0 28px 60px rgba(16, 34, 47, 0.13),
        0 5px 15px rgba(16, 34, 47, 0.08);
}

.jsp-about__image::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(5, 16, 24, 0.2) 100%
        );
}

.jsp-about__image::after {
    position: absolute;
    top: -45%;
    left: -65%;
    z-index: 2;
    width: 28%;
    height: 190%;
    content: "";
    pointer-events: none;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.38),
        transparent
    );
    transform: rotate(20deg);
    transition: left 0.85s ease;
}

.jsp-about__visual:hover .jsp-about__image::after {
    left: 130%;
}

.jsp-about__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition:
        transform 0.75s cubic-bezier(0.2, 0.75, 0.25, 1),
        filter 0.4s ease;
}

.jsp-about__visual:hover .jsp-about__image img {
    transform: scale(1.035);
    filter: saturate(1.04) contrast(1.02);
}

/* Card sobre a imagem */

.jsp-about__image-detail {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 4;
    display: flex;
    min-width: 260px;
    align-items: center;
    gap: 12px;
    padding: 14px 17px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 13px;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            rgba(0, 171, 226, 0.96),
            rgba(0, 130, 180, 0.96)
        );
    box-shadow:
        0 18px 36px rgba(0, 138, 187, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    font-size: 0.83rem;
    font-weight: 600;
    line-height: 1.35;
    backdrop-filter: blur(8px);
}

.jsp-about__image-detail-icon {
    display: inline-flex;
    width: 39px;
    height: 39px;
    flex: 0 0 39px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.17);
    font-size: 0.9rem;
}

.jsp-about__image-detail small {
    display: block;
    margin-bottom: 2px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.66rem;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Decoração */

.jsp-about__decoration {
    position: absolute;
    z-index: 1;
    display: block;
    pointer-events: none;
    border: 1px solid rgba(0, 171, 226, 0.2);
}

.jsp-about__decoration--top {
    top: 0;
    right: -3px;
    width: 115px;
    height: 115px;
    border-radius: 24px;
    background-color: rgba(0, 171, 226, 0.055);
    transform: rotate(8deg);
}

.jsp-about__decoration--bottom {
    bottom: 2px;
    left: 0;
    width: 94px;
    height: 94px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(0, 171, 226, 0.13) 2px,
            transparent 3px
        );
    background-size: 12px 12px;
}

/* =========================================================
   ANIMAÇÕES DE ENTRADA
========================================================= */

[data-reveal] {
    opacity: 0;
    transition:
        opacity 0.75s ease,
        transform 0.75s cubic-bezier(0.2, 0.75, 0.25, 1);
    will-change: opacity, transform;
}

[data-reveal="fade-up"] {
    transform: translateY(24px);
}

[data-reveal="fade-left"] {
    transform: translateX(30px);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.jsp-about__content [data-reveal]:nth-child(2) {
    transition-delay: 0.08s;
}

.jsp-about__content [data-reveal]:nth-child(3) {
    transition-delay: 0.16s;
}

.jsp-about__content [data-reveal]:nth-child(4) {
    transition-delay: 0.24s;
}

/* =========================================================
   RESPONSIVIDADE
========================================================= */

@media (max-width: 1199.98px) {
    .jsp-about .row {
        margin-right: -18px;
        margin-left: -18px;
    }

    .jsp-about .row > [class*="col-"] {
        padding-right: 18px;
        padding-left: 18px;
    }

    .jsp-about__visual {
        padding-left: 12px;
    }
}

@media (max-width: 991.98px) {
    .jsp-about::before {
        width: 65%;
        opacity: 0.24;
    }

    .jsp-about__content {
        max-width: 760px;
        margin: 0 auto;
    }

    .jsp-about__visual {
        max-width: 760px;
        margin: 48px auto 0;
    }

    .jsp-about__features {
        max-width: 720px;
    }
}

@media (max-width: 767.98px) {
    .jsp-about {
        padding: 4.5rem 0;
    }

    .jsp-about::before {
        display: none;
    }

    .jsp-about .row {
        margin-right: -15px;
        margin-left: -15px;
    }

    .jsp-about .row > [class*="col-"] {
        padding-right: 15px;
        padding-left: 15px;
    }

    .jsp-section-title {
        letter-spacing: -0.025em;
    }

    .jsp-about__text {
        margin-top: 20px;
    }

    .jsp-about__features {
        margin-top: 25px;
    }

    .jsp-about__visual {
        margin-top: 39px;
        padding: 10px 7px 15px 10px;
    }

    .jsp-about__image {
        border-radius: 18px;
    }

    .jsp-about__image-detail {
        right: 0;
        min-width: 245px;
    }
}

@media (max-width: 575.98px) {
    .jsp-about {
        padding: 4rem 0;
    }

    .jsp-about__features {
        grid-template-columns: 1fr;
    }

    .jsp-about__features li {
        min-height: 55px;
    }

    .jsp-about__visual {
        padding: 0 0 54px;
    }

    .jsp-about__image {
        aspect-ratio: 5 / 4;
        border-radius: 16px;
    }

    .jsp-about__image-detail {
        right: 10px;
        bottom: 17px;
        left: 10px;
        min-width: 0;
        width: auto;
    }

    .jsp-about__decoration--top {
        top: -10px;
        right: -10px;
        width: 85px;
        height: 85px;
    }

    .jsp-about__decoration--bottom {
        display: none;
    }
}

@media (max-width: 359.98px) {
    .jsp-about {
        padding: 3.5rem 0;
    }

    .jsp-section-label {
        font-size: 0.67rem;
        letter-spacing: 0.1em;
    }

    .jsp-section-title {
        font-size: 1.7rem;
        line-height: 1.18;
    }

    .jsp-about__text p {
        font-size: 0.91rem;
        line-height: 1.68;
    }

    .jsp-about__features li {
        gap: 9px;
        padding: 10px;
        font-size: 0.82rem;
    }

    .jsp-about__feature-icon {
        width: 31px;
        height: 31px;
        flex-basis: 31px;
    }

    .jsp-about__image {
        aspect-ratio: 1 / 1;
    }

    .jsp-about__image-detail {
        padding: 12px;
        font-size: 0.77rem;
    }

    .jsp-about__image-detail-icon {
        width: 35px;
        height: 35px;
        flex-basis: 35px;
    }
}

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

@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
        will-change: auto;
    }

    .jsp-about__features li,
    .jsp-about__feature-icon,
    .jsp-about__image img,
    .jsp-about__image::after {
        transition: none;
    }
}

/* =========================================================
   SERVIÇOS — JS POLIMENTOS
========================================================= */

.jsp-services {
    position: relative;
    overflow: hidden;
    padding: clamp(4.5rem, 7vw, 7rem) 0;
    background:
        radial-gradient(
            circle at 0 0,
            rgba(0, 171, 226, 0.1),
            transparent 27rem
        ),
        radial-gradient(
            circle at 100% 100%,
            rgba(0, 171, 226, 0.065),
            transparent 25rem
        ),
        linear-gradient(
            180deg,
            #f7fafc 0%,
            #eef5f8 100%
        );
}

.jsp-services::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 38%;
    height: 100%;
    content: "";
    pointer-events: none;
    opacity: 0.22;
    background-image:
        linear-gradient(
            rgba(0, 171, 226, 0.09) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(0, 171, 226, 0.09) 1px,
            transparent 1px
        );
    background-size: 42px 42px;
    -webkit-mask-image: linear-gradient(
        90deg,
        transparent,
        #000
    );
    mask-image: linear-gradient(
        90deg,
        transparent,
        #000
    );
}

/* =========================================================
   CABEÇALHO
========================================================= */

.jsp-services__header {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 820px;
    margin: 0 auto clamp(2.5rem, 5vw, 3.6rem);
    text-align: center;
}

.jsp-services__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.jsp-services__eyebrow-dot {
    display: block;
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
    background-color: var(--primary-color);
    box-shadow: 0 0 11px rgba(0, 171, 226, 0.48);
}

.jsp-services__title {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    color: #111b24;
    font-size: clamp(1.85rem, 3.5vw, 2.8rem);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.035em;
    text-align: center;
}

.jsp-services__title span {
    display: block;
}

.jsp-services__title strong {
    color: var(--primary-color);
    font-weight: 650;
}

.jsp-services__intro {
    max-width: 710px;
    margin: 18px auto 0;
    color: #586671;
    font-size: clamp(0.94rem, 1.15vw, 1.03rem);
    font-weight: 400;
    line-height: 1.72;
    text-align: center;
}

/* =========================================================
   GRID BOOTSTRAP
========================================================= */

.jsp-services__row {
    position: relative;
    z-index: 2;
    margin-right: -12px;
    margin-left: -12px;
}

.jsp-services__row > [class*="col-"] {
    margin-bottom: 24px;
    padding-right: 12px;
    padding-left: 12px;
}

/* =========================================================
   CARD
========================================================= */

.jsp-service-card {
    position: relative;
    display: flex;
    width: 100%;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(21, 40, 54, 0.1);
    border-radius: 19px;
    background-color: #ffffff;
    box-shadow:
        0 14px 35px rgba(17, 39, 54, 0.055),
        0 3px 9px rgba(17, 39, 54, 0.025);
    transform: translateZ(0);
    transition:
        transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1),
        border-color 0.32s ease,
        box-shadow 0.32s ease;
}

.jsp-service-card::before {
    position: absolute;
    top: 0;
    right: 14%;
    left: 14%;
    z-index: 5;
    height: 2px;
    border-radius: 0 0 4px 4px;
    content: "";
    pointer-events: none;
    opacity: 0;
    background: linear-gradient(
        90deg,
        transparent,
        var(--primary-color),
        transparent
    );
    transition:
        right 0.32s ease,
        left 0.32s ease,
        opacity 0.32s ease;
}

.jsp-service-card:hover {
    border-color: rgba(0, 171, 226, 0.23);
    box-shadow:
        0 23px 48px rgba(17, 39, 54, 0.105),
        0 6px 16px rgba(17, 39, 54, 0.045);
    transform: translateY(-6px);
}

.jsp-service-card:hover::before {
    right: 5%;
    left: 5%;
    opacity: 1;
}

/* =========================================================
   IMAGEM
========================================================= */

.jsp-service-card__media {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 3 / 2;
    background:
        linear-gradient(
            145deg,
            #eef3f6 0%,
            #dce7ec 100%
        );
}

.jsp-service-card__media::after {
    position: absolute;
    inset: 0;
    z-index: 2;
    content: "";
    pointer-events: none;
    background: linear-gradient(
        180deg,
        transparent 55%,
        rgba(6, 18, 27, 0.18) 100%
    );
}

.jsp-service-card__placeholder {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 171, 226, 0.26);
    font-size: 2rem;
}

.jsp-service-card__media img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
    object-position: center;
    transition:
        transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1),
        filter 0.35s ease;
}

.jsp-service-card__media img.is-unavailable {
    display: none;
}

.jsp-service-card:hover .jsp-service-card__media img {
    filter: saturate(1.04) contrast(1.02);
    transform: scale(1.035);
}

.jsp-service-card__number {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 4;
    display: inline-flex;
    min-width: 40px;
    height: 30px;
    align-items: center;
    justify-content: center;
    padding: 0 9px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 8px;
    color: #ffffff;
    background-color: rgba(7, 22, 32, 0.6);
    font-size: 0.68rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.08em;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

/* =========================================================
   CONTEÚDO
========================================================= */

.jsp-service-card__content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
}

.jsp-service-card__category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 11px;
    color: var(--primary-color);
    font-size: 0.68rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.jsp-service-card__category::before {
    display: block;
    width: 6px;
    height: 6px;
    flex: 0 0 6px;
    border-radius: 50%;
    content: "";
    background-color: var(--primary-color);
    box-shadow: 0 0 8px rgba(0, 171, 226, 0.38);
}

.jsp-service-card__title {
    margin: 0 0 11px;
    color: #14212b;
    font-size: 1.17rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.014em;
}

.jsp-service-card__description {
    margin: 0;
    color: #5d6973;
    font-size: 0.91rem;
    font-weight: 400;
    line-height: 1.65;
}

.jsp-service-card__button {
    position: relative;
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    gap: 9px;
    overflow: hidden;
    margin-top: auto;
    padding: 19px 0 2px;
    color: var(--primary-color);
    text-decoration: none !important;
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1.3;
    transition:
        color 0.25s ease,
        gap 0.25s ease;
}

.jsp-service-card__button::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    content: "";
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.3s ease;
}

.jsp-service-card__button i {
    font-size: 0.7rem;
    transition: transform 0.25s ease;
}

.jsp-service-card__button:hover {
    gap: 12px;
    color: #008dbb;
}

.jsp-service-card__button:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
}

.jsp-service-card__button:hover i {
    transform: translateX(2px);
}

.jsp-service-card__button:focus-visible {
    border-radius: 3px;
    outline: 2px solid var(--primary-color);
    outline-offset: 5px;
}

/* =========================================================
   RODAPÉ DA SEÇÃO
========================================================= */

.jsp-services__footer {
    position: relative;
    z-index: 2;
    display: flex;
    max-width: 920px;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin: 14px auto 0;
    padding: 22px 24px;
    border: 1px solid rgba(0, 171, 226, 0.14);
    border-radius: 17px;
    background-color: rgba(255, 255, 255, 0.72);
    box-shadow: 0 12px 35px rgba(17, 39, 54, 0.05);
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
}

.jsp-services__footer p {
    max-width: 560px;
    margin: 0;
    color: #56636d;
    font-size: 0.92rem;
    line-height: 1.6;
}

.jsp-services__main-button {
    position: relative;
    display: inline-flex;
    min-height: 49px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 10px;
    overflow: hidden;
    padding: 13px 21px;
    border: 1px solid var(--primary-color);
    border-radius: 9px;
    color: #ffffff;
    background: linear-gradient(
        135deg,
        var(--primary-color),
        #008dbd
    );
    box-shadow:
        0 12px 28px rgba(0, 171, 226, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-decoration: none !important;
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1.2;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.jsp-services__main-button span,
.jsp-services__main-button i {
    position: relative;
    z-index: 2;
}

.jsp-services__main-button::before {
    position: absolute;
    top: -75%;
    left: -55%;
    z-index: 1;
    width: 32%;
    height: 250%;
    content: "";
    pointer-events: none;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.55),
        transparent
    );
    transform: rotate(18deg);
    transition: left 0.65s ease;
}

.jsp-services__main-button::after {
    position: absolute;
    inset: -1px;
    z-index: 0;
    border: 1px solid rgba(0, 171, 226, 0.38);
    border-radius: inherit;
    content: "";
    pointer-events: none;
    opacity: 0;
    animation: jspServicesButtonPulse 3.4s ease-out infinite;
}

.jsp-services__main-button:hover {
    color: #ffffff;
    box-shadow:
        0 17px 34px rgba(0, 171, 226, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.24);
    transform: translateY(-3px);
}

.jsp-services__main-button:hover::before {
    left: 125%;
}

.jsp-services__main-button:focus-visible {
    outline: 3px solid rgba(0, 171, 226, 0.3);
    outline-offset: 4px;
}

@keyframes jspServicesButtonPulse {
    0% {
        opacity: 0;
        transform: scale(1);
    }

    20% {
        opacity: 0.55;
    }

    75%,
    100% {
        opacity: 0;
        transform: scale(1.06, 1.18);
    }
}

/* =========================================================
   ANIMAÇÃO DE ENTRADA
========================================================= */

[data-services-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.72s ease,
        transform 0.72s cubic-bezier(0.22, 0.61, 0.36, 1);
}

[data-services-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.jsp-services__row > div:nth-child(2) [data-services-reveal],
.jsp-services__row > div:nth-child(5) [data-services-reveal] {
    transition-delay: 0.08s;
}

.jsp-services__row > div:nth-child(3) [data-services-reveal],
.jsp-services__row > div:nth-child(6) [data-services-reveal] {
    transition-delay: 0.16s;
}

/* =========================================================
   RESPONSIVIDADE
========================================================= */

@media (max-width: 991.98px) {
    .jsp-services::before {
        width: 60%;
    }

    .jsp-service-card__content {
        padding: 20px;
    }

    .jsp-services__footer {
        max-width: 720px;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767.98px) {
    .jsp-services {
        padding: 4.5rem 0;
    }

    .jsp-services::before {
        display: none;
    }

    .jsp-services__header {
        margin-bottom: 34px;
    }

    .jsp-services__title {
        letter-spacing: -0.025em;
    }

    .jsp-services__intro {
        margin-top: 15px;
        line-height: 1.65;
    }

    .jsp-service-card:hover {
        transform: translateY(-4px);
    }

    .jsp-services__footer {
        margin-top: 8px;
    }
}

@media (max-width: 575.98px) {
    .jsp-services {
        padding: 4rem 0;
    }

    .jsp-services__row {
        margin-right: -8px;
        margin-left: -8px;
    }

    .jsp-services__row > [class*="col-"] {
        margin-bottom: 18px;
        padding-right: 8px;
        padding-left: 8px;
    }

    .jsp-services__title {
        font-size: clamp(1.65rem, 8vw, 2rem);
    }

    .jsp-service-card {
        max-width: 440px;
        margin-right: auto;
        margin-left: auto;
        border-radius: 16px;
    }

    .jsp-service-card__content {
        padding: 19px 18px;
    }

    .jsp-services__footer {
        padding: 20px 18px;
    }

    .jsp-services__main-button {
        width: 100%;
    }
}

@media (max-width: 359.98px) {
    .jsp-services {
        padding: 3.5rem 0;
    }

    .jsp-services__eyebrow {
        font-size: 0.65rem;
        letter-spacing: 0.1em;
    }

    .jsp-services__title {
        font-size: 1.52rem;
        line-height: 1.17;
    }

    .jsp-services__intro {
        font-size: 0.89rem;
    }

    .jsp-service-card__content {
        padding: 17px 15px;
    }

    .jsp-service-card__title {
        font-size: 1.04rem;
    }

    .jsp-service-card__description {
        font-size: 0.87rem;
    }

    .jsp-service-card__button {
        font-size: 0.82rem;
    }

    .jsp-services__footer {
        padding: 18px 15px;
    }

    .jsp-services__footer p {
        font-size: 0.87rem;
    }

    .jsp-services__main-button {
        min-height: 47px;
        padding-right: 14px;
        padding-left: 14px;
        font-size: 0.81rem;
    }
}

@media (max-width: 300px) {
    .jsp-services__title {
        font-size: 1.4rem;
    }

    .jsp-service-card__media {
        aspect-ratio: 4 / 3;
    }

    .jsp-service-card__title {
        font-size: 0.98rem;
    }

    .jsp-service-card__description,
    .jsp-services__footer p {
        font-size: 0.84rem;
    }

    .jsp-services__main-button {
        font-size: 0.76rem;
    }
}

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

@media (prefers-reduced-motion: reduce) {
    [data-services-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .jsp-service-card,
    .jsp-service-card::before,
    .jsp-service-card__media img,
    .jsp-service-card__button,
    .jsp-service-card__button::after,
    .jsp-service-card__button i,
    .jsp-services__main-button,
    .jsp-services__main-button::before,
    .jsp-services__main-button::after {
        animation: none !important;
        transition: none !important;
    }

    .jsp-service-card:hover,
    .jsp-services__main-button:hover {
        transform: none;
    }
}

/* =========================================================
   PROJETOS REALIZADOS — JS POLIMENTOS
========================================================= */

.jsp-projects {
    position: relative;
    overflow: hidden;
    padding: clamp(4.5rem, 7vw, 7rem) 0;
    background:
        radial-gradient(
            circle at 4% 5%,
            rgba(0, 171, 226, 0.075),
            transparent 25rem
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7fafc 100%
        );
    content-visibility: auto;
    contain-intrinsic-size: 900px;
}

.jsp-projects::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 44%;
    height: 100%;
    content: "";
    pointer-events: none;
    opacity: 0.24;
    background-image:
        linear-gradient(
            rgba(0, 171, 226, 0.075) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(0, 171, 226, 0.075) 1px,
            transparent 1px
        );
    background-size: 44px 44px;
    -webkit-mask-image: linear-gradient(
        90deg,
        transparent,
        #000
    );
    mask-image: linear-gradient(
        90deg,
        transparent,
        #000
    );
}

/* =========================================================
   CABEÇALHO
========================================================= */

.jsp-projects__header {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
}

.jsp-projects__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.jsp-projects__eyebrow-dot {
    display: block;
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
    background-color: var(--primary-color);
    box-shadow: 0 0 11px rgba(0, 171, 226, 0.48);
}

.jsp-projects__title {
    max-width: 760px;
    margin: 0 auto;
    color: #111b24;
    font-size: clamp(1.85rem, 3.5vw, 2.7rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.035em;
    text-align: center;
    text-wrap: balance;
}

.jsp-projects__title strong {
    color: var(--primary-color);
    font-weight: 650;
}

.jsp-projects__description {
    max-width: 700px;
    margin: 17px auto 0;
    color: #5c6872;
    font-size: clamp(0.94rem, 1.15vw, 1.02rem);
    font-weight: 400;
    line-height: 1.7;
}

/* =========================================================
   GRID BOOTSTRAP
========================================================= */

.jsp-projects__row {
    position: relative;
    z-index: 2;
    margin-right: -10px;
    margin-left: -10px;
}

.jsp-projects__row > [class*="col-"] {
    margin-bottom: 20px;
    padding-right: 10px;
    padding-left: 10px;
}

/* =========================================================
   CARD DA GALERIA
========================================================= */

.jsp-project-card {
    position: relative;
    display: flex;
    width: 100%;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(24, 43, 56, 0.1);
    border-radius: 17px;
    background-color: #ffffff;
    box-shadow:
        0 13px 31px rgba(17, 38, 52, 0.055),
        0 3px 8px rgba(17, 38, 52, 0.025);
    transform: translateZ(0);
    transition:
        border-color 0.32s ease,
        box-shadow 0.32s ease,
        transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.jsp-project-card:hover {
    border-color: rgba(0, 171, 226, 0.23);
    box-shadow:
        0 22px 44px rgba(17, 38, 52, 0.105),
        0 5px 14px rgba(17, 38, 52, 0.04);
    transform: translateY(-6px);
}

.jsp-project-card__link {
    display: block;
    width: 100%;
    color: inherit;
    text-decoration: none !important;
}

.jsp-project-card__link:focus-visible {
    border-radius: 15px 15px 0 0;
    outline: 3px solid rgba(0, 171, 226, 0.65);
    outline-offset: -3px;
}

/* =========================================================
   IMAGEM
========================================================= */

.jsp-project-card__media {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 4 / 4.2;
    background:
        linear-gradient(
            145deg,
            #eef4f7 0%,
            #dce7ec 100%
        );
}

.jsp-project-card__media::after {
    position: absolute;
    inset: 0;
    z-index: 2;
    content: "";
    pointer-events: none;
    background: linear-gradient(
        180deg,
        transparent 42%,
        rgba(6, 18, 27, 0.62) 100%
    );
    opacity: 0.38;
    transition: opacity 0.32s ease;
}

.jsp-project-card__placeholder {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 171, 226, 0.24);
    font-size: 1.8rem;
}

.jsp-project-card__media img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
    object-position: center;
    transition:
        filter 0.38s ease,
        transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.jsp-project-card__media img.is-unavailable {
    display: none;
}

.jsp-project-card:hover .jsp-project-card__media img,
.jsp-project-card__link:focus-visible .jsp-project-card__media img {
    filter: saturate(1.04) contrast(1.03);
    transform: scale(1.045);
}

.jsp-project-card:hover .jsp-project-card__media::after,
.jsp-project-card__link:focus-visible .jsp-project-card__media::after {
    opacity: 0.78;
}

/* Número */

.jsp-project-card__number {
    position: absolute;
    top: 13px;
    right: 13px;
    z-index: 4;
    display: inline-flex;
    min-width: 37px;
    height: 28px;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 8px;
    color: #ffffff;
    background-color: rgba(6, 20, 30, 0.58);
    font-size: 0.66rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.08em;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

/* Overlay */

.jsp-project-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    color: #ffffff;
    opacity: 0;
    transform: translateY(10px);
    transition:
        opacity 0.32s ease,
        transform 0.32s ease;
}

.jsp-project-card:hover .jsp-project-card__overlay,
.jsp-project-card__link:focus-visible .jsp-project-card__overlay {
    opacity: 1;
    transform: translateY(0);
}

.jsp-project-card__zoom {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 50%;
    background-color: rgba(0, 171, 226, 0.88);
    box-shadow:
        0 12px 25px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    font-size: 0.9rem;
    transform: scale(0.86);
    transition: transform 0.32s ease;
}

.jsp-project-card:hover .jsp-project-card__zoom,
.jsp-project-card__link:focus-visible .jsp-project-card__zoom {
    transform: scale(1);
}

.jsp-project-card__action {
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* =========================================================
   LEGENDA
========================================================= */

.jsp-project-card__caption {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 16px 17px 17px;
}

.jsp-project-card__caption > span {
    display: block;
    margin-bottom: 6px;
    color: var(--header-accent);
    font-size: 0.66rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.jsp-project-card__caption h3 {
    margin: 0;
    color: #17232c;
    font-size: 0.94rem;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

/* =========================================================
   BOTÃO
========================================================= */

.jsp-projects__footer {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    margin-top: 17px;
}

.jsp-projects__button {
    position: relative;
    display: inline-flex;
    min-height: 51px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    overflow: hidden;
    padding: 13px 23px;
    border: 1px solid var(--primary-color);
    border-radius: 9px;
    color: #ffffff;
    background: linear-gradient(
        135deg,
        var(--primary-color),
        #008dbc
    );
    box-shadow:
        0 13px 29px rgba(0, 171, 226, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
    text-decoration: none !important;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.2;
    transition:
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.jsp-projects__button span,
.jsp-projects__button i {
    position: relative;
    z-index: 2;
}

.jsp-projects__button i {
    font-size: 0.73rem;
    transition: transform 0.25s ease;
}

.jsp-projects__button::before {
    position: absolute;
    top: -75%;
    left: -55%;
    z-index: 1;
    width: 33%;
    height: 250%;
    content: "";
    pointer-events: none;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.58),
        transparent
    );
    transform: rotate(18deg);
    transition: left 0.65s ease;
}

.jsp-projects__button::after {
    position: absolute;
    inset: -1px;
    z-index: 0;
    border: 1px solid rgba(0, 171, 226, 0.38);
    border-radius: inherit;
    content: "";
    pointer-events: none;
    opacity: 0;
    animation: jspProjectsButtonPulse 3.4s ease-out infinite;
}

.jsp-projects__button:hover {
    color: #ffffff;
    box-shadow:
        0 18px 36px rgba(0, 171, 226, 0.31),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.jsp-projects__button:hover::before {
    left: 125%;
}

.jsp-projects__button:hover i {
    transform: translateX(3px);
}

.jsp-projects__button:focus-visible {
    outline: 3px solid rgba(0, 171, 226, 0.32);
    outline-offset: 4px;
}

@keyframes jspProjectsButtonPulse {
    0% {
        opacity: 0;
        transform: scale(1);
    }

    20% {
        opacity: 0.58;
    }

    75%,
    100% {
        opacity: 0;
        transform: scale(1.07, 1.19);
    }
}

/* =========================================================
   ANIMAÇÃO DE ENTRADA
========================================================= */

[data-projects-reveal] {
    opacity: 0;
    transform: translateY(21px);
    transition:
        opacity 0.7s ease,
        transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition-delay: var(--project-reveal-delay, 0ms);
}

[data-projects-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* =========================================================
   RESPONSIVIDADE
========================================================= */

@media (max-width: 991.98px) {
    .jsp-projects::before {
        width: 60%;
    }

    .jsp-project-card__media {
        aspect-ratio: 4 / 4.4;
    }
}

@media (max-width: 767.98px) {
    .jsp-projects {
        padding: 4.5rem 0;
        contain-intrinsic-size: 1300px;
    }

    .jsp-projects::before {
        display: none;
    }

    .jsp-projects__header {
        margin-bottom: 34px;
    }

    .jsp-projects__title {
        letter-spacing: -0.025em;
    }

    .jsp-projects__description {
        line-height: 1.65;
    }

    .jsp-project-card:hover {
        transform: translateY(-4px);
    }
}

@media (hover: none) {
    .jsp-project-card__media::after {
        opacity: 0.53;
    }

    .jsp-project-card__overlay {
        align-items: flex-end;
        justify-content: flex-end;
        opacity: 1;
        transform: none;
    }

    .jsp-project-card__zoom {
        width: 39px;
        height: 39px;
        transform: none;
    }

    .jsp-project-card__action {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .jsp-projects {
        padding: 4rem 0;
    }

    .jsp-projects__row {
        margin-right: -6px;
        margin-left: -6px;
    }

    .jsp-projects__row > [class*="col-"] {
        margin-bottom: 12px;
        padding-right: 6px;
        padding-left: 6px;
    }

    .jsp-projects__title {
        font-size: clamp(1.65rem, 8vw, 2rem);
    }

    .jsp-project-card {
        border-radius: 14px;
    }

    .jsp-project-card__caption {
        padding: 13px 12px 14px;
    }

    .jsp-project-card__caption h3 {
        font-size: 0.85rem;
    }

    .jsp-project-card__caption > span {
        font-size: 0.6rem;
    }

    .jsp-project-card__number {
        top: 9px;
        right: 9px;
        min-width: 33px;
        height: 25px;
        font-size: 0.6rem;
    }

    .jsp-projects__footer {
        margin-top: 20px;
    }

    .jsp-projects__button {
        width: 100%;
        max-width: 360px;
    }
}

@media (max-width: 359.98px) {
    .jsp-projects {
        padding: 3.5rem 0;
    }

    .jsp-projects__eyebrow {
        font-size: 0.64rem;
        letter-spacing: 0.1em;
    }

    .jsp-projects__title {
        font-size: 1.48rem;
        line-height: 1.18;
    }

    .jsp-projects__description {
        font-size: 0.88rem;
    }

    .jsp-project-card__caption {
        padding: 11px 10px 12px;
    }

    .jsp-project-card__caption h3 {
        font-size: 0.78rem;
        line-height: 1.3;
    }

    .jsp-project-card__caption > span {
        margin-bottom: 4px;
        font-size: 0.56rem;
    }

    .jsp-project-card__zoom {
        width: 35px;
        height: 35px;
        font-size: 0.75rem;
    }

    .jsp-projects__button {
        min-height: 48px;
        padding-right: 15px;
        padding-left: 15px;
        font-size: 0.81rem;
    }
}

@media (max-width: 300px) {
    .jsp-projects__row {
        margin-right: -4px;
        margin-left: -4px;
    }

    .jsp-projects__row > [class*="col-"] {
        padding-right: 4px;
        padding-left: 4px;
    }

    .jsp-project-card__caption {
        padding: 10px 8px;
    }

    .jsp-project-card__caption h3 {
        font-size: 0.73rem;
    }

    .jsp-project-card__caption > span {
        font-size: 0.52rem;
    }

    .jsp-projects__button {
        font-size: 0.76rem;
    }
}

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

@media (prefers-reduced-motion: reduce) {
    [data-projects-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .jsp-project-card,
    .jsp-project-card__media img,
    .jsp-project-card__media::after,
    .jsp-project-card__overlay,
    .jsp-project-card__zoom,
    .jsp-projects__button,
    .jsp-projects__button::before,
    .jsp-projects__button::after,
    .jsp-projects__button i {
        animation: none !important;
        transition: none !important;
    }

    .jsp-project-card:hover,
    .jsp-projects__button:hover {
        transform: none;
    }
}

/* =========================================================
   CONTATO — JS POLIMENTOS
========================================================= */

.jsp-contact {
    position: relative;
    overflow: hidden;
    padding: clamp(4.5rem, 7vw, 7rem) 0;
    background:
        radial-gradient(
            circle at 5% 5%,
            rgba(0, 171, 226, 0.12),
            transparent 28rem
        ),
        radial-gradient(
            circle at 95% 95%,
            rgba(0, 171, 226, 0.07),
            transparent 25rem
        ),
        linear-gradient(
            135deg,
            #edf5f8 0%,
            #f7fafc 48%,
            #edf4f7 100%
        );
}

.jsp-contact::before {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    opacity: 0.23;
    background-image:
        linear-gradient(
            rgba(0, 171, 226, 0.07) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(0, 171, 226, 0.07) 1px,
            transparent 1px
        );
    background-size: 44px 44px;
    mask-image: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.35),
        transparent 42%,
        transparent 58%,
        rgba(0, 0, 0, 0.35)
    );
}

.jsp-contact__row {
    position: relative;
    z-index: 2;
    margin-right: -28px;
    margin-left: -28px;
}

.jsp-contact__row > [class*="col-"] {
    padding-right: 28px;
    padding-left: 28px;
}

/* =========================================================
   CONTEÚDO
========================================================= */

.jsp-contact__content {
    width: 100%;
    max-width: 610px;
}

.jsp-contact__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.jsp-contact__eyebrow-dot {
    display: block;
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
    background-color: var(--primary-color);
    box-shadow: 0 0 11px rgba(0, 171, 226, 0.48);
}

.jsp-contact__title {
    max-width: 570px;
    margin: 0;
    color: #111c25;
    font-size: clamp(1.85rem, 3.4vw, 2.7rem);
    font-weight: 600;
    line-height: 1.13;
    letter-spacing: -0.035em;
}

.jsp-contact__title strong {
    display: block;
    color: var(--primary-color);
    font-weight: 650;
}

.jsp-contact__description {
    max-width: 570px;
    margin: 19px 0 0;
    color: #586671;
    font-size: clamp(0.94rem, 1.15vw, 1.02rem);
    line-height: 1.72;
}

/* =========================================================
   INFORMAÇÕES DE CONTATO
========================================================= */

.jsp-contact__list {
    display: grid;
    gap: 12px;
    max-width: 570px;
    margin: 29px 0 0;
    font-style: normal;
}

.jsp-contact__item {
    position: relative;
    display: flex;
    min-height: 69px;
    align-items: center;
    gap: 14px;
    overflow: hidden;
    padding: 12px 16px;
    border: 1px solid rgba(24, 45, 60, 0.12);
    border-radius: 13px;
    color: #17242d;
    background-color: rgba(255, 255, 255, 0.83);
    box-shadow:
        0 10px 28px rgba(19, 39, 52, 0.045),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    text-decoration: none !important;
    transition:
        border-color 0.28s ease,
        box-shadow 0.28s ease,
        transform 0.28s ease;
}

.jsp-contact__item::before {
    position: absolute;
    top: -55%;
    left: -45%;
    width: 24%;
    height: 210%;
    content: "";
    pointer-events: none;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.75),
        transparent
    );
    transform: rotate(18deg);
    transition: left 0.65s ease;
}

.jsp-contact__item:hover {
    color: #17242d;
    border-color: rgba(0, 171, 226, 0.32);
    box-shadow:
        0 16px 34px rgba(19, 39, 52, 0.085),
        0 0 0 3px rgba(0, 171, 226, 0.035);
    transform: translateY(-3px);
}

.jsp-contact__item:hover::before {
    left: 125%;
}

.jsp-contact__item:focus-visible {
    outline: 3px solid rgba(0, 171, 226, 0.42);
    outline-offset: 3px;
}

.jsp-contact__icon {
    display: inline-flex;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    color: #ffffff;
    font-size: 1rem;
    transition: transform 0.28s ease;
}

.jsp-contact__item--whatsapp .jsp-contact__icon {
    background: linear-gradient(
        135deg,
        #36c85a,
        #22a943
    );
    box-shadow: 0 8px 18px rgba(38, 183, 75, 0.2);
}

.jsp-contact__item--email .jsp-contact__icon {
    background: linear-gradient(
        135deg,
        var(--primary-color),
        #008dbd
    );
    box-shadow: 0 8px 18px rgba(0, 171, 226, 0.2);
}

.jsp-contact__item:hover .jsp-contact__icon {
    transform: scale(1.05) rotate(-3deg);
}

.jsp-contact__item-content {
    display: flex;
    min-width: 0;
    flex: 1 1 auto;
    flex-direction: column;
}

.jsp-contact__item-content small {
    margin-bottom: 2px;
    color: #68747d;
    font-size: 0.7rem;
    font-weight: 500;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.jsp-contact__item-content strong {
    overflow-wrap: anywhere;
    color: #17242d;
    font-size: 0.91rem;
    font-weight: 600;
    line-height: 1.4;
}

.jsp-contact__arrow {
    display: inline-flex;
    width: 31px;
    height: 31px;
    flex: 0 0 31px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary-color);
    background-color: rgba(0, 171, 226, 0.09);
    font-size: 0.68rem;
    transition:
        color 0.28s ease,
        background-color 0.28s ease,
        transform 0.28s ease;
}

.jsp-contact__item:hover .jsp-contact__arrow {
    color: #ffffff;
    background-color: var(--primary-color);
    transform: translateX(3px);
}

.jsp-contact__region {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    color: #53616b;
    font-size: 0.86rem;
    line-height: 1.45;
}

.jsp-contact__region strong {
    color: #17242d;
    font-weight: 600;
}

.jsp-contact__region-icon {
    display: inline-flex;
    width: 31px;
    height: 31px;
    flex: 0 0 31px;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    color: var(--primary-color);
    background-color: rgba(0, 171, 226, 0.1);
    font-size: 0.75rem;
}

/* =========================================================
   CARD DO FORMULÁRIO
========================================================= */

.jsp-contact__form-card {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    overflow: hidden;
    padding: clamp(1.5rem, 3vw, 2.2rem);
    border: 1px solid rgba(25, 45, 59, 0.09);
    border-radius: 22px;
    background-color: #ffffff;
    box-shadow:
        0 28px 65px rgba(16, 36, 50, 0.12),
        0 6px 18px rgba(16, 36, 50, 0.045);
}

.jsp-contact__form-card::before {
    position: absolute;
    top: 0;
    right: 12%;
    left: 12%;
    height: 3px;
    border-radius: 0 0 8px 8px;
    content: "";
    background: linear-gradient(
        90deg,
        transparent,
        var(--primary-color),
        transparent
    );
}

.jsp-contact__form-card::after {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    content: "";
    pointer-events: none;
    background: radial-gradient(
        circle,
        rgba(0, 171, 226, 0.1),
        transparent 70%
    );
}

.jsp-contact__form-header {
    position: relative;
    z-index: 2;
    margin-bottom: 24px;
}

.jsp-contact__form-header > span {
    display: block;
    margin-bottom: 7px;
    color: var(--primary-color);
    font-size: 0.67rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.jsp-contact__form-header h3 {
    margin: 0;
    color: #15222c;
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    font-weight: 600;
    line-height: 1.3;
}

.jsp-contact__form-header p {
    margin: 6px 0 0;
    color: #68747d;
    font-size: 0.88rem;
    line-height: 1.55;
}

/* =========================================================
   FORMULÁRIO
========================================================= */

.jsp-contact-form {
    position: relative;
    z-index: 2;
}

.jsp-contact-form .form-row {
    margin-right: -7px;
    margin-left: -7px;
}

.jsp-contact-form .form-row > [class*="col-"] {
    padding-right: 7px;
    padding-left: 7px;
}

.jsp-contact-form .form-group {
    margin-bottom: 17px;
}

.jsp-contact-form label {
    display: block;
    margin-bottom: 7px;
    color: #26343e;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.4;
}

.jsp-contact-form label span {
    color: var(--primary-color);
}

.jsp-contact-form .form-control {
    width: 100%;
    min-height: 49px;
    padding: 11px 14px;
    border: 1px solid #d8e2e8;
    border-radius: 9px;
    color: #1d2a33;
    background-color: #fbfdfe;
    box-shadow: none;
    font-size: 0.89rem;
    line-height: 1.45;
    transition:
        border-color 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}

.jsp-contact-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.jsp-contact-form .form-control::placeholder {
    color: #8a959e;
    opacity: 1;
}

.jsp-contact-form .form-control:hover {
    border-color: #c5d3db;
    background-color: #ffffff;
}

.jsp-contact-form .form-control:focus {
    border-color: var(--primary-color);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 171, 226, 0.1);
    outline: 0;
}

.jsp-contact-form__select {
    position: relative;
}

.jsp-contact-form__select::after {
    position: absolute;
    top: 50%;
    right: 16px;
    content: "\f078";
    pointer-events: none;
    color: #65727b;
    font-family: "Font Awesome 5 Free";
    font-size: 0.64rem;
    font-weight: 900;
    transform: translateY(-50%);
}

.jsp-contact-form__select select {
    padding-right: 42px;
    appearance: none;
    cursor: pointer;
}

/* =========================================================
   BOTÃO
========================================================= */

.jsp-contact-form__submit {
    position: relative;
    display: inline-flex;
    width: 100%;
    min-height: 51px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    overflow: hidden;
    padding: 13px 22px;
    border: 1px solid var(--primary-color);
    border-radius: 9px;
    color: #ffffff;
    background: linear-gradient(
        135deg,
        var(--primary-color),
        #008dbd
    );
    box-shadow:
        0 13px 28px rgba(0, 171, 226, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
    font-size: 0.89rem;
    font-weight: 600;
    line-height: 1.2;
    transition:
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.jsp-contact-form__submit span,
.jsp-contact-form__submit i {
    position: relative;
    z-index: 2;
}

.jsp-contact-form__submit i {
    font-size: 0.75rem;
    transition: transform 0.25s ease;
}

.jsp-contact-form__submit::before {
    position: absolute;
    top: -75%;
    left: -55%;
    z-index: 1;
    width: 32%;
    height: 250%;
    content: "";
    pointer-events: none;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );
    transform: rotate(18deg);
    transition: left 0.65s ease;
}

.jsp-contact-form__submit::after {
    position: absolute;
    inset: -1px;
    z-index: 0;
    border: 1px solid rgba(0, 171, 226, 0.4);
    border-radius: inherit;
    content: "";
    pointer-events: none;
    opacity: 0;
    animation: jspContactButtonPulse 3.4s ease-out infinite;
}

.jsp-contact-form__submit:hover,
.jsp-contact-form__submit:focus {
    color: #ffffff;
    box-shadow:
        0 18px 37px rgba(0, 171, 226, 0.31),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.jsp-contact-form__submit:hover::before {
    left: 125%;
}

.jsp-contact-form__submit:hover i {
    transform: translateX(3px);
}

.jsp-contact-form__submit:focus-visible {
    outline: 3px solid rgba(0, 171, 226, 0.32);
    outline-offset: 4px;
}

@keyframes jspContactButtonPulse {
    0% {
        opacity: 0;
        transform: scale(1);
    }

    20% {
        opacity: 0.58;
    }

    75%,
    100% {
        opacity: 0;
        transform: scale(1.05, 1.17);
    }
}

/* =========================================================
   ANIMAÇÃO DE ENTRADA
========================================================= */

[data-contact-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.75s ease,
        transform 0.75s cubic-bezier(0.22, 0.61, 0.36, 1);
}

[data-contact-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.jsp-contact__form-card[data-contact-reveal] {
    transition-delay: 0.1s;
}

/* =========================================================
   RESPONSIVIDADE
========================================================= */

@media (max-width: 1199.98px) {
    .jsp-contact__row {
        margin-right: -20px;
        margin-left: -20px;
    }

    .jsp-contact__row > [class*="col-"] {
        padding-right: 20px;
        padding-left: 20px;
    }
}

@media (max-width: 991.98px) {
    .jsp-contact__content {
        max-width: 720px;
        margin: 0 auto;
    }

    .jsp-contact__form-card {
        max-width: 720px;
        margin: 48px auto 0;
    }

    .jsp-contact__list {
        max-width: 720px;
    }
}

@media (max-width: 767.98px) {
    .jsp-contact {
        padding: 4.5rem 0;
    }

    .jsp-contact__row {
        margin-right: -15px;
        margin-left: -15px;
    }

    .jsp-contact__row > [class*="col-"] {
        padding-right: 15px;
        padding-left: 15px;
    }

    .jsp-contact__title {
        letter-spacing: -0.025em;
    }

    .jsp-contact__form-card {
        margin-top: 39px;
        border-radius: 19px;
    }
}

@media (max-width: 575.98px) {
    .jsp-contact {
        padding: 4rem 0;
    }

    .jsp-contact__item {
        min-height: 65px;
        padding: 11px 13px;
    }

    .jsp-contact__arrow {
        display: none;
    }

    .jsp-contact__form-card {
        padding: 22px 18px;
        border-radius: 17px;
    }
}

@media (max-width: 359.98px) {
    .jsp-contact {
        padding: 3.5rem 0;
    }

    .jsp-contact__eyebrow {
        font-size: 0.64rem;
        letter-spacing: 0.1em;
    }

    .jsp-contact__title {
        font-size: 1.52rem;
        line-height: 1.18;
    }

    .jsp-contact__description {
        font-size: 0.89rem;
    }

    .jsp-contact__item {
        gap: 10px;
        padding: 10px;
    }

    .jsp-contact__icon {
        width: 37px;
        height: 37px;
        flex-basis: 37px;
        font-size: 0.88rem;
    }

    .jsp-contact__item-content strong {
        font-size: 0.81rem;
    }

    .jsp-contact__form-card {
        padding: 19px 14px;
    }

    .jsp-contact-form .form-control {
        padding-right: 11px;
        padding-left: 11px;
        font-size: 0.84rem;
    }

    .jsp-contact-form__submit {
        padding-right: 14px;
        padding-left: 14px;
        font-size: 0.83rem;
    }
}

@media (max-width: 300px) {
    .jsp-contact__title {
        font-size: 1.4rem;
    }

    .jsp-contact__item-content strong {
        font-size: 0.76rem;
    }

    .jsp-contact__region {
        align-items: flex-start;
        font-size: 0.81rem;
    }

    .jsp-contact__form-card {
        padding-right: 12px;
        padding-left: 12px;
    }
}

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

@media (prefers-reduced-motion: reduce) {
    [data-contact-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .jsp-contact__item,
    .jsp-contact__item::before,
    .jsp-contact__icon,
    .jsp-contact__arrow,
    .jsp-contact-form__submit,
    .jsp-contact-form__submit::before,
    .jsp-contact-form__submit::after,
    .jsp-contact-form__submit i {
        animation: none !important;
        transition: none !important;
    }

    .jsp-contact__item:hover,
    .jsp-contact-form__submit:hover {
        transform: none;
    }
}

/* Página de Serviços
** ----------------------------------------------- */

.pagina-servicos {
  position: relative;
  padding: 78px 0 88px;
  background: #fff;
  overflow: hidden;
}

.pagina-servicos::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -180px;
  width: 380px;
  height: 380px;
  background: var(--primary-color);
  border-radius: 50%;
  opacity: 0.06;
  pointer-events: none;
}

.pagina-servicos::after {
  content: "";
  position: absolute;
  left: -140px;
  bottom: -190px;
  width: 340px;
  height: 340px;
  background: var(--secondary-color);
  border-radius: 50%;
  opacity: 0.04;
  pointer-events: none;
}

.pagina-servicos__intro {
  position: relative;
  z-index: 1;
  max-width: 830px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-tag::before,
.section-tag::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: var(--primary-color);
  border-radius: 999px;
}

.pagina-servicos__intro h2 {
  margin: 0 0 16px;
  color: var(--secondary-color);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.pagina-servicos__intro p {
  max-width: 720px;
  margin: 0 auto;
  color: #5f6c7b;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}

/* Grid
** ----------------------------------------------- */

.servicos-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.servico-card {
  position: relative;
  min-height: 100%;
}

.servico-card__link {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 360px;
  color: inherit;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.07);
  overflow: hidden;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.servico-card__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 4px;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.servico-card__link:hover,
.servico-card__link:focus {
  color: inherit;
  text-decoration: none;
  border-color: rgba(15, 23, 42, 0.13);
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.13);
  transform: translateY(-6px);
}

.servico-card__link:hover::before,
.servico-card__link:focus::before {
  transform: scaleX(1);
}

/* Imagem
** ----------------------------------------------- */

.servico-card__media {
  position: relative;
  display: block;
  width: 100%;
  height: 210px;
  margin: 0;
  background: #f8fafc;
  overflow: hidden;
}

.servico-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.02),
    rgba(0, 0, 0, 0.12)
  );
  opacity: 0;
  transition: opacity 0.28s ease;
}

.servico-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

.servico-card__link:hover .servico-card__media::before,
.servico-card__link:focus .servico-card__media::before {
  opacity: 1;
}

.servico-card__link:hover .servico-card__media img,
.servico-card__link:focus .servico-card__media img {
  filter: saturate(1.05);
  transform: scale(1.07);
}

/* Conteúdo do Card
** ----------------------------------------------- */

.servico-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
}

.servico-card__body h3 {
  margin: 0 0 12px;
  color: var(--secondary-color);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -0.02em;
  transition: color 0.25s ease;
}

.servico-card__body p {
  margin: 0 0 22px;
  color: #64748b;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
}

.servico-card__action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition:
    color 0.25s ease,
    gap 0.25s ease;
}

.servico-card__action i {
  font-size: 12px;
}

.servico-card__link:hover .servico-card__body h3,
.servico-card__link:focus .servico-card__body h3 {
  color: var(--primary-color);
}

.servico-card__link:hover .servico-card__action,
.servico-card__link:focus .servico-card__action {
  gap: 12px;
  color: var(--secondary-color);
}

/* Estado vazio
** ----------------------------------------------- */

.servicos-empty {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
  padding: 28px;
  text-align: center;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
}

.servicos-empty p {
  margin: 0;
  color: #64748b;
  font-size: 15px;
  line-height: 1.6;
}

/* Responsivo
** ----------------------------------------------- */

@media (max-width: 1199px) {
  .servicos-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .pagina-servicos {
    padding: 62px 0 72px;
  }

  .pagina-servicos__intro {
    margin-bottom: 34px;
  }

  .servicos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .servico-card__link {
    min-height: 340px;
  }

  .servico-card__media {
    height: 190px;
  }
}

@media (max-width: 575px) {
  .pagina-servicos {
    padding: 48px 0 58px;
  }

  .pagina-servicos__intro {
    margin-bottom: 28px;
    text-align: left;
  }

  .section-tag {
    justify-content: flex-start;
    font-size: 12px;
  }

  .section-tag::after {
    display: none;
  }

  .pagina-servicos__intro h2 {
    font-size: clamp(28px, 9vw, 36px);
  }

  .pagina-servicos__intro p {
    font-size: 15px;
    line-height: 1.65;
  }

  .servicos-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .servico-card__link {
    min-height: initial;
    border-radius: 18px;
  }

  .servico-card__media {
    height: 210px;
  }

  .servico-card__body {
    padding: 22px;
  }

  .servico-card__body h3 {
    font-size: 19px;
  }
}

/* =========================================================
   SIDEBAR DE SERVIÇOS
========================================================= */

.sidebar-servicos {
  position: sticky;
  top: 110px;
  width: 100%;
  margin: 0;
}

/* Toggle mobile
** ----------------------------------------------- */

.sidebar-servicos__toggle {
  display: none;
  width: 100%;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 15px;
  border: 1px solid rgba(0, 171, 226, 0.18);
  border-radius: 14px;
  color: #fff;
  background:
    linear-gradient(
      135deg,
      #101a21 0%,
      #172832 100%
    );
  box-shadow: 0 14px 32px rgba(12, 29, 39, 0.12);
  text-align: left;
  cursor: pointer;
}

.sidebar-servicos__toggle-content {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

.sidebar-servicos__toggle-content small {
  display: block;
  margin-bottom: 2px;
  color: var(--primary-color);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sidebar-servicos__toggle-icon {
  display: inline-flex;
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #fff;
  background: var(--primary-color);
  box-shadow: 0 8px 20px rgba(0, 171, 226, 0.22);
  font-size: 14px;
}

.sidebar-servicos__toggle-arrow {
  display: inline-flex;
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  color: var(--primary-color);
  background: rgba(255, 255, 255, 0.08);
  font-size: 11px;
  transition: transform 0.28s ease;
}

.sidebar-servicos.is-open .sidebar-servicos__toggle-arrow {
  transform: rotate(180deg);
}

/* Conteúdo
** ----------------------------------------------- */

.sidebar-servicos__content {
  display: grid;
  gap: 22px;
}

/* Navegação
** ----------------------------------------------- */

.sidebar-servicos__nav {
  position: relative;
  overflow: hidden;
  padding: 26px 22px 22px;
  border: 1px solid rgba(20, 41, 55, 0.1);
  border-radius: 20px;
  background: #fff;
  box-shadow:
    0 18px 45px rgba(17, 38, 52, 0.07),
    0 4px 12px rgba(17, 38, 52, 0.025);
}

.sidebar-servicos__nav::before {
  content: "";
  position: absolute;
  top: -75px;
  right: -75px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: var(--primary-color);
  opacity: 0.065;
  pointer-events: none;
}

.sidebar-servicos__nav::after {
  content: "";
  position: absolute;
  top: 0;
  right: 14%;
  left: 14%;
  height: 3px;
  border-radius: 0 0 8px 8px;
  background:
    linear-gradient(
      90deg,
      transparent,
      var(--primary-color),
      transparent
    );
}

.sidebar-servicos__header {
  position: relative;
  z-index: 2;
  margin-bottom: 21px;
}

.sidebar-servicos__tag {
  display: block;
  margin-bottom: 7px;
  color: var(--primary-color);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.sidebar-servicos__header h2 {
  margin: 0;
  color: #15222b;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.sidebar-servicos__header p {
  margin: 9px 0 0;
  color: #66727c;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
}

.sidebar-servicos__list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-servicos__list li {
  margin: 0;
  padding: 0;
}

.sidebar-servicos__link {
  position: relative;
  display: flex;
  min-height: 51px;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  padding: 10px 11px;
  border: 1px solid rgba(24, 44, 58, 0.09);
  border-radius: 11px;
  color: #35434d;
  background: #f8fafb;
  text-decoration: none !important;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  transition:
    color 0.26s ease,
    border-color 0.26s ease,
    background-color 0.26s ease,
    box-shadow 0.26s ease,
    transform 0.26s ease;
}

.sidebar-servicos__link::before {
  content: "";
  position: absolute;
  top: -65%;
  left: -45%;
  width: 23%;
  height: 230%;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.65),
      transparent
    );
  pointer-events: none;
  transform: rotate(18deg);
  transition: left 0.62s ease;
}

.sidebar-servicos__link:hover {
  color: #17242d;
  border-color: rgba(0, 171, 226, 0.27);
  background: rgba(0, 171, 226, 0.055);
  box-shadow: 0 9px 21px rgba(18, 39, 52, 0.065);
  transform: translateX(3px);
}

.sidebar-servicos__link:hover::before {
  left: 125%;
}

.sidebar-servicos__link:focus-visible {
  outline: 3px solid rgba(0, 171, 226, 0.26);
  outline-offset: 2px;
}

.sidebar-servicos__link.is-active {
  color: #fff;
  border-color: var(--primary-color);
  background:
    linear-gradient(
      135deg,
      var(--primary-color),
      #008dba
    );
  box-shadow:
    0 11px 25px rgba(0, 171, 226, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transform: none;
}

.sidebar-servicos__link-icon {
  display: inline-flex;
  width: 29px;
  height: 29px;
  flex: 0 0 29px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--primary-color);
  background: rgba(0, 171, 226, 0.1);
  font-size: 9px;
  transition:
    color 0.26s ease,
    background-color 0.26s ease,
    transform 0.26s ease;
}

.sidebar-servicos__link:hover .sidebar-servicos__link-icon {
  color: #fff;
  background: var(--primary-color);
  transform: rotate(-4deg);
}

.sidebar-servicos__link.is-active .sidebar-servicos__link-icon {
  color: var(--primary-color);
  background: #fff;
}

.sidebar-servicos__link-text {
  min-width: 0;
  flex: 1 1 auto;
}

.sidebar-servicos__link-arrow {
  display: inline-flex;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #7c8992;
  background: rgba(17, 35, 47, 0.045);
  font-size: 8px;
  transition:
    color 0.26s ease,
    background-color 0.26s ease,
    transform 0.26s ease;
}

.sidebar-servicos__link:hover .sidebar-servicos__link-arrow {
  color: #fff;
  background: var(--primary-color);
  transform: translateX(2px);
}

.sidebar-servicos__link.is-active .sidebar-servicos__link-arrow {
  color: var(--primary-color);
  background: #fff;
}

.sidebar-servicos__empty {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 15px;
  border-radius: 10px;
  color: #67737d;
  background: #f7fafb;
  font-size: 13px;
  line-height: 1.6;
}

/* CTA
** ----------------------------------------------- */

.sidebar-servicos__cta {
  position: relative;
  overflow: hidden;
  padding: 25px 22px 22px;
  border: 1px solid rgba(0, 171, 226, 0.2);
  border-radius: 20px;
  color: #fff;
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(0, 171, 226, 0.23),
      transparent 48%
    ),
    linear-gradient(
      145deg,
      #0d1820 0%,
      #152832 100%
    );
  box-shadow: 0 20px 43px rgba(9, 24, 33, 0.15);
}

.sidebar-servicos__cta::before {
  content: "";
  position: absolute;
  right: -55px;
  bottom: -55px;
  width: 145px;
  height: 145px;
  border: 1px solid rgba(0, 171, 226, 0.17);
  border-radius: 50%;
  pointer-events: none;
}

.sidebar-servicos__cta-icon {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  color: #fff;
  background: var(--primary-color);
  box-shadow: 0 10px 23px rgba(0, 171, 226, 0.2);
  font-size: 16px;
}

.sidebar-servicos__cta-content {
  position: relative;
  z-index: 2;
}

.sidebar-servicos__cta-tag {
  display: block;
  margin-bottom: 6px;
  color: var(--primary-color);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.sidebar-servicos__cta h2 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.sidebar-servicos__cta p {
  margin: 9px 0 18px;
  color: rgba(255, 255, 255, 0.73);
  font-size: 13px;
  line-height: 1.62;
}

.sidebar-servicos__cta-button {
  position: relative;
  display: inline-flex;
  width: 100%;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  overflow: hidden;
  padding: 12px 16px;
  border: 1px solid var(--primary-color);
  border-radius: 9px;
  color: #fff;
  background:
    linear-gradient(
      135deg,
      var(--primary-color),
      #008dbb
    );
  box-shadow:
    0 12px 26px rgba(0, 171, 226, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  text-decoration: none !important;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  transition:
    color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.sidebar-servicos__cta-button span,
.sidebar-servicos__cta-button i {
  position: relative;
  z-index: 2;
}

.sidebar-servicos__cta-button::before {
  content: "";
  position: absolute;
  top: -75%;
  left: -55%;
  z-index: 1;
  width: 33%;
  height: 250%;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.58),
      transparent
    );
  pointer-events: none;
  transform: rotate(18deg);
  transition: left 0.65s ease;
}

.sidebar-servicos__cta-button::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 0;
  border: 1px solid rgba(0, 171, 226, 0.42);
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  animation: sidebarServicosPulse 3.4s ease-out infinite;
}

.sidebar-servicos__cta-button:hover {
  color: #fff;
  box-shadow:
    0 17px 34px rgba(0, 171, 226, 0.29),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  transform: translateY(-3px);
}

.sidebar-servicos__cta-button:hover::before {
  left: 125%;
}

.sidebar-servicos__cta-button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.72);
  outline-offset: 3px;
}

.sidebar-servicos__cta-contact {
  display: grid;
  gap: 7px;
  margin-top: 17px;
}

.sidebar-servicos__cta-contact span,
.sidebar-servicos__cta-contact a {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  overflow-wrap: anywhere;
  font-size: 11px;
  line-height: 1.5;
}

.sidebar-servicos__cta-contact i {
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--primary-color);
  font-size: 10px;
}

.sidebar-servicos__cta-contact a:hover {
  color: #fff;
}

@keyframes sidebarServicosPulse {
  0% {
    opacity: 0;
    transform: scale(1);
  }

  20% {
    opacity: 0.55;
  }

  75%,
  100% {
    opacity: 0;
    transform: scale(1.06, 1.17);
  }
}

/* Responsividade
** ----------------------------------------------- */

@media (max-width: 991.98px) {
  .sidebar-servicos {
    position: relative;
    top: auto;
    margin-bottom: 30px;
  }

  .sidebar-servicos__toggle {
    display: flex;
  }

  .sidebar-servicos.is-ready .sidebar-servicos__content {
    display: none;
    margin-top: 13px;
  }

  .sidebar-servicos.is-ready.is-open .sidebar-servicos__content {
    display: grid;
    animation: sidebarServicosOpen 0.35s ease;
  }

  .sidebar-servicos__nav,
  .sidebar-servicos__cta {
    border-radius: 16px;
  }

  .sidebar-servicos__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@keyframes sidebarServicosOpen {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 575.98px) {
  .sidebar-servicos {
    margin-bottom: 25px;
  }

  .sidebar-servicos__list {
    grid-template-columns: 1fr;
  }

  .sidebar-servicos__nav {
    padding: 23px 17px 17px;
  }

  .sidebar-servicos__cta {
    padding: 22px 17px 18px;
  }

  .sidebar-servicos__header h2 {
    font-size: 20px;
  }
}

@media (max-width: 359.98px) {
  .sidebar-servicos__toggle {
    gap: 10px;
    padding: 10px;
  }

  .sidebar-servicos__toggle-content {
    gap: 9px;
    font-size: 12px;
  }

  .sidebar-servicos__toggle-icon {
    width: 35px;
    height: 35px;
    flex-basis: 35px;
  }

  .sidebar-servicos__toggle-arrow {
    width: 27px;
    height: 27px;
    flex-basis: 27px;
  }

  .sidebar-servicos__nav {
    padding-right: 13px;
    padding-left: 13px;
  }

  .sidebar-servicos__link {
    padding-right: 8px;
    padding-left: 8px;
    font-size: 12px;
  }

  .sidebar-servicos__cta {
    padding-right: 14px;
    padding-left: 14px;
  }

  .sidebar-servicos__cta-button {
    padding-right: 11px;
    padding-left: 11px;
    font-size: 12px;
  }
}

@media (max-width: 300px) {
  .sidebar-servicos__toggle-content small {
    font-size: 8px;
  }

  .sidebar-servicos__toggle-content {
    font-size: 11px;
  }

  .sidebar-servicos__link-arrow {
    display: none;
  }

  .sidebar-servicos__cta h2 {
    font-size: 18px;
  }

  .sidebar-servicos__cta-contact span,
  .sidebar-servicos__cta-contact a {
    font-size: 10px;
  }
}

/* Acessibilidade
** ----------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  .sidebar-servicos *,
  .sidebar-servicos *::before,
  .sidebar-servicos *::after {
    animation: none !important;
    transition: none !important;
  }

  .sidebar-servicos__link:hover,
  .sidebar-servicos__cta-button:hover {
    transform: none;
  }
}

/* =========================================================
   PÁGINA INTERNA DE SERVIÇO
========================================================= */

.pagina-servico-detalhe {
	position: relative;
	overflow: hidden;
	padding: 76px 0 90px;
	background:
		radial-gradient(
			circle at 100% 0,
			rgba(0, 171, 226, 0.07),
			transparent 420px
		),
		linear-gradient(
			180deg,
			#ffffff 0%,
			#f7fafc 100%
		);
}

.pagina-servico-detalhe::before {
	position: absolute;
	bottom: -170px;
	left: -170px;
	width: 340px;
	height: 340px;
	border-radius: 50%;
	content: "";
	pointer-events: none;
	background-color: var(--secondary-color);
	opacity: 0.035;
}

.pagina-servico-detalhe__row {
	position: relative;
	z-index: 2;
	align-items: flex-start;
}

/* =========================================================
   CONTEÚDO PRINCIPAL
========================================================= */

.servico-detalhe {
	overflow: hidden;
	width: 100%;
	border: 1px solid rgba(20, 40, 54, 0.09);
	border-radius: 22px;
	background-color: #ffffff;
	box-shadow:
		0 20px 50px rgba(16, 37, 51, 0.075),
		0 5px 15px rgba(16, 37, 51, 0.025);
}

.servico-detalhe__imagem {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: clamp(300px, 38vw, 490px);
	margin: 0;
	background-color: #e7eef2;
}

.servico-detalhe__imagem::before {
	position: absolute;
	inset: 0;
	z-index: 1;
	content: "";
	pointer-events: none;
	background:
		linear-gradient(
			180deg,
			transparent 48%,
			rgba(5, 17, 25, 0.62) 100%
		);
}

.servico-detalhe__imagem img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition:
		transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
		filter 0.4s ease;
}

.servico-detalhe:hover .servico-detalhe__imagem img {
	filter: saturate(1.04) contrast(1.02);
	transform: scale(1.025);
}

.servico-detalhe__imagem figcaption {
	position: absolute;
	right: 24px;
	bottom: 22px;
	left: 24px;
	z-index: 2;
	max-width: 640px;
	color: rgba(255, 255, 255, 0.88);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.5;
}

.servico-detalhe__conteudo {
	padding: clamp(25px, 4vw, 42px);
}

.servico-detalhe__tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 13px;
	color: var(--primary-color);
	font-size: 11px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.servico-detalhe__tag::before {
	display: block;
	width: 7px;
	height: 7px;
	flex: 0 0 7px;
	border-radius: 50%;
	content: "";
	background-color: var(--primary-color);
	box-shadow: 0 0 10px rgba(0, 171, 226, 0.45);
}

.servico-detalhe__conteudo > h2 {
	max-width: 720px;
	margin: 0 0 20px;
	color: #14212b;
	font-size: clamp(27px, 3.4vw, 41px);
	font-weight: 600;
	line-height: 1.16;
	letter-spacing: -0.035em;
}

.servico-detalhe__conteudo > p {
	margin: 0 0 17px;
	color: #5e6b75;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.78;
}

.servico-detalhe__destaque {
	padding-left: 18px;
	border-left: 3px solid var(--primary-color);
	color: #35434d !important;
	font-size: 16px !important;
	font-weight: 500 !important;
}

/* =========================================================
   BENEFÍCIOS
========================================================= */

.servico-detalhe__beneficios {
	margin-top: 34px;
	padding: 27px;
	border: 1px solid rgba(0, 171, 226, 0.13);
	border-radius: 17px;
	background:
		linear-gradient(
			145deg,
			rgba(0, 171, 226, 0.045),
			rgba(255, 255, 255, 0.96)
		);
}

.servico-detalhe__beneficios h3 {
	margin: 0 0 20px;
	color: #17242d;
	font-size: 21px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: -0.02em;
}

.servico-detalhe__beneficios ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.servico-detalhe__beneficios li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: #4e5b65;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.55;
}

.servico-detalhe__beneficios li > span {
	display: inline-flex;
	width: 24px;
	height: 24px;
	flex: 0 0 24px;
	align-items: center;
	justify-content: center;
	margin-top: 1px;
	border-radius: 7px;
	color: #ffffff;
	background-color: var(--primary-color);
	box-shadow: 0 7px 16px rgba(0, 171, 226, 0.18);
	font-size: 8px;
}

/* =========================================================
   ETAPAS
========================================================= */

.servico-detalhe__processo {
	margin-top: 42px;
}

.servico-detalhe__section-header {
	margin-bottom: 22px;
}

.servico-detalhe__section-header > span {
	display: block;
	margin-bottom: 6px;
	color: var(--primary-color);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.servico-detalhe__section-header h3 {
	margin: 0;
	color: #17242d;
	font-size: clamp(23px, 3vw, 30px);
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: -0.025em;
}

.servico-detalhe__etapas {
	display: grid;
	gap: 13px;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: none;
}

.servico-detalhe__etapas li {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 18px;
	border: 1px solid rgba(20, 40, 54, 0.09);
	border-radius: 14px;
	background-color: #f9fbfc;
	transition:
		border-color 0.28s ease,
		box-shadow 0.28s ease,
		transform 0.28s ease;
}

.servico-detalhe__etapas li:hover {
	border-color: rgba(0, 171, 226, 0.25);
	box-shadow: 0 12px 28px rgba(18, 38, 52, 0.065);
	transform: translateX(4px);
}

.servico-detalhe__etapa-numero {
	display: inline-flex;
	width: 42px;
	height: 42px;
	flex: 0 0 42px;
	align-items: center;
	justify-content: center;
	border-radius: 11px;
	color: #ffffff;
	background:
		linear-gradient(
			135deg,
			var(--primary-color),
			#008dbb
		);
	box-shadow: 0 9px 20px rgba(0, 171, 226, 0.19);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
}

.servico-detalhe__etapas h4 {
	margin: 0 0 5px;
	color: #1b2831;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.4;
}

.servico-detalhe__etapas p {
	margin: 0;
	color: #65717b;
	font-size: 13px;
	line-height: 1.65;
}

/* =========================================================
   CTA
========================================================= */

.servico-detalhe__cta {
	position: relative;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 18px;
	overflow: hidden;
	margin-top: 42px;
	padding: 25px;
	border: 1px solid rgba(0, 171, 226, 0.19);
	border-radius: 18px;
	color: #ffffff;
	background:
		radial-gradient(
			circle at 100% 0,
			rgba(0, 171, 226, 0.25),
			transparent 42%
		),
		linear-gradient(
			145deg,
			#0c1820 0%,
			#162a35 100%
		);
	box-shadow: 0 20px 43px rgba(9, 24, 33, 0.14);
}

.servico-detalhe__cta::before {
	position: absolute;
	right: -55px;
	bottom: -70px;
	width: 170px;
	height: 170px;
	border: 1px solid rgba(0, 171, 226, 0.17);
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

.servico-detalhe__cta-icon {
	position: relative;
	z-index: 2;
	display: inline-flex;
	width: 55px;
	height: 55px;
	align-items: center;
	justify-content: center;
	border-radius: 15px;
	color: #ffffff;
	background:
		linear-gradient(
			135deg,
			#37cb5c,
			#20a943
		);
	box-shadow: 0 12px 27px rgba(34, 180, 71, 0.22);
	font-size: 23px;
}

.servico-detalhe__cta-conteudo {
	position: relative;
	z-index: 2;
}

.servico-detalhe__cta-conteudo > span {
	display: block;
	margin-bottom: 5px;
	color: var(--primary-color);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.servico-detalhe__cta h3 {
	margin: 0 0 6px;
	color: #ffffff;
	font-size: 19px;
	font-weight: 600;
	line-height: 1.3;
}

.servico-detalhe__cta p {
	margin: 0;
	color: rgba(255, 255, 255, 0.7);
	font-size: 12px;
	line-height: 1.6;
}

.servico-detalhe__cta-botao {
	position: relative;
	z-index: 2;
	display: inline-flex;
	min-height: 49px;
	align-items: center;
	justify-content: center;
	gap: 9px;
	overflow: hidden;
	padding: 12px 18px;
	border: 1px solid #35c759;
	border-radius: 9px;
	color: #ffffff;
	background:
		linear-gradient(
			135deg,
			#36c85a,
			#20a943
		);
	box-shadow:
		0 12px 26px rgba(35, 179, 71, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
	text-decoration: none !important;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.2;
	white-space: nowrap;
	transition:
		box-shadow 0.25s ease,
		transform 0.25s ease;
}

.servico-detalhe__cta-botao span,
.servico-detalhe__cta-botao i {
	position: relative;
	z-index: 2;
}

.servico-detalhe__cta-botao::before {
	position: absolute;
	top: -75%;
	left: -55%;
	z-index: 1;
	width: 32%;
	height: 250%;
	content: "";
	pointer-events: none;
	background:
		linear-gradient(
			90deg,
			transparent,
			rgba(255, 255, 255, 0.58),
			transparent
		);
	transform: rotate(18deg);
	transition: left 0.65s ease;
}

.servico-detalhe__cta-botao::after {
	position: absolute;
	inset: -1px;
	z-index: 0;
	border: 1px solid rgba(53, 199, 89, 0.45);
	border-radius: inherit;
	content: "";
	pointer-events: none;
	opacity: 0;
	animation: servicoDetalheCtaPulse 3.4s ease-out infinite;
}

.servico-detalhe__cta-botao:hover {
	color: #ffffff;
	box-shadow:
		0 17px 34px rgba(35, 179, 71, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.24);
	transform: translateY(-3px);
}

.servico-detalhe__cta-botao:hover::before {
	left: 125%;
}

.servico-detalhe__cta-botao:focus-visible {
	outline: 3px solid rgba(255, 255, 255, 0.74);
	outline-offset: 3px;
}

@keyframes servicoDetalheCtaPulse {
	0% {
		opacity: 0;
		transform: scale(1);
	}

	20% {
		opacity: 0.55;
	}

	75%,
	100% {
		opacity: 0;
		transform: scale(1.06, 1.17);
	}
}

/* =========================================================
   RESPONSIVIDADE
========================================================= */

@media (max-width: 1199.98px) {
	.servico-detalhe__cta {
		grid-template-columns: auto minmax(0, 1fr);
	}

	.servico-detalhe__cta-botao {
		grid-column: 1 / -1;
		width: 100%;
	}
}

@media (max-width: 991.98px) {
	.pagina-servico-detalhe {
		padding: 58px 0 72px;
	}

	.servico-detalhe {
		margin-top: 10px;
	}
}

@media (max-width: 767.98px) {
	.pagina-servico-detalhe {
		padding: 48px 0 62px;
	}

	.servico-detalhe {
		border-radius: 18px;
	}

	.servico-detalhe__imagem {
		height: clamp(260px, 65vw, 400px);
	}

	.servico-detalhe__beneficios ul {
		grid-template-columns: 1fr;
	}

	.servico-detalhe__conteudo > h2 {
		letter-spacing: -0.025em;
	}
}

@media (max-width: 575.98px) {
	.servico-detalhe__imagem {
		height: 250px;
	}

	.servico-detalhe__imagem figcaption {
		right: 16px;
		bottom: 15px;
		left: 16px;
		font-size: 11px;
	}

	.servico-detalhe__conteudo {
		padding: 23px 18px;
	}

	.servico-detalhe__conteudo > h2 {
		font-size: clamp(25px, 8vw, 32px);
	}

	.servico-detalhe__beneficios {
		padding: 21px 17px;
	}

	.servico-detalhe__cta {
		grid-template-columns: 1fr;
		padding: 21px 17px;
	}

	.servico-detalhe__cta-icon {
		width: 48px;
		height: 48px;
		font-size: 20px;
	}

	.servico-detalhe__cta-botao {
		grid-column: auto;
	}
}

@media (max-width: 359.98px) {
	.pagina-servico-detalhe {
		padding: 40px 0 52px;
	}

	.servico-detalhe__imagem {
		height: 220px;
	}

	.servico-detalhe__conteudo {
		padding: 20px 14px;
	}

	.servico-detalhe__conteudo > h2 {
		font-size: 23px;
	}

	.servico-detalhe__conteudo > p,
	.servico-detalhe__destaque {
		font-size: 14px !important;
		line-height: 1.7;
	}

	.servico-detalhe__beneficios {
		padding: 18px 14px;
	}

	.servico-detalhe__beneficios h3 {
		font-size: 18px;
	}

	.servico-detalhe__etapas li {
		gap: 11px;
		padding: 14px;
	}

	.servico-detalhe__etapa-numero {
		width: 36px;
		height: 36px;
		flex-basis: 36px;
	}

	.servico-detalhe__cta {
		padding: 18px 14px;
	}

	.servico-detalhe__cta h3 {
		font-size: 17px;
	}

	.servico-detalhe__cta-botao {
		padding-right: 12px;
		padding-left: 12px;
		font-size: 11px;
	}
}

@media (max-width: 300px) {
	.servico-detalhe__imagem {
		height: 195px;
	}

	.servico-detalhe__conteudo > h2 {
		font-size: 21px;
	}

	.servico-detalhe__beneficios li {
		font-size: 12px;
	}

	.servico-detalhe__etapas {
		gap: 10px;
	}

	.servico-detalhe__etapas li {
		flex-direction: column;
	}

	.servico-detalhe__cta-botao {
		font-size: 10px;
	}
}

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

@media (prefers-reduced-motion: reduce) {
	.servico-detalhe__imagem img,
	.servico-detalhe__etapas li,
	.servico-detalhe__cta-botao,
	.servico-detalhe__cta-botao::before,
	.servico-detalhe__cta-botao::after {
		animation: none !important;
		transition: none !important;
	}

	.servico-detalhe:hover .servico-detalhe__imagem img,
	.servico-detalhe__etapas li:hover,
	.servico-detalhe__cta-botao:hover {
		transform: none;
	}
}


/* =========================================================
   PÁGINA DE PROJETOS
========================================================= */

.pagina-projetos {
	position: relative;
	overflow: hidden;
	padding: 78px 0 90px;
	background:
		radial-gradient(
			circle at 0 0,
			rgba(0, 171, 226, 0.09),
			transparent 420px
		),
		radial-gradient(
			circle at 100% 100%,
			rgba(0, 171, 226, 0.06),
			transparent 390px
		),
		linear-gradient(
			180deg,
			#ffffff 0%,
			#f5f9fb 100%
		);
}

.pagina-projetos::before {
	position: absolute;
	top: 0;
	right: 0;
	width: 42%;
	height: 100%;
	content: "";
	pointer-events: none;
	opacity: 0.2;
	background-image:
		linear-gradient(
			rgba(0, 171, 226, 0.08) 1px,
			transparent 1px
		),
		linear-gradient(
			90deg,
			rgba(0, 171, 226, 0.08) 1px,
			transparent 1px
		);
	background-size: 44px 44px;
	-webkit-mask-image: linear-gradient(
		90deg,
		transparent,
		#000
	);
	mask-image: linear-gradient(
		90deg,
		transparent,
		#000
	);
}

/* =========================================================
   INTRODUÇÃO
========================================================= */

.pagina-projetos__intro {
	position: relative;
	z-index: 2;
	max-width: 860px;
	margin: 0 auto 34px;
	text-align: center;
}

.pagina-projetos__tag {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 14px;
	color: var(--primary-color);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.pagina-projetos__tag::before {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	content: "";
	background-color: var(--primary-color);
	box-shadow: 0 0 10px rgba(0, 171, 226, 0.45);
}

.pagina-projetos__intro h2 {
	max-width: 790px;
	margin: 0 auto;
	color: #14212a;
	font-size: clamp(30px, 4vw, 46px);
	font-weight: 600;
	line-height: 1.13;
	letter-spacing: -0.035em;
}

.pagina-projetos__intro h2 strong {
	display: block;
	color: var(--primary-color);
	font-weight: 650;
}

.pagina-projetos__intro > p {
	max-width: 720px;
	margin: 18px auto 0;
	color: #5d6973;
	font-size: 16px;
	line-height: 1.72;
}

.pagina-projetos__resumo {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	max-width: 720px;
	margin: 27px auto 0;
}

.pagina-projetos__resumo > div {
	padding: 15px;
	border: 1px solid rgba(20, 41, 55, 0.09);
	border-radius: 13px;
	background-color: rgba(255, 255, 255, 0.78);
	box-shadow: 0 10px 26px rgba(18, 38, 51, 0.04);
}

.pagina-projetos__resumo strong {
	display: block;
	margin-bottom: 3px;
	color: var(--primary-color);
	font-size: 21px;
	font-weight: 650;
	line-height: 1.2;
}

.pagina-projetos__resumo span {
	display: block;
	color: #5e6b75;
	font-size: 11px;
	font-weight: 500;
	line-height: 1.4;
}

/* =========================================================
   FILTROS
========================================================= */

.pagina-projetos__filtros {
	position: relative;
	z-index: 2;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 9px;
	margin-bottom: 30px;
}

.pagina-projetos__filtro {
	display: inline-flex;
	min-height: 42px;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 9px 16px;
	border: 1px solid rgba(20, 41, 55, 0.11);
	border-radius: 9px;
	color: #4d5b65;
	background-color: rgba(255, 255, 255, 0.84);
	box-shadow: 0 8px 20px rgba(18, 38, 51, 0.035);
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	transition:
		color 0.25s ease,
		border-color 0.25s ease,
		background-color 0.25s ease,
		box-shadow 0.25s ease,
		transform 0.25s ease;
}

.pagina-projetos__filtro:hover {
	border-color: rgba(0, 171, 226, 0.28);
	color: var(--primary-color);
	transform: translateY(-2px);
}

.pagina-projetos__filtro.is-active {
	border-color: var(--primary-color);
	color: #ffffff;
	background: linear-gradient(
		135deg,
		var(--primary-color),
		#008dbb
	);
	box-shadow: 0 11px 24px rgba(0, 171, 226, 0.2);
}

.pagina-projetos__filtro:focus-visible {
	outline: 3px solid rgba(0, 171, 226, 0.28);
	outline-offset: 3px;
}

/* =========================================================
   GRID
========================================================= */

.pagina-projetos__grid {
	position: relative;
	z-index: 2;
	margin-right: -12px;
	margin-left: -12px;
}

.pagina-projetos__item {
	margin-bottom: 24px;
	padding-right: 12px;
	padding-left: 12px;
}

.pagina-projetos__item[hidden] {
	display: none !important;
}

/* =========================================================
   CARD
========================================================= */

.projeto-card {
	position: relative;
	display: flex;
	width: 100%;
	height: 100%;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid rgba(20, 41, 55, 0.1);
	border-radius: 20px;
	background-color: #ffffff;
	box-shadow:
		0 16px 40px rgba(16, 37, 50, 0.065),
		0 4px 12px rgba(16, 37, 50, 0.025);
	transition:
		border-color 0.3s ease,
		box-shadow 0.3s ease,
		transform 0.3s ease;
}

.projeto-card:hover {
	border-color: rgba(0, 171, 226, 0.24);
	box-shadow:
		0 24px 50px rgba(16, 37, 50, 0.11),
		0 7px 17px rgba(16, 37, 50, 0.04);
	transform: translateY(-5px);
}

/* =========================================================
   COMPARADOR
========================================================= */

.projeto-comparador {
	position: relative;
	overflow: hidden;
	width: 100%;
	aspect-ratio: 16 / 10;
	background-color: #e7eef2;
	-webkit-user-select: none;
	user-select: none;
}

.projeto-card--destaque .projeto-comparador {
	aspect-ratio: 16 / 7;
}

.projeto-comparador::after {
	position: absolute;
	inset: 0;
	z-index: 3;
	border: 1px solid rgba(255, 255, 255, 0.12);
	content: "";
	pointer-events: none;
}

.projeto-comparador__depois,
.projeto-comparador__antes img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.projeto-comparador__depois {
	position: absolute;
	inset: 0;
}

.projeto-comparador__antes {
	position: absolute;
	inset: 0 auto 0 0;
	z-index: 2;
	overflow: hidden;
	width: var(--compare-position);
}

.projeto-comparador__antes img {
	width: 100vw;
	max-width: none;
}

.projeto-card--destaque .projeto-comparador__antes img {
	width: min(1110px, calc(100vw - 30px));
}

.projeto-comparador__label {
	position: absolute;
	top: 15px;
	z-index: 5;
	display: inline-flex;
	min-height: 29px;
	align-items: center;
	padding: 6px 11px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 8px;
	color: #ffffff;
	background-color: rgba(8, 22, 31, 0.62);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	-webkit-backdrop-filter: blur(7px);
	backdrop-filter: blur(7px);
}

.projeto-comparador__label--antes {
	left: 15px;
}

.projeto-comparador__label--depois {
	right: 15px;
}

.projeto-comparador__linha {
	position: absolute;
	top: 0;
	bottom: 0;
	left: var(--compare-position);
	z-index: 6;
	width: 2px;
	pointer-events: none;
	background-color: rgba(255, 255, 255, 0.94);
	box-shadow: 0 0 12px rgba(0, 0, 0, 0.24);
	transform: translateX(-50%);
}

.projeto-comparador__controle {
	position: absolute;
	top: 50%;
	left: 50%;
	display: inline-flex;
	width: 47px;
	height: 47px;
	align-items: center;
	justify-content: center;
	gap: 6px;
	border: 2px solid #ffffff;
	border-radius: 50%;
	color: #ffffff;
	background: var(--primary-color);
	box-shadow:
		0 10px 25px rgba(0, 0, 0, 0.22),
		inset 0 1px 0 rgba(255, 255, 255, 0.26);
	font-size: 8px;
	transform: translate(-50%, -50%);
}

.projeto-comparador__range {
	position: absolute;
	inset: 0;
	z-index: 8;
	width: 100%;
	height: 100%;
	margin: 0;
	opacity: 0;
	cursor: ew-resize;
}

.projeto-comparador:focus-within {
	outline: 3px solid var(--primary-color);
	outline-offset: -3px;
}

/* =========================================================
   IMAGEM SIMPLES
========================================================= */

.projeto-card__media {
	position: relative;
	display: block;
	overflow: hidden;
	width: 100%;
	aspect-ratio: 16 / 10;
	background-color: #e7eef2;
	text-decoration: none !important;
}

.projeto-card__media::after {
	position: absolute;
	inset: 0;
	z-index: 2;
	content: "";
	pointer-events: none;
	background: linear-gradient(
		180deg,
		transparent 45%,
		rgba(7, 20, 29, 0.65) 100%
	);
	opacity: 0.33;
	transition: opacity 0.3s ease;
}

.projeto-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition:
		filter 0.38s ease,
		transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.projeto-card__media-overlay {
	position: absolute;
	inset: 0;
	z-index: 4;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	color: #ffffff;
	opacity: 0;
	transform: translateY(9px);
	transition:
		opacity 0.3s ease,
		transform 0.3s ease;
}

.projeto-card__media-overlay > span {
	display: inline-flex;
	width: 46px;
	height: 46px;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 50%;
	background-color: var(--primary-color);
	box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
	font-size: 14px;
}

.projeto-card__media-overlay small {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.projeto-card__media:hover::after,
.projeto-card__media:focus::after {
	opacity: 0.8;
}

.projeto-card__media:hover img,
.projeto-card__media:focus img {
	filter: saturate(1.05) contrast(1.02);
	transform: scale(1.045);
}

.projeto-card__media:hover .projeto-card__media-overlay,
.projeto-card__media:focus .projeto-card__media-overlay {
	opacity: 1;
	transform: translateY(0);
}

.projeto-card__media:focus-visible {
	outline: 3px solid var(--primary-color);
	outline-offset: -3px;
}

/* =========================================================
   CONTEÚDO
========================================================= */

.projeto-card__body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	padding: 22px;
}

.projeto-card--destaque .projeto-card__body {
	padding: 26px;
}

.projeto-card__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	margin-bottom: 10px;
}

.projeto-card__categoria {
	color: var(--primary-color);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.projeto-card__numero {
	display: inline-flex;
	min-width: 38px;
	height: 27px;
	align-items: center;
	justify-content: center;
	padding: 0 8px;
	border-radius: 7px;
	color: #53616b;
	background-color: #f0f5f7;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.06em;
}

.projeto-card__body h3 {
	margin: 0 0 10px;
	color: #17242d;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: -0.02em;
}

.projeto-card--destaque .projeto-card__body h3 {
	font-size: clamp(22px, 3vw, 30px);
}

.projeto-card__body p {
	margin: 0;
	color: #63707a;
	font-size: 14px;
	line-height: 1.68;
}

.projeto-card__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-top: 19px;
}

.projeto-card__action {
	display: inline-flex;
	min-height: 39px;
	align-items: center;
	justify-content: center;
	gap: 7px;
	padding: 8px 12px;
	border: 1px solid rgba(0, 171, 226, 0.2);
	border-radius: 8px;
	color: var(--primary-color);
	background-color: rgba(0, 171, 226, 0.055);
	text-decoration: none !important;
	font-size: 11px;
	font-weight: 600;
	transition:
		color 0.25s ease,
		background-color 0.25s ease,
		border-color 0.25s ease,
		transform 0.25s ease;
}

.projeto-card__action:hover {
	border-color: var(--primary-color);
	color: #ffffff;
	background-color: var(--primary-color);
	transform: translateY(-2px);
}

.projeto-card__action:focus-visible {
	outline: 3px solid rgba(0, 171, 226, 0.25);
	outline-offset: 3px;
}

/* =========================================================
   CTA
========================================================= */

.pagina-projetos__cta {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 19px;
	overflow: hidden;
	margin-top: 18px;
	padding: 27px;
	border: 1px solid rgba(0, 171, 226, 0.2);
	border-radius: 20px;
	color: #ffffff;
	background:
		radial-gradient(
			circle at 100% 0,
			rgba(0, 171, 226, 0.25),
			transparent 42%
		),
		linear-gradient(
			145deg,
			#0c1820 0%,
			#162a35 100%
		);
	box-shadow: 0 21px 45px rgba(9, 24, 33, 0.15);
}

.pagina-projetos__cta::before {
	position: absolute;
	right: -65px;
	bottom: -80px;
	width: 190px;
	height: 190px;
	border: 1px solid rgba(0, 171, 226, 0.17);
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

.pagina-projetos__cta-icon {
	position: relative;
	z-index: 2;
	display: inline-flex;
	width: 57px;
	height: 57px;
	align-items: center;
	justify-content: center;
	border-radius: 15px;
	color: #ffffff;
	background: linear-gradient(
		135deg,
		#36c85a,
		#20a943
	);
	box-shadow: 0 12px 27px rgba(34, 180, 71, 0.22);
	font-size: 23px;
}

.pagina-projetos__cta-content {
	position: relative;
	z-index: 2;
}

.pagina-projetos__cta-content > span {
	display: block;
	margin-bottom: 5px;
	color: var(--primary-color);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.pagina-projetos__cta h2 {
	margin: 0 0 6px;
	color: #ffffff;
	font-size: 21px;
	font-weight: 600;
	line-height: 1.3;
}

.pagina-projetos__cta p {
	margin: 0;
	color: rgba(255, 255, 255, 0.7);
	font-size: 13px;
	line-height: 1.6;
}

.pagina-projetos__cta-button {
	position: relative;
	z-index: 2;
	display: inline-flex;
	min-height: 50px;
	align-items: center;
	justify-content: center;
	gap: 9px;
	overflow: hidden;
	padding: 12px 18px;
	border: 1px solid #35c759;
	border-radius: 9px;
	color: #ffffff;
	background: linear-gradient(
		135deg,
		#36c85a,
		#20a943
	);
	box-shadow:
		0 12px 26px rgba(35, 179, 71, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
	text-decoration: none !important;
	font-size: 12px;
	font-weight: 600;
	white-space: nowrap;
	transition:
		box-shadow 0.25s ease,
		transform 0.25s ease;
}

.pagina-projetos__cta-button::before {
	position: absolute;
	top: -75%;
	left: -55%;
	width: 32%;
	height: 250%;
	content: "";
	pointer-events: none;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.58),
		transparent
	);
	transform: rotate(18deg);
	transition: left 0.65s ease;
}

.pagina-projetos__cta-button:hover {
	color: #ffffff;
	box-shadow:
		0 17px 34px rgba(35, 179, 71, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.24);
	transform: translateY(-3px);
}

.pagina-projetos__cta-button:hover::before {
	left: 125%;
}

.pagina-projetos__cta-button:focus-visible {
	outline: 3px solid rgba(255, 255, 255, 0.72);
	outline-offset: 3px;
}

/* =========================================================
   REVEAL
========================================================= */

[data-project-reveal] {
	opacity: 0;
	transform: translateY(22px);
	transition:
		opacity 0.7s ease,
		transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}

[data-project-reveal].is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

/* =========================================================
   RESPONSIVIDADE
========================================================= */

@media (max-width: 991.98px) {
	.pagina-projetos {
		padding: 62px 0 74px;
	}

	.pagina-projetos__cta {
		grid-template-columns: auto minmax(0, 1fr);
	}

	.pagina-projetos__cta-button {
		grid-column: 1 / -1;
		width: 100%;
	}

	.projeto-card--destaque .projeto-comparador {
		aspect-ratio: 16 / 9;
	}
}

@media (max-width: 767.98px) {
	.pagina-projetos {
		padding: 52px 0 64px;
	}

	.pagina-projetos::before {
		display: none;
	}

	.pagina-projetos__resumo {
		grid-template-columns: 1fr;
	}

	.projeto-card {
		border-radius: 17px;
	}

	.projeto-card--destaque .projeto-comparador,
	.projeto-comparador,
	.projeto-card__media {
		aspect-ratio: 16 / 10;
	}
}

@media (max-width: 575.98px) {
	.pagina-projetos {
		padding: 46px 0 56px;
	}

	.pagina-projetos__intro {
		text-align: left;
	}

	.pagina-projetos__intro h2 strong {
		display: inline;
	}

	.pagina-projetos__intro > p {
		font-size: 15px;
		line-height: 1.65;
	}

	.pagina-projetos__filtros {
		justify-content: flex-start;
	}

	.pagina-projetos__filtro {
		flex: 1 1 auto;
	}

	.pagina-projetos__grid {
		margin-right: -8px;
		margin-left: -8px;
	}

	.pagina-projetos__item {
		margin-bottom: 18px;
		padding-right: 8px;
		padding-left: 8px;
	}

	.projeto-comparador,
	.projeto-card--destaque .projeto-comparador,
	.projeto-card__media {
		aspect-ratio: 4 / 3;
	}

	.projeto-card__body,
	.projeto-card--destaque .projeto-card__body {
		padding: 19px 17px;
	}

	.projeto-card__body h3 {
		font-size: 18px;
	}

	.pagina-projetos__cta {
		grid-template-columns: 1fr;
		padding: 22px 18px;
	}

	.pagina-projetos__cta-button {
		grid-column: auto;
	}

	.projeto-comparador__controle {
		width: 42px;
		height: 42px;
	}
}

@media (max-width: 359.98px) {
	.pagina-projetos {
		padding: 40px 0 50px;
	}

	.pagina-projetos__intro h2 {
		font-size: 27px;
	}

	.pagina-projetos__filtro {
		width: 100%;
	}

	.projeto-comparador__label {
		top: 9px;
		padding: 5px 8px;
		font-size: 8px;
	}

	.projeto-comparador__label--antes {
		left: 9px;
	}

	.projeto-comparador__label--depois {
		right: 9px;
	}

	.projeto-card__body {
		padding: 17px 14px;
	}

	.projeto-card__body h3 {
		font-size: 17px;
	}

	.projeto-card__body p {
		font-size: 13px;
	}

	.projeto-card__actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.projeto-card__action {
		width: 100%;
	}

	.pagina-projetos__cta {
		padding: 19px 14px;
	}

	.pagina-projetos__cta h2 {
		font-size: 18px;
	}
}

@media (max-width: 300px) {
	.pagina-projetos__intro h2 {
		font-size: 24px;
	}

	.projeto-comparador,
	.projeto-card--destaque .projeto-comparador,
	.projeto-card__media {
		aspect-ratio: 1 / 1;
	}

	.pagina-projetos__cta-button {
		padding-right: 11px;
		padding-left: 11px;
		font-size: 11px;
	}
}

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

@media (prefers-reduced-motion: reduce) {
	[data-project-reveal] {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.projeto-card,
	.projeto-card__media img,
	.projeto-card__media-overlay,
	.pagina-projetos__filtro,
	.projeto-card__action,
	.pagina-projetos__cta-button,
	.pagina-projetos__cta-button::before {
		transition: none !important;
	}

	.projeto-card:hover,
	.pagina-projetos__filtro:hover,
	.projeto-card__action:hover,
	.pagina-projetos__cta-button:hover {
		transform: none;
	}
}
/* Componentes nativos leves: substituem bibliotecas de lightbox e carrossel. */
.native-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.9);
}

.native-lightbox img {
  display: block;
  max-width: min(1200px, 94vw);
  max-height: 88vh;
  object-fit: contain;
}

.native-lightbox__close {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: #00a9db;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.mySwiper-mais-visitados {
  overflow: hidden;
}

.mySwiper-mais-visitados .swiper-wrapper {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 72px) / 4);
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.mySwiper-mais-visitados .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.mySwiper-mais-visitados .swiper-slide {
  width: auto;
  scroll-snap-align: start;
}

@media (max-width: 991px) {
  .mySwiper-mais-visitados .swiper-wrapper { grid-auto-columns: calc((100% - 48px) / 3); }
}

@media (max-width: 767px) {
  .mySwiper-mais-visitados .swiper-wrapper { grid-auto-columns: calc((100% - 20px) / 2); gap: 20px; }
}

@media (max-width: 575px) {
  .mySwiper-mais-visitados .swiper-wrapper { grid-auto-columns: 100%; gap: 16px; }
}
