:root {
  --black: #050505;
  --black-soft: #0a0a0a;
  --gold: #d4af37;
  --gold-bright: #f6cd1a;
  --white: #f5f5f2;
  --muted: rgba(245, 245, 242, 0.72);
  --header-height: 96px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--black);
  color: var(--white);
  font-family: "Karla", Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
}

body.menu-open {
  overflow: hidden;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--black);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("../images/hero-bg.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.015);
  animation: heroZoom 8s ease-out both;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.46) 56%, rgba(0, 0, 0, 0.58) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.03) 48%, rgba(0, 0, 0, 0.24) 100%);
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  box-shadow: inset 0 -120px 140px rgba(0, 0, 0, 0.26);
}

.site-header {
  position: relative;
  z-index: 20;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px clamp(24px, 5vw, 80px) 10px;
}

.site-header__brand {
  display: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 30px);
}

.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.01em;
  transition: color 220ms ease, transform 220ms ease;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 0;
  height: 1px;
  background: var(--gold-bright);
  transform: translateX(-50%);
  transition: width 220ms ease;
}

.nav__link:hover,
.nav__link:focus-visible,
.nav__link.is-active {
  color: #fff;
}

.nav__link:hover::after,
.nav__link:focus-visible::after,
.nav__link.is-active::after {
  width: 22px;
}

.nav__divider {
  width: 2px;
  height: 31px;
  background: linear-gradient(180deg, transparent 0%, var(--gold) 22%, var(--gold) 78%, transparent 100%);
  opacity: 0.92;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: rgba(5, 5, 5, 0.4);
  color: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 220ms ease;
}

.hero__content {
  position: relative;
  z-index: 5;
  align-self: center;
  justify-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100%, 760px);
  padding: 0 24px clamp(88px, 12vh, 128px);
  transform: translateY(-2vh);
}

.hero__logo {
  display: block;
  width: clamp(235px, 22vw, 310px);
  height: auto;
  filter:
    drop-shadow(0 12px 24px rgba(0, 0, 0, 0.38))
    drop-shadow(0 0 10px rgba(246, 205, 26, 0.08));
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  animation: revealLogo 900ms 180ms cubic-bezier(.2,.72,.24,1) forwards;
  user-select: none;
  -webkit-user-drag: none;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3.6vw, 52px);
  margin-top: clamp(26px, 3.2vh, 38px);
  opacity: 0;
  transform: translateY(14px);
  animation: revealActions 760ms 620ms ease forwards;
}

.button {
  --mag-x: 0px;
  --mag-y: 0px;
  --lift: 0px;
  position: relative;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.045em;
  transform: translate3d(var(--mag-x), calc(var(--mag-y) + var(--lift)), 0);
  transition:
    transform 180ms cubic-bezier(.2,.8,.2,1),
    background-color 240ms ease,
    color 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease;
  will-change: transform;
}

.button:hover {
  --lift: -4px;
}

.button:active {
  --lift: -1px;
  transition-duration: 80ms;
}

.button:focus-visible,
.nav__link:focus-visible,
.hero__scroll:focus-visible,
.menu-toggle:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 5px;
}

/* Botão principal: brilho líquido + halo dourado */
.button--gold {
  min-width: 154px;
  padding: 0 27px;
  background: linear-gradient(110deg, #d4af37 0%, #ffdf4d 42%, #f6cd1a 62%, #c89d16 100%);
  background-size: 220% 100%;
  color: #080808;
  border: 1px solid rgba(255, 226, 93, 0.92);
  font-weight: 600;
  box-shadow:
    0 9px 24px rgba(0, 0, 0, 0.28),
    0 0 0 rgba(246, 205, 26, 0);
  animation: goldBreath 4.2s ease-in-out infinite;
}

.button--gold::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -2;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.85), transparent);
  transform: translateX(-140%) skewX(-18deg);
  width: 55%;
  transition: transform 700ms cubic-bezier(.2,.75,.2,1);
  pointer-events: none;
}

.button--gold::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border: 1px solid rgba(255,255,255,.18);
  pointer-events: none;
}

.button--gold:hover {
  background-position: 100% 0;
  box-shadow:
    0 15px 36px rgba(0, 0, 0, 0.34),
    0 0 18px rgba(246, 205, 26, 0.40),
    0 0 48px rgba(246, 205, 26, 0.16);
}

.button--gold:hover::before {
  transform: translateX(310%) skewX(-18deg);
}

/* Botão secundário: linha de energia + seta viva */
.button--ghost {
  min-width: 176px;
  gap: 16px;
  padding: 0 10px 0 14px;
  color: rgba(255, 255, 255, 0.82);
}

.button--ghost::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 48px;
  bottom: 8px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-bright), rgba(246,205,26,.14));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 380ms cubic-bezier(.2,.75,.2,1);
  box-shadow: 0 0 10px rgba(246,205,26,.45);
}

.button--ghost::after {
  content: "";
  position: absolute;
  inset: 5px 0;
  z-index: -1;
  background: radial-gradient(circle at 70% 50%, rgba(246,205,26,.12), transparent 62%);
  opacity: 0;
  transform: scale(.85);
  transition: opacity 320ms ease, transform 320ms ease;
}

.button--ghost svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.15;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition:
    transform 360ms cubic-bezier(.2,.8,.2,1),
    stroke 260ms ease,
    filter 260ms ease;
}

.button--ghost:hover {
  color: #fff;
  text-shadow: 0 0 14px rgba(255,255,255,.16);
}

.button--ghost:hover::before {
  transform: scaleX(1);
}

.button--ghost:hover::after {
  opacity: 1;
  transform: scale(1);
}

.button--ghost:hover svg {
  transform: translateX(9px) scale(1.06);
  stroke: var(--gold-bright);
  filter: drop-shadow(0 0 6px rgba(246,205,26,.65));
  animation: arrowKick 850ms ease-in-out infinite alternate;
}

/* Ripple criado via JS */
.button__ripple {
  position: absolute;
  z-index: 8;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  animation: buttonRipple 680ms ease-out forwards;
  mix-blend-mode: screen;
}

.button--ghost .button__ripple {
  background: rgba(246,205,26,.45);
}

@keyframes goldBreath {
  0%, 100% {
    box-shadow: 0 9px 24px rgba(0,0,0,.28), 0 0 0 rgba(246,205,26,0);
  }
  50% {
    box-shadow: 0 11px 28px rgba(0,0,0,.30), 0 0 20px rgba(246,205,26,.14);
  }
}

@keyframes arrowKick {
  from { transform: translateX(7px) scale(1.03); }
  to   { transform: translateX(11px) scale(1.08); }
}

@keyframes buttonRipple {
  0% {
    opacity: .75;
    transform: translate(-50%, -50%) scale(0);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(22);
  }
}

.hero__scroll {
  position: absolute;
  z-index: 6;
  left: clamp(28px, 6vw, 92px);
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero__scroll i {
  display: block;
  width: 54px;
  height: 1px;
  background: rgba(212, 175, 55, 0.48);
}

@keyframes revealLogo {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes revealActions {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroZoom {
  from { transform: scale(1.035); }
  to { transform: scale(1.015); }
}

@media (max-width: 1080px) {
  :root {
    --header-height: 86px;
  }

  .nav {
    gap: 18px;
  }

  .nav__link {
    font-size: 17px;
  }

  .nav__divider {
    height: 26px;
  }

  .hero__content {
    transform: translateY(-1vh);
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 76px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero::before {
    background-position: 62% center;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.52) 55%, rgba(0, 0, 0, 0.72) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.24) 0%, transparent 70%);
  }

  .site-header {
    justify-content: space-between;
    padding: 14px 18px 8px;
  }

  .site-header__brand {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.52);
    color: var(--gold-bright);
    font-size: 14px;
    letter-spacing: 0.08em;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 31;
  }

  .menu-toggle.is-open span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-toggle.is-open span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .nav {
    position: fixed;
    inset: 0;
    z-index: 30;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 100px 24px 42px;
    background: rgba(5, 5, 5, 0.97);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav__link {
    font-size: 22px;
    letter-spacing: 0.05em;
  }

  .nav__divider {
    width: 44px;
    height: 1px;
    background: rgba(212, 175, 55, 0.58);
  }

  .hero__content {
    padding: 18px 22px 110px;
    transform: translateY(-1vh);
  }

  .hero__logo {
    width: min(76vw, 285px);
  }

  .hero__actions {
    width: 100%;
    flex-direction: column;
    gap: 10px;
    margin-top: 26px;
  }

  .button {
    width: min(100%, 315px);
    min-height: 54px;
    font-size: 15px;
  }

  .button--ghost {
    gap: 12px;
  }

  .hero__scroll {
    left: 22px;
    bottom: 20px;
  }
}

@media (max-width: 420px) {
  .hero::before {
    background-position: 66% center;
  }

  .hero__logo {
    width: min(78vw, 270px);
  }

  .hero__actions {
    margin-top: 22px;
  }
}

@media (max-width: 390px) {
  .budget-modal__intro {
    padding-top: 76px;
  }

  .budget-modal__title {
    max-width: calc(100% - 44px);
    font-size: clamp(54px, 17vw, 66px);
  }

  .budget-modal__text {
    max-width: 100%;
    font-size: 14px;
  }

  .budget-form__header {
    align-items: flex-end;
    gap: 12px;
  }

  .budget-form__header small {
    max-width: 110px;
  }
}

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


/* =========================================================
   SECTION 02 — TRABALHOS / ESTILOS
   ========================================================= */

.portfolio {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #050505;
  padding: clamp(42px, 5.5vw, 86px) clamp(26px, 6.2vw, 118px) clamp(54px, 6vw, 92px);
}

.portfolio__bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("../images/trabalhos-bg.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  filter: grayscale(1) contrast(1.06) brightness(0.56);
}

.portfolio::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.35) 0%, rgba(3, 3, 3, 0.52) 40%, rgba(3, 3, 3, 0.78) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.64) 52%, rgba(0, 0, 0, 0.56) 100%);
}

