:root {
  --graphite: #111111;
  --black-soft: #1a1a1a;
  --off-white: #f5f1ea;
  --off-warm: #efeae2;
  --gold: #b9a174;
  --gold-dark: #b8945e;
  --beige: #c9b08f;
  --gray: #8b8b8b;
  --gray-light: #d8d2c8;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(17, 17, 17, 0.18);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background:
    linear-gradient(
      180deg,
      #f0e8d9 0%,
      #faf4e8 10%,
      #f5edd8 22%,
      #fdf8ee 36%,
      #f2e9d6 50%,
      #faf3e4 62%,
      #ede3d0 72%,
      #f6efe0 82%,
      #f0e6d4 100%
    );
  color: var(--graphite);
  font-family: Inter, Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::selection {
  background: var(--gold);
  color: var(--white);
}

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

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

.site-header {
  position: fixed;
  top: 10px;
  left: clamp(14px, 3vw, 42px);
  right: clamp(14px, 3vw, 42px);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 8px 12px;
  background: rgba(255, 250, 241, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 18px;
  box-shadow: 0 18px 55px rgba(55, 38, 20, 0.14);
  backdrop-filter: blur(20px);
}

.brand-link img {
  width: 124px;
  max-height: 74px;
  object-fit: contain;
  height: auto;
}

.brand-link {
  align-self: stretch;
  display: flex;
  align-items: center;
  min-width: 152px;
  margin: -8px 0 -8px -12px;
  padding: 8px 22px 8px 18px;
  border-radius: 18px 36px 36px 18px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.7) 62%, rgba(255, 255, 255, 0));
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 24px;
  color: rgba(17, 17, 17, 0.72);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
}

.desktop-nav a {
  transition: color 180ms ease;
}

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

.header-cta,
.btn,
.floating-whatsapp {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  transition: transform 420ms cubic-bezier(0.22, 0.61, 0.36, 1),
              background 360ms ease, color 300ms ease,
              border-color 300ms ease, box-shadow 360ms ease;
}

/* brilho discreto que cruza o botão apenas no hover (premium, sem loop) */
.header-cta::after,
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 55%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transform: skewX(-18deg);
  transition: left 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
  pointer-events: none;
}
.header-cta:hover::after,
.btn:hover::after {
  left: 150%;
}

.header-cta {
  padding: 0 24px;
  background: linear-gradient(135deg, #1c1c1c, #2b2218);
  color: var(--white);
  border: 1px solid rgba(185, 161, 116, 0.38);
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.18);
}

