/* ─── RESET ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

:root {
  --ink: #191714;
  --dark: #252018;
  --mid: #5c5346;
  --stone: #9a8e7e;
  --sand: #c8baa4;
  --cream: #ede6da;
  --warm: #f7f3ec;
  --white: #fdfcf9;
  --gold: #b89a5a;
  --gold-lt: #d4b978;
  --wpp: #25d366;

  --serif: 'Cormorant', Georgia, serif;
  --sans: 'Jost', sans-serif;
  --max: 1180px;
}

body {
  font-family: var(--sans);
  font-weight: 400;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}

/* ─── CONTAINERS ─── */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 640px) {
  .wrap {
    padding: 0 24px;
  }
}

/* ─── SECTION LABELS ─── */
.eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

/* ─── HEADINGS ─── */
.h-serif {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.h-serif em {
  font-style: italic;
  color: var(--mid);
}

.body-text {
  font-size: 15px;
  line-height: 1.85;
  color: var(--stone);
  max-width: 580px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 34px;
  border: 1.5px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  transition: all 0.3s;
  cursor: pointer;
}
.btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

/* BOTÃO VER PROJETOS / QUERO MEU PROJETO */

.btn-outline {
    background: #FDFCF9 !important;
    color: #191714 !important;
    border: 1.5px solid #191714 !important;
}

.btn-outline:hover {
    background: #191714 !important;
    color: #FDFCF9 !important;
}

.btn-wpp-green {
  background: var(--wpp);
  border-color: var(--wpp);
  color: #fff;
}
.btn-wpp-green:hover {
  background: #1ebe5a;
  border-color: #1ebe5a;
  color: #fff;
}

/* ─── WHATSAPP FLOAT ─── */
.wpp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--wpp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  animation: floatPulse 3s ease-in-out infinite;
  transition: transform 0.25s;
}
.wpp-float:hover {
  transform: scale(1.12);
}
.wpp-float svg {
  width: 27px;
  height: 27px;
  fill: #191714;
}
.wpp-float {
  border: 3px solid #fff;
}
@keyframes floatPulse {
  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 6px 32px rgba(37, 211, 102, 0.6),
      0 0 0 8px rgba(37, 211, 102, 0.08);
  }
}

/* ─── NAV ─── */
nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  background: rgba(253, 252, 249, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(200, 186, 164, 0.2);
  transition: box-shadow 0.3s;
}
nav.scrolled {
  box-shadow: 0 2px 20px rgba(25, 23, 20, 0.06);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 48px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.04em;
}
.nav-logo span {
  color: var(--gold);
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  position: relative;
  transition: color 0.25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover {
  color: var(--ink);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-cta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 11px 24px;
  background: var(--ink);
  color: var(--white);
  transition: background 0.3s;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--ink);
}
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
}
@media (max-width: 600px) {
  .nav-inner {
    padding: 0 24px;
  }
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  padding-top: 70px;
  display: grid;
  grid-template-columns: 55% 45%;
  overflow: hidden;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 80px;
  background: var(--white);
  position: relative;
}
.hero-left::after {
  content: '';
  position: absolute;
  right: 0;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: var(--cream);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: blink 2s infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 76px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  color: var(--mid);
  display: block;
}

.hero-sub {
  font-size: 16px;
  line-height: 1.8;
  color: var(--stone);
  max-width: 460px;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-numbers {
  display: flex;
  gap: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--cream);
}
.num-val {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}
.num-lbl {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand);
}

/* Hero right — image collage */
.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.hero-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.03);
}
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(185, 154, 90, 0.08) 0%,
    transparent 60%
  );
}
.hero-card {
  position: absolute;
  bottom: 44px;
  left: -24px;
  background: var(--white);
  padding: 22px 28px;
  box-shadow: 0 12px 40px rgba(25, 23, 20, 0.12);
  animation: cardFloat 5s ease-in-out infinite;
}
@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.hero-card-tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.hero-card-val {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--ink);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-left {
    padding: 64px 40px;
  }
  .hero-left::after {
    display: none;
  }
  .hero-right {
    height: 340px;
  }
  .hero-card {
    left: 20px;
  }
}
@media (max-width: 600px) {
  .hero-left {
    padding: 48px 24px;
  }
  .hero-numbers {
    flex-wrap: wrap;
    gap: 24px;
  }
}