.portfolio::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 48% 48%, rgba(255, 255, 255, 0.025), transparent 38%),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 72%, rgba(0, 0, 0, 0.38) 100%);
}

.portfolio__inner {
  width: min(100%, 1530px);
  margin: 0 auto;
}

.portfolio__header {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 42px;
  margin: 0 0 clamp(58px, 6vw, 96px);
}

.portfolio__eyebrow {
  margin: 0 0 4px 4px;
  color: rgba(255, 255, 255, 0.95);
  font-family: "League Gothic", Impact, sans-serif;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.025em;
}

.portfolio__title {
  margin: 0;
  color: #fff;
  font-family: "League Gothic", Impact, sans-serif;
  font-size: 96px;
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.portfolio__all {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 clamp(4px, 1.3vw, 24px) 9px 0;
  padding: 12px 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Karla", Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.015em;
  cursor: pointer;
  overflow: visible;
}

.portfolio__all::after {
  content: "";
  position: absolute;
  left: 0;
  right: 48px;
  bottom: 5px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-bright), rgba(246, 205, 26, 0));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 360ms cubic-bezier(.2,.75,.2,1);
}

.portfolio__all svg {
  width: 34px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 320ms cubic-bezier(.2,.8,.2,1), stroke 260ms ease, filter 260ms ease;
}

.portfolio__all:hover,
.portfolio__all:focus-visible {
  color: #fff;
}

.portfolio__all:hover::after,
.portfolio__all:focus-visible::after {
  transform: scaleX(1);
}

.portfolio__all:hover svg,
.portfolio__all:focus-visible svg {
  transform: translateX(8px);
  stroke: var(--gold-bright);
  filter: drop-shadow(0 0 7px rgba(246, 205, 26, 0.5));
}

.portfolio__gallery {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(250px, 0.92fr) minmax(0, 2.08fr);
  gap: 12px;
  width: min(100%, 1260px);
  margin: 0 auto;
}

.portfolio__mosaic {
  min-width: 0;
  display: grid;
  grid-template-rows: minmax(260px, 1.08fr) minmax(250px, 0.92fr);
  gap: 10px;
}

.portfolio__top {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 12px;
  padding-bottom: 10px;
}

.portfolio__top::after {
  content: "";
  position: absolute;
  left: 0;
  right: 6px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(223, 180, 0, 0.95), rgba(223, 180, 0, 0.68));
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.13);
  transform-origin: left center;
}

.portfolio__bottom {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  min-height: 0;
}

.portfolio-card {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  height: 100%;
  padding: 0;
  border: 0;
  background: #080808;
  overflow: hidden;
  cursor: zoom-in;
  isolation: isolate;
}

.portfolio-card:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}

.portfolio-card--feature {
  min-height: 616px;
  padding-right: 10px;
  overflow: visible;
  background: transparent;
}

.portfolio-card--feature::after {
  content: "";
  position: absolute;
  top: -12px;
  right: 0;
  bottom: -16px;
  width: 2px;
  z-index: 5;
  background: linear-gradient(180deg, rgba(223, 180, 0, 0.25), rgba(223, 180, 0, 0.95) 7%, rgba(223, 180, 0, 0.95) 93%, rgba(223, 180, 0, 0.35));
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.12);
}

.portfolio-card--feature > img,
.portfolio-card--feature > .portfolio-card__overlay {
  right: 10px;
}

.portfolio-card--phrase {
  padding-right: 10px;
  overflow: visible;
  background: transparent;
}

.portfolio-card--phrase::after {
  content: "";
  position: absolute;
  top: -12px;
  right: 0;
  bottom: 0;
  width: 2px;
  z-index: 5;
  background: linear-gradient(180deg, rgba(223, 180, 0, 0.35), rgba(223, 180, 0, 0.95) 8%, rgba(223, 180, 0, 0.95) 92%, rgba(223, 180, 0, 0.3));
}

.portfolio-card--phrase > img,
.portfolio-card--phrase > .portfolio-card__overlay {
  right: 10px;
}

.portfolio-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.001);
  filter: saturate(0.97) contrast(1.02);
  transition:
    transform 700ms cubic-bezier(.2,.75,.2,1),
    filter 520ms ease;
  -webkit-user-drag: none;
  user-select: none;
}

.portfolio-card--feature img {
  object-position: center center;
}

.portfolio-card--phrase img {
  object-position: center center;
}

.portfolio-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.00) 38%, rgba(0, 0, 0, 0.70) 100%),
    linear-gradient(120deg, rgba(212, 175, 55, 0.00), rgba(212, 175, 55, 0.05));
  opacity: 0;
  transition: opacity 360ms ease;
  pointer-events: none;
}

.portfolio-card__overlay span {
  color: #fff;
  font-family: "Karla", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  transform: translateY(8px);
  transition: transform 360ms ease;
}

.portfolio-card:hover img,
.portfolio-card:focus-visible img {
  transform: scale(1.045);
  filter: saturate(1.03) contrast(1.05) brightness(0.9);
}

.portfolio-card:hover .portfolio-card__overlay,
.portfolio-card:focus-visible .portfolio-card__overlay {
  opacity: 1;
}

.portfolio-card:hover .portfolio-card__overlay span,
.portfolio-card:focus-visible .portfolio-card__overlay span {
  transform: translateY(0);
}

.portfolio__watermark {
  position: absolute;
  z-index: 1;
  left: -74px;
  top: 52%;
  width: clamp(250px, 22vw, 430px);
  height: auto;
  opacity: 0.88;
  transform: translateY(-4%) rotate(90deg);
  transform-origin: center;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.44));
}

/* Reveal da seção */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 760ms cubic-bezier(.2,.72,.24,1),
    transform 760ms cubic-bezier(.2,.72,.24,1);
}

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

.portfolio__gallery[data-reveal] {
  transition-delay: 120ms;
}

/* =========================================================
   LIGHTBOX — visualização integral dos trabalhos
   ========================================================= */

body.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  grid-template-columns: minmax(54px, 0.3fr) minmax(0, 1fr) minmax(54px, 0.3fr);
  align-items: center;
  gap: 18px;
  padding: clamp(24px, 4vw, 64px);
  background:
    radial-gradient(circle at 50% 45%, rgba(28, 24, 11, 0.24), transparent 36%),
    rgba(0, 0, 0, 0.965);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 260ms ease, visibility 260ms ease;
  backdrop-filter: blur(7px);
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox__figure {
  position: relative;
  margin: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: scale(0.965);
  opacity: 0;
  transition:
    transform 360ms cubic-bezier(.2,.75,.2,1),
    opacity 300ms ease;
}

.lightbox.is-open .lightbox__figure {
  transform: scale(1);
  opacity: 1;
}

.lightbox__image {
  display: block;
  max-width: min(1180px, 82vw);
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  box-shadow:
    0 28px 78px rgba(0, 0, 0, 0.72),
    0 0 0 1px rgba(212, 175, 55, 0.14);
}

.lightbox__caption {
  min-height: 20px;
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-align: center;
}

.lightbox__close {
  position: absolute;
  top: clamp(18px, 3vw, 38px);
  right: clamp(18px, 3vw, 38px);
  z-index: 4;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid rgba(212, 175, 55, 0.46);
  background: rgba(5, 5, 5, 0.62);
  color: #fff;
  cursor: pointer;
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.lightbox__close span {
  position: absolute;
  left: 13px;
  top: 24px;
  width: 24px;
  height: 1px;
  background: currentColor;
}

.lightbox__close span:first-child {
  transform: rotate(45deg);
}

.lightbox__close span:last-child {
  transform: rotate(-45deg);
}

.lightbox__close:hover,
.lightbox__close:focus-visible {
  border-color: var(--gold-bright);
  background: rgba(212, 175, 55, 0.11);
  transform: rotate(4deg);
}

.lightbox__nav {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  justify-self: center;
  transition: color 220ms ease, transform 220ms ease;
}

.lightbox__nav svg {
  width: 38px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lightbox__nav:hover,
.lightbox__nav:focus-visible {
  color: var(--gold-bright);
}

.lightbox__nav--prev:hover {
  transform: translateX(-6px);
}

.lightbox__nav--next:hover {
  transform: translateX(6px);
}

.lightbox__counter {
  position: absolute;
  left: 50%;
  bottom: clamp(17px, 2.4vw, 30px);
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  letter-spacing: 0.12em;
}

@media (max-width: 1180px) {
  .portfolio {
    padding-inline: clamp(24px, 4.5vw, 62px);
  }

  .portfolio__title {
    font-size: clamp(74px, 8vw, 96px);
  }

  .portfolio__gallery {
    width: 100%;
    grid-template-columns: minmax(230px, 0.86fr) minmax(0, 2.14fr);
  }

  .portfolio-card--feature {
    min-height: 560px;
  }

  .portfolio__mosaic {
    grid-template-rows: minmax(245px, 1fr) minmax(245px, 0.95fr);
  }

  .portfolio__watermark {
    left: -116px;
    opacity: 0.65;
  }
}

@media (max-width: 860px) {
  .portfolio {
    min-height: auto;
    padding: 64px 22px 70px;
  }

  .portfolio__bg {
    background-position: 59% center;
  }

  .portfolio::before {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.64) 48%, rgba(0, 0, 0, 0.88) 100%),
      rgba(0, 0, 0, 0.20);
  }

  .portfolio__header {
    align-items: flex-start;
    margin-bottom: 42px;
  }

  .portfolio__title {
    font-size: clamp(62px, 11.5vw, 86px);
  }

  .portfolio__all {
    margin-top: 20px;
    font-size: 14px;
  }

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

  .portfolio-card--feature {
    min-height: min(720px, 104vw);
    padding-right: 0;
  }

  .portfolio-card--feature::after,
  .portfolio-card--phrase::after,
  .portfolio__top::after {
    display: none;
  }

  .portfolio-card--feature > img,
  .portfolio-card--feature > .portfolio-card__overlay,
  .portfolio-card--phrase > img,
  .portfolio-card--phrase > .portfolio-card__overlay {
    right: 0;
  }

  .portfolio__mosaic {
    grid-template-rows: auto auto;
  }

  .portfolio__top {
    grid-template-columns: 1fr 1fr;
    min-height: 280px;
    padding-bottom: 0;
  }

  .portfolio-card--phrase {
    padding-right: 0;
  }

  .portfolio__bottom {
    grid-template-columns: repeat(5, minmax(160px, 1fr));
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(212, 175, 55, 0.62) rgba(255, 255, 255, 0.06);
    padding-bottom: 8px;
  }

  .portfolio__bottom .portfolio-card {
    min-height: 310px;
    scroll-snap-align: start;
  }

  .portfolio__watermark {
    left: -160px;
    top: 37%;
    width: 390px;
    opacity: 0.25;
  }

  .lightbox {
    grid-template-columns: 54px minmax(0, 1fr) 54px;
    padding: 28px 12px 46px;
    gap: 4px;
  }

  .lightbox__image {
    max-width: calc(100vw - 126px);
    max-height: 78vh;
  }
}