.header-cta:hover {
  background: linear-gradient(135deg, #241c13, #4d3827);
  border-color: rgba(185, 161, 116, 0.7);
  box-shadow: 0 12px 28px rgba(77, 56, 39, 0.3);
}

/* â”€â”€ HERO SPLIT LAYOUT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-section {
  position: relative;
  width: 100%;
  background: transparent;
  color: var(--graphite);
  padding: 0;
  overflow: visible;
}

.hero-inner {
  display: grid;
  grid-template-columns: 3fr 7fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(100px, 14vh, 160px) clamp(24px, 5vw, 80px) clamp(60px, 8vh, 100px);
}

.stone-hero {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.18), rgba(17, 17, 17, 0.82)),
    radial-gradient(circle at 32% 20%, rgba(255, 255, 255, 0.42), transparent 28%),
    linear-gradient(135deg, #eee8df 0%, #d8c4a6 38%, #8e8a83 66%, #1a1a1a 100%);
}

.stone-hero span {
  position: absolute;
  display: block;
  width: 150%;
  height: 2px;
  left: -20%;
  background: rgba(255, 255, 255, 0.32);
  transform: rotate(-24deg);
}

.stone-hero span:nth-child(1) {
  top: 28%;
}

.stone-hero span:nth-child(2) {
  top: 45%;
  background: rgba(185, 161, 116, 0.44);
}

.stone-hero span:nth-child(3) {
  top: 63%;
}

.hero-content {
  display: contents;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  background: linear-gradient(135deg, #2a1f0f 0%, #5c3d1e 40%, #8d6435 72%, #4a2e0d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 560px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 7.5vw, 5rem);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.65rem, 5.5vw, 3.4rem);
  line-height: 1.05;
}

h3 {
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.25;
}

.hero-content p:not(.eyebrow),
.section-copy p,
.final-cta p {
  max-width: 650px;
  color: rgba(17, 17, 17, 0.72);
  font-size: 1rem;
  line-height: 1.6;
}

.hero-copy {
  animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.hero-copy h1 {
  max-width: none;
  margin-bottom: 20px;
}

h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-dark, #8d6435);
}

.hero-desc {
  color: rgba(17, 17, 17, 0.62);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 460px;
  margin-bottom: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 32px;
}

.hero-cta {
  padding: 0 34px;
  background: linear-gradient(135deg, #1c1c1c, #2b2218);
  border-color: rgba(185, 161, 116, 0.32);
  color: var(--white);
  letter-spacing: 0.14em;
  flex-shrink: 0;
  box-shadow: 0 10px 26px rgba(17, 17, 17, 0.16);
}

.hero-cta:hover {
  background: linear-gradient(135deg, #241c13, #4d3827);
  border-color: rgba(185, 161, 116, 0.6);
  box-shadow: 0 16px 34px rgba(77, 56, 39, 0.26);
}

.hero-play-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(17, 17, 17, 0.7);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.18s ease;
  white-space: nowrap;
}

.hero-play-link:hover { color: var(--graphite); }

.hero-play-icon {
  display: grid;
  place-items: center;
  animation: playPulse 2.2s ease-in-out infinite;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(17, 17, 17, 0.22);
  font-size: 0.65rem;
  color: var(--graphite);
  flex-shrink: 0;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.hero-play-link:hover .hero-play-icon {
  background: var(--graphite);
  border-color: var(--graphite);
  color: var(--white);
}

/* â”€â”€ HERO VISUAL (right column) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-visual {
  position: relative;
  animation: heroSlideIn 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
}

.hero-image-wrap {
  overflow: hidden;
}

.hero-image-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.96) contrast(1.01);
}

/* â”€â”€ HERO IMAGE OVERLAY â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-image-wrap {
  position: relative;
}

.hero-image-wrap::after {
  display: none;
}

/* â”€â”€ HERO STAT CARDS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-stats {
  position: absolute;
  bottom: 20px;
  right: 18px;
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.hero-stat {
  background: var(--white);
  border-radius: 18px;
  padding: 14px 20px 16px;
  box-shadow: 0 16px 48px rgba(55, 38, 20, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.9);
  font-family: "Montserrat", sans-serif;
  min-width: 148px;
  width: 148px;
}

.hero-stats .hero-stat:nth-child(1) {
  animation: heroStatFloat 3.4s ease-in-out infinite;
}

.hero-stats .hero-stat:nth-child(2) {
  animation: heroStatFloat 3.4s ease-in-out 0.9s infinite;
}

@keyframes heroStatFloat {
  0%, 100% { transform: translateY(0); box-shadow: 0 16px 48px rgba(55, 38, 20, 0.14); }
  50%       { transform: translateY(-7px); box-shadow: 0 24px 60px rgba(55, 38, 20, 0.20); }
}

.hero-stat strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--graphite);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.hero-stat span {
  font-size: 0.7rem;
  color: rgba(17, 17, 17, 0.52);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.hero-stat-stars {
  font-size: 0.78rem;
  color: #f5a623;
  letter-spacing: 2px;
  margin-bottom: 4px;
  line-height: 1;
}


.btn {
  padding: 0 28px;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn:hover,
.header-cta:hover,
.floating-whatsapp:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #c8b083 0%, #b9a174 52%, #9a7c4c 100%);
  color: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 12px 30px rgba(120, 86, 45, 0.24),
              inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.btn-primary:hover {
  box-shadow: 0 18px 40px rgba(120, 86, 45, 0.32),
              inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.btn-secondary {
  border-color: rgba(245, 241, 234, 0.5);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

.btn-secondary.dark {
  border-color: rgba(17, 17, 17, 0.28);
  color: var(--graphite);
  background: transparent;
}

.btn-secondary.dark:hover {
  background: var(--graphite);
  color: var(--white);
  border-color: var(--graphite);
}

/* â”€â”€ HERO FEATURE CARDS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-features {
  border-top: 1px solid rgba(17, 17, 17, 0.07);
  border-bottom: 1px solid rgba(17, 17, 17, 0.07);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.feature-card {
  padding: 38px 28px 36px;
  border-right: 1px solid rgba(17, 17, 17, 0.07);
  transition: background 0.22s ease;
  display: flex;
  flex-direction: column;
}

.feature-card:last-child { border-right: none; }

.feature-card:hover { background: rgba(185, 161, 116, 0.04); }

.feature-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: rgba(185, 161, 116, 0.12);
  color: var(--gold);
  font-size: 1rem;
}

.feature-icon--shield {
  background: rgba(185, 148, 94, 0.12);
  color: var(--gold-dark);
}

.feature-icon--map {
  background: rgba(66, 133, 244, 0.1);
  color: #4285f4;
}

.feature-icon--wa {
  background: rgba(37, 211, 102, 0.1);
  color: #25d366;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--graphite);
}

.feature-card p {
  font-size: 0.86rem;
  color: rgba(17, 17, 17, 0.58);
  line-height: 1.55;
  margin-bottom: 20px;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  margin-top: auto;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--graphite);
  text-decoration: none;
  transition: color 0.18s ease;
}

.feature-link:hover { color: var(--gold-dark, #8d6435); }

.google-section {
  position: relative;
  overflow: hidden;
  padding: 76px 0 52px;
  background:
    radial-gradient(circle at 82% 14%, rgba(185, 161, 116, 0.46), transparent 30%),
    radial-gradient(circle at 12% 72%, rgba(255, 255, 255, 0.84), transparent 34%),
    linear-gradient(135deg, #efe2cc 0%, #f8f2e7 42%, #d7bd91 100%);
}

.google-panel {
  position: relative;
  display: grid;
  gap: clamp(22px, 4vw, 42px);
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(8px, 3vw, 22px) clamp(24px, 5vw, 80px);
}

.google-copy {
  position: relative;
  z-index: 2;
}

.google-copy h2 {
  max-width: 620px;
  background: none;
  -webkit-text-fill-color: var(--graphite);
  color: var(--graphite);
}

.google-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(17, 17, 17, 0.68);
  line-height: 1.6;
}

.google-score-line {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  width: fit-content;
  margin-top: 24px;
  padding: 16px 24px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.45);
  box-shadow: 0 16px 38px rgba(66, 45, 23, 0.12);
}

.google-score-line .score-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.google-score-line strong {
  font-size: 2.4rem;
  line-height: 1;
}

.google-score-line span {
  color: #d2a329;
  font-size: 1.2rem;
  letter-spacing: 2px;
  line-height: 1;
}

.google-score-line small {
  color: rgba(17, 17, 17, 0.52);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* â”€â”€ TICKER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid rgba(17, 17, 17, 0.07);
  border-bottom: 1px solid rgba(17, 17, 17, 0.07);
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: tickerScroll 38s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-track span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--graphite);
  white-space: nowrap;
  text-transform: uppercase;
}

.ticker-gem {
  color: var(--gold) !important;
  font-size: 0.55rem !important;
  letter-spacing: 0 !important;
  flex-shrink: 0;
}

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* â”€â”€ Google Reviews button â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.google-reviews-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1.5px solid rgba(17, 17, 17, 0.14);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  color: var(--graphite);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.18s ease, box-shadow 0.22s ease;
  box-shadow: 0 4px 18px rgba(55, 38, 20, 0.06);
}

.google-reviews-btn:hover {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(17, 17, 17, 0.24);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(55, 38, 20, 0.12);
}

.google-reviews-btn .arrow-icon {
  color: var(--gold-dark);
  transition: transform 0.22s ease;
}

.google-reviews-btn:hover .arrow-icon {
  transform: translateX(3px);
}

.google-visual {
  position: relative;
  z-index: 1;
  min-height: 388px;
  isolation: isolate;
}

.google-img-wrap {
  overflow: hidden;
  border-radius: 28px;
  display: block;
  max-width: 410px;
  margin: 0 auto;
  box-shadow: 0 28px 72px rgba(53, 38, 22, 0.16);
}

.google-img-wrap img {
  width: 100%;
  height: min(90vw, 540px);
  min-height: 420px;
  object-fit: cover;
  object-position: center center;
  transform: translateZ(0);
  display: block;
  filter: saturate(0.95) contrast(1.02);
  border-radius: 0;
}

.google-floating-card,
.review-card {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 54px rgba(53, 38, 22, 0.14);
  backdrop-filter: blur(18px);
}

.google-floating-card {
  position: absolute;
  max-width: 216px;
  padding: 11px 13px;
  border-radius: 14px;
  animation: reviewFloat 5.6s ease-in-out infinite;
}

.google-floating-card strong,
.review-card strong {
  display: block;
  color: #201915;
}

.google-floating-card span,
.review-card span {
  display: block;
  margin: 4px 0;
  color: #d2a329;
  font-size: 0.68rem;
  letter-spacing: 1px;
}

.google-floating-card p {
  margin: 0;
  color: rgba(17, 17, 17, 0.7);
  font-size: 0.74rem;
  line-height: 1.35;
}

.card-one {
  top: 36px;
  left: -54px;
  transform: rotate(-4deg);
}

.card-two {
  right: -58px;
  bottom: 46px;
  transform: rotate(3deg);
  animation-delay: 900ms;
}

.google-reviews {
  display: grid;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.review-card {
  padding: 14px;
  border-radius: 20px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(53, 38, 22, 0.18);
}

.review-card p {
  margin: 8px 0 12px;
  color: rgba(17, 17, 17, 0.66);
  font-size: 0.86rem;
  line-height: 1.48;
}

.review-card small {
  color: rgba(17, 17, 17, 0.48);
  font-weight: 900;
}

.section {
  width: 100%;
  margin: 0;
  padding: 84px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.section-intro,
.process-section,
.why-section {
  background: transparent;
}

.section-copy {
  max-width: 760px;
  margin: 0 0 28px;
}

.section-copy p {
  color: rgba(17, 17, 17, 0.72);
}

.filter-tabs,
.material-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
  scrollbar-width: none;
}

.filter-tabs::-webkit-scrollbar,
.material-tabs::-webkit-scrollbar {
  display: none;
}

.filter-tabs button,
.material-tabs button {
  flex: 0 0 auto;
  min-height: 42px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 999px;
  padding: 0 16px;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

@media (max-width: 959px) {
  .material-tabs {
    flex-wrap: nowrap;
    justify-content: stretch;
  }
  .material-tabs button {
    flex: 1 1 0;
    min-height: 36px;
    padding: 0 10px;
    font-size: 0.72rem;
    text-align: center;
  }
}

.filter-tabs button.active,
.material-tabs button.active {
  background: var(--graphite);
  color: var(--white);
  border-color: var(--graphite);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  margin: 0 auto;
}

.project-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(75, 52, 29, 0.14);
  backdrop-filter: blur(12px);
}

.project-card.is-hidden {
  display: none;
}

.project-card > div:not(.visual) {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 16px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.08), rgba(17, 17, 17, 0.74));
  color: var(--white);
  transform: translateY(12px);
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease;
}

.project-card:hover > div:not(.visual),
.project-card:focus-within > div:not(.visual) {
  transform: translateY(0);
  opacity: 1;
}

.project-image {
  width: 100%;
  aspect-ratio: 4 / 5.3;
  object-fit: cover;
  background: var(--off-warm);
  transition: transform 420ms ease, filter 420ms ease;
}

.project-card:hover .project-image {
  transform: scale(1.035);
  filter: brightness(0.88);
}

.project-card span {
  display: block;
  margin-bottom: 8px;
  color: #f0dbaf;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.project-card p,
.why-grid p,
.process-list p,
.process-trail p {
  color: rgba(17, 17, 17, 0.68);
  font-size: 0.92rem;
  line-height: 1.55;
}

.project-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
}

.extra-project.is-collapsed {
  display: none;
}

.load-more-projects {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin: 26px auto 0;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #111111, #6c5033, #c9b08f);
  background-size: 180% 180%;
  color: var(--white);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

/* â”€â”€ Projects tabs â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.projects-tabs {
  display: flex;
  gap: 8px;
  margin-top: 28px;
}

.projects-tab {
  padding: 9px 24px;
  border-radius: 999px;
  border: 1.5px solid rgba(17, 17, 17, 0.14);
  background: transparent;
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--graphite);
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}

.projects-tab:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.projects-tab.active {
  background: var(--graphite);
  border-color: var(--graphite);
  color: #fff;
}

.projects-panel {
  display: none;
}

.projects-panel.is-active {
  display: block;
}

[data-tab-panel="videos"].is-active .video-row {
  margin-top: 28px;
}

/* â”€â”€ Projects carousel â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.projects-carousel-wrap {
  position: relative;
  overflow: hidden;
  padding: 36px 0 48px;
}

.projects-carousel {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: carouselScroll 70s linear infinite;
  will-change: transform;
}

/* pausa ao passar o mouse (desktop) */
.projects-carousel-wrap:hover .projects-carousel {
  animation-play-state: paused;
}

@keyframes carouselScroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

.projects-carousel .project-card {
  flex: 0 0 clamp(180px, 24vw, 260px);
  cursor: zoom-in;
}

@media (max-width: 679px) {
  .projects-carousel-wrap { padding: 28px 0 40px; }
  .projects-carousel { gap: 10px; }
  .projects-carousel .project-card { flex: 0 0 clamp(150px, 44vw, 190px); }
}

@media (prefers-reduced-motion: reduce) {
  .projects-carousel { animation: none; }
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 5, 2, 0.92);
  backdrop-filter: blur(10px);
  cursor: zoom-out;
  animation: lbFadeIn 0.28s ease both;
}

