:root {
  --charcoal: #090604;
  --smoke: #17100c;
  --wood-dark: #2a160e;
  --wood: #5d351f;
  --wood-warm: #8a4b27;
  --brick: #a95131;
  --brick-dark: #65311f;
  --gold: #d89338;
  --cream: #f4ead8;
  --paper: #f8f1e4;
  --paper-deep: #eadcc8;
  --muted: #bfae95;
  --sage: #6d775a;
  --line-dark: rgba(244, 234, 216, 0.14);
  --line-light: rgba(42, 22, 14, 0.14);
  --shadow: 0 24px 70px rgba(9, 6, 4, 0.28);
  --radius: 6px;
  --title: "Bree Serif", Georgia, serif;
  --condensed: "Barlow Condensed", Arial, sans-serif;
  --body: "Outfit", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--charcoal);
  color: var(--cream);
  font-family: var(--body);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 88px 88px;
  will-change: auto;
  contain: strict;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--paper);
  color: var(--charcoal);
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.icon {
  width: 1.1em;
  height: 1.1em;
  fill: currentColor;
  flex: 0 0 auto;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--gold);
  font-family: var(--condensed);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: var(--title);
  font-weight: 400;
  line-height: 1.05;
}

h1 {
  max-width: 760px;
  margin-bottom: 1.35rem;
  color: #fff8ed;
  font-size: clamp(3rem, 5.7vw, 5.4rem);
  line-height: 1.02;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.55);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.35rem, 5vw, 4.2rem);
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.55rem;
}

p {
  color: inherit;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3.35rem;
  padding: 0.95rem 1.35rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--cream);
  font-family: var(--condensed);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #24d366;
  color: #fff;
  box-shadow: 0 14px 34px rgba(36, 211, 102, 0.28);
}

.btn-whatsapp:hover {
  background: #1fbd5b;
}

.btn-outline {
  border-color: rgba(216, 147, 56, 0.55);
  background: rgba(9, 6, 4, 0.18);
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(216, 147, 56, 0.1);
}

.btn-instagram {
  background: linear-gradient(135deg, #7f37b8, #d93472 45%, #f2a247);
  color: #fff;
}

.btn-large {
  min-width: min(100%, 320px);
  min-height: 3.75rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 0.85rem 0;
  transition: background 180ms ease, border-color 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  padding: 0.55rem 0;
  background: rgba(9, 6, 4, 0.9);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand img {
  width: 58px;
  aspect-ratio: 1;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(216, 147, 56, 0.45);
}

.brand strong,
.footer-brand span {
  display: block;
  color: var(--cream);
  font-family: var(--title);
  font-size: 1.15rem;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 0.15rem;
  color: var(--muted);
  font-family: var(--condensed);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2rem);
}

.nav-links a,
.site-footer nav a {
  position: relative;
  color: rgba(244, 234, 216, 0.78);
  font-family: var(--condensed);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 220ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.25rem;
  border: 1px solid rgba(36, 211, 102, 0.5);
  border-radius: 999px;
  color: #5dff97;
  font-family: var(--condensed);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 250ms ease;
}

.header-cta:hover {
  background: #24d366;
  color: #fff;
  border-color: #24d366;
  box-shadow: 0 0 20px rgba(36, 211, 102, 0.35);
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--cream);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

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

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: grid;
  align-content: center;
  gap: 1.25rem;
  padding: 7rem 2rem 2rem;
  background:
    linear-gradient(rgba(9, 6, 4, 0.94), rgba(9, 6, 4, 0.96)),
    linear-gradient(90deg, var(--wood-dark), var(--brick-dark));
  transform: translateX(100%);
  transition: transform 220ms ease;
}

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

.mobile-menu a {
  color: var(--cream);
  font-family: var(--title);
  font-size: clamp(2rem, 10vw, 3rem);
}