/* ─── MARQUEE ─── */
.marquee-band {
  border-top: 1px solid var(--cream);
  border-bottom: 1px solid var(--cream);
  padding: 18px 0;
  overflow: hidden;
  background: var(--warm);
}
.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}
.marquee-item {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--mid);
  padding: 0 32px;
}
.marquee-dot {
  color: var(--gold);
  padding: 0 8px;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ─── SECTION SPACING ─── */
.sec {
  padding: 100px 0;
}
.sec-sm {
  padding: 72px 0;
}

/* ─── SOBRE ─── */
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sobre-img-wrap {
  position: relative;
}
.sobre-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
}
.sobre-gold-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gold);
}
.sobre-badge {
  position: absolute;
  top: 32px;
  right: -20px;
  background: var(--ink);
  color: var(--white);
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(25, 23, 20, 0.15);
}
.sobre-badge-num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--gold-lt);
  line-height: 1;
}
.sobre-badge-txt {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(253, 252, 249, 0.5);
  margin-top: 4px;
}

.sobre-name {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 6px;
}
.sobre-role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.sobre-bio {
  font-size: 15px;
  color: var(--stone);
  line-height: 1.85;
  margin-bottom: 32px;
}
.sobre-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.sobre-tag {
  font-size: 11px;
  font-weight: 500;
  padding: 7px 15px;
  border: 1px solid var(--cream);
  color: var(--mid);
  background: var(--warm);
}

@media (max-width: 900px) {
  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ─── SERVIÇOS ─── */
.servicos-bg {
  background: var(--ink);
}
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(200, 186, 164, 0.12);
  border: 1px solid rgba(200, 186, 164, 0.12);
  margin-top: 56px;
}
.srv-card {
  background: var(--dark);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}
.srv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.srv-card:hover {
  background: #1e1a14;
}
.srv-card:hover::before {
  transform: scaleX(1);
}

.srv-icon {
  font-size: 30px;
  margin-bottom: 20px;
}
.srv-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}
.srv-text {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(253, 252, 249, 0.82);
}
.srv-num {
  position: absolute;
  bottom: 28px;
  right: 32px;
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 300;
  color: rgba(200, 186, 164, 0.07);
  line-height: 1;
}

@media (max-width: 900px) {
  .servicos-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .servicos-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── COMO FUNCIONA ─── */
.processo-steps {
  display: flex;
  gap: 0;
  position: relative;
  margin-top: 64px;
}
.processo-steps::before {
  content: '';
  position: absolute;
  top: 34px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--cream) 15%,
    var(--cream) 85%,
    transparent
  );
}
.pstep {
  flex: 1;
  padding: 0 20px;
  text-align: center;
}
.pstep-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1px solid var(--cream);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  position: relative;
  z-index: 1;
  font-size: 26px;
  transition: all 0.3s;
}
.pstep:hover .pstep-circle {
  background: var(--ink);
  border-color: var(--ink);
}
.pstep-num {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 8px;
}
.pstep-name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 10px;
}
.pstep-desc {
  font-size: 12px;
  color: var(--stone);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .processo-steps {
    flex-direction: column;
    gap: 36px;
  }
  .processo-steps::before {
    display: none;
  }
  .pstep {
    text-align: left;
    display: flex;
    gap: 20px;
    align-items: flex-start;
  }
  .pstep-circle {
    margin: 0;
    flex-shrink: 0;
  }
}

/* ─── PORTFÓLIO ─── */
.portfolio-bg {
  background: var(--warm);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
  margin-top: 52px;
}
.pf-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--cream);
}
.pf-item:nth-child(1) {
  grid-column: span 7;
  grid-row: span 2;
}
.pf-item:nth-child(2) {
  grid-column: span 5;
}
.pf-item:nth-child(3) {
  grid-column: span 5;
}
.pf-item:nth-child(4) {
  grid-column: span 4;
}
.pf-item:nth-child(5) {
  grid-column: span 4;
}
.pf-item:nth-child(6) {
  grid-column: span 4;
}