.lightbox-overlay.is-closing {
  animation: lbFadeOut 0.22s ease both;
}

.lightbox-overlay img {
  max-width: min(92vw, 1080px);
  max-height: 92vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 48px 120px rgba(0,0,0,0.7);
  animation: lbZoomIn 0.32s cubic-bezier(0.22, 1, 0.36, 1) both;
  cursor: default;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

@keyframes lbFadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes lbFadeOut { from { opacity: 1; } to { opacity: 0; } }
@keyframes lbZoomIn  { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.visual {
  position: relative;
  min-height: 360px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(17, 17, 17, 0.1)),
    linear-gradient(135deg, #f6f0e8, #d8c4a6 38%, #a8a39b 70%, #f9f8f5);
}

.visual::before,
.visual::after {
  content: "";
  position: absolute;
  width: 150%;
  height: 2px;
  left: -20%;
  background: rgba(255, 255, 255, 0.42);
  transform: rotate(-28deg);
}

.visual::before {
  top: 36%;
}

.visual::after {
  top: 58%;
  background: rgba(17, 17, 17, 0.12);
}

.visual-gold {
  background: linear-gradient(135deg, #fffaf1, #c9b08f, #b9a174, #f1e8dc);
}

.visual-gray {
  background: linear-gradient(135deg, #f4f4f2, #b7b7b7, #777777, #e9e6df);
}

.visual-dark {
  background: linear-gradient(135deg, #111111, #4a4740, #b8945e, #f5f1ea);
}

.dark-section {
  width: 100%;
  margin: 0;
  padding: 72px 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 18% 14%, rgba(185, 161, 116, 0.18), transparent 30%),
    linear-gradient(180deg, #ffffff, #f7f3eb 58%, #efe5d4);
  color: var(--graphite);
  box-shadow: none;
}

.dark-section .section-copy p {
  color: rgba(17, 17, 17, 0.64);
}

.materials-heading {
  display: grid;
  gap: 24px;
  margin: 0 0 28px;
}

.materials-heading .section-copy {
  margin: 0;
}

.materials-heading img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(245, 241, 234, 0.16);
  mask-image: linear-gradient(180deg, #000 58%, rgba(0, 0, 0, 0.28) 100%);
}

.dark-section .material-tabs button {
  border-color: rgba(17, 17, 17, 0.16);
  color: var(--graphite);
}

.dark-section .material-tabs button.active {
  background: var(--gold);
  color: var(--graphite);
  border-color: var(--gold);
}

.materials-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 30px);
  padding: clamp(8px, 2vw, 18px) 0 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.material-card {
  position: relative;
  padding: 0 0 18px;
  border: 0;
  border-radius: 18px;
  background: transparent;
  overflow: visible;
  transition: transform 220ms ease;
}

.material-card:hover {
  transform: translateY(-6px);
}

.material-card:nth-child(3n + 1) .sample-piece {
  transform: rotate(-1.4deg);
}

.material-card:nth-child(3n + 2) .sample-piece {
  transform: rotate(1.1deg);
}

.material-card:nth-child(3n) .sample-piece {
  transform: rotate(-0.4deg);
}

.material-card .sample {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  min-height: 0;
  margin-bottom: 2px;
  border-radius: 0;
  background: var(--sample-bg);
  border: 0;
  box-shadow: none;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.material-card .sample.has-image {
  background: transparent;
}

.material-card .sample::before,
.material-card .sample::after {
  content: none;
}

.material-card:hover .sample {
  box-shadow: none;
}

.material-card .sample-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
  filter: drop-shadow(0 18px 24px rgba(79, 55, 29, 0.22));
}

.material-card h3 {
  margin: -8px 4px 4px;
  color: #211a14;
  font-size: clamp(0.82rem, 1.8vw, 0.98rem);
  line-height: 1.08;
}

.material-card p {
  display: none;
}

.material-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 4px 4px 0;
  color: #70512f;
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.3;
}

.process-trail {
  position: relative;
  display: grid;
  gap: 18px;
  max-width: 1040px;
  margin: 0 auto 24px;
}

.process-trail::before {
  content: none;
  position: absolute;
  left: 23px;
  top: 46px;
  bottom: 46px;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    var(--gold) 0px,
    var(--gold) 5px,
    transparent 5px,
    transparent 12px
  );
  background-size: 2px 12px;
  transform-origin: top center;
}

.process-trail article {
  position: relative;
  display: grid;
  gap: 14px;
  align-items: start;
  padding: 0 4px;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  overflow: visible;
}

.process-trail img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 28px 64px rgba(75, 52, 29, 0.22);
}

.process-trail span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #111111, #b9a174);
  color: var(--white);
  font-weight: 800;
  margin-top: -30px;
  margin-left: 8px;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 24px rgba(75, 52, 29, 0.28);
}

