/* ==========================================================================
   MEGAPISOS — Revestimentos Industriais
   Folha de estilo principal
   Identidade: GRAFITE + BRANCO + LARANJA (amarelo e magenta apenas em detalhes)
   ========================================================================== */

/* ------------------------------ 1. TOKENS ------------------------------- */
:root {
  /* Cores */
  --graphite: #343740;
  --graphite-dark: #202228;
  --orange: #F28C28;
  --orange-dark: #D87518;
  --orange-soft: rgba(242, 140, 40, .10);
  --yellow: #F5C542;
  --magenta: #E91E8F;
  --white: #FFFFFF;
  --gray-100: #F5F5F5;
  --gray-200: #E7E8EA;
  --gray-400: #A8ABB2;
  --gray-600: #686B73;
  --whatsapp: #25D366;

  --brand-gradient: linear-gradient(135deg, #F5C542 0%, #F28C28 35%, #E91E8F 100%);

  /* Tipografia */
  --font-head: "Montserrat", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;

  /* Espaçamento */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 80px;
  --sp-10: 96px;
  --sp-11: 120px;

  /* Layout */
  --container: 1200px;
  --gutter: 20px;
  --header-h: 84px;

  /* Bordas e sombras */
  --r-btn: 7px;
  --r-card: 14px;
  --r-md: 10px;
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, .06);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, .06);
  --shadow-lg: 0 18px 50px rgba(0, 0, 0, .10);

  --t-fast: 200ms ease;
  --t-base: 300ms ease;
}

/* ----------------------------- PRELOADER -------------------------------- */
body.is-loading {
  overflow: hidden;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(32, 34, 40, .55);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transition: opacity 500ms ease, visibility 500ms ease;
}