.pf-img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: brightness(0.95);
}
.pf-item:nth-child(1) .pf-img {
  min-height: 460px;
}

.pf-item:hover .pf-img {
  transform: scale(1.04);
  filter: brightness(0.75);
}

.pf-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(25, 23, 20, 0.8) 0%,
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 28px;
}
.pf-item:hover .pf-overlay {
  opacity: 1;
}
.pf-cat {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 5px;
}
.pf-name {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--white);
}

/* fallback for missing images */
.pf-placeholder {
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8e0d0, #d4c8b0);
  font-family: var(--serif);
  font-size: 14px;
  color: var(--sand);
  letter-spacing: 0.06em;
}
.pf-item:nth-child(1) .pf-placeholder {
  min-height: 460px;
}

@media (max-width: 900px) {
  .pf-item:nth-child(1) {
    grid-column: span 12;
  }
  .pf-item:nth-child(2),
  .pf-item:nth-child(3) {
    grid-column: span 6;
  }
  .pf-item:nth-child(4),
  .pf-item:nth-child(5),
  .pf-item:nth-child(6) {
    grid-column: span 4;
  }
}
@media (max-width: 600px) {
  .pf-item:nth-child(n) {
    grid-column: span 12;
  }
}

/* ─── ANTES × DEPOIS ─── */
.antesdepois-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  border-radius: 0;
  overflow: hidden;
  margin-top: 52px;
}
.ad-panel {
  position: relative;
  overflow: hidden;
}
.ad-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.ad-panel:hover .ad-img {
  transform: scale(1.03);
}
.ad-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(25, 23, 20, 0.75);
  color: var(--white);
  padding: 8px 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}
.ad-label.depois {
  background: rgba(185, 154, 90, 0.85);
}

/* ─── DEPOIMENTOS ─── */
.dep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.dep-card {
  border: 1px solid var(--cream);
  padding: 36px 32px;
  transition: border-color 0.3s, transform 0.3s;
}
.dep-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.dep-quote {
  font-family: var(--serif);
  font-size: 52px;
  color: var(--cream);
  line-height: 0.8;
  margin-bottom: 16px;
}
.dep-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.7;
  color: var(--mid);
  margin-bottom: 24px;
}
.dep-author {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
}
.dep-local {
  font-size: 11px;
  color: var(--sand);
  margin-top: 3px;
}

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

/* ─── IMPACTO ─── */
.impacto-sec {
  background: var(--ink);
  text-align: center;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.impacto-sec::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(185, 154, 90, 0.08);
  pointer-events: none;
}
.impacto-txt {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(26px, 3.6vw, 52px);
  color: var(--cream);
  line-height: 1.25;
  max-width: 800px;
  margin: 0 auto 14px;
  position: relative;
  z-index: 1;
}
.impacto-txt strong {
  font-style: normal;
  color: var(--gold-lt);
}
.impacto-sub {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  position: relative;
  z-index: 1;
  margin-top: 18px;
}

/* ─── MARCENARIA ─── */
.marc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.marc-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 36px;
}
.marc-step {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--cream);
}
.marc-step:last-child {
  border-bottom: none;
}
.marc-step-n {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.3s;
}
.marc-step:hover .marc-step-n {
  color: var(--gold-lt);
}
.marc-step-title {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 4px;
}
.marc-step-desc {
  font-size: 13px;
  color: var(--stone);
  line-height: 1.7;
}
.marc-visual {
  position: relative;
  background: var(--cream);
  aspect-ratio: 4/5;
  overflow: hidden;
}
.marc-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.marc-visual-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gold);
}

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