.process-title {
  margin: 6px 0 4px;
  padding-left: 4px;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--graphite);
  letter-spacing: 0;
}

.process-trail p {
  padding: 0 4px 4px;
  font-weight: 500;
}

.process-section .btn {
  max-width: 900px;
  margin: 0 auto;
}

.video-section {
  background: transparent;
}

.video-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 72%);
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}

.video-row article {
  aspect-ratio: 9 / 16;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  padding: 18px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, transparent, rgba(17, 17, 17, 0.82)),
    linear-gradient(145deg, #f5f1ea, #b9a174 48%, #111111);
  color: var(--white);
  scroll-snap-align: start;
}

.has-video {
  cursor: pointer;
}

.has-video img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.has-video:hover img {
  transform: scale(1.04);
}

.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.12);
  transition: background 0.2s;
}

.has-video:hover .video-play-btn {
  background: rgba(0, 0, 0, 0.28);
}

.video-play-btn svg {
  width: 52px;
  height: 52px;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.4));
}

/* â”€â”€ Video modal â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.video-modal.is-open {
  opacity: 1;
}

.video-modal-inner {
  position: relative;
  width: min(380px, 88vw);
  aspect-ratio: 9 / 16;
}

.video-modal-inner iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 14px;
  display: block;
}

.video-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.18s;
}

.video-modal-close:hover {
  background: rgba(255, 255, 255, 0.24);
}

.video-row span {
  width: fit-content;
  margin-bottom: 10px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.factory-section {
  background: transparent;
}

.factory-section .container {
  display: grid;
  gap: 28px;
}

.factory-visual {
  min-width: 0;
  position: relative;
}

.factory-image {
  width: 100%;
  min-height: 420px;
  max-height: 620px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.visual-factory {
  min-height: 420px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.02), rgba(17, 17, 17, 0.22)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.34) 0 12px, rgba(17, 17, 17, 0.08) 12px 14px),
    linear-gradient(135deg, #d9d5ce, #8b8b8b, #c9b08f);
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0;
  list-style: none;
}

.check-list li {
  padding-left: 18px;
  border-left: 2px solid var(--gold);
  color: rgba(17, 17, 17, 0.72);
  font-weight: 600;
}

.factory-address {
  position: absolute;
  bottom: 28px;
  right: -24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(55, 38, 20, 0.14);
  font-style: normal;
  max-width: 240px;
}

.factory-address strong {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 4px;
}

.factory-address span {
  font-size: 0.85rem;
  color: var(--graphite);
  line-height: 1.5;
}

.why-grid {
  display: grid;
  gap: 12px;
}

.why-grid article {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 52px rgba(75, 52, 29, 0.1);
  backdrop-filter: blur(16px);
}

.final-cta {
  width: 100%;
  margin: 0;
  padding: 82px 0 104px;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.30), rgba(17, 17, 17, 0.70)),
    url("./assets/site/hero-premium-gerado.webp") center/cover;
  color: var(--white);
  text-align: center;
}

.final-cta .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 860px;
}

.final-cta h2,
.final-cta p {
  width: 100%;
}

.final-cta .btn {
  max-width: 380px;
  margin-top: 16px;
}

/* â”€â”€ Mobile nav â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 60;
  position: relative;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--graphite);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.25s ease,
              width 0.3s ease;
}

.nav-toggle span:nth-child(1) { width: 22px; }
.nav-toggle span:nth-child(2) { width: 16px; }
.nav-toggle span:nth-child(3) { width: 22px; }

.nav-toggle.is-open span:nth-child(1) {
  width: 22px;
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.is-open span:nth-child(3) {
  width: 22px;
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(82vw, 340px);
  z-index: 55;
  display: flex;
  flex-direction: column;
  padding: 108px 36px 48px;
  background: linear-gradient(160deg, #faf6ee 0%, #f0e8d9 100%);
  border-left: 1px solid rgba(185, 161, 116, 0.22);
  box-shadow: -40px 0 100px rgba(55, 38, 20, 0.22);
  transform: translateX(100%);
  transition: transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
}

.mobile-nav.is-open {
  transform: translateX(0);
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: rgba(17, 17, 17, 0.05);
  color: var(--graphite);
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.mobile-nav-close:hover {
  background: rgba(17, 17, 17, 0.1);
  border-color: rgba(17, 17, 17, 0.22);
}

.mobile-nav-brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 48px;
}

.mobile-nav nav {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.mobile-nav nav a {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--graphite);
  line-height: 1;
  padding: 18px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.38s ease, transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
              color 0.18s ease;
}

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

.mobile-nav.is-open nav a {
  opacity: 1;
  transform: translateX(0);
}
.mobile-nav.is-open nav a:nth-child(1) { transition-delay: 0.08s; }
.mobile-nav.is-open nav a:nth-child(2) { transition-delay: 0.14s; }
.mobile-nav.is-open nav a:nth-child(3) { transition-delay: 0.20s; }
.mobile-nav.is-open nav a:nth-child(4) { transition-delay: 0.26s; }

.mobile-nav-cta {
  margin-top: 36px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.38s ease 0.32s, transform 0.42s cubic-bezier(0.22, 1, 0.36, 1) 0.32s,
              background 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.36s ease;
  background: linear-gradient(135deg, #1c1c1c, #2b2218);
  color: var(--white);
  border: 1px solid rgba(185, 161, 116, 0.38);
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.18);
  justify-content: center;
}

.mobile-nav-cta:hover {
  background: linear-gradient(135deg, #241c13, #4d3827);
  border-color: rgba(185, 161, 116, 0.7);
}

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

.mobile-nav-tagline {
  margin: 24px 0 0;
  font-size: 0.72rem;
  line-height: 1.6;
  color: rgba(17, 17, 17, 0.38);
  letter-spacing: 0.02em;
  opacity: 0;
  transition: opacity 0.38s ease 0.4s;
}

.mobile-nav.is-open .mobile-nav-tagline {
  opacity: 1;
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 54;
  background: rgba(17, 17, 17, 0.42);
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.38s ease;
}

.mobile-nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* Esconde no desktop */
@media (min-width: 960px) {
  .nav-toggle   { display: none; }
  .mobile-nav   { display: none; }
  .mobile-nav-overlay { display: none; }
}

