:root {
  --ink: #141414;
  --ink-soft: #232320;
  --paper: #F6F4EF;
  --paper-dim: #EDEAE2;
  --concrete: #8B8B87;
  --concrete-line: rgba(20, 20, 20, 0.12);
  --gold: #B8943D;
  --burnt: #C46A1B;
  --white: #ffffff;
  --serif: 'Playfair Display', serif;
  --sans: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-scroll-behavior: smooth;
}

@supports not (aspect-ratio: 1/1) {
  .svc-image-wrap,
  .masonry .item {
    height: 0;
    padding-bottom: 100%;
  }
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

img {
  max-width: 100%;
  display: block;
}

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

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Dimension line — signature motif */
.dim-line {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--concrete);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.dim-line::before,
.dim-line::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--concrete-line);
  position: relative;
}

.dim-line::before {
  margin-right: 2px;
}

.dim-line::after {
  margin-left: 2px;
}

.dim-tick {
  color: var(--burnt);
  font-weight: 600;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.6rem);
  line-height: 1.05;
  font-weight: 400;
}

h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  line-height: 1.12;
}

h3 {
  font-size: 1.3rem;
  font-weight: 600;
  font-family: var(--sans);
}

p {
  color: #4a4a46;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 34px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: .02em;
  border-radius: 2px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 8px 24px -8px rgba(200, 164, 90, 0.55);
  position: relative;
  overflow: hidden;
  font-weight: 700;
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  animation: btn-shine 3s ease-in-out infinite;
}

@keyframes btn-shine {
  0% {
    left: -100%;
  }

  50%,
  100% {
    left: 150%;
  }
}

.btn-primary:hover,
.btn-primary:active {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -8px rgba(200, 164, 90, 0.65);
}

.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: none;
  font-size: 13px;
  font-weight: 400;
  padding: 0;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.25);
  text-underline-offset: 4px;
}

.btn-ghost:hover,
.btn-ghost:active {
  color: var(--gold);
  text-decoration-color: var(--gold);
  background: transparent;
  transform: none;
}

.btn-wa-nav {
  background: var(--gold);
  color: var(--ink);
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 700;
  border: none;
  position: relative;
  overflow: hidden;
  animation: wa-pulse 2.5s ease-in-out infinite;
}

.btn-wa-nav::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  animation: btn-shine 3s ease-in-out infinite;
}

.btn-wa-nav:hover,
.btn-wa-nav:active {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(200, 164, 90, 0.6);
}

@keyframes wa-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(200, 164, 90, 0.4);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(200, 164, 90, 0);
  }
}

.btn-dark {
  background: var(--ink);
  color: var(--paper);
  font-weight: 700;
  position: relative;
  overflow: hidden;
}

.btn-dark::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: btn-shine 3s ease-in-out infinite;
}

.btn-dark:hover,
.btn-dark:active {
  background: #000;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 40px;
  transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
}

header.scrolled {
  background: rgba(20, 20, 20, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 14px 40px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.logo {
  font-family: var(--serif);
  color: var(--white);
  font-size: 19px;
  letter-spacing: .02em;
}

.logo span {
  color: var(--gold);
}

nav a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  margin-left: 32px;
  font-weight: 500;
  transition: color .2s ease;
}

nav a:hover,
nav a:active {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #111 url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?q=80&w=2075&auto=format&fit=crop') center/cover no-repeat;
  animation: kenburns 24s ease-out forwards;
  -webkit-filter: blur(1.5px) brightness(0.95);
  filter: blur(1.5px) brightness(0.95);
  z-index: 0;
}

@keyframes kenburns {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(1.12);
    transform: scale(1.12);
  }
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.5) 40%, rgba(8, 8, 8, 0.97) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 0 32px 90px;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  box-sizing: border-box;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 2px;
  font-size: 12.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  margin-bottom: 26px;
}

.hero h1 {
  color: var(--white);
  max-width: 900px;
}

.hero h1 em {
  font-style: italic;
  color: #C9982D;
}

.hero p.lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  max-width: 560px;
  margin: 22px 0 34px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 26px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13.5px;
}

.trust-item .mark {
  color: var(--gold);
  font-weight: 700;
}

.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 40px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.scroll-cue .line {
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.scroll-cue .line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrolldrop 2s ease-in-out infinite;
}

