:root {
  --cream: #D4C89A;
  --cream-light: #EAE2C6;
  --cream-pale: #F2EDD8;
  --cream-dark: #B8A96A;
  --slate: #4A4A42;
  --slate-dark: #2E2E28;
  --slate-light: #6E6E64;
  --slate-xlight: #9A9A90;
  --off-white: #F5F2EA;
  --warm-white: #FAFAF8;
  --line: rgba(74,74,66,0.12);
  --line-med: rgba(74,74,66,0.22);
  --line-strong: rgba(74,74,66,0.4);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--warm-white);
  color: var(--slate-dark);
  overflow-x: hidden;
}

/* ═══════════════════════════════
   NAVIGATION
═══════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 4rem;
  background: #030402;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 0.5px solid rgba(212,200,154,0.18);
  transition: padding 0.35s ease;
}

nav.scrolled { padding: 1rem 4rem; }

.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-image {
  width: clamp(145px, 14vw, 205px);
  height: auto;
  display: block;
}

.nav-links {
  display: flex; gap: 2.8rem; list-style: none;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-links a {
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(212,200,154,0.72); text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0; right: 0;
  height: 0.5px; background: var(--cream-dark);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-links a:hover { color: var(--cream-light); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: #000;
  background: var(--cream);
  padding: 0.75rem 1.8rem;
  text-decoration: none;
  transition: background 0.2s, letter-spacing 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--cream-light); letter-spacing: 0.28em; }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column;
  gap: 5px; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 0.5px;
  background: var(--cream); transition: all 0.3s;
}

/* ═══════════════════════════════
   HERO
═══════════════════════════════ */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 55% 45%;
  padding-top: 73px;
  position: relative;
  overflow: hidden;
  background: url('/static/assets/images/home/hero-new.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(46,46,40,0.04) 0%, rgba(46,46,40,0.08) 100%);
  pointer-events: none;
}

.hero-left {
  background: transparent;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 7rem 5rem 6rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Marble vein SVG texture on dark panel */
.hero-left::before {
  content: '';
  position: absolute; inset: 0;
  background: none;
  pointer-events: none;
}

/* Diagonal cut right edge */
.hero-left::after {
  content: none;
}

.hero-tag {
  font-size: 8.5px; font-weight: 500;
  letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--cream); margin-bottom: 2.2rem;
  opacity: 0.8;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 4.5vw, 5.2rem);
  font-weight: 300; line-height: 1.1;
  color: #454443;
  margin-bottom: 1.8rem;
  position: relative; z-index: 1;
}
.hero-title em { font-style: italic; color: #454443; }

.hero-desc {
  font-size: 11px; font-weight: 300;
  letter-spacing: 0.06em; line-height: 2.1;
  color: #454443;
  max-width: 360px; margin-bottom: 3.5rem;
  position: relative; z-index: 1;
}

.hero-ctas {
  display: flex; gap: 1rem; align-items: center;
  position: relative; z-index: 1;
}

.btn-primary {
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--slate-dark); background: var(--cream);
  padding: 1.1rem 2.4rem; text-decoration: none;
  transition: background 0.25s, letter-spacing 0.25s;
}
.btn-primary:hover { background: var(--cream-light); letter-spacing: 0.3em; }

.btn-outline {
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: #454443;
  padding: 1.1rem 1.6rem; text-decoration: none;
  border: 0.5px solid rgba(3,4,2,0.28);
  background: rgba(255,255,255,0.36);
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.btn-outline:hover { border-color: #030402; color: #030402; background: rgba(255,255,255,0.52); }

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 3rem; left: 5rem;
  display: flex; align-items: center; gap: 1rem; z-index: 3;
}
.hero-scroll-line {
  width: 40px; height: 0.5px; background: rgba(212,200,154,0.4);
}
.hero-scroll-text {
  font-size: 8px; letter-spacing: 0.35em; text-transform: uppercase;
  color: rgba(212,200,154,0.4);
}

/* Hero right — marble texture panel */
.hero-right {
  position: relative; overflow: hidden;
}

.hero-right::before {
  content: none;
}

.hero-right-vein {
  display: none;
}

.hero-right-content {
  position: absolute; inset: 0;
}

.hero-right-corner {
  position: absolute; right: 3rem; bottom: 3rem;
  display: flex; flex-direction: column; align-items: flex-end; gap: 0.8rem;
}
.hero-corner-line {
  width: 72px; height: 1px; background: #030402;
}
.hero-corner-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #030402;
  line-height: 1;
}

/* ═══════════════════════════════
   DIVIDERS
═══════════════════════════════ */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--cream-dark) 30%, var(--cream-dark) 70%, transparent 100%);
  opacity: 0.35;
}