/* â”€â”€ Float WhatsApp â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.floating-whatsapp {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 30;
  min-height: 52px;
  background: linear-gradient(135deg, #b9a174, #f0dbaf 42%, #8d6942 100%);
  color: var(--graphite);
  box-shadow: 0 16px 42px rgba(17, 17, 17, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(80px);
}

@keyframes buttonGlow {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes cardFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes reviewFloat {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -10px;
  }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(34px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroSlideIn {
  from {
    opacity: 0;
    transform: translateX(32px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.floating-whatsapp.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (min-width: 680px) {
  .hero-actions {
    display: flex;
  }

  .features-grid {
    padding: 0 clamp(24px, 5vw, 80px);
  }

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

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

  .process-section .btn {
    display: flex;
    width: fit-content;
  }
}

@keyframes connectorDraw {
  from { transform: scaleY(0); opacity: 0; }
  to   { transform: scaleY(1); opacity: 1; }
}

@keyframes connectorFlow {
  from { background-position: 0 0; }
  to   { background-position: 0 12px; }
}

@media (max-width: 959px) {
  /* â”€â”€ hero mobile â”€â”€ */
  .hero-image-wrap::after {
    background: linear-gradient(to top, #f0e8d9 0%, #f0e8d9 12%, rgba(240, 232, 217, 0.92) 28%, rgba(240, 232, 217, 0.4) 50%, transparent 72%);
  }

  .hero-visual::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 48px;
    background: linear-gradient(to bottom, transparent, #f0e8d9);
    pointer-events: none;
    z-index: 2;
  }

  /* mobile: empilha em 1 coluna, TEXTO primeiro e slide embaixo */
  .hero-inner {
    grid-template-columns: 1fr;
    padding: clamp(32px, 5vh, 56px) clamp(16px, 5vw, 32px) clamp(24px, 4vh, 48px);
    gap: 24px;
  }

  .hero-visual {
    width: 100%;
  }

  .hero-image-wrap img {
    aspect-ratio: 4/3;
    object-position: center top;
  }

  .hero-stats {
    position: absolute;
    bottom: 18px;
    left: 0;
    right: 0;
    flex-direction: row;
    justify-content: center;
    margin-top: 0;
    gap: 8px;
  }

  .hero-stat {
    min-width: 140px;
    padding: 12px 16px;
  }

  .hero-stat strong {
    font-size: 1.8rem;
  }

  .hero-copy {
    padding: 0;
  }

  .hero-actions {
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero-cta {
    width: 100%;
    justify-content: center;
  }

  /* â”€â”€ gutter Ãºnico mobile â”€â”€ */
  .container {
    padding: 0 20px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
  }

  .google-panel {
    padding: 0 20px;
    gap: 26px;
  }

  .footer-inner,
  .footer-bottom {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* â”€â”€ espaÃ§amento vertical das seÃ§Ãµes â”€â”€ */
  .section {
    padding: 52px 0;
  }

  .dark-section {
    padding: 48px 0;
  }

  .google-section {
    padding: 48px 0 36px;
  }

  .final-cta {
    padding: 56px 0 72px;
  }

  .hero-features {
    padding: 0;
  }

  .feature-card {
    border-right: 1px solid rgba(17, 17, 17, 0.07);
    border-bottom: 1px solid rgba(17, 17, 17, 0.07);
    padding: 28px 20px;
  }

  .feature-card:nth-child(even) { border-right: none; }
  .feature-card:nth-child(3),
  .feature-card:nth-child(4) { border-bottom: none; }

  /* â”€â”€ process trail mobile â”€â”€ */
  .process-trail {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: none;
    margin: 0 0 24px;
  }

  .process-trail::before {
    content: '';
    animation:
      connectorDraw 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both,
      connectorFlow 1.2s linear 1.2s infinite;
  }

  .process-trail article {
    display: grid;
    grid-template-columns: 54px 1fr;
    grid-template-areas:
      "num  img"
      ".    title"
      ".    text";
    gap: 10px 14px;
    align-items: start;
    padding: 0;
  }

  .process-trail span {
    grid-area: num;
    width: 46px;
    height: 46px;
    margin: 0;
    align-self: start;
  }

  .process-trail img {
    grid-area: img;
    aspect-ratio: 4/3;
    border-radius: 14px;
    height: auto;
    box-shadow: 0 14px 40px rgba(75, 52, 29, 0.18);
  }

  .process-title {
    grid-area: title;
    padding-left: 0;
    margin: 0;
  }

  .process-trail p {
    grid-area: text;
    padding: 0;
  }

  .site-header {
    gap: 8px;
    padding-right: 10px;
  }

  .brand-link {
    min-width: 132px;
    padding-right: 18px;
  }

  .brand-link img {
    width: 112px;
    max-height: 66px;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 16px;
    font-size: 0.78rem;
  }

  .google-score-line {
    width: 100%;
    border-radius: 22px;
  }

  .google-visual {
    min-height: 378px;
  }

  .google-floating-card {
    max-width: 200px;
  }

  .card-one {
    left: -24px;
  }

  .card-two {
    right: -24px;
    bottom: 28px;
  }

  .google-reviews {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 4px 2px 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .google-reviews::-webkit-scrollbar {
    display: none;
  }

  .review-card {
    min-width: min(78vw, 300px);
    scroll-snap-align: start;
  }

  .project-card > div:not(.visual) {
    transform: translateY(0);
    opacity: 1;
  }

}

@media (min-width: 960px) {
  .desktop-nav {
    display: flex;
  }

  .brand-link img {
    width: 132px;
    max-height: 78px;
  }

  .google-panel {
    grid-template-columns: minmax(330px, 0.9fr) minmax(420px, 1.1fr);
    align-items: center;
  }

  .google-reviews {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  h1 {
    font-size: clamp(3.6rem, 5.2vw, 6.2rem);
  }

  h2 {
    font-size: clamp(2rem, 3.2vw, 3.4rem);
  }

  .materials-heading {
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
    align-items: center;
  }

  .section {
    padding-top: 104px;
    padding-bottom: 104px;
    padding-left: 0;
    padding-right: 0;
  }

  .project-grid,
  .why-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .materials-panel {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .process-trail {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    flex-direction: unset;
    gap: 18px;
    margin: 0 auto 24px;
  }

  .process-trail::before {
    content: none;
  }

  .process-trail article {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "img"
      "num"
      "title"
      "text";
    gap: 14px;
    padding: 0 4px;
  }

  .process-trail span {
    grid-area: num;
    margin-top: -30px;
    margin-left: 8px;
    align-self: auto;
  }

  .process-trail img {
    grid-area: img;
    aspect-ratio: 1;
    border-radius: 24px;
    box-shadow: 0 28px 64px rgba(75, 52, 29, 0.22);
  }

  .process-title {
    grid-area: title;
    padding-left: 4px;
    margin: 6px 0 4px;
  }

  .process-trail p {
    grid-area: text;
    padding: 0 4px 4px;
  }

  .factory-section .container {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
    align-items: center;
    overflow: visible;
  }

  .factory-address {
    right: -20px;
    bottom: 24px;
  }

  .video-row {
    grid-auto-columns: minmax(250px, 28%);
  }

  .floating-whatsapp {
    left: auto;
    right: 24px;
    bottom: 24px;
    width: auto;
    padding: 0 24px;
  }
}

/* â”€â”€ FOOTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.site-footer {
  background: var(--graphite);
  color: rgba(255, 255, 255, 0.72);
  padding: 72px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px) 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  height: 88px;
  width: auto;
  object-fit: contain;
  object-position: center;
  margin: 0 auto 6px;
  display: block;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.84rem;
  line-height: 1.6;
  position: center;
  color: rgba(255, 255, 255, 0.54);
  margin: 0 0 22px;
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(185, 161, 116, 0.4);
  background: rgba(185, 161, 116, 0.1);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.footer-whatsapp:hover {
  background: rgba(185, 161, 116, 0.2);
  border-color: rgba(185, 161, 116, 0.7);
}

.footer-nav,
.footer-services,
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav strong,
.footer-services strong,
.footer-info strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 6px;
}

.footer-nav a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.18s ease;
}

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

.footer-services span,
.footer-info span {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.5;
}

.footer-address {
  display: flex;
  flex-direction: column;
  gap: 1px;
  font-style: normal;
}

.footer-badge {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(185, 161, 116, 0.1);
  border: 1px solid rgba(185, 161, 116, 0.2);
}

.footer-badge span {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 3px;
}

.footer-badge small {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.44);
  letter-spacing: 0.04em;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px clamp(24px, 5vw, 80px);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 959px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 959px) {
  .factory-address {
    right: 12px;
    bottom: 16px;
    max-width: 200px;
  }
}

/* â”€â”€ HERO SLIDER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-slider {
  position: relative;
}

.hero-slider {
  position: relative;
  aspect-ratio: 3/4;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}


.hero-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
}

.hero-slider-btn:hover {
  background: rgba(255, 255, 255, 0.36);
}

.hero-slider-prev { left: 10px; }
.hero-slider-next { right: 10px; }

.hero-slider-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 4;
}

.hero-slider-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.hero-slider-dots span.is-active {
  background: #fff;
  transform: scale(1.3);
}

/* â”€â”€ FACTORY SLIDER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.factory-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.factory-slide {
  display: none;
}

.factory-slide.is-active {
  display: block;
}

.factory-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  transition: background 0.18s;
}

.factory-slider-btn:hover { background: rgba(0, 0, 0, 0.52); }
.factory-slider-prev { left: 10px; }
.factory-slider-next { right: 10px; }

/* â”€â”€ DEPOIMENTOS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.testimonials-wrap {
  padding: 40px clamp(24px, 5vw, 80px) 56px;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(17, 17, 17, 0.07);
}

.reviews-section {
  background:
    radial-gradient(circle at 90% 10%, rgba(185, 161, 116, 0.12), transparent 40%),
    linear-gradient(180deg, #fdf8ee, #f5edd8);
}

.reviews-header {
  text-align: center;
  margin-bottom: 40px;
}

.reviews-header h2 {
  margin-top: 8px;
}

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

@media (max-width: 959px) {
  .reviews-grid { grid-template-columns: 1fr; }
}
@media (min-width: 600px) and (max-width: 959px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

/* â”€â”€ cards de depoimentos â”€â”€ */
.testimonial-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px 20px 20px;
  box-shadow: 0 4px 24px rgba(55, 38, 20, 0.07);
  border: 1px solid rgba(185, 161, 116, 0.14);
  display: flex;
  flex-direction: column;
  height: 220px;
  animation: materialFadeUp 0.36s ease both;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: rgba(185, 161, 116, 0.15);
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--graphite);
  font-family: "Montserrat", sans-serif;
  line-height: 1.2;
}

.testimonial-stars {
  color: #f5a623;
  font-size: 0.76rem;
  letter-spacing: 1.5px;
  line-height: 1;
}

.testimonial-text {
  font-size: 0.86rem;
  line-height: 1.65;
  color: rgba(17, 17, 17, 0.68);
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(185, 161, 116, 0.35) transparent;
}

.testimonial-text::-webkit-scrollbar { width: 2px; }
.testimonial-text::-webkit-scrollbar-track { background: transparent; }
.testimonial-text::-webkit-scrollbar-thumb {
  background: rgba(185, 161, 116, 0.45);
  border-radius: 99px;
}
.testimonial-text::-webkit-scrollbar-thumb:hover {
  background: rgba(185, 161, 116, 0.8);
}


.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(17, 17, 17, 0.06);
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: rgba(185, 161, 116, 0.15);
}

.review-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--graphite);
  font-family: "Montserrat", sans-serif;
}