@keyframes scrolldrop {
  0% {
    top: -100%;
  }

  60% {
    top: 100%;
  }

  100% {
    top: 100%;
  }
}

/* SECTIONS SHARED */
section {
  padding: 120px 0;
  overflow: hidden;
}

.section-head {
  max-width: 640px;
  margin-bottom: 64px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* CREDIBILITY */
.cred {
  background: var(--paper);
  position: relative;
  overflow: hidden;
}

.section-watermark {
  position: absolute;
  top: -10%;
  right: -5%;
  font-family: var(--serif);
  font-size: 60vw;
  line-height: 1;
  color: var(--ink);
  opacity: 0.02;
  pointer-events: none;
  z-index: 0;
  -webkit-user-select: none;
  user-select: none;
}

.section-watermark--light {
  color: var(--paper);
  opacity: 0.03;
}

.cred .wrap {
  position: relative;
  z-index: 1;
}

.cred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cred-card {
  background: #faf9f6;
  padding: 44px 32px;
  border-radius: 3px;
  border: 1px solid var(--concrete-line);
  transition: all .4s ease;
  position: relative;
}

.cred-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .4s ease;
  -webkit-transform-origin: center;
  transform-origin: center;
}

.cred-card:hover,
.cred-card:active {
  background: var(--white);
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
  box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.cred-card:hover::before,
.cred-card:active::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.cred-num {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--burnt);
  margin-bottom: 26px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
}

.cred-card h3 {
  margin-bottom: 12px;
  font-size: 19px;
}

.cred-card p {
  font-size: 14.5px;
}

/* ABOUT */
.about {
  background: var(--ink);
  color: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.about-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 1.2s ease, filter 1.2s ease;
}

.about-img:hover img,
.about-img:active img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-filter: brightness(1.1);
  filter: brightness(1.1);
}

.about h2 {
  color: var(--paper);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  line-height: 1.2;
  font-weight: 400;
}

.about p {
  color: rgba(246, 244, 239, 0.65);
  font-size: 14.5px;
  margin-top: 18px;
  line-height: 1.65;
}

.about .eyebrow {
  color: var(--gold);
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid rgba(246, 244, 239, 0.1);
}

.stat-item .num {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--paper);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item .num span {
  color: var(--gold);
}

.stat-item .label {
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(246, 244, 239, 0.5);
}

/* SERVICES DYNAMIC */
.services {
  background: var(--paper);
}

.svc-dynamic {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  min-height: 540px;
  margin-top: 40px;
}

.svc-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 20px;
}

.svc-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--concrete-line);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(20, 20, 20, 0.45);
  transition: all .4s ease;
}

.svc-item h3 {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 400;
  transition: color .4s ease, transform .4s ease;
}

.svc-item .arrow {
  opacity: 0;
  transform: translateX(-10px);
  transition: all .4s ease;
  color: var(--burnt);
  font-size: 24px;
}

.svc-item:hover,
.svc-item:active,
.svc-item.active {
  color: var(--ink);
}

.svc-item:hover h3,
.svc-item:active h3,
.svc-item.active h3 {
  -webkit-transform: translateX(10px);
  transform: translateX(10px);
  font-weight: 500;
}

.svc-item:hover .arrow,
.svc-item:active .arrow,
.svc-item.active .arrow {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.svc-image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.25);
  background: #111;
}

.svc-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .8s ease, transform 1.2s ease;
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.svc-image.active {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
  z-index: 2;
}

/* GALLERY */
.gallery {
  background: var(--ink);
}

.gallery .section-head h2,
.gallery .section-head p {
  color: var(--paper);
}

.gallery .section-head p {
  color: rgba(246, 244, 239, 0.65);
}

.masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.masonry .item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  aspect-ratio: 1 / 1;
}

.masonry .item::after {
  content: "Ver Projeto";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.5);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0;
  transition: opacity .4s ease;
  z-index: 2;
}

.masonry .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform .7s ease;
}

.masonry .item:hover::after,
.masonry .item:active::after {
  opacity: 1;
}

.masonry .item:hover img,
.masonry .item:active img {
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}

/* PROCESS */
.process {
  background: var(--paper);
}

.proc-track {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 40px;
}

.proc-track::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--concrete-line);
  z-index: 0;
}

.proc-fill {
  position: absolute;
  top: 13px;
  left: 0;
  height: 2px;
  background: var(--gold);
  width: 0%;
  transition: width 0.1s ease-out;
  z-index: 0;
}