@media (max-width: 620px) {
  .portfolio {
    padding: 58px 16px 64px;
  }

  .portfolio__header {
    display: block;
    margin-bottom: 34px;
  }

  .portfolio__eyebrow {
    margin-left: 1px;
    font-size: 16px;
  }

  .portfolio__title {
    font-size: clamp(56px, 18vw, 74px);
    line-height: 0.92;
  }

  .portfolio__all {
    margin: 18px 0 0;
    font-size: 13px;
  }

  .portfolio__top {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 10px;
  }

  .portfolio__top .portfolio-card {
    min-height: 250px;
  }

  .portfolio-card--feature {
    min-height: 118vw;
    max-height: 650px;
  }

  .portfolio__bottom {
    grid-template-columns: repeat(5, minmax(145px, 72vw));
  }

  .portfolio__bottom .portfolio-card {
    min-height: 275px;
  }

  .portfolio__watermark {
    display: none;
  }

  .lightbox {
    display: block;
    padding: 74px 14px 76px;
  }

  .lightbox__figure {
    height: calc(100vh - 150px);
  }

  .lightbox__image {
    max-width: 92vw;
    max-height: 74vh;
  }

  .lightbox__nav {
    position: absolute;
    bottom: 18px;
    z-index: 5;
  }

  .lightbox__nav--prev {
    left: 22px;
  }

  .lightbox__nav--next {
    right: 22px;
  }

  .lightbox__counter {
    bottom: 35px;
  }

  .lightbox__caption {
    max-width: 84vw;
  }
}

/* =========================================================
   SECTION 03 — ORÇAMENTO
   ========================================================= */

.budget {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 760px;
  background:
    radial-gradient(circle at 78% 42%, rgba(212, 175, 55, 0.075), transparent 26%),
    linear-gradient(135deg, #050505 0%, #080808 48%, #030303 100%);
  padding: clamp(74px, 7.6vw, 126px) clamp(26px, 6.2vw, 118px);
}

.budget::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 62%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 62%, transparent 100%);
}

.budget::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  z-index: 2;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(212, 175, 55, 0.16) 12%,
    rgba(246, 205, 26, 0.82) 50%,
    rgba(212, 175, 55, 0.16) 88%,
    transparent 100%
  );
  box-shadow: 0 0 20px rgba(246, 205, 26, 0.12);
}

.budget__glow {
  position: absolute;
  z-index: -1;
  width: min(620px, 48vw);
  aspect-ratio: 1;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(246, 205, 26, 0.095) 0%,
    rgba(212, 175, 55, 0.025) 40%,
    transparent 70%
  );
  filter: blur(4px);
  pointer-events: none;
}

.budget__inner {
  width: min(100%, 1530px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  align-items: center;
  gap: clamp(56px, 7vw, 120px);
}

.budget__content {
  position: relative;
  z-index: 3;
  max-width: 780px;
}

.budget__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  color: var(--gold-bright);
  font-family: "League Gothic", Impact, sans-serif;
  font-size: 19px;
  line-height: 1;
  letter-spacing: 0.04em;
}

.budget__eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
  box-shadow: 0 0 10px rgba(246, 205, 26, 0.45);
}

.budget__title {
  margin: 0;
  color: #fff;
  font-family: "League Gothic", Impact, sans-serif;
  font-size: clamp(78px, 7.1vw, 122px);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}

.budget__title span,
.budget__title strong {
  display: block;
  font: inherit;
}

.budget__title strong {
  width: fit-content;
  margin-top: 7px;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold-bright);
  text-shadow: 0 0 26px rgba(246, 205, 26, 0.08);
}

.budget__lead {
  max-width: 660px;
  margin: 28px 0 34px;
  color: rgba(245, 245, 242, 0.72);
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.55;
}

.budget__details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 30px;
}

.budget-detail {
  position: relative;
  min-height: 144px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
  padding: 18px 17px 17px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.008));
  overflow: hidden;
  transition:
    transform 320ms cubic-bezier(.2,.75,.2,1),
    border-color 320ms ease,
    background 320ms ease;
}

.budget-detail::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold-bright);
  box-shadow: 0 0 12px rgba(246, 205, 26, 0.5);
  transition: width 420ms cubic-bezier(.2,.75,.2,1);
}

.budget-detail:hover {
  transform: translateY(-4px);
  border-color: rgba(246, 205, 26, 0.42);
  background:
    linear-gradient(145deg, rgba(246, 205, 26, 0.055), rgba(255, 255, 255, 0.012));
}

.budget-detail:hover::after {
  width: 100%;
}

.budget-detail__number {
  color: rgba(246, 205, 26, 0.68);
  font-family: "League Gothic", Impact, sans-serif;
  font-size: 23px;
  line-height: 1;
}

.budget-detail strong {
  display: block;
  margin: 1px 0 7px;
  color: #fff;
  font-size: 13px;
  line-height: 1.15;
  letter-spacing: 0.06em;
}

.budget-detail p {
  margin: 0;
  color: rgba(245, 245, 242, 0.56);
  font-size: 12px;
  line-height: 1.45;
}

.budget__cta {
  --mag-x: 0px;
  --mag-y: 0px;
  position: relative;
  width: min(100%, 650px);
  min-height: 86px;
  display: grid;
  grid-template-columns: 52px 1fr 46px;
  align-items: center;
  gap: 16px;
  padding: 15px 20px;
  border: 1px solid rgba(246, 205, 26, 0.78);
  background:
    linear-gradient(110deg, #f6cd1a 0%, #d8ac15 46%, #f6cd1a 100%);
  background-size: 210% 100%;
  color: #080808;
  overflow: hidden;
  transform: translate(var(--mag-x), var(--mag-y));
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.35),
    0 0 0 rgba(246, 205, 26, 0);
  transition:
    transform 220ms cubic-bezier(.2,.75,.2,1),
    box-shadow 320ms ease,
    background-position 520ms cubic-bezier(.2,.75,.2,1);
}

.budget__cta::before {
  content: "";
  position: absolute;
  inset: -100% auto -100% -28%;
  width: 22%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.62),
    transparent
  );
  transform: rotate(19deg) translateX(-260%);
  transition: transform 760ms cubic-bezier(.2,.75,.2,1);
}

.budget__cta:hover,
.budget__cta:focus-visible {
  background-position: 100% 0;
  box-shadow:
    0 22px 56px rgba(0, 0, 0, 0.42),
    0 0 32px rgba(246, 205, 26, 0.2);
}

.budget__cta:hover::before,
.budget__cta:focus-visible::before {
  transform: rotate(19deg) translateX(730%);
}

.budget__cta:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.budget__cta-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(5, 5, 5, 0.28);
  border-radius: 50%;
}

.budget__cta-icon svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.budget__cta-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.budget__cta-copy small {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  opacity: 0.62;
}

.budget__cta-copy strong {
  font-size: clamp(14px, 1.16vw, 18px);
  line-height: 1.12;
  letter-spacing: 0.025em;
}

.budget__cta-arrow {
  justify-self: end;
  transition: transform 320ms cubic-bezier(.2,.75,.2,1);
}

.budget__cta-arrow svg {
  display: block;
  width: 38px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.budget__cta:hover .budget__cta-arrow,
.budget__cta:focus-visible .budget__cta-arrow {
  transform: translateX(7px);
}

.budget__note {
  margin: 12px 0 0;
  color: rgba(245, 245, 242, 0.42);
  font-size: 12px;
  line-height: 1.4;
}

.budget__visual {
  position: relative;
  min-height: 600px;
  isolation: isolate;
}

.budget__photos {
  position: absolute;
  inset: 35px 6px 35px 40px;
}

.budget-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: #0b0b0b;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.52);
}

.budget-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.045);
}

.budget-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.045) brightness(0.88);
  transition:
    transform 700ms cubic-bezier(.2,.75,.2,1),
    filter 500ms ease;
}