.reviews-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.reviews-page-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(17, 17, 17, 0.16);
  background: transparent;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
  color: var(--graphite);
  font-family: "Montserrat", sans-serif;
}

.reviews-page-btn.is-active {
  background: var(--graphite);
  border-color: var(--graphite);
  color: #fff;
}

.reviews-page-btn:hover:not(.is-active) {
  background: rgba(17, 17, 17, 0.06);
}

.reviews-page-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(17, 17, 17, 0.16);
  background: transparent;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--graphite);
  transition: background 0.18s;
}

.reviews-page-arrow:hover { background: rgba(17, 17, 17, 0.06); }
.reviews-page-arrow:disabled { opacity: 0.3; cursor: default; }

.reviews-pages-desktop { display: flex; align-items: center; gap: 6px; }
.reviews-pages-mobile  { display: none; }

.reviews-ellipsis {
  font-size: 0.8rem;
  color: rgba(17,17,17,0.4);
  padding: 0 2px;
  line-height: 36px;
}

@media (max-width: 599px) {
  .reviews-pages-desktop { display: none; }
  .reviews-pages-mobile  { display: flex; align-items: center; gap: 4px; }
  .reviews-page-btn { width: 30px; height: 30px; font-size: 0.72rem; }
  .reviews-page-arrow { width: 30px; height: 30px; font-size: 1rem; }
}