.preloader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__content {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Grid Ripple Loader --- */
.loader-grid {
  --cell-size: 42px;
  --cell-spacing: 2px;
  --cells: 3;
  --total-size: calc(var(--cells) * (var(--cell-size) + 2 * var(--cell-spacing)));
  display: flex;
  flex-wrap: wrap;
  width: var(--total-size);
  height: var(--total-size);
}

.loader-grid .cell {
  flex: 0 0 var(--cell-size);
  margin: var(--cell-spacing);
  background-color: transparent;
  box-sizing: border-box;
  border-radius: 4px;
  animation: ripple 1.5s ease infinite;
}

.loader-grid .cell.d-1 {
  animation-delay: 100ms;
}

.loader-grid .cell.d-2 {
  animation-delay: 200ms;
}

.loader-grid .cell.d-3 {
  animation-delay: 300ms;
}

.loader-grid .cell.d-4 {
  animation-delay: 400ms;
}

.loader-grid .cell:nth-child(1) {
  --cell-color: #F5C542;
}

.loader-grid .cell:nth-child(2) {
  --cell-color: #F2B83A;
}

.loader-grid .cell:nth-child(3) {
  --cell-color: #F2A832;
}

.loader-grid .cell:nth-child(4) {
  --cell-color: #F29B2C;
}

.loader-grid .cell:nth-child(5) {
  --cell-color: #F28C28;
}

.loader-grid .cell:nth-child(6) {
  --cell-color: #E87E22;
}

.loader-grid .cell:nth-child(7) {
  --cell-color: #D87518;
}

.loader-grid .cell:nth-child(8) {
  --cell-color: #CC6A12;
}

.loader-grid .cell:nth-child(9) {
  --cell-color: #C0600E;
}

@keyframes ripple {
  0% {
    background-color: transparent;
  }

  30% {
    background-color: var(--cell-color);
  }

  60% {
    background-color: transparent;
  }

  100% {
    background-color: transparent;
  }
}

/* ------------------------------ 2. RESET -------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--gray-600);
  background: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  color: var(--graphite);
  margin: 0 0 var(--sp-4);
  line-height: 1.2;
  font-weight: 700;
}

p {
  margin: 0 0 var(--sp-4);
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-fast);
}

img {
  max-width: 100%;
  display: block;
}

button {
  font: inherit;
  cursor: pointer;
}

input,
select,
textarea,
button {
  font-family: inherit;
}

sup {
  font-size: .55em;
  vertical-align: super;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--graphite);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 8px 0;
  font-family: var(--font-head);
  font-weight: 600;
}

.skip-link:focus {
  left: 0;
}

/* Ícones inline */
.icon,
svg {
  flex-shrink: 0;
}

svg:not([fill]) {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon {
  width: 18px;
  height: 18px;
}

/* --------------------------- 3. LAYOUT BASE ----------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--narrow {
  max-width: 860px;
}

.section {
  padding-block: var(--sp-8);
}

.section--alt {
  background: var(--gray-100);
}

.section__head {
  max-width: 720px;
  margin: 0 auto var(--sp-7);
  text-align: center;
}

.section__lead {
  font-size: 16px;
  color: var(--gray-600);
  margin-bottom: 0;
}

.section__title {
  font-size: 28px;
  margin-bottom: var(--sp-3);
}

.grid-2 {
  display: grid;
  gap: var(--sp-7);
  align-items: center;
}

.label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 var(--sp-2);
}

.label--light {
  color: var(--yellow);
}

.rule {
  display: block;
  width: 64px;
  height: 3px;
  border-radius: 3px;
  background: var(--brand-gradient);
  margin: 0 0 var(--sp-5);
}

.rule--center {
  margin-inline: auto;
}

/* Placeholder de imagem (usado quando o arquivo real ainda não existe) */
.ph {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  min-height: 180px;
  background:
    repeating-linear-gradient(135deg, #e9eaec 0 12px, #e2e3e6 12px 24px);
  color: #8b8e96;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .6px;
  text-transform: uppercase;
  padding: var(--sp-4);
  word-break: break-word;
}

.ph::before {
  content: "⬚ ";
}

/* ------------------------------ 4. BOTÕES ------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 13px 24px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--r-btn);
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
  text-align: center;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--orange-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(242, 140, 40, .28);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--ghost {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .75);
  color: var(--white);
  backdrop-filter: blur(2px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, .18);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  border-color: var(--orange);
  color: var(--orange);
}

.btn--outline:hover {
  background: var(--orange);
  color: var(--white);
}

.btn--lg {
  min-height: 52px;
  padding: 16px 30px;
  font-size: 14px;
}

.btn--block {
  width: 100%;
}

/* ------------------------------ 5. HEADER ------------------------------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow 260ms cubic-bezier(.4, 0, .2, 1);
}

.header.is-stuck {
  box-shadow: var(--shadow-sm);
  border-bottom-color: transparent;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  height: 68px;
  transition: height 260ms cubic-bezier(.4, 0, .2, 1);
}

.header.is-stuck .header__inner {
  height: 64px;
}

body {
  padding-top: 68px;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.logo__img {
  height: 34px;
  width: auto;
  flex-shrink: 0;
  transition: height 260ms cubic-bezier(.4, 0, .2, 1);
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  padding-left: 11px;
  border-left: 1px solid var(--gray-200);
}

.logo__text strong {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .8px;
  color: var(--graphite);
}

.logo__text em {
  font-style: normal;
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-top: 2px;
}

.logo--dark .logo__img {
  height: 40px;
}

.logo--dark .logo__text {
  border-left-color: rgba(255, 255, 255, .18);
}

.logo--dark .logo__text strong {
  color: var(--white);
}

.logo--dark .logo__text em {
  color: var(--gray-400);
}

/* Navegação */
.nav__list {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
}

.nav__link {
  position: relative;
  display: inline-block;
  padding: 6px 0;
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--graphite);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-fast);
}

.nav__link:hover {
  color: var(--orange);
}

.nav__link:hover::after,
.nav__link.is-active::after {
  transform: scaleX(1);
}

.nav__link.is-active {
  color: var(--orange);
}

.nav__close {
  display: none;
}

/* Burger */
.burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 0;
}

.burger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--graphite);
  transition: transform var(--t-fast), opacity var(--t-fast);
}

.burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 98;
  background: rgba(32, 34, 40, .5);
  opacity: 0;
  transition: opacity var(--t-base);
}

.nav-overlay.is-open {
  opacity: 1;
}

/* ------------------------------- 6. HERO -------------------------------- */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding-block: var(--sp-8);
  background: var(--graphite-dark);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media img,
.hero__media .ph {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__media img {
  opacity: 0;
  transition: opacity 600ms ease;
}

.hero__media img.is-loaded {
  opacity: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(20, 22, 28, .86) 0%, rgba(20, 22, 28, .62) 45%, rgba(20, 22, 28, .30) 100%);
}

.hero__inner {
  padding-block: var(--sp-5);
}

.hero__subtitle,
.hero__actions {
  max-width: 640px;
}