/* ═══════════════════════════════
   SECTION SHARED
═══════════════════════════════ */
.section-tag {
  font-size: 8.5px; font-weight: 500;
  letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--cream-dark); margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 1rem;
}
.section-tag::before {
  content: '';
  display: inline-block;
  width: 28px; height: 0.5px; background: var(--cream-dark);
  flex-shrink: 0;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 2.8vw, 3rem);
  font-weight: 300; line-height: 1.18;
  color: var(--slate-dark); margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--slate-light); }

.section-text {
  font-size: 11.5px; font-weight: 300;
  line-height: 2.1; color: var(--slate-light);
}

/* ═══════════════════════════════
   EMPRESA INTRO
═══════════════════════════════ */
#empresa-intro {
  padding: 5.5rem 2rem 5rem;
  background:
    linear-gradient(180deg, rgba(234,226,198,0.34) 0%, rgba(245,242,234,0.92) 42%, var(--warm-white) 100%);
  text-align: center;
}

.empresa-intro-inner {
  max-width: 920px;
  margin: 0 auto;
}

.empresa-intro-title {
  margin-bottom: 1.2rem;
}

.empresa-intro-text {
  max-width: 820px;
  margin: 0 auto;
  font-size: 13px;
  line-height: 2.15;
}

.empresa-intro-actions {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

/* ═══════════════════════════════
   DISCOVER
═══════════════════════════════ */
#discover {
  padding: 0;
  background: var(--warm-white);
}

.discover-row {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  min-height: 72vh;
}

.discover-row + .discover-row {
  border-top: 0.5px solid var(--line-med);
}

.discover-row.reverse {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.discover-visual {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  background: var(--slate);
}

.discover-visual-inner {
  position: absolute;
  inset: 0;
}

.discover-visual-inner::before,
.discover-visual-inner::after {
  content: '';
  position: absolute;
  inset: 0;
}

.discover-visual-inner::before {
  background-image:
    repeating-linear-gradient(
      -36deg,
      transparent 0px, transparent 36px,
      rgba(255,255,255,0.12) 36px, rgba(255,255,255,0.12) 37px
    ),
    repeating-linear-gradient(
      24deg,
      transparent 0px, transparent 88px,
      rgba(46,46,40,0.08) 88px, rgba(46,46,40,0.08) 89px
    );
  mix-blend-mode: screen;
  opacity: 0.55;
}

.discover-visual-inner::after {
  background:
    radial-gradient(circle at 22% 24%, rgba(255,255,255,0.28), transparent 30%),
    radial-gradient(circle at 78% 70%, rgba(46,46,40,0.26), transparent 34%);
  opacity: 0.9;
}

.dv-1 {
  background:
    linear-gradient(145deg, rgba(245,242,234,0.18), rgba(245,242,234,0) 35%),
    url('/static/assets/images/home/cozinhas-bancadas-077.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(-1deg) scale(1.04);
  transform-origin: center;
}

.dv-2 {
  background:
    linear-gradient(135deg, rgba(46,46,40,0.12), rgba(46,46,40,0) 38%),
    url('/static/assets/images/home/casas-banho-082.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.dv-3 {
  background:
    linear-gradient(155deg, rgba(250,250,248,0.2), rgba(250,250,248,0) 30%),
    url('/static/assets/images/home/pavimentos-167.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.discover-label {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  z-index: 1;
  font-size: 8px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.78);
  background: rgba(46,46,40,0.58);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 0.95rem 1.2rem;
  border: 0.5px solid rgba(250,250,248,0.14);
}

.discover-content {
  padding: 6rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--warm-white);
  position: relative;
}

.discover-content.dark {
  background: var(--slate-dark);
}

.discover-content.dark .section-eyebrow {
  color: rgba(212,200,154,0.68);
}

.discover-content.dark .section-eyebrow::before {
  background: rgba(212,200,154,0.68);
}

.discover-content.dark .section-heading {
  color: var(--cream-light);
}

.discover-content.dark .section-heading em {
  color: var(--cream);
}

.discover-content.dark .section-body {
  color: rgba(234,226,198,0.62);
}

.discover-content.dark .discover-link {
  color: var(--cream-light);
  border-color: rgba(212,200,154,0.22);
}

.discover-content.dark .discover-link:hover {
  border-color: rgba(212,200,154,0.55);
}

.section-eyebrow {
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--slate-xlight);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.section-eyebrow::before {
  content: '';
  width: 24px;
  height: 0.5px;
  background: var(--slate-xlight);
}

.discover-heading-wrap {
  max-width: 520px;
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 3.6vw, 4.1rem);
  font-weight: 300;
  line-height: 1.02;
  color: var(--slate-dark);
  margin-bottom: 1.8rem;
}

.section-heading em {
  font-style: italic;
  color: var(--slate-light);
}

.section-body {
  max-width: 470px;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 2.05;
  color: var(--slate-light);
  margin-bottom: 2rem;
}

.discover-link {
  width: fit-content;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--slate-dark);
  text-decoration: none;
  padding-bottom: 0.45rem;
  border-bottom: 0.5px solid var(--line-strong);
  transition: letter-spacing 0.25s ease, border-color 0.25s ease;
}