@media (max-width: 959px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 600px) and (max-width: 959px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* â”€â”€ PARCEIROS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.partners-section {
  padding: 40px 0 48px;
  border-top: 1px solid rgba(17, 17, 17, 0.07);
  overflow: hidden;
}

.partners-eyebrow {
  text-align: center;
  margin-bottom: 28px;
}

.partners-marquee {
  overflow: hidden;
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: partnersMarquee 32s linear infinite;
  will-change: transform;
}

.partners-marquee:hover .partners-track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .partners-track { animation: none; flex-wrap: wrap; justify-content: center; }
}

.partners-track img {
  height: 114px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.6);
  transition: filter 0.3s ease;
  flex-shrink: 0;
}

.partners-track img:hover {
  filter: grayscale(0) opacity(1);
}

@keyframes partnersMarquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* â”€â”€ INSTAGRAM nav â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-instagram {
  display: flex;
  align-items: center;
  color: var(--graphite);
  opacity: 0.55;
  transition: opacity 0.18s;
}

.nav-instagram:hover { opacity: 1; }

.header-instagram-mobile {
  display: flex;
  align-items: center;
  color: var(--graphite);
  opacity: 0.6;
  transition: opacity 0.18s;
}

.header-instagram-mobile:hover { opacity: 1; }