.hero__title {
  color: var(--white);
  font-size: clamp(32px, 6.2vw, 60px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.5px;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
  max-width: 20ch;
  text-wrap: balance;
}

.hero__subtitle {
  color: rgba(255, 255, 255, .88);
  font-size: clamp(15px, 2.2vw, 18px);
  max-width: 56ch;
  margin-bottom: var(--sp-6);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}

.hero__actions .btn {
  flex: 1 1 240px;
  max-width: 100%;
}

.hero__note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 9px 14px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .20);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 600;
}

.hero__note .icon {
  color: var(--yellow);
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: none;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .4);
  color: #fff;
  animation: bob 2.2s ease-in-out infinite;
}

.hero__scroll svg {
  width: 20px;
  height: 20px;
}

@keyframes bob {

  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, 6px);
  }
}

/* ------------------------------- 7. SOBRE ------------------------------- */
.sobre__media {
  position: relative;
}

.sobre__media img,
.sobre__media .ph {
  width: 100%;
  border-radius: var(--r-card);
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.badge-exp {
  position: absolute;
  right: 16px;
  bottom: -20px;
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 14px 18px;
  text-align: center;
  border-bottom: 3px solid var(--orange);
}

.badge-exp strong {
  display: block;
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  color: var(--graphite);
  line-height: 1;
}

.badge-exp span {
  display: block;
  font-family: var(--font-head);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-top: 4px;
}

.sobre__body {
  padding-top: var(--sp-6);
}

.checklist {
  margin: 0 0 var(--sp-6);
  display: grid;
  gap: 10px;
}

.checklist li {
  position: relative;
  padding-left: 28px;
  font-size: 16px;
  color: var(--gray-600);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--orange-soft);
  box-shadow: inset 0 0 0 2px var(--orange);
}

.checklist li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: calc(.45em + 5px);
  width: 6px;
  height: 3px;
  border-left: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: rotate(-45deg);
}

/* ------------------------------ 8. NÚMEROS ------------------------------ */
.stats {
  background: var(--graphite);
  padding-block: var(--sp-7);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5) var(--sp-4);
}

.stat {
  text-align: center;
  position: relative;
}

.stat strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(28px, 6vw, 40px);
  color: var(--white);
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--gray-400);
}

.stat::after {
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  border-radius: 3px;
  background: var(--orange);
  margin: 12px auto 0;
}

.stat:nth-child(2)::after {
  background: var(--yellow);
}

.stat:nth-child(4)::after {
  background: var(--magenta);
}

/* ------------------------------ 9. SERVIÇOS ----------------------------- */
.tabs {
  display: flex;
  gap: 10px;
  margin-bottom: var(--sp-6);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
  scroll-snap-type: x proximity;
}

.tabs::-webkit-scrollbar {
  display: none;
}

.tab {
  flex: 0 0 auto;
  scroll-snap-align: start;
  padding: 13px 20px;
  min-height: 46px;
  background: var(--white);
  color: var(--gray-600);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-btn);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: border-color var(--t-fast), color var(--t-fast), box-shadow var(--t-fast);
}

.tab:hover {
  color: var(--orange);
  border-color: var(--orange);
}

.tab.is-active {
  color: var(--graphite);
  border-color: var(--orange);
  box-shadow: inset 0 -3px 0 var(--orange), var(--shadow-sm);
}

.panel {
  display: none;
  background: var(--white);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.panel.is-active {
  display: grid;
  animation: fadeUp 400ms ease both;
}

.panel__body {
  padding: var(--sp-6) var(--sp-5);
}

.panel__body h3 {
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: .3px;
}

.panel__body h3::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  border-radius: 3px;
  background: var(--orange);
  margin-top: 12px;
}

.panel__media img,
.panel__media .ph {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* ------------------------------- 10. CTA -------------------------------- */
.cta {
  position: relative;
  isolation: isolate;
  padding-block: var(--sp-9);
  text-align: center;
  background: var(--graphite-dark);
  overflow: hidden;
}

.cta__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.cta__media img,
.cta__media .ph {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(32, 34, 40, .90), rgba(52, 55, 64, .88));
}

.cta__inner {
  max-width: 720px;
}

.cta h2 {
  color: var(--white);
  text-transform: uppercase;
  font-size: clamp(24px, 4.6vw, 38px);
  font-weight: 800;
  line-height: 1.15;
}

.cta p {
  color: rgba(255, 255, 255, .85);
  font-size: 17px;
  margin-bottom: var(--sp-6);
}

.cta__note {
  margin: var(--sp-4) 0 0 !important;
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--yellow) !important;
}

/* ----------------------------- 11. PROJETOS ----------------------------- */
.carousel {
  position: relative;
}

.carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: var(--sp-5);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: var(--sp-2);
}

.carousel__track::-webkit-scrollbar {
  display: none;
}

.carousel__track>* {
  scroll-snap-align: start;
}

.carousel__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}

.carousel__btn {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  color: var(--graphite);
  border: 1px solid var(--gray-200);
  transition: border-color var(--t-fast), color var(--t-fast), transform var(--t-fast);
}

.carousel__btn svg {
  width: 20px;
  height: 20px;
}

.carousel__btn:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-1px);
}

.carousel__btn[disabled] {
  opacity: .35;
  pointer-events: none;
}

.carousel__dots {
  display: flex;
  gap: 7px;
}

.carousel__dots i {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gray-200);
  transition: background var(--t-fast), width var(--t-fast);
}

.carousel__dots i.is-active {
  background: var(--orange);
  width: 20px;
  border-radius: 99px;
}

.project {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--r-card);
  aspect-ratio: 3/4;
  display: flex;
  align-items: flex-end;
  background: var(--graphite);
}

.project img,
.project .ph {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-base);
}

.project__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(20, 22, 28, .10) 25%, rgba(20, 22, 28, .85) 100%);
  transition: background var(--t-base);
}

.project__body {
  padding: var(--sp-5);
  color: var(--white);
  width: 100%;
  transition: transform var(--t-base);
}

.project__tag {
  display: inline-block;
  margin: 0 0 8px;
  font-family: var(--font-head);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--yellow);
}

.project__body h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.project__desc {
  color: rgba(255, 255, 255, .82);
  font-size: 14.5px;
  margin-bottom: var(--sp-3);
}

.project__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--orange);
}

.project:hover img,
.project:hover .ph {
  transform: scale(1.03);
}

.project:hover .project__overlay {
  background: linear-gradient(180deg, rgba(20, 22, 28, .25) 20%, rgba(20, 22, 28, .92) 100%);
}

.project:hover .project__body {
  transform: translateY(-4px);
}

/* ----------------------------- 12. CLIENTES ----------------------------- */
.carousel--logos .carousel__track {
  grid-auto-columns: calc(50% - (var(--sp-5) / 2));
}

.client {
  display: grid;
  place-items: center;
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--gray-200);
  padding: var(--sp-5) var(--sp-4);
  min-height: 110px;
}

.client img,
.client .ph {
  max-height: 56px;
  width: auto;
  min-height: 0;
  opacity: .75;
  filter: grayscale(1);
  transition: opacity var(--t-fast), filter var(--t-fast);
}

.client .ph {
  min-height: 56px;
  width: 100%;
}

.client:hover img,
.client:hover .ph {
  opacity: 1;
  filter: none;
}

/* -------------------------- 13. SERVIÇOS DESTAQUE ----------------------- */
.destaques__grid {
  display: grid;
  gap: var(--sp-4);
}

.destaque {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: 190px;
  border-radius: 8px;
  background: var(--graphite);
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.destaque img,
.destaque .ph {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-base);
}

.destaque__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(20, 22, 28, .70);
  transition: background var(--t-base);
}

.destaque__body {
  padding: var(--sp-5);
  width: 100%;
}

.destaque__title {
  display: block;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: .4px;
}

.destaque__title::after {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  border-radius: 3px;
  background: var(--orange);
  margin-top: 10px;
  transition: width var(--t-base);
}

.destaque__link {
  display: block;
  margin-top: 10px;
  font-family: var(--font-head);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--orange);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--t-base), transform var(--t-base);
}

.destaque:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.destaque:hover img,
.destaque:hover .ph {
  transform: scale(1.03);
}

.destaque:hover .destaque__overlay {
  background: rgba(20, 22, 28, .80);
}

.destaque:hover .destaque__title::after {
  width: 56px;
}

.destaque:hover .destaque__link,
.destaque:focus-visible .destaque__link {
  opacity: 1;
  transform: none;
}

/* ---------------------------- 14. BENEFÍCIOS ---------------------------- */
.beneficios__grid {
  display: grid;
  gap: var(--sp-4);
}

.benefit {
  background: var(--white);
  border-radius: var(--r-card);
  padding: var(--sp-5);
  border: 1px solid var(--gray-200);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}

.benefit__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--orange-soft);
  color: var(--orange);
  margin-bottom: var(--sp-4);
}

.benefit__icon svg {
  width: 26px;
  height: 26px;
}

.benefit h3 {
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: .3px;
  margin-bottom: 10px;
}

.benefit p {
  margin: 0;
  font-size: 15.5px;
}