.mobile-menu .mobile-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  margin-top: 0.75rem;
  padding: 0.95rem 1.2rem;
  border-radius: var(--radius);
  background: #24d366;
  color: #fff;
  font-family: var(--condensed);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: clamp(2rem, 5vw, 5rem);
  min-height: 100svh;
  padding: 9rem max(20px, calc((100vw - 1180px) / 2)) 4rem;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(9, 6, 4, 0.84) 0%, rgba(9, 6, 4, 0.72) 36%, rgba(9, 6, 4, 0.38) 68%, rgba(9, 6, 4, 0.22) 100%),
    linear-gradient(180deg, rgba(9, 6, 4, 0.2), rgba(9, 6, 4, 0.34)),
    url("../img/hero-madeira-rustica.png") center / 100% 100% no-repeat,
    #150b07;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.18;
  background:
    radial-gradient(circle at 82% 22%, rgba(216, 147, 56, 0.16), transparent 22rem),
    repeating-linear-gradient(90deg, transparent 0 44px, rgba(255, 255, 255, 0.018) 44px 45px);
}

.hero-text {
  align-self: center;
  max-width: 830px;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 2rem;
  color: rgba(244, 234, 216, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.25rem);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.2rem;
}

.hero-proof span {
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: rgba(244, 234, 216, 0.78);
  font-family: var(--condensed);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  align-self: end;
  min-height: 570px;
}

.logo-board {
  position: absolute;
  top: 4rem;
  right: 0;
  width: 210px;
  z-index: 5;
  padding: 1rem;
  background: linear-gradient(135deg, #1c120d, #2a160e);
  border: 8px solid #090604;
  box-shadow:
    0 30px 60px -12px rgba(0, 0, 0, 0.8),
    inset 0 0 30px rgba(0, 0, 0, 0.4);
  transform: rotate(3deg);
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
}

.logo-board:hover {
  transform: rotate(0deg) scale(1.05);
}

.visual-card,
.portfolio-item {
  position: absolute;
  overflow: hidden;
  background: var(--wood-dark);
  border: 4px solid #1a100b;
  border-radius: 4px;
  box-shadow:
    0 10px 30px -5px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 0 20px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  will-change: auto;
}

.visual-card::before,
.portfolio-item::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.9;
  transition: transform 800ms cubic-bezier(0.23, 1, 0.32, 1), opacity 400ms ease;
}

.visual-card::after,
.portfolio-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(9, 6, 4, 0.9));
  z-index: 1;
}

.visual-card:hover {
  z-index: 20;
  border-color: var(--gold);
  box-shadow:
    0 20px 50px -10px rgba(0, 0, 0, 0.9),
    0 0 15px rgba(216, 147, 56, 0.2);
}

.visual-card:hover::before {
  transform: scale(1.1);
  opacity: 1;
}

.visual-card span,
.portfolio-item span {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  color: #fff7ea;
  font-family: var(--condensed);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visual-card-large {
  inset: 7rem 8rem 4rem 0;
  transform: rotate(-1.5deg);
}

.visual-card-large::before {
  background:
    linear-gradient(180deg, rgba(9, 6, 4, 0.08), rgba(9, 6, 4, 0.48)),
    url("../img/Fachadas.jpg") center / cover no-repeat;
}

.portfolio-wood::before {
  background:
    linear-gradient(180deg, rgba(9, 6, 4, 0.04), rgba(9, 6, 4, 0.52)),
    url("../img/mesa_azuleijo.jpg") center / cover no-repeat;
}

.visual-card-aparador {
  right: -1rem;
  bottom: -1.5rem;
  width: 44%;
  height: 380px;
  transform: rotate(2deg);
  z-index: 2;
}

.visual-card-brick {
  right: 0;
  bottom: 1rem;
  width: 48%;
  height: 220px;
}

.visual-card-brick::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.12) 2px, transparent 2px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 2px, transparent 2px),
    linear-gradient(135deg, #b45e38, #7b3d27);
  background-size: 72px 36px, 72px 36px, auto;
}

.portfolio-churrasqueira::before {
  background:
    linear-gradient(180deg, rgba(9, 6, 4, 0.04), rgba(9, 6, 4, 0.52)),
    url("../img/churrasqueira.jpg") center / cover no-repeat;
}