.discover-link:hover {
  letter-spacing: 0.3em;
  border-color: var(--slate-dark);
}

/* ═══════════════════════════════
   SERVIÇOS
═══════════════════════════════ */
#servicos {
  padding: 3rem 4rem;
  background: var(--off-white);
  position: relative;
}

#servicos::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cream-dark) 25%, var(--cream-dark) 75%, transparent);
  opacity: 0.3;
}

.servicos-header {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1.1rem;
  gap: 2rem;
}

.servicos-header-right {
  font-size: 10px; font-weight: 300;
  letter-spacing: 0.06em; line-height: 1.9;
  color: var(--slate-xlight); max-width: 320px; text-align: right;
}

.servicos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.8rem;
  max-width: 100%;
}

.servico-card {
  position: relative;
  padding-left: 1rem;
  flex: 0 0 auto;
}

.servico-card::before {
  content: '•';
  position: absolute; left: 0; top: 0.1rem;
  color: var(--cream-dark);
  font-size: 1rem;
  line-height: 1;
}

.servico-icon { display: none; }

.servico-name {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--slate-dark);
  margin-bottom: 0;
  white-space: nowrap;
}

/* ═══════════════════════════════
   GALERIA TEASER
═══════════════════════════════ */
#galeria-teaser {
  padding: 4.2rem 4rem;
  background: var(--slate-dark);
}

.galeria-teaser-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 2px;
  background: rgba(212,200,154,0.12);
}

.galeria-teaser-copy,
.galeria-teaser-preview {
  background: #030402;
}

.galeria-teaser-copy {
  padding: 3.4rem 3.2rem;
  position: relative;
}

.galeria-teaser-copy::before {
  content: '';
  position: absolute;
  top: 3.2rem;
  right: -1px;
  width: 3px;
  height: 72px;
  background: var(--cream);
}

.galeria-teaser-copy .section-tag {
  color: rgba(212,200,154,0.78);
}

.galeria-teaser-copy .section-tag::before {
  background: rgba(212,200,154,0.78);
}

.galeria-teaser-copy .section-title {
  margin-bottom: 1rem;
  color: var(--cream-light);
}

.galeria-teaser-copy .section-title em {
  color: var(--cream);
}

.galeria-teaser-copy .section-text {
  max-width: 520px;
  color: rgba(234,226,198,0.62);
}

.galeria-teaser-actions {
  margin-top: 1.8rem;
}

.galeria-teaser-actions-mobile {
  display: none;
}

.galeria-teaser-actions .btn-primary {
  color: #030402;
}

.galeria-teaser-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  min-height: 280px;
  position: relative;
}

.galeria-teaser-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3,4,2,0.08) 0%, rgba(3,4,2,0.24) 100%);
  pointer-events: none;
  z-index: 1;
}

.galeria-thumb {
  min-height: 140px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.galeria-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(234,226,198,0.06), rgba(3,4,2,0.38));
}

.galeria-thumb-1 { background-image: url('/static/assets/images/gallery/catalog/cozinhas_bancadas/176.webp'); }
.galeria-thumb-2 { background-image: url('/static/assets/images/gallery/catalog/lavatorios_wc/174.webp'); }
.galeria-thumb-3 { background-image: url('/static/assets/images/gallery/catalog/ornamentos_perfis/168.webp'); }
.galeria-thumb-4 { background-image: url('/static/assets/images/gallery/catalog/revestimentos_pisos_paineis/086.webp'); }

/* ═══════════════════════════════
   ORÇAMENTO
═══════════════════════════════ */
#orcamento {
  padding: 7rem 4rem;
  background: var(--warm-white);
  position: relative;
  overflow: hidden;
}

#servicos,
#orcamento {
  scroll-margin-top: 110px;
}