.benefit:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

/* ---------------------------- 15. ATUAÇÃO ------------------------------- */
.atuacao__media img,
.atuacao__media .ph {
  width: 100%;
  border-radius: var(--r-card);
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.atuacao__highlight {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  border-radius: var(--r-md);
  background: var(--orange-soft);
  color: var(--graphite);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: var(--sp-5);
}

.atuacao__highlight .icon {
  color: var(--orange);
}

/* ---------------------------- 17. PROCESSO ------------------------------ */
.processo__grid {
  display: grid;
  gap: var(--sp-4);
  counter-reset: step;
}

.step {
  position: relative;
  background: var(--white);
  border-radius: var(--r-card);
  border: 1px solid var(--gray-200);
  padding: var(--sp-5);
  overflow: hidden;
}

.step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--brand-gradient);
}

.step__num {
  display: block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--orange);
  margin-bottom: 10px;
}

.step h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.step p {
  margin: 0;
  font-size: 15px;
}

/* ------------------------------- 18. FAQ -------------------------------- */
.faq__list {
  display: grid;
  gap: 12px;
}

.faq__item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.faq__item h3 {
  margin: 0;
  font-size: inherit;
}

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  width: 100%;
  min-height: 56px;
  padding: 16px 18px;
  background: none;
  border: 0;
  text-align: left;
  font-family: var(--font-head);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--graphite);
  transition: color var(--t-fast);
}

.faq__q:hover {
  color: var(--orange);
}

.faq__chev {
  width: 20px;
  height: 20px;
  color: var(--orange);
  transition: transform var(--t-base);
}

.faq__q[aria-expanded="true"] {
  color: var(--orange);
}

.faq__q[aria-expanded="true"] .faq__chev {
  transform: rotate(180deg);
}

.faq__item.is-open {
  border-color: var(--orange);
  box-shadow: var(--shadow-sm);
}

.faq__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--t-base);
}

.faq__a p {
  margin: 0;
  padding: 0 18px 18px;
  font-size: 15.5px;
}

/* ----------------------------- 19. CONTATO ------------------------------ */
.contato__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-7);
}

.contato__actions .icon {
  width: 20px;
  height: 20px;
}

.contato__rule {
  margin: 0;
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--orange);
}

.contato__info {
  display: grid;
  gap: var(--sp-5);
  max-width: 920px;
  margin-inline: auto;
}

.contato__info li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--gray-100);
  border-radius: var(--r-md);
}

.contato__info .icon {
  width: 20px;
  height: 20px;
  color: var(--orange);
  margin-top: 2px;
}

.contato__info span {
  display: flex;
  flex-direction: column;
  font-size: 15.5px;
  min-width: 0;
}

.contato__info strong {
  font-family: var(--font-head);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 2px;
}

.contato__info a {
  word-break: break-word;
}

.contato__info a:hover {
  color: var(--orange);
}

/* ------------------------------ 20. FOOTER ------------------------------ */
.footer {
  position: relative;
  background: var(--graphite-dark);
  color: var(--white);
}

.footer__accent {
  display: block;
  height: 4px;
  background: var(--brand-gradient);
}

.footer__grid {
  display: grid;
  gap: var(--sp-6);
  padding-block: var(--sp-8) var(--sp-6);
}

.footer__brand p {
  color: var(--gray-400);
  font-size: 15px;
  margin-top: var(--sp-4);
}

.footer__badge {
  display: inline-block;
  padding: 9px 14px;
  border-radius: var(--r-md);
  background: rgba(242, 140, 40, .14);
  border: 1px solid rgba(242, 140, 40, .35);
  color: var(--orange) !important;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  margin-top: 0 !important;
}

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: var(--sp-5);
}

.footer__social a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .16);
  color: var(--white);
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
}

.footer__social svg {
  width: 20px;
  height: 20px;
}

.footer__social a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.footer__col h3 {
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--sp-4);
}

.footer__col h3::after {
  content: "";
  display: block;
  width: 32px;
  height: 3px;
  border-radius: 3px;
  background: var(--orange);
  margin-top: 10px;
}

.footer__col ul {
  display: grid;
  gap: 11px;
}

.footer__col li,
.footer__col a {
  color: var(--gray-400);
  font-size: 15px;
}

.footer__col a:hover {
  color: var(--orange);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-block: var(--sp-4);
}

.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.footer__bottom p {
  margin: 0;
  color: var(--gray-400);
  font-size: 13.5px;
}

.footer__bottom ul {
  display: flex;
  gap: var(--sp-4);
}