.budget-photo:hover img {
  transform: scale(1.045);
  filter: saturate(1) contrast(1.05) brightness(0.94);
}

.budget-photo--one {
  z-index: 1;
  left: 2%;
  top: 7%;
  width: 48%;
  height: 76%;
  transform: rotate(-3.2deg);
}

.budget-photo--two {
  z-index: 3;
  right: 3%;
  top: 0;
  width: 44%;
  height: 48%;
  transform: rotate(2.3deg);
  border-top: 2px solid rgba(246, 205, 26, 0.75);
}

.budget-photo--three {
  z-index: 2;
  right: 0;
  bottom: 3%;
  width: 52%;
  height: 48%;
  transform: rotate(1deg);
  border-right: 2px solid rgba(246, 205, 26, 0.72);
}

.budget__stamp {
  position: absolute;
  z-index: 5;
  right: 1%;
  bottom: 2%;
  width: 190px;
  height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(246, 205, 26, 0.52);
  border-radius: 50%;
  color: var(--gold-bright);
  background: rgba(3, 3, 3, 0.82);
  backdrop-filter: blur(7px);
  transform: rotate(-9deg);
  box-shadow:
    0 0 0 9px rgba(3, 3, 3, 0.48),
    0 0 0 10px rgba(246, 205, 26, 0.12);
}

.budget__stamp::before,
.budget__stamp::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 12px rgba(246, 205, 26, 0.4);
}

.budget__stamp::before {
  top: 18px;
}

.budget__stamp::after {
  bottom: 18px;
}

.budget__stamp span,
.budget__stamp strong,
.budget__stamp small {
  line-height: 0.95;
}

.budget__stamp span {
  font-family: "Karla", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.24em;
}

.budget__stamp strong {
  font-family: "League Gothic", Impact, sans-serif;
  font-size: 42px;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.budget__stamp small {
  font-family: "Karla", Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.38em;
}

.budget__visual-line {
  position: absolute;
  z-index: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(246, 205, 26, 0.72), transparent);
  transform-origin: left center;
}

.budget__visual-line--top {
  width: 72%;
  top: 20px;
  right: 0;
}

.budget__visual-line--bottom {
  width: 82%;
  left: 0;
  bottom: 18px;
}

.budget__visual[data-reveal] {
  transition-delay: 120ms;
}

/* Tablet */
@media (max-width: 1100px) {
  .budget {
    min-height: auto;
  }

  .budget__inner {
    grid-template-columns: 1fr;
    gap: 68px;
  }

  .budget__content {
    max-width: 860px;
  }

  .budget__visual {
    width: min(100%, 760px);
    min-height: 570px;
    margin: 0 auto;
  }

  .budget__photos {
    inset-inline: 50px;
  }
}

/* Mobile */
@media (max-width: 720px) {
  .budget {
    padding: 66px 18px 74px;
  }

  .budget::before {
    background-size: 46px 46px;
    opacity: 0.16;
  }

  .budget__eyebrow {
    font-size: 17px;
  }

  .budget__title {
    font-size: clamp(62px, 19vw, 88px);
    line-height: 0.84;
  }

  .budget__lead {
    margin: 24px 0 27px;
    font-size: 16px;
  }

  .budget__details {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .budget-detail {
    min-height: auto;
    padding: 16px;
  }

  .budget-detail p {
    font-size: 13px;
  }

  .budget__cta {
    min-height: 78px;
    grid-template-columns: 44px 1fr 28px;
    gap: 12px;
    padding: 13px 14px;
  }

  .budget__cta-icon {
    width: 40px;
    height: 40px;
  }

  .budget__cta-copy small {
    font-size: 9px;
  }

  .budget__cta-copy strong {
    font-size: 13px;
  }

  .budget__cta-arrow svg {
    width: 28px;
  }

  .budget__visual {
    min-height: 455px;
  }

  .budget__photos {
    inset: 20px 2px 20px;
  }

  .budget-photo--one {
    left: 0;
    width: 55%;
    height: 74%;
  }

  .budget-photo--two {
    right: 0;
    width: 48%;
    height: 44%;
  }

  .budget-photo--three {
    width: 54%;
    height: 43%;
  }

  .budget__stamp {
    width: 138px;
    height: 138px;
    right: 2%;
    bottom: 0;
  }

  .budget__stamp strong {
    font-size: 32px;
  }

  .budget__stamp span {
    font-size: 9px;
  }

  .budget__stamp small {
    font-size: 8px;
  }
}

@media (max-width: 420px) {
  .budget {
    padding-inline: 15px;
  }

  .budget__title {
    font-size: clamp(58px, 18.5vw, 76px);
  }

  .budget__cta {
    grid-template-columns: 40px 1fr 24px;
  }

  .budget__cta-icon {
    width: 37px;
    height: 37px;
  }

  .budget__cta-copy strong {
    font-size: 12px;
  }

  .budget__visual {
    min-height: 400px;
  }

  .budget__stamp {
    width: 120px;
    height: 120px;
  }

  .budget__stamp strong {
    font-size: 28px;
  }
}

/* =========================================================
   MODAL DE ORÇAMENTO — SECTION 03
   ========================================================= */

body.budget-modal-open {
  overflow: hidden;
}

.budget-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 42px);
  visibility: hidden;
  pointer-events: none;
}

.budget-modal.is-open {
  visibility: visible;
  pointer-events: auto;
}

.budget-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 40%, rgba(212, 175, 55, 0.07), transparent 32%),
    rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity 360ms ease;
}

.budget-modal.is-open .budget-modal__backdrop {
  opacity: 1;
}

.budget-modal__panel {
  position: relative;
  width: min(1180px, 100%);
  max-height: min(860px, calc(100vh - 48px));
  display: grid;
  grid-template-columns: minmax(330px, 0.84fr) minmax(500px, 1.16fr);
  overflow: hidden;
  border: 1px solid rgba(246, 205, 26, 0.24);
  background: #060606;
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.72),
    0 0 0 1px rgba(255, 255, 255, 0.025) inset,
    0 0 60px rgba(212, 175, 55, 0.055);
  opacity: 0;
  transform: translateY(28px) scale(0.975);
  transition:
    opacity 380ms ease,
    transform 520ms cubic-bezier(.16, 1, .3, 1);
}

.budget-modal.is-open .budget-modal__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.budget-modal__panel::before {
  content: "";
  position: absolute;
  z-index: 4;
  left: 0;
  top: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #b58d13, #f6cd1a, #fff1a1);
  box-shadow: 0 0 22px rgba(246, 205, 26, 0.48);
  transition: width 900ms 170ms cubic-bezier(.16, 1, .3, 1);
}

.budget-modal.is-open .budget-modal__panel::before {
  width: 100%;
}

.budget-modal__close {
  position: absolute;
  z-index: 20;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(246, 205, 26, 0.18);
  background: rgba(7, 7, 7, 0.78);
  cursor: pointer;
  transition:
    border-color 240ms ease,
    background 240ms ease,
    transform 240ms ease;
}

.budget-modal__close:hover,
.budget-modal__close:focus-visible {
  border-color: rgba(246, 205, 26, 0.65);
  background: rgba(246, 205, 26, 0.08);
  transform: rotate(4deg);
}

.budget-modal__close:focus-visible {
  outline: 1px solid var(--gold-bright);
  outline-offset: 3px;
}

.budget-modal__close span {
  position: absolute;
  width: 20px;
  height: 1px;
  background: #f5f5f2;
}

.budget-modal__close span:first-child {
  transform: rotate(45deg);
}

.budget-modal__close span:last-child {
  transform: rotate(-45deg);
}

.budget-modal__intro {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 650px;
  padding: clamp(44px, 5vw, 74px);
  overflow: hidden;
  border-right: 1px solid rgba(212, 175, 55, 0.13);
  background:
    radial-gradient(circle at 20% 18%, rgba(246, 205, 26, 0.11), transparent 26%),
    linear-gradient(145deg, #0b0b0b, #040404 78%);
}

.budget-modal__intro::before {
  content: "TG";
  position: absolute;
  z-index: -1;
  left: -28px;
  bottom: -74px;
  color: rgba(246, 205, 26, 0.027);
  font-family: "League Gothic", Impact, sans-serif;
  font-size: 410px;
  line-height: 0.76;
  letter-spacing: -0.04em;
}

.budget-modal__intro::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    transparent,
    rgba(246, 205, 26, 0.54) 35%,
    rgba(246, 205, 26, 0.12) 72%,
    transparent
  );
}