/* ─── CONTATO ─── */
.contato-sec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ink);
  overflow: hidden;
}
.contato-left {
  padding: 96px 72px;
  background: radial-gradient(
      circle at 80% 20%,
      rgba(185, 154, 90, 0.08) 0%,
      transparent 60%
    ),
    var(--ink);
}
.contato-left .eyebrow {
  color: var(--gold-lt);
}
.contato-left .eyebrow::before {
  background: var(--gold-lt);
}
.contato-left .h-serif {
  color: var(--cream);
  margin-bottom: 24px;
}
.contato-desc {
  font-size: 15px;
  color: rgba(237, 230, 218, 0.5);
  line-height: 1.8;
  margin-bottom: 48px;
}

.contato-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.c-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.c-icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(185, 154, 90, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.c-lbl {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 4px;
}
.c-val {
  font-size: 14px;
  color: rgba(237, 230, 218, 0.7);
}

.contato-right {
  padding: 96px 72px;
  background: rgba(255, 255, 255, 0.02);
}
.contato-right h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-g {
  margin-bottom: 18px;
}
.form-lbl {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 9px;
}
.form-inp {
  width: 100%;
  padding: 13px 17px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 186, 164, 0.15);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}
.form-inp:focus {
  border-color: var(--gold);
}
.form-inp::placeholder {
  color: rgba(237, 230, 218, 0.25);
}
textarea.form-inp {
  height: 110px;
  resize: none;
}

.form-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}
.chip {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 8px 15px;
  border: 1px solid rgba(200, 186, 164, 0.15);
  color: rgba(237, 230, 218, 0.4);
  cursor: pointer;
  transition: all 0.3s;
}
.chip:hover,
.chip.on {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(185, 154, 90, 0.08);
}

.form-submit {
  width: 100%;
  padding: 17px;
  margin-top: 10px;
  background: var(--gold);
  border: none;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.3s;
}
.form-submit:hover {
  background: var(--gold-lt);
}

@media (max-width: 900px) {
  .contato-sec {
    grid-template-columns: 1fr;
  }
  .contato-left,
  .contato-right {
    padding: 64px 40px;
  }
}
@media (max-width: 600px) {
  .contato-left,
  .contato-right {
    padding: 52px 24px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ─── FOOTER ─── */
footer {
  background: #100e0b;
  padding: 56px 0 24px;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: rgba(237, 230, 218, 0.8);
  display: block;
  margin-bottom: 12px;
}
.footer-logo span {
  color: var(--gold);
}
.footer-brand p {
  font-size: 12px;
  color: rgba(237, 230, 218, 0.3);
  line-height: 1.7;
  max-width: 220px;
}
.footer-col h4 {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 9px;
}
.footer-col a {
  font-size: 13px;
  color: rgba(237, 230, 218, 0.3);
  transition: color 0.25s;
}
.footer-col a:hover {
  color: rgba(237, 230, 218, 0.8);
}
.footer-bottom {
  max-width: var(--max);
  margin: 36px auto 0;
  padding: 22px 48px 0;
  border-top: 1px solid rgba(237, 230, 218, 0.05);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p {
  font-size: 11px;
  color: rgba(237, 230, 218, 0.2);
}
@media (max-width: 600px) {
  .footer-inner {
    flex-direction: column;
    padding: 0 24px;
  }
  .footer-bottom {
    padding: 22px 24px 0;
    flex-direction: column;
  }
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.d1 {
  transition-delay: 0.12s;
}
.reveal.d2 {
  transition-delay: 0.24s;
}
.reveal.d3 {
  transition-delay: 0.36s;
}
.reveal.d4 {
  transition-delay: 0.48s;
}
.reveal.d5 {
  transition-delay: 0.6s;
}
.reveal.on {
  opacity: 1;
  transform: none;
}

.nav-logo img {
  height: 52px;
  width: auto;
  display: block;
}

.footer-logo img {
  height: 72px;
  width: auto;
  display: block;
}

.form-alert{
  margin-top:16px;
  padding:14px 16px;
  border-radius:14px;
  font-size:.95rem;
  line-height:1.4;
  font-weight:500;
}

.form-alert.success{
  background:#dff7e7;
  color:#146c2e;
  border:1px solid #8ed1a3;
}

.form-alert.error{
  background:#ffe3e3;
  color:#9f1d1d;
  border:1px solid #ffb3b3;
}

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