.footer__bottom a {
  color: var(--gray-400);
  font-size: 13.5px;
}

.footer__bottom a:hover {
  color: var(--orange);
}

/* --------------------- 21. WHATSAPP / VOLTAR AO TOPO -------------------- */
.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;
}

/* Barra lateral de redes — encostada na parede direita da página.
   Recolhida ela fica parcialmente dentro da parede; ao rolar para baixo
   (ou no hover) ela desliza para fora e o WhatsApp revela o rótulo. */
.social-rail {
  position: fixed;
  right: 0;
  bottom: 92px;
  z-index: 95;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 9px;
  pointer-events: none;
}

.rail-btn {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 0;
  height: 52px;
  padding: 0;
  border: 0;
  border-radius: 14px 0 0 14px;
  color: #fff;
  overflow: hidden;
  box-shadow: -4px 6px 18px rgba(20, 22, 28, .20);
  transform: translateX(20px);
  opacity: .62;
  transition:
    transform 400ms cubic-bezier(.34, 1.22, .5, 1),
    opacity 300ms ease,
    gap 340ms cubic-bezier(.4, 0, .2, 1),
    padding-right 340ms cubic-bezier(.4, 0, .2, 1),
    box-shadow var(--t-base);
}

.rail-btn--ig {
  background: radial-gradient(circle at 28% 105%, #FDD86F 0%, #FA7E1E 28%, #E4405F 52%, #C13584 72%, #5B51D8 100%);
}

.rail-btn--wa {
  background: var(--whatsapp);
}

.rail-btn__icon {
  position: relative;
  flex: 0 0 52px;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
}

.rail-btn__icon svg {
  width: 26px;
  height: 26px;
}

.rail-btn--wa .rail-btn__icon svg {
  width: 30px;
  height: 30px;
}

.rail-btn__badge {
  position: absolute;
  top: 5px;
  left: 4px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  display: grid;
  place-items: center;
  border-radius: 99px;
  background: #E5342B;
  color: #fff;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 0 0 2px var(--whatsapp);
}

.rail-btn__label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.2;
  text-align: left;
  white-space: nowrap;
  max-width: 0;
  opacity: 0;
  transition: max-width 340ms cubic-bezier(.4, 0, .2, 1), opacity 220ms ease;
}

.rail-btn__label strong {
  font-weight: 700;
  font-size: 14.5px;
}

/* estado expandido: rolando para baixo, ou hover/foco em qualquer botão */
.social-rail.is-out .rail-btn,
.rail-btn:hover,
.rail-btn:focus-visible {
  transform: none;
  opacity: 1;
  box-shadow: -6px 10px 26px rgba(20, 22, 28, .26);
}

.social-rail.is-out .rail-btn--wa,
.rail-btn--wa:hover,
.rail-btn--wa:focus-visible {
  gap: 11px;
  padding-right: 20px;
}

.social-rail.is-out .rail-btn--wa .rail-btn__label,
.rail-btn--wa:hover .rail-btn__label,
.rail-btn--wa:focus-visible .rail-btn__label {
  max-width: 180px;
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {

  .rail-btn,
  .rail-btn__label {
    transition: none;
  }
}

/* Popup */
.wa-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: var(--sp-4);
}

.wa-modal[hidden] {
  display: none;
}

.wa-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 22, 28, .62);
  opacity: 0;
  transition: opacity var(--t-base);
}

.wa-modal.is-open .wa-modal__backdrop {
  opacity: 1;
}

.wa-modal__box {
  position: relative;
  width: 100%;
  max-width: 400px;
  background: var(--gray-100);
  border-radius: var(--r-card);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .35);
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px) scale(.97);
  transition: opacity var(--t-base), transform var(--t-base);
}

.wa-modal.is-open .wa-modal__box {
  opacity: 1;
  transform: none;
}

.wa-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  border: 0;
  color: #fff;
  transition: background var(--t-fast);
}

.wa-modal__close svg {
  width: 18px;
  height: 18px;
}

.wa-modal__close:hover {
  background: rgba(255, 255, 255, .32);
}

.wa-modal__head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 54px 20px 20px;
  background: #128C7E;
  color: #fff;
}

.wa-modal__avatar {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
  padding: 9px;
}

.wa-modal__avatar img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.wa-modal__id {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.wa-modal__id strong {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
}

.wa-modal__id span {
  font-size: 13px;
  color: rgba(255, 255, 255, .85);
  overflow: hidden;
  text-overflow: ellipsis;
}

.wa-modal__status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px !important;
  margin-top: 2px;
}