.budget-modal__eyebrow {
  margin: 0 0 16px;
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.budget-modal__title {
  margin: 0;
  color: #f6f6f4;
  font-family: "League Gothic", Impact, sans-serif;
  font-size: clamp(68px, 6vw, 96px);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: 0.01em;
}

.budget-modal__title strong {
  display: block;
  color: transparent;
  font: inherit;
  -webkit-text-stroke: 1.35px var(--gold-bright);
}

.budget-modal__text {
  max-width: 410px;
  margin: 26px 0 34px;
  color: rgba(245, 245, 242, 0.61);
  font-size: 15px;
  line-height: 1.6;
}

.budget-modal__summary {
  display: grid;
  grid-template-columns: auto 1fr 34px auto 1fr 34px auto 1fr;
  align-items: center;
  gap: 8px;
  max-width: 460px;
  padding-top: 21px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.budget-modal__summary span {
  color: var(--gold-bright);
  font-family: "League Gothic", Impact, sans-serif;
  font-size: 25px;
}

.budget-modal__summary p {
  margin: 0;
  color: rgba(245, 245, 242, 0.52);
  font-size: 10px;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.budget-modal__summary i {
  width: 100%;
  height: 1px;
  background: rgba(246, 205, 26, 0.22);
}

.budget-modal__signature {
  margin-top: auto;
  padding-top: 54px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.budget-modal__signature span {
  color: rgba(246, 205, 26, 0.6);
  font-size: 9px;
  letter-spacing: 0.2em;
}

.budget-modal__signature strong {
  color: rgba(245, 245, 242, 0.32);
  font-family: "League Gothic", Impact, sans-serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.budget-form {
  min-height: 650px;
  overflow-y: auto;
  padding: clamp(48px, 5vw, 72px) clamp(28px, 4.8vw, 64px) 42px;
  background:
    radial-gradient(circle at 95% 4%, rgba(246, 205, 26, 0.045), transparent 22%),
    #070707;
  scrollbar-width: thin;
  scrollbar-color: rgba(246, 205, 26, 0.34) #0b0b0b;
}

.budget-form__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 29px;
  padding-right: 50px;
}

.budget-form__header span {
  color: #fff;
  font-family: "League Gothic", Impact, sans-serif;
  font-size: 31px;
  letter-spacing: 0.05em;
}

.budget-form__header small {
  color: rgba(245, 245, 242, 0.34);
  font-size: 10px;
}

.budget-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 16px;
}

.budget-field {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.budget-field--wide {
  margin-top: 18px;
}

.budget-field > span {
  color: rgba(245, 245, 242, 0.66);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.budget-field em {
  color: rgba(245, 245, 242, 0.28);
  font-style: normal;
  font-weight: 400;
}

.budget-field input,
.budget-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 0;
  outline: 0;
  background: rgba(255, 255, 255, 0.025);
  color: #f5f5f2;
  font: inherit;
  font-size: 14px;
  transition:
    border-color 240ms ease,
    background 240ms ease,
    box-shadow 240ms ease;
}

.budget-field input {
  height: 51px;
  padding: 0 15px;
}

.budget-field textarea {
  min-height: 112px;
  resize: vertical;
  padding: 14px 15px;
  line-height: 1.5;
}

.budget-field input::placeholder,
.budget-field textarea::placeholder {
  color: rgba(245, 245, 242, 0.25);
}

.budget-field input:focus,
.budget-field textarea:focus {
  border-color: rgba(246, 205, 26, 0.66);
  background: rgba(246, 205, 26, 0.025);
  box-shadow: 0 0 0 3px rgba(246, 205, 26, 0.045);
}

.budget-field.is-invalid input,
.budget-field.is-invalid textarea {
  border-color: rgba(255, 91, 91, 0.74);
}

.budget-field__error {
  display: none;
  color: #ff8c8c;
  font-size: 10px;
  line-height: 1.2;
}

.budget-field.is-invalid .budget-field__error {
  display: block;
}

.budget-field__hint {
  color: rgba(245, 245, 242, 0.31);
  font-size: 10px;
  line-height: 1.4;
}

.budget-form__footer {
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(260px, 1fr);
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.065);
}

.budget-form__footer > p {
  margin: 0;
  color: rgba(245, 245, 242, 0.3);
  font-size: 10px;
  line-height: 1.45;
}

.budget-form__submit {
  --mag-x: 0px;
  --mag-y: 0px;
  position: relative;
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr 38px;
  align-items: center;
  gap: 14px;
  padding: 12px 18px 12px 20px;
  overflow: hidden;
  border: 1px solid #f6cd1a;
  background: linear-gradient(110deg, #f6cd1a, #d9ae17 48%, #f6cd1a);
  background-size: 210% 100%;
  color: #070707;
  cursor: pointer;
  transform: translate(var(--mag-x), var(--mag-y));
  transition:
    transform 220ms cubic-bezier(.2,.75,.2,1),
    box-shadow 300ms ease,
    background-position 500ms ease;
}

.budget-form__submit::before {
  content: "";
  position: absolute;
  inset: -90% auto -90% -28%;
  width: 19%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.68), transparent);
  transform: rotate(18deg) translateX(-300%);
  transition: transform 720ms cubic-bezier(.2,.75,.2,1);
}

.budget-form__submit:hover,
.budget-form__submit:focus-visible {
  background-position: 100% 0;
  box-shadow: 0 0 34px rgba(246, 205, 26, 0.17);
}

.budget-form__submit:hover::before,
.budget-form__submit:focus-visible::before {
  transform: rotate(18deg) translateX(780%);
}

.budget-form__submit:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.budget-form__submit-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.budget-form__submit-copy small {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  opacity: 0.6;
}

.budget-form__submit-copy strong {
  font-size: 14px;
  line-height: 1.1;
  letter-spacing: 0.025em;
}

.budget-form__submit svg {
  width: 36px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 260ms ease;
}

.budget-form__submit:hover svg,
.budget-form__submit:focus-visible svg {
  transform: translateX(6px);
}

/* Modal — tablet */
@media (max-width: 980px) {
  .budget-modal {
    padding: 16px;
  }

  .budget-modal__panel {
    max-height: calc(100vh - 32px);
    grid-template-columns: 1fr;
    overflow-y: auto;
  }

  .budget-modal__intro {
    min-height: auto;
    padding: 44px 46px 38px;
    border-right: 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.13);
  }

  .budget-modal__intro::before {
    left: auto;
    right: -20px;
    bottom: -120px;
    font-size: 300px;
  }

  .budget-modal__text {
    margin-bottom: 25px;
  }

  .budget-modal__summary {
    max-width: 520px;
  }

  .budget-modal__signature {
    display: none;
  }

  .budget-form {
    min-height: auto;
    overflow: visible;
    padding: 38px 46px 42px;
  }
}

/* Modal — mobile */
@media (max-width: 620px) {
  .budget-modal {
    padding: 0;
    align-items: stretch;
  }

  .budget-modal__panel {
    width: 100%;
    max-height: 100dvh;
    min-height: 100dvh;
    border: 0;
  }

  .budget-modal__close {
    position: fixed;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
  }

  .budget-modal__intro {
    padding: 78px 20px 34px;
  }

  .budget-modal__eyebrow {
    margin-bottom: 14px;
    font-size: 10px;
    line-height: 1.35;
  }

  .budget-modal__title {
    max-width: calc(100% - 54px);
    font-size: clamp(58px, 17.5vw, 76px);
    line-height: 0.9;
    overflow: visible;
  }

  .budget-modal__text {
    max-width: 92%;
    margin: 22px 0 26px;
    color: rgba(245, 245, 242, 0.68);
    font-size: 15px;
    line-height: 1.58;
  }

  .budget-modal__summary {
    grid-template-columns: auto 1fr auto 1fr auto 1fr;
    gap: 7px;
  }

  .budget-modal__summary i {
    display: none;
  }

  .budget-modal__summary p {
    font-size: 8px;
  }

  .budget-form {
    padding: 31px 20px 38px;
  }

  .budget-form__header {
    margin-bottom: 23px;
    padding-right: 0;
  }

  .budget-form__header span {
    font-size: 30px;
    line-height: 1;
  }

  .budget-form__header small {
    color: rgba(245, 245, 242, 0.56);
    font-size: 11px;
    line-height: 1.25;
    text-align: right;
  }

  .budget-form__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .budget-field--wide {
    margin-top: 16px;
  }

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

  .budget-form__submit {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .budget-modal__backdrop,
  .budget-modal__panel,
  .budget-modal__panel::before,
  .budget-form__submit,
  .budget-form__submit::before {
    transition: none !important;
  }
}

/* =========================================================
   SECTION 05 — PROVA SOCIAL / AVALIAÇÕES
   ========================================================= */

.social-proof {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 0%, rgba(246, 205, 26, 0.055), transparent 25%),
    linear-gradient(180deg, #060606 0%, #030303 100%);
  padding: clamp(72px, 7vw, 108px) 0 clamp(68px, 6vw, 96px);
  border-top: 1px solid rgba(212, 175, 55, 0.16);
}

.social-proof::before {
  content: "05";
  position: absolute;
  z-index: -1;
  right: clamp(16px, 6vw, 110px);
  top: -52px;
  color: rgba(246, 205, 26, 0.022);
  font-family: "League Gothic", Impact, sans-serif;
  font-size: clamp(230px, 25vw, 430px);
  line-height: 1;
  pointer-events: none;
}

.social-proof__noise {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 88%);
  mask-image: linear-gradient(180deg, #000, transparent 88%);
}

.social-proof__header,
.social-proof__bottom {
  width: min(calc(100% - 48px), 1530px);
  margin-inline: auto;
}

.social-proof__header {
  display: grid;
  grid-template-columns: minmax(380px, 1.25fr) minmax(230px, 0.62fr) auto;
  align-items: end;
  gap: clamp(28px, 4vw, 68px);
  margin-bottom: 38px;
}

.social-proof__eyebrow {
  margin: 0 0 11px;
  color: var(--gold-bright);
  font-family: "League Gothic", Impact, sans-serif;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.05em;
}

.social-proof__title {
  margin: 0;
  color: #f5f5f2;
  font-family: "League Gothic", Impact, sans-serif;
  font-size: clamp(72px, 6.7vw, 106px);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: 0.005em;
}

.social-proof__title strong {
  color: transparent;
  font: inherit;
  -webkit-text-stroke: 1.4px var(--gold-bright);
  text-shadow: 0 0 26px rgba(246, 205, 26, 0.055);
}

.social-proof__rating {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 84px;
  padding-left: 24px;
  border-left: 1px solid rgba(246, 205, 26, 0.32);
}

.social-proof__rating-score {
  color: #fff;
  font-family: "League Gothic", Impact, sans-serif;
  font-size: 58px;
  line-height: 0.85;
}

.social-proof__rating-info {
  min-width: 0;
}

.social-proof__stars {
  color: var(--gold-bright);
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.055em;
  text-shadow: 0 0 15px rgba(246, 205, 26, 0.11);
}

.social-proof__rating-info p {
  margin: 8px 0 0;
  color: rgba(245, 245, 242, 0.48);
  font-size: 11px;
  line-height: 1.2;
}

.social-proof__rating-info strong {
  color: rgba(245, 245, 242, 0.84);
  font-weight: 600;
}

.social-proof__controls {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.social-proof__controls > p {
  margin: 0;
  color: rgba(245, 245, 242, 0.36);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.social-proof__arrows {
  display: flex;
  gap: 8px;
}

.social-proof__arrow {
  width: 54px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.22);
  background: rgba(255, 255, 255, 0.018);
  color: rgba(245, 245, 242, 0.78);
  cursor: pointer;
  transition:
    color 240ms ease,
    border-color 240ms ease,
    background 240ms ease,
    transform 240ms ease;
}

.social-proof__arrow:hover,
.social-proof__arrow:focus-visible {
  color: var(--gold-bright);
  border-color: rgba(246, 205, 26, 0.64);
  background: rgba(246, 205, 26, 0.045);
  transform: translateY(-2px);
}

.social-proof__arrow:focus-visible {
  outline: 1px solid var(--gold-bright);
  outline-offset: 3px;
}

.social-proof__arrow svg {
  width: 31px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.review-slider {
  position: relative;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y;
}

.review-slider::-webkit-scrollbar {
  display: none;
}

.review-slider:focus-visible {
  outline: none;
}

.review-slider.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
  user-select: none;
}

.review-slider__track {
  width: max-content;
  display: flex;
  align-items: stretch;
  gap: clamp(16px, 1.7vw, 28px);
  padding-inline:
    max(24px, calc((100vw - min(1530px, calc(100vw - 48px))) / 2));
}

.review-slide {
  position: relative;
  flex: 0 0 clamp(430px, 45vw, 720px);
  min-height: 360px;
  display: grid;
  grid-template-rows: 1fr auto;
  scroll-snap-align: start;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.075);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.008)),
    #090909;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  transition:
    border-color 320ms ease,
    transform 320ms cubic-bezier(.2,.75,.2,1),
    box-shadow 320ms ease;
}