@media (min-width: 960px) {
  .header-instagram-mobile { display: none; }
}

@media (max-width: 959px) {
  .header-actions .nav-instagram { display: none; }
}

.mobile-nav-instagram {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 0.82rem;
  color: rgba(17, 17, 17, 0.54);
  text-decoration: none;
  transition: color 0.18s;
}

.mobile-nav-instagram:hover { color: var(--graphite); }

/* â”€â”€ FOOTER instagram â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.footer-instagram {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.44);
  text-decoration: none;
  transition: color 0.18s;
}

.footer-instagram:hover { color: rgba(255, 255, 255, 0.8); }

/* â”€â”€ MATERIAL CARD animation â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes materialFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.material-card {
  animation: materialFadeUp 0.38s ease both;
}

.material-card:nth-child(1)  { animation-delay: 0.00s; }
.material-card:nth-child(2)  { animation-delay: 0.05s; }
.material-card:nth-child(3)  { animation-delay: 0.10s; }
.material-card:nth-child(4)  { animation-delay: 0.15s; }
.material-card:nth-child(5)  { animation-delay: 0.20s; }
.material-card:nth-child(6)  { animation-delay: 0.25s; }
.material-card:nth-child(7)  { animation-delay: 0.30s; }
.material-card:nth-child(8)  { animation-delay: 0.35s; }

/* â”€â”€ HERO PLAY icon pulse â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes playPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(17,17,17,0.18); }
  50%       { box-shadow: 0 0 0 8px rgba(17,17,17,0); }
}

/* â”€â”€ hero play â€” centralize no mobile â”€â”€â”€â”€â”€ */
@media (max-width: 959px) {
  .hero-play-link {
    justify-content: center;
  }
}

/* ── FAQ (perguntas frequentes) ─────────────── */
.faq-section .section-copy {
  margin-bottom: 32px;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 16px;
  padding: 0 22px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item[open] {
  border-color: rgba(185, 161, 116, 0.5);
  box-shadow: 0 14px 40px rgba(55, 38, 20, 0.08);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--graphite, #111);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(17, 17, 17, 0.2);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--gold-dark, #8d6435);
  transition: transform 0.25s ease, background 0.2s ease, color 0.2s ease;
}

.faq-item[open] summary::after {
  content: "\2212";
  transform: rotate(180deg);
  background: var(--gold, #b9a174);
  border-color: transparent;
  color: #fff;
}

.faq-answer {
  overflow: hidden;
  transition: height 0.36s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
  margin: 0 0 22px;
  color: rgba(17, 17, 17, 0.7);
  font-size: 0.96rem;
  line-height: 1.65;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.32s ease 0.06s, transform 0.32s ease 0.06s;
}

.faq-item[open] .faq-answer p {
  opacity: 1;
  transform: none;
}

@media (max-width: 599px) {
  .faq-item { padding: 0 18px; }
  .faq-item summary { font-size: 0.94rem; padding: 18px 0; }
}