.wa-modal__status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8FE39B;
}

.wa-modal__body {
  padding: 18px 20px 22px;
  display: grid;
  gap: 12px;
}

.wa-modal__lead {
  margin: 0;
  padding: 12px 14px;
  background: #FFF6E0;
  border-radius: 8px;
  text-align: center;
  color: var(--gray-600);
  font-size: 14.5px;
}

.wa-field {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 99px;
  padding: 0 18px;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.wa-field .icon {
  color: var(--whatsapp);
  width: 20px;
  height: 20px;
}

.wa-field input {
  flex: 1;
  min-width: 0;
  min-height: 48px;
  border: 0;
  background: none;
  outline: none;
  font-size: 15px;
  color: var(--graphite);
}

.wa-field input::placeholder {
  color: #9b9ea6;
}

.wa-field:focus-within {
  border-color: var(--whatsapp);
  box-shadow: 0 0 0 3px rgba(37, 211, 102, .18);
}

.wa-field.has-error {
  border-color: #c8322b;
}

.wa-modal__fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

.wa-modal__question {
  display: block;
  width: 100%;
  margin: 0 0 10px;
  padding: 11px 14px;
  background: #FFF6E0;
  border-radius: 8px;
  text-align: center;
  color: var(--gray-600);
  font-size: 14px;
}

.wa-radios {
  display: flex;
  justify-content: center;
  gap: 26px;
}

.wa-radios label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  cursor: pointer;
  font-size: 15px;
  color: var(--graphite);
}

.wa-radios input {
  width: 18px;
  height: 18px;
  accent-color: var(--whatsapp);
}

.wa-modal__error {
  margin: -6px 0 0;
  font-size: 12.5px;
  color: #c8322b;
  text-align: center;
}

.wa-modal__error:empty {
  display: none;
}

/* resposta exibida só depois do clique em Enviar */
.wa-result {
  padding: 26px 24px 28px;
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.wa-result[hidden] {
  display: none;
}

.wa-result__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--orange-soft);
  color: var(--orange);
}

.wa-result__icon svg {
  width: 28px;
  height: 28px;
}

.wa-result__text {
  margin: 0;
  font-size: 15px;
  color: var(--graphite);
  line-height: 1.55;
}

.wa-result__text strong {
  font-family: var(--font-head);
}

.wa-result__btn {
  min-height: 44px;
  padding: 11px 28px;
  border: 1px solid var(--gray-200);
  border-radius: 99px;
  background: var(--white);
  color: var(--graphite);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  transition: border-color var(--t-fast), color var(--t-fast);
}

.wa-result__btn:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.wa-send {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 30px;
  border: 0;
  border-radius: 99px;
  background: var(--whatsapp);
  color: #fff;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(37, 211, 102, .32);
  transition: background var(--t-fast), transform var(--t-fast);
}

.wa-send svg {
  width: 19px;
  height: 19px;
}

.wa-send:hover {
  background: #1FBA5A;
  transform: translateY(-1px);
}

body.wa-open {
  overflow: hidden;
}

.to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 94;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  color: var(--graphite);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--t-fast), transform var(--t-fast), visibility var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}

.to-top svg {
  width: 20px;
  height: 20px;
}

.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.to-top:hover {
  color: var(--orange);
  border-color: var(--orange);
}

/* ---------------------------- 22. ANIMAÇÕES ----------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================================
   23. RESPONSIVO
   ========================================================================== */