/* Parallelogram decoration */
#orcamento::before {
  content: '';
  position: absolute; top: 0; left: 0; bottom: 0;
  width: 6px;
  background: linear-gradient(to bottom, var(--cream) 0%, var(--cream-dark) 100%);
  clip-path: polygon(0 0, 100% 12px, 100% 100%, 0 calc(100% - 12px));
}

.orcamento-inner {
  max-width: 700px; margin: 0 auto;
}

.orcamento-header { margin-bottom: 3.5rem; text-align: center; }
.orcamento-header .section-tag { justify-content: center; }
.orcamento-header .section-tag::before { display: none; }

.form-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
}

.form-full { grid-column: 1 / -1; }

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }

.form-label {
  font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: #000;
}

.form-input,
.form-select,
.form-textarea {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px; font-weight: 400;
  color: #000;
  background: transparent;
  border: none; border-bottom: 0.5px solid var(--line-strong);
  padding: 0.9rem 0;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-bottom-color: var(--cream-dark);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(0,0,0,0.45);
  font-weight: 400;
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23000'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 1.5rem;
}

.form-textarea {
  resize: none; height: 100px;
  border: 0.5px solid var(--line-med);
  padding: 0.9rem 1rem;
  margin-top: 0.3rem;
}
.form-textarea:focus { border-color: var(--cream-dark); }

.form-submit-row {
  display: flex; align-items: center;
  justify-content: space-between; margin-top: 2.5rem;
  padding-top: 2rem; border-top: 0.5px solid var(--line);
}

.form-note {
  font-size: 10px; font-weight: 300;
  color: var(--slate-xlight); max-width: 280px;
  line-height: 1.7;
}

.form-note a {
  color: var(--slate-dark);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.btn-submit {
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--warm-white); background: var(--slate-dark);
  padding: 1.1rem 2.8rem; border: none;
  cursor: pointer; transition: background 0.25s, letter-spacing 0.25s;
}
.btn-submit:hover { background: var(--slate); letter-spacing: 0.34em; }
.btn-submit:disabled {
  opacity: 0.6;
  cursor: progress;
  letter-spacing: 0.28em;
}

.captcha-group {
  border-top: 0.5px solid var(--line);
  padding-top: 1.4rem;
}

.captcha-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.captcha-prompt {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-dark);
}

.captcha-refresh {
  border: 0.5px solid var(--line-strong);
  background: transparent;
  color: var(--slate-dark);
  font: inherit;
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 0.9rem 1.2rem;
  cursor: pointer;
}

.field-error {
  border-bottom-color: #A03030 !important;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-feedback {
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.1em; margin-top: 1rem;
  min-height: 18px; transition: all 0.3s;
  line-height: 1.7;
}
.form-feedback.success { color: #5A8060; }
.form-feedback.error { color: #A03030; }

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
footer {
  background: #030402;
  padding: 5rem 4rem 3rem;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -50deg,
    transparent 0px, transparent 55px,
    rgba(212,200,154,0.025) 55px, rgba(212,200,154,0.025) 56px
  );
  pointer-events: none;
}

.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem; padding-bottom: 4rem;
  border-bottom: 0.5px solid rgba(212,200,154,0.12);
  position: relative; z-index: 1;
}

.footer-brand {}
.footer-brand-logo {
  width: min(100%, 280px);
  height: auto;
  display: block;
  margin-bottom: 1.2rem;
}
.footer-brand-desc {
  font-size: 13px; font-weight: 300;
  line-height: 1.9; color: rgba(212,200,154,0.45);
  max-width: 280px;
}

.footer-col-title {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--cream); margin-bottom: 1.5rem;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.footer-links.services-list { gap: 0.65rem; }
.footer-links a {
  font-size: 13px; font-weight: 300;
  color: rgba(212,200,154,0.5); text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--cream-light); }

.footer-links.services-list a {
  position: relative;
  padding-left: 0.9rem;
}

.footer-links.services-list a::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cream-dark);
}