.proc-step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 10px;
  cursor: default;
}

.proc-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--concrete);
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  transition: all .4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proc-dot .proc-num {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  color: var(--concrete);
  transition: color .4s ease;
  letter-spacing: .02em;
}

.proc-dot::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  transition: opacity .4s ease, transform .4s ease;
  transform: scale(0);
  z-index: -1;
}

.proc-content {
  transition: transform .4s ease, opacity .4s ease;
  opacity: 0;
  transform: translateY(12px);
}

.proc-step.active .proc-content {
  opacity: 1;
  transform: translateY(0);
}

.proc-step h3 {
  font-size: 15.5px;
  margin-bottom: 6px;
  transition: color .4s ease;
}

.proc-step p {
  font-size: 13.5px;
  transition: opacity .4s ease;
  opacity: 0.7;
}

.proc-step .proc-duration {
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-top: 8px;
  opacity: 0;
  transition: opacity .4s ease;
}

.proc-step.active .proc-duration {
  opacity: 1;
}

.proc-step:hover .proc-dot,
.proc-step.active .proc-dot {
  border-color: var(--gold);
}

.proc-step:hover .proc-dot .proc-num,
.proc-step:active .proc-dot .proc-num,
.proc-step.active .proc-dot .proc-num {
  color: var(--gold);
}

.proc-step:hover .proc-dot::after,
.proc-step:active .proc-dot::after,
.proc-step.active .proc-dot::after {
  opacity: 0.25;
  -webkit-transform: scale(1);
  transform: scale(1);
  animation: proc-pulse 2s ease-in-out infinite;
}

@keyframes proc-pulse {

  0%,
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.25;
  }

  50% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}

.proc-step:hover .proc-content,
.proc-step:active .proc-content,
.proc-step.active .proc-content {
  -webkit-transform: translateY(-6px);
  transform: translateY(-6px);
}

.proc-step:hover h3,
.proc-step:active h3,
.proc-step.active h3 {
  color: var(--ink);
}

.proc-step:hover p,
.proc-step:active p,
.proc-step.active p {
  opacity: 1;
}

/* CTA FINAL */
.cta-final {
  position: relative;
  min-height: 64vh;
  display: flex;
  align-items: center;
  background: #0c0c0c url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?q=80&w=1974&auto=format&fit=crop') center/cover no-repeat;
  background-attachment: scroll;
  text-align: center;
}

.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.72);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.cta-final-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.cta-final h2 {
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
  font-weight: 400;
}

.cta-final h2 em {
  font-style: italic;
  color: var(--gold);
}

.cta-final p {
  color: rgba(255, 255, 255, 0.8);
  margin: 20px auto 36px;
  max-width: 520px;
}

.cta-final-btn {
  display: inline-flex;
  width: auto;
  max-width: 100%;
  padding: clamp(14px, 2.5vw, 22px) clamp(24px, 5vw, 48px);
  font-size: clamp(14px, 1.6vw, 16px);
  text-align: center;
  justify-content: center;
}

/* FOOTER */
footer {
  background: var(--ink);
  color: rgba(246, 244, 239, 0.55);
  padding: 60px 0 30px;
  font-size: 13.5px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.foot-grid h4 {
  color: var(--paper);
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
}

.foot-grid p,
.foot-grid a {
  display: block;
  margin-bottom: 8px;
  color: rgba(246, 244, 239, 0.55);
}

.foot-grid a:hover,
.foot-grid a:active {
  color: var(--gold);
}

.foot-grid a .material-symbols-outlined {
  color: var(--gold);
}

.foot-bottom {
  display: flex;
  justify-content: center;
  padding-top: 26px;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}

/* FLOATING WHATSAPP */
.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 200;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: transform .25s ease;
  animation: wa-glow 2s ease-in-out infinite;
}

@keyframes wa-glow {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5), 0 10px 30px rgba(0, 0, 0, 0.35);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0), 0 10px 30px rgba(0, 0, 0, 0.35);
  }
}

.wa-float:hover,
.wa-float:active {
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}

.wa-float svg {
  width: 28px;
  height: 28px;
}