/* ----- >= 640px ----- */
@media (min-width:640px) {
  .destaques__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .beneficios__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contato__info {
    grid-template-columns: repeat(2, 1fr);
  }

  .processo__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .carousel__track {
    grid-auto-columns: calc(50% - (var(--sp-5) / 2));
  }

  .carousel--logos .carousel__track {
    grid-auto-columns: calc(33.333% - (var(--sp-5) * 2 / 3));
  }

  .hero__actions .btn {
    flex: 0 1 auto;
  }

  .footer__bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ----- >= 768px (tablet) ----- */
@media (min-width:768px) {
  :root {
    --gutter: 32px;
  }

  body {
    font-size: 17px;
  }

  .section {
    padding-block: var(--sp-9);
  }

  .section__title {
    font-size: 34px;
  }

  .hero {
    min-height: 600px;
  }

  .hero__scroll {
    display: grid;
  }

  .footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer__col--contact {
    grid-column: 2 / -1;
  }

  .panel.is-active {
    grid-template-columns: 1.05fr .95fr;
  }

  .panel__body {
    padding: var(--sp-7) var(--sp-6);
    align-self: center;
  }

  .destaques__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .processo__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .carousel__track {
    grid-auto-columns: calc(50% - (var(--sp-5) / 2));
  }

  .carousel--logos .carousel__track {
    grid-auto-columns: calc(25% - (var(--sp-5) * 3 / 4));
  }

  .stats__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .stat:not(:last-child)::before {
    content: "";
    position: absolute;
    right: calc(var(--sp-4) / -2);
    top: 10%;
    bottom: 10%;
    width: 1px;
    background: rgba(255, 255, 255, .12);
  }
}

/* ----- >= 1024px (desktop) ----- */
@media (min-width:1024px) {
  :root {
    --gutter: 24px;
    --header-h: 88px;
  }

  body {
    padding-top: 84px;
  }

  .header__inner {
    height: 84px;
  }

  .header.is-stuck .header__inner {
    height: 74px;
  }

  .logo__img {
    height: 40px;
  }

  .header.is-stuck .logo__img {
    height: 34px;
  }

  .burger {
    display: none;
  }

  .nav {
    display: block !important;
  }

  .section {
    padding-block: var(--sp-10);
  }

  .section__title {
    font-size: 40px;
  }

  .section__head {
    margin-bottom: var(--sp-8);
  }

  .hero {
    min-height: 660px;
  }

  .hero__inner {
    padding-block: var(--sp-7);
  }

  .grid-2 {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
  }

  .sobre__body {
    padding-top: 0;
  }

  .badge-exp {
    right: -24px;
    bottom: 24px;
    padding: 18px 22px;
  }

  .badge-exp strong {
    font-size: 32px;
  }

  .beneficios__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-5);
  }

  .beneficios__grid .benefit {
    padding: var(--sp-6);
  }

  .processo__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-5);
  }

  .contato__info {
    grid-template-columns: repeat(3, 1fr);
  }

  .destaques__grid {
    gap: var(--sp-5);
  }

  .destaque {
    min-height: 230px;
  }

  .carousel__track {
    grid-auto-columns: calc(33.333% - (var(--sp-5) * 2 / 3));
  }

  .carousel--logos .carousel__track {
    grid-auto-columns: calc(20% - (var(--sp-5) * 4 / 5));
  }

  .footer__grid {
    grid-template-columns: 1.7fr 1fr 1fr 1.3fr;
    gap: var(--sp-7);
  }

  .footer__col--contact {
    grid-column: auto;
  }

  .social-rail {
    gap: 10px;
    bottom: 104px;
  }

  .rail-btn {
    height: 58px;
    border-radius: 16px 0 0 16px;
  }

  .rail-btn__icon {
    flex-basis: 58px;
    width: 58px;
    height: 58px;
  }

  .rail-btn__icon svg {
    width: 28px;
    height: 28px;
  }

  .rail-btn--wa .rail-btn__icon svg {
    width: 32px;
    height: 32px;
  }

  .to-top {
    right: 24px;
    bottom: 24px;
  }
}

/* ----- >= 1280px ----- */
@media (min-width:1280px) {
  :root {
    --container: 1280px;
  }

  .section__title {
    font-size: 42px;
  }
}

/* ----- Impressão ----- */
@media print {

  .header,
  .wa,
  .to-top,
  .carousel__nav,
  .hero__scroll {
    display: none !important;
  }

  body {
    padding-top: 0;
    color: #000;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================================
   24. MENU MOBILE (< 1024px)  — declarado por último para vencer especificidade
   ========================================================================== */
@media (max-width:1023.98px) {

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    width: min(340px, 88vw);
    background: var(--white);
    box-shadow: -10px 0 40px rgba(0, 0, 0, .18);
    padding: var(--sp-7) var(--sp-5) var(--sp-6);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--t-base);
  }

  .nav.is-open {
    transform: none;
  }

  .nav__close {
    display: grid;
    place-items: center;
    position: absolute;
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--gray-100);
    border: 0;
    color: var(--graphite);
  }

  .nav__close svg {
    width: 22px;
    height: 22px;
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-top: var(--sp-5);
  }

  .nav__list li+li {
    border-top: 1px solid var(--gray-200);
  }

  .nav__link {
    display: block;
    padding: 16px 4px;
    font-size: 15px;
    letter-spacing: .8px;
  }

  .nav__link::after {
    left: 4px;
    right: auto;
    width: 26px;
    bottom: 10px;
  }

  body.nav-open {
    overflow: hidden;
  }
}