.footer-contact { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-contact-item {
  font-size: 13px; font-weight: 300;
  color: rgba(212,200,154,0.5); line-height: 1.6;
}
.footer-contact-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-item a:hover { color: var(--cream-light); }
.footer-contact-item strong {
  display: block; font-size: 10px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(212,200,154,0.3); margin-bottom: 3px;
}

.footer-bottom {
  display: flex; align-items: center;
  justify-content: space-between; padding-top: 2.5rem;
  position: relative; z-index: 1;
}

.footer-copy {
  font-size: 12px; letter-spacing: 0.18em;
  color: rgba(212,200,154,0.3);
}

.footer-social {
  display: flex; gap: 1.5rem;
}
.footer-social a {
  font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(212,200,154,0.4); text-decoration: none;
  transition: color 0.2s;
  display: flex; align-items: center; gap: 0.6rem;
}
.footer-social a:hover { color: var(--cream-light); }

/* ═══════════════════════════════
   FADE-IN ANIMATIONS
═══════════════════════════════ */
.fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.fade-in-left {
  opacity: 0; transform: translateX(-24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }

.fade-delay-1 { transition-delay: 0.1s; }
.fade-delay-2 { transition-delay: 0.2s; }
.fade-delay-3 { transition-delay: 0.3s; }
.fade-delay-4 { transition-delay: 0.4s; }
.fade-delay-5 { transition-delay: 0.5s; }

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 1024px) {
  nav { padding: 1.2rem 2.5rem; }
  nav.scrolled { padding: 0.9rem 2.5rem; }
  .nav-links { gap: 2rem; }
  .nav-logo-image { width: clamp(140px, 17vw, 180px); }
  .hero-left { padding: 6rem 3rem 5rem; }
  .sobre-content { padding: 5rem 3.5rem; }
  .porque-grid { grid-template-columns: 1fr 1fr; }
  .porque-item:nth-child(2) { border-right: none; }
  .porque-item:nth-child(3),
  .porque-item:nth-child(4) { border-bottom: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  nav { padding: 1.1rem 1.5rem; }
  nav.scrolled { padding: 0.8rem 1.5rem; }
  .nav-links { display: none; }
  .nav-links.menu-open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    transform: none;
    background: #030402;
    padding: 2rem 1.5rem;
    gap: 1.8rem;
    z-index: 300;
    border-bottom: 0.5px solid rgba(212,200,154,0.2);
  }
  .nav-links.menu-open a { font-size: 11px; text-align: center; }
  .nav-links.menu-open li { text-align: center; }
  .nav-cta { display: none !important; }
  .nav-hamburger { display: flex; }
  .nav-logo-image { width: 132px; }

  #hero { grid-template-columns: 1fr; grid-template-rows: auto auto; }
  .hero-left { padding: 5rem 1.8rem 4rem; min-height: 80vh; }
  .hero-left::after { display: none; }
  .hero-right { height: 280px; }
  .hero-right-content { padding: 2rem; }
  .hero-scroll { left: 1.8rem; bottom: 2rem; }

  .discover-row,
  .discover-row.reverse { grid-template-columns: 1fr; }
  .discover-visual { min-height: 300px; }
  .discover-content { padding: 4rem 1.8rem; }
  .discover-row.reverse .discover-visual { order: 1; }
  .discover-row.reverse .discover-content { order: 2; }
  .discover-label { right: 1.3rem; bottom: 1.3rem; max-width: calc(100% - 2.6rem); }

  #servicos { padding: 5rem 1.5rem; }
  .servicos-header { flex-direction: column; align-items: flex-start; }
  .servicos-header-right { text-align: left; }
  .servicos-grid { gap: 0.7rem 1.2rem; }
  .servico-card { padding-left: 1rem; }

  #galeria-teaser { padding: 5rem 1.5rem; }
  .galeria-teaser-inner { grid-template-columns: 1fr; }
  .galeria-teaser-copy { padding: 2.6rem 2rem; }
  .galeria-teaser-copy::before { display: none; }
  .galeria-teaser-actions { display: none; }
  .galeria-teaser-actions-mobile {
    display: flex;
    justify-content: center;
    padding: 1.8rem 2rem;
    background: #030402;
  }

  #orcamento { padding: 5rem 1.5rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-full { grid-column: 1; }
  .form-submit-row { flex-direction: column; align-items: center; gap: 1.5rem; }
  .orcamento-inner { text-align: center; }
  .form-label { text-align: center; }
  .form-note { text-align: center; max-width: 100%; }
  .captcha-row { align-items: stretch; flex-direction: column; }

  footer { padding: 4rem 1.5rem 2.5rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .footer-brand-desc { font-size: 10px; }
  .footer-col-title { font-size: 8.5px; }
  .footer-links a { font-size: 10px; }
  .footer-contact-item { font-size: 10px; }
  .footer-contact-item strong { font-size: 8px; }
  .footer-copy { font-size: 9px; }
  .footer-social a { font-size: 9px; }

  .stats-row { gap: 0; }
  .stat-item { padding-right: 1.2rem; margin-right: 1.2rem; }
  .stat-num { font-size: 2.2rem; }

  .porque-grid {
    border-left: 0.5px solid var(--line-med);
  }
  .porque-item:nth-child(2) { border-right: 0.5px solid var(--line-med) !important; }
  .porque-item:nth-child(2):nth-child(odd) { border-right: none !important; }
}