/* scroll reveal */
.reveal {
  opacity: 0;
  -webkit-transform: translateY(24px);
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.in {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/* TEXT REVEAL */
.reveal-title {
  overflow: hidden;
  padding-bottom: 5px;
}

.reveal-title>span {
  display: block;
  -webkit-transform: translateY(110%);
  transform: translateY(110%);
  transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1) 0.15s;
}

.reveal.in .reveal-title>span {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/* FAQ PREMIUM */
.faq {
  background: var(--ink);
  padding: 100px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

.faq-title h2 {
  margin-bottom: 24px;
  color: var(--paper);
}

.faq-title p {
  color: rgba(246, 244, 239, 0.55);
  max-width: 320px;
  font-size: 15px;
}

.faq-title .dim-line {
  color: rgba(246, 244, 239, 0.4);
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--serif);
  font-size: 19px;
  color: var(--paper);
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover,
.faq-question:active {
  color: var(--gold);
}

.faq-icon {
  font-size: 24px;
  color: var(--gold);
  font-weight: 300;
  transition: transform 0.4s ease;
}

.faq-item.open .faq-icon {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding-bottom: 26px;
  font-size: 15px;
  color: rgba(246, 244, 239, 0.6);
  max-width: 90%;
}

/* DEPOIMENTOS */
.testimonials {
  background: var(--paper);
  padding: 100px 0;
  border-top: 1px solid var(--concrete-line);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.testi-card {
  background: var(--white);
  padding: 40px 36px;
  border-radius: 3px;
  border: 1px solid var(--concrete-line);
  position: relative;
  transition: all .4s ease;
  display: flex;
  flex-direction: column;
}

.testi-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .4s ease;
  -webkit-transform-origin: center;
  transform-origin: center;
}

.testi-card:hover,
.testi-card:active {
  -webkit-transform: translateY(-6px);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.testi-card:hover::before,
.testi-card:active::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.testi-quote {
  font-family: var(--serif);
  font-size: 72px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.25;
  position: absolute;
  top: 20px;
  right: 30px;
  pointer-events: none;
}

.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}

.testi-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

.testi-text {
  font-size: 15px;
  line-height: 1.7;
  color: #4a4a46;
  margin-bottom: 28px;
  flex: 1;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--concrete-line);
}

.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}

.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testi-name {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}

.testi-project {
  font-size: 12px;
  color: var(--concrete);
  letter-spacing: .04em;
}

/* CONTATO FORM */
.contact {
  background: var(--ink);
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  color: var(--paper);
  margin-bottom: 20px;
}

.contact-info p {
  color: rgba(246, 244, 239, 0.6);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 3px;
  background: rgba(200, 164, 90, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon .material-symbols-outlined {
  font-size: 22px;
  color: var(--gold);
}

.contact-detail-text {
  color: rgba(246, 244, 239, 0.7);
  font-size: 14px;
}

.contact-detail-text strong {
  color: var(--paper);
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(246, 244, 239, 0.5);
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--paper);
  padding: 14px 16px;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 14.5px;
  transition: border-color .3s ease;
  outline: none;
  resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(246, 244, 239, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group select {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C8A45A' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-group select option {
  background: var(--ink);
  color: var(--paper);
}

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 34px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: .02em;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px -8px rgba(200, 164, 90, 0.55);
  transition: transform .25s ease, box-shadow .25s ease;
  align-self: flex-start;
  position: relative;
  overflow: hidden;
}

.form-submit::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  animation: btn-shine 3s ease-in-out infinite;
}

.form-submit:hover,
.form-submit:active {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -8px rgba(200, 164, 90, 0.65);
}

.form-note {
  font-size: 12.5px;
  color: rgba(246, 244, 239, 0.35);
  margin-top: 4px;
}

/* FORM SUCCESS / ERROR */
.form-success,
.form-error {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 10px;
  margin-top: 16px;
}

.form-success {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

.form-error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

.form-success p,
.form-error p {
  font-size: 14px;
  color: var(--white);
  margin: 0;
  line-height: 1.5;
}

.form-success span,
.form-error span {
  font-size: 28px;
  flex-shrink: 0;
}

/* SPINNER */
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin .6s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* HAMBURGER BUTTON */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 110;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
  -webkit-transform-origin: center;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  -webkit-transform: translateY(7px) rotate(45deg);
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  -webkit-transform: translateY(-7px) rotate(-45deg);
  transform: translateY(-7px) rotate(-45deg);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(20, 20, 20, 0.97);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  z-index: 99;
  padding: 80px 20px 28px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.mobile-menu-nav a {
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  padding: 10px 20px;
  transition: color .3s ease, transform .3s ease;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
  opacity: 0;
}

.mobile-menu.open .mobile-menu-nav a {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu.open .mobile-menu-nav a:nth-child(1) {
  transition-delay: .08s;
}

.mobile-menu.open .mobile-menu-nav a:nth-child(2) {
  transition-delay: .14s;
}

.mobile-menu.open .mobile-menu-nav a:nth-child(3) {
  transition-delay: .20s;
}

.mobile-menu.open .mobile-menu-nav a:nth-child(4) {
  transition-delay: .26s;
}

.mobile-menu.open .mobile-menu-nav a:nth-child(5) {
  transition-delay: .32s;
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a:active {
  color: var(--gold);
}

.btn-wa-mobile {
  margin-top: 24px;
  background: var(--gold) !important;
  color: var(--ink) !important;
  font-family: var(--sans) !important;
  font-size: 18px !important;
  font-weight: 900;
  letter-spacing: .02em;
  padding: 18px 44px !important;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  display: block;
  text-align: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.btn-wa-mobile::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  animation: btn-shine 3s ease-in-out infinite;
}

/* ============================================
       RESPONSIVE — Mobile First Consolidation
       ============================================ */

/* --- TABLET / SMALL DESKTOP (max-width: 1024px) --- */
@media (max-width: 1024px) {

  /* Header */
  nav a {
    margin-left: 20px;
    font-size: 18px;
  }

  .btn-wa-nav {
    padding: 9px 18px;
    font-size: 12px;
    margin-left: 20px !important;
  }

  /* Header — hamburger mode */
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  /* Hero */
  .hero-inner {
    padding-bottom: 300px;
  }

  .hero-badge {
    font-size: 15px;
    padding: 7px 15px;
    margin-bottom: 22px;
  }

  .hero h1 {
    margin-top: 40px;
    font-size: clamp(4.2rem, 4.5vw, 3.8rem);
    margin-bottom: 40px;
  }

  .hero p.lead {
    font-size: 21px;
    max-width: 600px;
    margin-bottom: 28px;
    text-align: justify;
  }

  .hero-ctas .btn {
    padding: 15px 30px;
    font-size: 24px;
  }

  .hero-ctas .btn-ghost {
    font-size: 20px;
  }

  .trust-row {
    gap: 24px;
    margin-top: 70px;
    padding-top: 22px;
  }

  .trust-item {
    font-size: 19px;
  }

  /* Credibility */
  .cred-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  /* Services */
  .svc-dynamic {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .svc-image-wrap {
    height: 420px;
    order: -1;
  }

  .svc-item h3 {
    font-size: 20px;
  }

  /* Gallery */
  .masonry {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Testimonials */
  .testi-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cta-final {
    min-height: 55vh;
  }

  .cta-final h2 {
    font-size: clamp(4.2rem, 4vw, 2.8rem);
    margin-bottom: 40px;
  }

  .cta-final .btn {
    font-size: 23px;
  }

  /* WhatsApp Float */
  .wa-float {
    width: 80px;
    height: 80px;
    bottom: 26px;
    right: 26px;
  }

  .wa-float svg {
    width: 36px;
    height: 36px;
  }

  @keyframes wa-glow {

    0%,
    100% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5), 0 10px 30px rgba(0, 0, 0, 0.35);
    }

    50% {
      box-shadow: 0 0 0 18px rgba(37, 211, 102, 0), 0 10px 30px rgba(0, 0, 0, 0.35);
    }
  }
}

/* --- TABLET PORTRAIT / MOBILE LANDSCAPE (max-width: 860px) --- */
@media (max-width: 860px) {

  /* Sections */
  section {
    padding: 90px 0;
  }

  .section-head {
    margin-bottom: 48px;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-stats {
    flex-wrap: wrap;
    gap: 30px;
  }

  /* FAQ */
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .faq-title p {
    max-width: 100%;
  }

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

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* WhatsApp Float */
  .wa-float {
    width: 70px;
    height: 70px;
    bottom: 20px;
    right: 16px;
  }

  .wa-float svg {
    width: 30px;
    height: 30px;
  }

  @keyframes wa-glow {

    0%,
    100% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5), 0 10px 30px rgba(0, 0, 0, 0.35);
    }

    50% {
      box-shadow: 0 0 0 15px rgba(37, 211, 102, 0), 0 10px 30px rgba(0, 0, 0, 0.35);
    }
  }
}

@media (min-width: 820px) and (max-width: 850px) {
  .hero-inner {
    padding: 0 20px 240px !important;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  /* WhatsApp Float */
  .wa-float {
    width: 70px;
    height: 70px;
    bottom: 20px;
    right: 16px;
  }

  .wa-float svg {
    width: 30px;
    height: 30px;
  }

  @keyframes wa-glow {

    0%,
    100% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5), 0 10px 30px rgba(0, 0, 0, 0.35);
    }

    50% {
      box-shadow: 0 0 0 15px rgba(37, 211, 102, 0), 0 10px 30px rgba(0, 0, 0, 0.35);
    }
  }
}

/* --- TABLET PORTRAIT (max-width: 768px) --- */
@media (max-width: 820px) {

  /* Global */
  .wrap {
    padding: 0 20px;
  }

  section {
    padding: 80px 0;
  }

  /* Header */
  header {
    padding: 16px 20px;
  }

  header.scrolled {
    padding: 12px 20px;
  }

  .logo {
    font-size: 16px;
  }

  /* Hero */
  .hero-inner {
    padding: 0 20px 150px;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .hero-badge {
    font-size: 13px;
    padding: 6px 14px;
    margin-bottom: 28px;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 4.2vw, 3rem);
  }

  .hero p.lead {
    font-size: 18px;
    max-width: 550px;
    margin: 30px 0 22px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.785);
  }

  .hero-ctas .btn {
    padding: 17px 22px;
    font-size: 20px;
  }

  .hero-ctas .btn-ghost {
    font-size: 18px;
  }

  .trust-row .trust-item {
    font-size: 16px;
  }

  /* About */
  .about h2 {
    font-size: 1.5rem;
  }

  /* Services */
  .svc-image-wrap {
    height: 340px;
  }

  /* Process — vertical */
  .proc-track {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }

  .proc-track::before {
    width: 2px;
    height: 100%;
    left: 13px;
    top: 0;
  }

  .proc-fill {
    width: 2px !important;
    height: 0%;
    left: 13px !important;
    top: 0 !important;
    transition: height 0.1s ease-out;
  }

  .proc-step {
    text-align: left;
    padding-left: 48px;
  }

  .proc-dot {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
  }

  /* CTA Final */
  .cta-final {
    min-height: 55vh;
  }

  .cta-final h2 {
    font-size: clamp(2.9rem, 4vw, 2.8rem);
  }

  .cta-final .btn {
    font-size: 18px;
  }

  /* Footer */
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .foot-grid p,
  .foot-grid a {
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
  }

  .foot-bottom {
    justify-content: center;
    text-align: center;
  }
}

/* --- MOBILE (max-width: 560px) --- */
@media (max-width: 560px) {

  /* Global */
  .wrap {
    padding: 0 18px;
  }

  section {
    padding: 70px 0;
  }

  /* Header */
  header {
    padding: 14px 18px;
  }

  header.scrolled {
    padding: 10px 18px;
  }

  .logo {
    font-size: 17px;
    letter-spacing: .01em;
  }

  .btn-wa-nav {
    padding: 8px 14px;
    font-size: 11px;
  }

  /* Hero */
  .hero {
    display: block;
  }

  .hero-inner {
    padding: 0 20px 50px;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .hero-badge {
    font-size: 12px;
    padding: 5px 12px;
    letter-spacing: .08em;
    margin-bottom: 16px;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 5.2vw, 2.6rem);
    margin-bottom: 33px;
    margin-top: 25px;
  }

  .hero p.lead {
    font-size: 16px;
    max-width: 340px;
    text-align: justify;
    margin: 12px 0 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.827);
    margin-bottom: 30px;
  }

  .hero-ctas {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
    margin: 0;
  }

  .hero-ctas .btn {
    display: flex;
    width: 100%;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 14px 20px;
    font-size: 16px;
    box-sizing: border-box;
    margin: 0;
    white-space: normal;
  }

  .hero-ctas .btn-ghost {
    font-size: 13px;
    padding: 10px 20px;
    text-decoration: underline;
  }

  .trust-row {
    flex-direction: column;
    gap: 14px;
  }

  .trust-item {
    font-size: 13.5px;
  }

  /* Credibility */
  .cred-grid {
    grid-template-columns: 1fr;
  }

  .cred-card {
    padding: 32px 24px;
  }

  /* Gallery */
  .masonry {
    grid-template-columns: 1fr;
  }

  /* Services */
  .svc-image-wrap {
    height: 260px;
  }

  .svc-item {
    padding: 18px 0;
  }

  .svc-item h3 {
    font-size: 17px;
  }

  /* FAQ */
  .faq-question {
    font-size: 15px;
    padding: 20px 0;
  }

  .faq-answer p {
    font-size: 14px;
  }

  /* Testimonials */
  .testi-card {
    padding: 28px 22px;
  }

  .testi-quote {
    font-size: 48px;
    top: 14px;
    right: 20px;
  }

  .testi-text {
    font-size: 14px;
  }

  /* Contact */
  .contact {
    padding: 70px 0;
  }

  .contact-info h2 {
    font-size: 1.4rem;
  }

  .form-submit {
    width: 100%;
    justify-content: center;
  }

  /* CTA Final */
  .cta-final {
    min-height: 80vh;
    padding: 40px 0;
    text-align: center;
  }

  .cta-final h2 {
    font-size: 3rem;
  }

  .cta-final p {
    font-size: 17.3px;
    max-width: 360px;
    margin: 14px auto 28px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
  }

  .cta-final .btn {
    width: 100%;
    font-size: 17px !important;
    padding: 16px 20px;
    margin: 0 auto;
    display: inline-flex;
  }

  /* About */
  .about .btn {
    display: block;
    width: fit-content;
    margin: 36px auto 0;
    text-align: center;
  }

  /* WhatsApp Float */
  .wa-float {
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 16px;
  }

  .wa-float svg {
    width: 28px;
    height: 28px;
  }

  /* Scroll Cue */
  .scroll-cue {
    display: none;
  }
}

/* --- SMALL PHONES (max-width: 400px) --- */
@media (max-width: 400px) {

  .wrap {
    padding: 0 14px;
  }

  .logo {
    font-size: 12px;
  }

  .btn-wa-nav {
    padding: 7px 12px;
    font-size: 10.5px;
  }

  h1 {
    font-size: 1.8rem;
  }

  .hero-badge {
    font-size: 9px;
  }

  .about-stats {
    gap: 20px;
  }

  .stat-item .num {
    font-size: 22px;
  }

  .faq-question {
    font-size: 14px;
    padding: 16px 0;
  }

  .cta-final .btn {
    font-size: 15px !important;
    padding: 14px 16px;
  }
}

/* --- REDUCED MOTION --- */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* ===== TOUCH HOVER PERSISTENTE (iOS Safari) ===== */
.touch-hover.btn-primary,
.touch-hover.btn-dark,
.touch-hover.form-submit,
.touch-hover.btn-wa-nav {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -8px rgba(200, 164, 90, 0.65);
}

.touch-hover.btn-ghost {
  color: var(--gold);
  text-decoration-color: var(--gold);
}

.touch-hover.btn-wa-nav {
  box-shadow: 0 8px 24px -8px rgba(200, 164, 90, 0.6);
}

.touch-hover.cred-card {
  background: var(--white);
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
  box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.touch-hover.cred-card::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.touch-hover.about-img img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-filter: brightness(1.1);
  filter: brightness(1.1);
}

.touch-hover.svc-item {
  color: var(--ink);
}

.touch-hover.svc-item h3 {
  -webkit-transform: translateX(10px);
  transform: translateX(10px);
  font-weight: 500;
}

.touch-hover.svc-item .arrow {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.touch-hover.masonry .item::after {
  opacity: 1;
}

.touch-hover.masonry .item img {
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}

.touch-hover.proc-step .proc-content {
  -webkit-transform: translateY(-6px);
  transform: translateY(-6px);
}

.touch-hover.proc-step h3 {
  color: var(--ink);
}

.touch-hover.proc-step p {
  opacity: 1;
}

.touch-hover.foot-grid a,
.touch-hover.mobile-menu-nav a {
  color: var(--gold);
}

.touch-hover.wa-float {
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}

.touch-hover.faq-question {
  color: var(--gold);
}

.touch-hover.testi-card {
  -webkit-transform: translateY(-6px);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.touch-hover.testi-card::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.touch-hover.nav a {
  color: var(--gold);
}

.touch-hover.btn-dark {
  background: #000;
}