.visual-card-aparador::before {
  background:
    linear-gradient(180deg, rgba(9, 6, 4, 0.12), rgba(9, 6, 4, 0.52)),
    url("../img/aparador.jpg") center / cover no-repeat;
}

.visual-card-deck {
  top: -1.5rem;
  left: 1rem;
  width: 66%;
  height: 160px;
  transform: rotate(-1deg);
  z-index: 1;
}

.visual-card-dark {
  top: 0;
  left: 3rem;
  width: 42%;
  height: 185px;
}

.visual-card-dark::before {
  background:
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(255, 255, 255, 0.04) 18px 20px),
    linear-gradient(135deg, #1c120d, #56311e 58%, #1a100b);
}

.portfolio-antes-depois::before {
  background:
    linear-gradient(180deg, rgba(9, 6, 4, 0.04), rgba(9, 6, 4, 0.52)),
    url("../img/antesedepois.jpg") center / cover no-repeat;
}

.visual-card-deck::before {
  background:
    linear-gradient(180deg, rgba(9, 6, 4, 0.12), rgba(9, 6, 4, 0.52)),
    url("../img/deck.jpeg") center / cover no-repeat;
}

.intro-band {
  position: relative;
  z-index: 2;
  padding: 2.7rem 0;
  background: var(--paper);
  color: var(--wood-dark);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.quote {
  margin: 0;
  color: var(--wood-dark);
  font-family: var(--title);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
}

.intro-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.intro-list span {
  padding: 0.9rem 1rem;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: #fff9ed;
  color: var(--wood-dark);
  font-family: var(--condensed);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section {
  position: relative;
  z-index: 1;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.section-light {
  background: var(--paper);
  color: var(--wood-dark);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 3rem;
}

.section-heading p:not(.eyebrow),
.brand-story p,
.contact-inner p {
  color: rgba(42, 22, 14, 0.75);
  font-size: 1.08rem;
}

.carousel-container {
  position: relative;
  width: 100%;
  padding: 4rem 0 6rem;
  perspective: 2000px;
  overflow: hidden;
}

.carousel-3d {
  position: relative;
  width: 100%;
  height: 520px;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.carousel-item {
  position: absolute;
  top: 0;
  left: 50%;
  width: 380px;
  height: 500px;
  margin-left: -190px;
  transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  user-select: none;
  opacity: 0;
  pointer-events: none;
}

.carousel-item.active {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotateY(0deg);
  z-index: 10;
  pointer-events: auto;
}

.carousel-item.prev {
  opacity: 0.6;
  transform: translate3d(-110%, 0, -350px) rotateY(35deg);
  z-index: 5;
  pointer-events: auto;
}

.carousel-item.next {
  opacity: 0.6;
  transform: translate3d(110%, 0, -350px) rotateY(-35deg);
  z-index: 5;
  pointer-events: auto;
}

.carousel-item.far-prev {
  opacity: 0.25;
  transform: translate3d(-180%, 0, -600px) rotateY(45deg);
  z-index: 1;
}

.carousel-item.far-next {
  opacity: 0.25;
  transform: translate3d(180%, 0, -600px) rotateY(-45deg);
  z-index: 1;
}

.item-inner {
  height: 100%;
  background: var(--paper-deep);
  border: 1px solid var(--line-light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
}

.item-img {
  height: 310px;
  overflow: hidden;
  border-bottom: 3px solid var(--wood-dark);
}

.item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.carousel-item:hover .item-img img {
  transform: scale(1.08);
}

.item-content {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.item-content h3 {
  color: var(--wood-dark);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.item-content p {
  font-size: 0.9rem;
  color: rgba(42, 22, 14, 0.78);
  margin-bottom: 0;
  line-height: 1.4;
}

.item-link {
  margin-top: auto;
  color: var(--wood-warm);
  font-family: var(--condensed);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
}

.carousel-arrows {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-bottom: 2rem;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 3rem;
}

.carousel-prev,
.carousel-next {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--wood-dark);
  color: var(--gold);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.carousel-prev:hover,
.carousel-next:hover {
  transform: scale(1.1);
  background: var(--gold);
  color: var(--wood-dark);
  box-shadow: 0 8px 24px rgba(216, 147, 56, 0.3);
}

.carousel-prev svg { transform: rotate(180deg); }

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--muted);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--gold);
  transform: scale(1.4);
}



.brand-section {
  background:
    linear-gradient(90deg, rgba(9, 6, 4, 0.92), rgba(9, 6, 4, 0.78)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 42px),
    linear-gradient(135deg, #150b07, #4c2716 48%, #10100b);
}

.brand-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.brand-story h2 {
  color: #fff7ea;
}

.brand-story p {
  color: rgba(244, 234, 216, 0.76);
}

.brand-panel {
  padding: 1.4rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(9, 6, 4, 0.32);
  box-shadow: var(--shadow);
}

.brand-panel img {
  width: 100%;
  border: 8px solid rgba(5, 4, 3, 0.9);
}

.brand-panel p {
  margin: 1.25rem 0 0;
  color: rgba(244, 234, 216, 0.78);
}

.portfolio-section {
  background: #fff9ef;
  color: var(--wood-dark);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  grid-auto-rows: 250px;
  gap: 1rem;
}

.portfolio-item {
  position: relative;
  min-height: 250px;
}

.portfolio-item:first-child {
  grid-row: span 2;
}

.portfolio-flower::before {
  background:
    linear-gradient(180deg, rgba(9, 6, 4, 0.04), rgba(9, 6, 4, 0.52)),
    url("../img/floreira1.jpg") center / cover no-repeat;
}

.instagram-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--paper);
}

.instagram-strip h3 {
  margin-bottom: 0.35rem;
}

.instagram-strip p:last-child {
  margin-bottom: 0;
  color: rgba(42, 22, 14, 0.72);
}

.process-section {
  background:
    linear-gradient(rgba(9, 6, 4, 0.9), rgba(9, 6, 4, 0.92)),
    linear-gradient(90deg, var(--brick-dark), var(--wood-dark));
}

.process-section .section-heading p:not(.eyebrow) {
  color: rgba(244, 234, 216, 0.75);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.step {
  padding: 1.3rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--title);
  font-size: 1.2rem;
}

.step p {
  margin-bottom: 0;
  color: rgba(244, 234, 216, 0.72);
}

.contact-section {
  position: relative;
  z-index: 1;
  padding: clamp(5rem, 9vw, 8rem) 0;
  background:
    linear-gradient(110deg, rgba(248, 241, 228, 0.94), rgba(248, 241, 228, 0.88)),
    repeating-linear-gradient(90deg, #9c5d32 0 42px, #814a29 42px 84px);
  color: var(--wood-dark);
}

.contact-inner {
  max-width: 830px;
}

.contact-inner h2 {
  max-width: 740px;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.4rem 0 2rem;
}

.contact-details span {
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  color: var(--wood-dark);
  font-family: var(--condensed);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer {
  padding-top: 6rem;
  background: #0d0907;
  color: #fff7ea;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.6fr 0.7fr 1fr;
  gap: 4rem;
  padding-bottom: 5rem;
  align-items: start;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.footer-col h4 {
  color: var(--gold);
  font-family: var(--title);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 0.5rem;
}

.footer-info .footer-brand {
  margin-bottom: 1.5rem;
}

.footer-info p {
  color: rgba(244, 234, 216, 0.65);
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1.25rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff7ea;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--wood-dark);
  border-color: var(--gold);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-nav a {
  color: rgba(244, 234, 216, 0.65);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

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

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-contact p {
  color: rgba(244, 234, 216, 0.65);
  font-size: 0.95rem;
  margin: 0;
}

.footer-contact strong {
  color: #fff7ea;
  font-weight: 600;
}

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  background: #090604;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(244, 234, 216, 0.45);
}

.footer-bottom-inner a {
  color: var(--gold);
  font-weight: 600;
}

.floating-whatsapp {
  position: fixed;
  right: 1.35rem;
  bottom: 1.35rem;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #24d366;
  color: #fff;
  box-shadow: 0 18px 36px rgba(36, 211, 102, 0.34);
  transition: transform 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.04);
}

.floating-whatsapp .icon {
  width: 30px;
  height: 30px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

.delay-one {
  transition-delay: 90ms;
}

.delay-two {
  transition-delay: 180ms;
}

.delay-three {
  transition-delay: 270ms;
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* --- Mobile Refinement --- */

@media (max-width: 1080px) {
  .nav-links,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 7rem;
    text-align: center;
  }

  .hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    min-height: 520px;
    margin-top: 3rem;
    perspective: 1000px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .visual-card {
    position: absolute !important;
    width: 65% !important;
    height: 220px !important;
    transition: all 0.5s ease;
  }

  .visual-card-large {
    inset: auto !important;
    width: 75% !important;
    height: 260px !important;
    z-index: 2;
    transform: rotate(2deg) translateY(-20px) !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  }

  .visual-card-deck {
    display: block !important;
    top: -10px !important;
    left: 8% !important;
    width: 55% !important;
    height: 180px !important;
    z-index: 5;
    transform: rotate(-6deg) !important;
    opacity: 1;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  }

  .visual-card-aparador {
    display: block !important;
    bottom: -10px !important;
    right: 8% !important;
    width: 55% !important;
    height: 180px !important;
    z-index: 6;
    transform: rotate(5deg) !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  }

  .visual-card-brick {
    display: block !important;
    top: 40px !important;
    right: 10% !important;
    width: 50% !important;
    height: 160px !important;
    z-index: 2;
    transform: rotate(12deg) !important;
    opacity: 0.6;
  }
  
  .logo-board {
    width: 140px !important;
    top: -20px !important;
    right: 0 !important;
    z-index: 10;
    transform: rotate(5deg) scale(0.9) !important;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 3.5rem;
  }

  .section {
    padding: var(--section-padding) 0;
  }

  h1 { font-size: clamp(2.2rem, 9vw, 3.2rem); }
  h2 { font-size: clamp(1.7rem, 7vw, 2.2rem); }

  .hero {
    padding-bottom: 3rem;
    background-size: cover;
    background-position: center;
  }

  .hero-visual {
    min-height: 380px;
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(9, 6, 4, 0.98);
    backdrop-filter: blur(20px);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
    transform: translateY(-20px);
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--gold);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 101;
    transition: background 0.3s ease;
  }

  .mobile-menu-close:active {
    background: rgba(216, 147, 56, 0.2);
  }

  .mobile-menu-close svg {
    width: 26px;
    height: 26px;
    stroke-width: 3px;
  }

  .mobile-menu a {
    color: #fff;
    font-family: var(--title);
    font-size: 1.75rem;
    text-decoration: none;
  }

  .mobile-whatsapp {
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: #24d366;
    border-radius: 999px;
    color: #fff !important;
    font-family: var(--condensed) !important;
    font-size: 1.1rem !important;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .intro-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }

  .brand-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem;
  }

  .steps {
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem;
  }

  .step {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 2rem 1.5rem;
  }

  .footer-col:first-child {
    grid-column: 1 / -1;
    text-align: center;
    align-items: center;
  }

  .footer-col {
    align-items: flex-start;
    text-align: left;
  }

  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
    gap: 0.75rem;
  }

  .portfolio-item {
    height: auto;
    min-height: 200px;
  }

  .portfolio-item:first-child {
    grid-row: auto;
    grid-column: 1 / -1;
    min-height: 260px;
  }

  .portfolio-item span {
    font-size: 1rem;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .carousel-container {
    padding: 2rem 0 4rem;
  }

  .carousel-3d {
    height: 460px;
    touch-action: pan-y;
  }

  .carousel-item {
    width: 280px;
    height: 460px;
    margin-left: -140px;
  }

  .carousel-item.prev { transform: translate3d(-60%, 0, -250px) rotateY(25deg); }
  .carousel-item.next { transform: translate3d(60%, 0, -250px) rotateY(-25deg); }

  .carousel-arrows {
    justify-content: center;
    margin-top: 1.5rem;
    margin-bottom: 0;
    order: 1;
  }

  .carousel-dots {
    margin-top: 1.5rem;
  }

  .instagram-strip {
    text-align: center;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.25rem;
  }

  .contact-section {
    text-align: center;
  }

  .contact-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contact-details {
    justify-content: center;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .testimonial-card {
    width: 280px;
    padding: 1.5rem;
  }

  .section-heading {
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 6rem;
    padding-bottom: 2rem;
  }

  .hero-visual {
    min-height: 320px;
    margin-top: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-large, .hero-actions .btn {
    width: 100%;
  }

  .hero-proof {
    flex-direction: column;
    gap: 0.5rem;
  }

  .steps {
    grid-template-columns: 1fr !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }

  .footer-col {
    align-items: center;
    text-align: center;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .portfolio-item:first-child {
    grid-column: auto;
  }

  .carousel-item {
    width: 260px;
    height: 440px;
    margin-left: -130px;
  }

  .floating-whatsapp {
    width: 54px;
    height: 54px;
    right: 1rem;
    bottom: 1rem;
  }

  .floating-whatsapp .icon {
    width: 26px;
    height: 26px;
  }

  .lightbox img {
    max-width: 95vw;
    max-height: 70vh;
    border-width: 6px;
    border-bottom-width: 24px;
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(9, 6, 4, 0.95);
  display: grid;
  place-items: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
  backdrop-filter: blur(12px);
}

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

.lightbox-content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(0.9);
  transition: transform 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lightbox.is-active .lightbox-content {
  transform: scale(1);
}

.lightbox img {
  display: block;
  max-width: 90vw;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border: 12px solid #fff;
  border-bottom-width: 40px; /* Estilo polaroid rústico */
  border-radius: 2px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.9);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  background: var(--gold);
  border: none;
  border-radius: 50%;
  color: var(--wood-dark);
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, background 0.2s ease;
}

.lightbox-close:hover {
  transform: scale(1.1) rotate(90deg);
  background: #fff;
}

@media (max-width: 768px) {
  .lightbox {
    padding: 1rem;
  }
}

/* Zoom Indicator (Lupinha) */
[data-zoom] {
  cursor: zoom-in;
}

/* No carrossel, colocamos a lupa sobre a imagem */
.carousel-item .item-img,
.portfolio-item {
  position: relative;
}

.carousel-item .item-img::after,
.portfolio-item::after {
  content: "";
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 42px;
  height: 42px;
  background: var(--gold) url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%232a160e" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line></svg>') center / 20px no-repeat;
  border-radius: 50%;
  opacity: 0;
  transform: translateY(10px) scale(0.8);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 10;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.carousel-item.active:hover .item-img::after,
.portfolio-item:hover::after {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Depoimentos... (re-adicionando o comentário que estava na linha 1446) */
/* Testimonials */
.testimonials-section {
  padding-bottom: 8rem;
  overflow: hidden;
}

.testimonials-track-container {
  position: relative;
  width: 100%;
  padding: 2rem 0;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
}

.testimonials-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: scrollTestimonials 40s linear infinite;
}

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

.testimonial-card {
  flex-shrink: 0;
  width: clamp(300px, 40vw, 450px);
  padding: 2.5rem;
  background: var(--paper-deep);
  border: 1px solid var(--line-light);
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(42, 22, 14, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--wood-dark);
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
}

.testimonial-content p::before {
  content: "“";
  position: absolute;
  top: -1.5rem;
  left: -1rem;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  font-family: serif;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.user-info strong {
  display: block;
  font-family: var(--title);
  font-size: 1.1rem;
  color: var(--wood-dark);
}

.user-info span {
  font-size: 0.85rem;
  color: var(--muted);
  font-family: var(--condensed);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@keyframes scrollTestimonials {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 1rem)); }
}