.review-slide:hover {
  border-color: rgba(246, 205, 26, 0.27);
  transform: translateY(-5px);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.42),
    0 0 28px rgba(246, 205, 26, 0.025);
}

.review-slide__index {
  position: absolute;
  z-index: 3;
  top: 15px;
  left: 15px;
  min-width: 38px;
  height: 30px;
  display: grid;
  place-items: center;
  padding: 0 9px;
  border: 1px solid rgba(246, 205, 26, 0.31);
  background: rgba(5, 5, 5, 0.9);
  color: var(--gold-bright);
  font-family: "League Gothic", Impact, sans-serif;
  font-size: 18px;
  line-height: 1;
}

.review-slide__image-wrap {
  min-height: 300px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: clamp(26px, 3vw, 44px) clamp(22px, 3vw, 40px) 20px;
  background:
    radial-gradient(circle at 50% 35%, rgba(255,255,255,.028), transparent 48%),
    #090909;
}

.review-slide__image-wrap img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 310px;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  filter: brightness(0.95) contrast(1.02);
  transition:
    transform 520ms cubic-bezier(.2,.75,.2,1),
    filter 320ms ease;
}

.review-slide:hover .review-slide__image-wrap img {
  transform: scale(1.015);
  filter: brightness(1) contrast(1.02);
}

.review-slide--overview .review-slide__image-wrap img {
  max-height: 250px;
}

.review-slide__footer {
  min-height: 67px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 19px;
  border-top: 1px solid rgba(212, 175, 55, 0.13);
  background: rgba(3, 3, 3, 0.76);
}

.review-slide__footer span {
  color: rgba(246, 205, 26, 0.55);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.review-slide__footer strong {
  overflow: hidden;
  color: rgba(245, 245, 242, 0.76);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.055em;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-slider__spacer {
  flex: 0 0 max(24px, calc((100vw - min(1530px, calc(100vw - 48px))) / 2));
}

.social-proof__progress {
  width: min(calc(100% - 48px), 1530px);
  height: 1px;
  margin: 29px auto 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.075);
}

.social-proof__progress-fill {
  display: block;
  width: 18%;
  height: 100%;
  background: linear-gradient(90deg, #ab8311, var(--gold-bright));
  box-shadow: 0 0 13px rgba(246, 205, 26, 0.37);
  transform-origin: left center;
  transition: width 180ms linear;
}

.social-proof__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 23px;
}

.social-proof__bottom > p {
  max-width: 620px;
  margin: 0;
  color: rgba(245, 245, 242, 0.39);
  font-size: 12px;
  line-height: 1.45;
}

.social-proof__bottom strong {
  color: rgba(245, 245, 242, 0.68);
  font-weight: 500;
}

.social-proof__drag-hint {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(245, 245, 242, 0.28);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.social-proof__drag-hint i {
  position: relative;
  width: 44px;
  height: 1px;
  overflow: hidden;
  background: rgba(246, 205, 26, 0.16);
}

.social-proof__drag-hint i::after {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 42%;
  height: 100%;
  background: var(--gold-bright);
  animation: reviewDragHint 2.2s ease-in-out infinite;
}

@keyframes reviewDragHint {
  0%, 15% { transform: translateX(0); opacity: 0; }
  30% { opacity: 1; }
  70% { opacity: 1; }
  100% { transform: translateX(330%); opacity: 0; }
}

@media (max-width: 980px) {
  .social-proof__header {
    grid-template-columns: 1fr auto;
  }

  .social-proof__rating {
    justify-self: end;
  }

  .social-proof__controls {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-top: 4px;
  }

  .review-slide {
    flex-basis: clamp(470px, 68vw, 650px);
  }
}

@media (max-width: 680px) {
  .social-proof {
    padding-top: 66px;
    padding-bottom: 68px;
  }

  .social-proof__header,
  .social-proof__bottom,
  .social-proof__progress {
    width: calc(100% - 36px);
  }

  .social-proof__header {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 28px;
  }

  .social-proof__eyebrow {
    font-size: 16px;
  }

  .social-proof__title {
    font-size: clamp(66px, 19vw, 88px);
  }

  .social-proof__rating {
    justify-self: stretch;
    min-height: auto;
    padding: 15px 0 15px 17px;
  }

  .social-proof__rating-score {
    font-size: 50px;
  }

  .social-proof__controls {
    grid-column: auto;
    padding-top: 0;
  }

  .review-slider__track {
    gap: 14px;
    padding-inline: 18px;
  }

  .review-slide {
    flex-basis: min(88vw, 460px);
    min-height: 305px;
  }

  .review-slide__image-wrap {
    min-height: 245px;
    padding: 31px 16px 15px;
  }

  .review-slide__image-wrap img {
    max-height: 260px;
  }

  .review-slide--overview .review-slide__image-wrap img {
    max-height: 190px;
  }

  .review-slide__footer {
    min-height: 59px;
    padding: 13px 14px;
  }

  .review-slide__footer span {
    font-size: 8px;
  }

  .review-slide__footer strong {
    max-width: 66%;
    font-size: 9px;
  }

  .review-slider__spacer {
    flex-basis: 4px;
  }

  .social-proof__progress {
    margin-top: 22px;
  }

  .social-proof__bottom {
    align-items: flex-start;
  }

  .social-proof__bottom > p {
    font-size: 11px;
  }

  .social-proof__drag-hint {
    display: none;
  }
}

@media (max-width: 420px) {
  .social-proof__header,
  .social-proof__bottom,
  .social-proof__progress {
    width: calc(100% - 30px);
  }

  .social-proof__rating {
    gap: 14px;
  }

  .social-proof__stars {
    font-size: 17px;
  }

  .social-proof__arrow {
    width: 50px;
    height: 45px;
  }

  .review-slider__track {
    padding-inline: 15px;
  }

  .review-slide {
    flex-basis: 90vw;
  }
}

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

  .social-proof__drag-hint i::after {
    animation: none;
  }
}

/* =========================================================
   SECTION 06 — FAQ + CONTATO FINAL
   ========================================================= */

.faq-contact {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(78px, 7vw, 118px) clamp(22px, 5.8vw, 110px);
  border-top: 1px solid rgba(212, 175, 55, 0.14);
  background:
    radial-gradient(circle at 82% 30%, rgba(246, 205, 26, 0.07), transparent 28%),
    linear-gradient(145deg, #070707 0%, #030303 72%);
}

.faq-contact::before {
  content: "FAQ";
  position: absolute;
  z-index: -2;
  right: -1vw;
  top: -3vw;
  color: rgba(246, 205, 26, 0.022);
  font-family: "League Gothic", Impact, sans-serif;
  font-size: clamp(220px, 28vw, 480px);
  line-height: 0.8;
  letter-spacing: -0.04em;
  pointer-events: none;
}

.faq-contact__glow {
  position: absolute;
  z-index: -1;
  width: min(680px, 48vw);
  aspect-ratio: 1;
  right: -16%;
  bottom: -40%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 205, 26, 0.08), transparent 68%);
  pointer-events: none;
}

.faq-contact__inner {
  width: min(100%, 1530px);
  margin: 0 auto;
}

.faq-contact__header {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: clamp(36px, 6vw, 96px);
  margin-bottom: clamp(45px, 5vw, 72px);
}

.faq-contact__eyebrow {
  margin: 0 0 13px;
  color: var(--gold-bright);
  font-family: "League Gothic", Impact, sans-serif;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.055em;
}

.faq-contact__title {
  margin: 0;
  color: #fff;
  font-family: "League Gothic", Impact, sans-serif;
  font-size: clamp(75px, 7vw, 112px);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: 0.005em;
}

.faq-contact__title strong {
  color: transparent;
  font: inherit;
  -webkit-text-stroke: 1.4px var(--gold-bright);
}

.faq-contact__intro {
  max-width: 440px;
  margin: 0 0 4px;
  color: rgba(245, 245, 242, 0.52);
  font-size: 15px;
  line-height: 1.65;
}

.faq-contact__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.72fr);
  gap: clamp(42px, 6vw, 95px);
  align-items: start;
}

.faq-list {
  border-top: 1px solid rgba(255, 255, 255, 0.095);
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.095);
  transition:
    border-color 260ms ease,
    background 260ms ease;
}

.faq-item.is-open {
  border-color: rgba(246, 205, 26, 0.32);
  background: linear-gradient(90deg, rgba(246, 205, 26, 0.035), transparent 66%);
}

.faq-item__trigger {
  width: 100%;
  min-height: 88px;
  display: grid;
  grid-template-columns: 48px 1fr 38px;
  align-items: center;
  gap: 18px;
  padding: 17px 8px 17px 0;
  border: 0;
  background: transparent;
  color: #fff;
  text-align: left;
  cursor: pointer;
}

.faq-item__number {
  color: rgba(246, 205, 26, 0.58);
  font-family: "League Gothic", Impact, sans-serif;
  font-size: 22px;
  line-height: 1;
}

.faq-item__question {
  font-size: clamp(15px, 1.25vw, 19px);
  font-weight: 500;
  line-height: 1.3;
}

.faq-item__icon {
  position: relative;
  width: 30px;
  height: 30px;
  justify-self: end;
  border: 1px solid rgba(246, 205, 26, 0.18);
  transition:
    border-color 260ms ease,
    transform 360ms cubic-bezier(.2,.75,.2,1),
    background 260ms ease;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 1px;
  background: rgba(245, 245, 242, 0.7);
  transform: translate(-50%, -50%);
  transition: transform 320ms ease, background 260ms ease;
}

.faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-item__icon {
  border-color: rgba(246, 205, 26, 0.56);
  background: rgba(246, 205, 26, 0.055);
  transform: rotate(90deg);
}

.faq-item.is-open .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item.is-open .faq-item__icon::before,
.faq-item.is-open .faq-item__icon::after {
  background: var(--gold-bright);
}

.faq-item__trigger:hover .faq-item__question,
.faq-item__trigger:focus-visible .faq-item__question {
  color: var(--gold-bright);
}

.faq-item__trigger:focus-visible {
  outline: 1px solid rgba(246, 205, 26, 0.55);
  outline-offset: 4px;
}

.faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 420ms cubic-bezier(.2,.75,.2,1),
    opacity 300ms ease;
}

.faq-item__answer > div {
  overflow: hidden;
}

.faq-item.is-open .faq-item__answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-item__answer p {
  max-width: 690px;
  margin: 0;
  padding: 0 56px 25px 66px;
  color: rgba(245, 245, 242, 0.52);
  font-size: 14px;
  line-height: 1.65;
}

.final-cta {
  position: sticky;
  top: 32px;
  padding: clamp(30px, 3.5vw, 48px);
  overflow: hidden;
  border: 1px solid rgba(246, 205, 26, 0.23);
  background:
    linear-gradient(145deg, rgba(246, 205, 26, 0.045), transparent 45%),
    #090909;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.018);
}

.final-cta::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #a9810d, #f6cd1a, #fff0a0);
  box-shadow: 0 0 20px rgba(246, 205, 26, 0.38);
  transition: width 900ms cubic-bezier(.16, 1, .3, 1);
}

.final-cta.is-visible::before {
  width: 100%;
}

.final-cta__label {
  margin: 0 0 16px;
  color: rgba(246, 205, 26, 0.62);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.final-cta__title {
  margin: 0;
  color: #fff;
  font-family: "League Gothic", Impact, sans-serif;
  font-size: clamp(55px, 4.7vw, 78px);
  font-weight: 400;
  line-height: 0.86;
}

.final-cta__title strong {
  color: var(--gold-bright);
  font: inherit;
}

.final-cta__text {
  max-width: 460px;
  margin: 24px 0 28px;
  color: rgba(245, 245, 242, 0.5);
  font-size: 14px;
  line-height: 1.6;
}

.final-cta__button {
  --mag-x: 0px;
  --mag-y: 0px;
  position: relative;
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr 40px;
  align-items: center;
  gap: 14px;
  padding: 14px 18px 14px 20px;
  overflow: hidden;
  border: 1px solid var(--gold-bright);
  background: linear-gradient(110deg, #f6cd1a, #d6a914 48%, #f6cd1a);
  background-size: 210% 100%;
  color: #070707;
  transform: translate(var(--mag-x), var(--mag-y));
  transition:
    transform 220ms cubic-bezier(.2,.75,.2,1),
    box-shadow 300ms ease,
    background-position 500ms ease;
}

.final-cta__button::before {
  content: "";
  position: absolute;
  inset: -100% auto -100% -26%;
  width: 19%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.68), transparent);
  transform: rotate(18deg) translateX(-310%);
  transition: transform 740ms cubic-bezier(.2,.75,.2,1);
}

.final-cta__button:hover,
.final-cta__button:focus-visible {
  background-position: 100% 0;
  box-shadow: 0 0 38px rgba(246, 205, 26, 0.18);
}

.final-cta__button:hover::before,
.final-cta__button:focus-visible::before {
  transform: rotate(18deg) translateX(790%);
}

.final-cta__button > span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.final-cta__button small {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  opacity: 0.58;
}

.final-cta__button strong {
  font-size: 14px;
  line-height: 1.1;
  letter-spacing: 0.03em;
}

.final-cta__button svg {
  width: 36px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 260ms ease;
}

.final-cta__button:hover svg {
  transform: translateX(6px);
}

.final-cta__contacts {
  display: grid;
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
}

.contact-card {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  transition: padding-left 260ms ease, background 260ms ease;
}

a.contact-card:hover,
a.contact-card:focus-visible {
  padding-left: 10px;
  background: linear-gradient(90deg, rgba(246, 205, 26, 0.035), transparent);
}

.contact-card__index {
  color: rgba(246, 205, 26, 0.45);
  font-family: "League Gothic", Impact, sans-serif;
  font-size: 19px;
}

.contact-card__copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-card__copy small {
  color: rgba(245, 245, 242, 0.34);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.contact-card__copy strong {
  color: rgba(245, 245, 242, 0.82);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
}

.contact-card__copy em {
  margin-top: 2px;
  color: rgba(246, 205, 26, 0.48);
  font-size: 8px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.contact-card--pending {
  opacity: 0.55;
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  padding: 0 clamp(22px, 5.8vw, 110px);
  background: #020202;
  border-top: 1px solid rgba(246, 205, 26, 0.16);
}

.site-footer__top,
.site-footer__bottom,
.site-footer__divider {
  width: min(100%, 1530px);
  margin-inline: auto;
}

.site-footer__top {
  min-height: 180px;
  display: grid;
  grid-template-columns: 180px 1fr 220px;
  align-items: center;
  gap: 42px;
}

.site-footer__brand {
  width: 150px;
  height: 112px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.site-footer__brand img {
  display: block;
  width: 136px;
  height: 136px;
  object-fit: contain;
}

.site-footer__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 13px 26px;
}

.site-footer__nav a {
  position: relative;
  color: rgba(245, 245, 242, 0.46);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  transition: color 220ms ease;
}

.site-footer__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: var(--gold-bright);
  transition: width 240ms ease;
}

.site-footer__nav a:hover {
  color: var(--gold-bright);
}

.site-footer__nav a:hover::after {
  width: 100%;
}

.site-footer__whatsapp {
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  text-align: right;
}

.site-footer__whatsapp span {
  color: rgba(245, 245, 242, 0.3);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.site-footer__whatsapp strong {
  color: var(--gold-bright);
  font-family: "League Gothic", Impact, sans-serif;
  font-size: 27px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.site-footer__divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(246, 205, 26, 0.28), transparent);
}

.site-footer__bottom {
  min-height: 116px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 36px;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom > p:first-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.site-footer__bottom > p:first-child strong {
  color: rgba(245, 245, 242, 0.56);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.site-footer__bottom > p:first-child span {
  color: rgba(245, 245, 242, 0.28);
  font-size: 9px;
}

.site-footer__copyright {
  color: rgba(245, 245, 242, 0.24);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-align: center;
}

.site-footer__back-top {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(245, 245, 242, 0.38);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  transition: color 220ms ease;
}

.site-footer__back-top span {
  color: var(--gold-bright);
  font-size: 18px;
  transition: transform 240ms ease;
}

.site-footer__back-top:hover {
  color: #fff;
}

.site-footer__back-top:hover span {
  transform: translateY(-4px);
}

@media (max-width: 1050px) {
  .faq-contact__layout {
    grid-template-columns: 1fr;
  }

  .final-cta {
    position: relative;
    top: auto;
  }

  .final-cta__contacts {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    border-top: 0;
  }

  .contact-card {
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.075);
  }

  .site-footer__top {
    grid-template-columns: 150px 1fr;
  }

  .site-footer__whatsapp {
    grid-column: 1 / -1;
    justify-self: stretch;
    align-items: center;
    padding: 18px 0 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }
}

@media (max-width: 720px) {
  .faq-contact {
    padding: 68px 18px 72px;
  }

  .faq-contact__header {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .faq-contact__eyebrow {
    font-size: 16px;
  }

  .faq-contact__title {
    font-size: clamp(65px, 18.7vw, 88px);
  }

  .faq-contact__intro {
    font-size: 14px;
  }

  .faq-item__trigger {
    min-height: 79px;
    grid-template-columns: 34px 1fr 32px;
    gap: 12px;
    padding-right: 0;
  }

  .faq-item__number {
    font-size: 19px;
  }

  .faq-item__question {
    font-size: 14px;
  }

  .faq-item__answer p {
    padding: 0 10px 22px 46px;
    font-size: 13px;
  }

  .faq-item__icon {
    width: 28px;
    height: 28px;
  }

  .final-cta {
    padding: 29px 20px 25px;
  }

  .final-cta__title {
    font-size: clamp(52px, 15.5vw, 70px);
  }

  .final-cta__button {
    min-height: 72px;
  }

  .final-cta__contacts {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-inline: 18px;
  }

  .site-footer__top {
    min-height: auto;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 26px;
    padding: 38px 0 30px;
  }

  .site-footer__brand {
    width: 130px;
    height: 100px;
  }

  .site-footer__brand img {
    width: 120px;
    height: 120px;
  }

  .site-footer__nav {
    gap: 13px 20px;
  }

  .site-footer__whatsapp {
    grid-column: auto;
    width: 100%;
  }

  .site-footer__bottom {
    min-height: auto;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 18px;
    padding: 27px 0 34px;
    text-align: center;
  }

  .site-footer__bottom > p:first-child {
    align-items: center;
  }

  .site-footer__copyright {
    max-width: 310px;
    line-height: 1.5;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-item__answer,
  .faq-item__icon,
  .faq-item__icon::before,
  .faq-item__icon::after,
  .final-cta__button::before {
    transition: none !important;
  }
}

/* =========================================================
   AJUSTE FINAL — SECTION 06 MAIS COMPACTA + MAPA
   ========================================================= */

.faq-contact {
  padding:
    clamp(54px, 5vw, 78px)
    clamp(22px, 5.8vw, 110px)
    clamp(56px, 5vw, 76px);
}

.faq-contact__header {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.48fr);
  gap: clamp(28px, 4vw, 66px);
  margin-bottom: clamp(28px, 3.2vw, 42px);
}

.faq-contact__eyebrow {
  margin-bottom: 9px;
  font-size: 16px;
}

.faq-contact__title {
  font-size: clamp(62px, 5.8vw, 88px);
  line-height: 0.83;
}

.faq-contact__intro {
  max-width: 390px;
  font-size: 13px;
  line-height: 1.55;
}

.faq-contact__layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.68fr);
  gap: clamp(32px, 4.5vw, 68px);
}

.faq-contact__left {
  min-width: 0;
}

.faq-item__trigger {
  min-height: 66px;
  grid-template-columns: 38px 1fr 30px;
  gap: 13px;
  padding: 12px 4px 12px 0;
}

.faq-item__number {
  font-size: 19px;
}

.faq-item__question {
  font-size: clamp(14px, 1.03vw, 16px);
}

.faq-item__icon {
  width: 26px;
  height: 26px;
}

.faq-item__icon::before,
.faq-item__icon::after {
  width: 10px;
}

.faq-item__answer p {
  max-width: 650px;
  padding: 0 40px 16px 51px;
  font-size: 12.5px;
  line-height: 1.55;
}

/* ---------- MAPA ---------- */

.faq-map {
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid rgba(246, 205, 26, 0.18);
  background: #080808;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.faq-map__top {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px 16px 12px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.065);
  background:
    linear-gradient(90deg, rgba(246, 205, 26, 0.045), transparent 60%),
    #090909;
}

.faq-map__top > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-map__eyebrow {
  color: rgba(246, 205, 26, 0.62);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.faq-map__top strong {
  color: rgba(245, 245, 242, 0.86);
  font-size: 12px;
  font-weight: 600;
}

.faq-map__top small {
  color: rgba(245, 245, 242, 0.34);
  font-size: 9px;
}

.faq-map__top a {
  flex: 0 0 auto;
  color: var(--gold-bright);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.11em;
  transition: opacity 220ms ease, transform 220ms ease;
}

.faq-map__top a:hover,
.faq-map__top a:focus-visible {
  opacity: 0.75;
  transform: translateX(3px);
}

.faq-map__frame {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #111;
}

.faq-map__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 38px rgba(0, 0, 0, 0.2);
}

.faq-map__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(1.05) brightness(0.78);
  transition: filter 350ms ease;
}

.faq-map:hover .faq-map__frame iframe {
  filter: grayscale(0.28) contrast(1.02) brightness(0.88);
}

/* ---------- CTA FINAL MAIS COMPACTO ---------- */

.final-cta {
  top: 22px;
  padding: clamp(26px, 2.8vw, 38px);
}

.final-cta__label {
  margin-bottom: 12px;
  font-size: 9px;
}

.final-cta__title {
  font-size: clamp(49px, 4vw, 64px);
  line-height: 0.87;
}

.final-cta__text {
  margin: 18px 0 22px;
  font-size: 12.5px;
  line-height: 1.5;
}

.final-cta__button {
  min-height: 66px;
  padding-block: 10px;
}

.final-cta__button strong {
  font-size: 13px;
}

.final-cta__contacts {
  margin-top: 21px;
}

.contact-card {
  padding: 12px 0;
}

.contact-card__copy strong {
  font-size: 11px;
}

/* ---------- RESPONSIVO ---------- */

@media (max-width: 1050px) {
  .faq-contact__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .final-cta {
    position: relative;
    top: auto;
  }
}

@media (max-width: 720px) {
  .faq-contact {
    padding: 52px 18px 58px;
  }

  .faq-contact__header {
    gap: 18px;
    margin-bottom: 28px;
  }

  .faq-contact__title {
    font-size: clamp(58px, 17vw, 78px);
  }

  .faq-contact__intro {
    font-size: 12.5px;
  }

  .faq-item__trigger {
    min-height: 61px;
    grid-template-columns: 30px 1fr 27px;
    gap: 9px;
  }

  .faq-item__number {
    font-size: 17px;
  }

  .faq-item__question {
    font-size: 13px;
  }

  .faq-item__icon {
    width: 25px;
    height: 25px;
  }

  .faq-item__answer p {
    padding: 0 8px 15px 39px;
    font-size: 12px;
  }

  .faq-map {
    margin-top: 17px;
  }

  .faq-map__top {
    min-height: auto;
    align-items: flex-start;
    padding: 13px 14px;
  }

  .faq-map__top strong {
    font-size: 11px;
  }

  .faq-map__top small {
    font-size: 8px;
  }

  .faq-map__top a {
    margin-top: 2px;
    font-size: 7px;
  }

  .faq-map__frame {
    height: 190px;
  }

  .final-cta {
    padding: 25px 18px 22px;
  }

  .final-cta__title {
    font-size: clamp(48px, 14.5vw, 63px);
  }

  .final-cta__text {
    margin: 16px 0 20px;
  }

  .final-cta__contacts {
    margin-top: 18px;
  }
}

@media (max-width: 440px) {
  .faq-map__top {
    flex-direction: column;
    gap: 8px;
  }

  .faq-map__frame {
    height: 180px;
  }
}


/* =========================================================
   CORREÇÃO MOBILE — PORTFÓLIO + FAQ
   - Remove somente no mobile as fotos frase/rosa.
   - Compacta o cabeçalho do FAQ para evitar sobreposição.
   ========================================================= */

@media (max-width: 720px) {
  /* PORTFÓLIO: as duas imagens do bloco superior não aparecem no mobile. */
  .portfolio__top,
  .portfolio-card--phrase,
  .portfolio-card--rose {
    display: none !important;
  }

  .portfolio__mosaic {
    display: block;
  }

  /* FAQ: cabeçalho mais curto e sem texto se sobrepondo ao título. */
  .faq-contact {
    padding-top: 42px;
    padding-bottom: 48px;
  }

  .faq-contact__header {
    display: block;
    margin-bottom: 22px;
  }

  .faq-contact__header > div {
    width: 100%;
    min-width: 0;
  }

  .faq-contact__eyebrow {
    margin-bottom: 8px;
    font-size: 14px;
  }

  .faq-contact__title {
    font-size: clamp(48px, 13.4vw, 60px);
    line-height: 0.88;
    max-width: 100%;
  }

  .faq-contact__title strong {
    display: block;
    margin-top: 5px;
    font-size: 0.86em;
    line-height: 0.92;
    white-space: nowrap;
  }

  .faq-contact__intro {
    position: static;
    width: 100%;
    max-width: 430px;
    margin: 17px 0 0;
    font-size: 11.5px;
    line-height: 1.5;
  }

  .faq-contact__layout {
    gap: 26px;
  }

  .faq-item__trigger {
    min-height: 56px;
  }

  .faq-item__answer p {
    padding-bottom: 13px;
  }

  .faq-map {
    margin-top: 14px;
  }

  .faq-map__frame {
    height: 170px;
  }

  .final-cta {
    padding-top: 22px;
    padding-bottom: 20px;
  }
}

@media (max-width: 390px) {
  .faq-contact__title {
    font-size: clamp(44px, 12.7vw, 52px);
  }

  .faq-contact__title strong {
    font-size: 0.82em;
  }

  .faq-contact__intro {
    font-size: 11px;
  }
}
