:root {
  --ocre-claro: #d4a574;
  --ocre-dourado: #c8963e;
  --ocre-escuro: #b8860b;
  --verde-claro: #8a9a5b;
  --verde-medio: #697d3b;
  --verde-escuro: #4a5d23;
  --marrom-medio: #8b4513;
  --marrom-choco: #6b4423;
  --marrom-escuro: #3e2723;
  --bege-trigo: #f5deb3;
  --bege-tan: #d2b48c;
  --bege-areia: #c9a882;
  --terra-queimada: #8b7355;
  --argila: #a0826d;

  --bg: #fbf5e8;
  --bg-2: #f5e8d0;
  --bg-paper: #fff9ed;
  --ink: #2a1810;
  --ink-soft: #6b4423;
  --line: rgba(107, 68, 35, 0.15);
  --line-strong: rgba(107, 68, 35, 0.3);

  --wa: #25d366;
  --wa-deep: #128c7e;

  --display: 'Cinzel', 'Westroon Demo', serif;
  --script: 'Pinyon Script', 'Apple Chancery', cursive;
  --body: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }

/* ============ TOPBAR ============ */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 245, 232, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand-logo {
  width: 48px; height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--bg-paper);
  padding: 3px;
  border: 1px solid var(--line);
  filter: drop-shadow(0 4px 10px rgba(184, 134, 11, 0.15));
  transition: transform 0.3s ease;
}
.brand:hover .brand-logo { transform: rotate(-6deg) scale(1.06); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  color: var(--marrom-escuro);
  letter-spacing: 0.05em;
}
.brand-tag {
  font-family: var(--script);
  font-size: 13px;
  color: var(--ocre-dourado);
  margin-top: 2px;
}
.nav { display: flex; gap: 24px; }
.nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  position: relative;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--ocre-dourado);
  transition: width 0.25s ease;
}
.nav a:hover { color: var(--marrom-escuro); }
.nav a:hover::after { width: 100%; }
@media (max-width: 1080px) { .nav { display: none; } }

/* ============ BUTTONS ============ */
.btn-cta, .btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--wa) 0%, var(--wa-deep) 100%);
  color: #fff;
  box-shadow: 0 8px 24px -6px rgba(37, 211, 102, 0.5);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px -6px rgba(37, 211, 102, 0.7); }
.btn-primary--big { padding: 18px 34px; font-size: 15px; }
.btn-primary--full { width: 100%; justify-content: center; }

.btn-secondary {
  background: var(--bg-paper);
  color: var(--marrom-escuro);
  border: 1px solid var(--ocre-dourado);
}
.btn-secondary:hover { background: var(--bg-2); transform: translateY(-2px); }

.btn-cta {
  background: linear-gradient(135deg, var(--wa) 0%, var(--wa-deep) 100%);
  color: #fff;
  box-shadow: 0 6px 20px -6px rgba(37, 211, 102, 0.5);
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 28px -6px rgba(37, 211, 102, 0.7); }
.btn-cta--top { padding: 10px 18px; font-size: 12px; }

.wa-dot {
  width: 8px; height: 8px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255,255,255,0.8);
  animation: pulse-wa 1.6s ease-in-out infinite;
}
@keyframes pulse-wa {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 92vh;
  padding: 60px 24px 80px;
  display: flex;
  align-items: center;
  background: radial-gradient(ellipse at 70% 30%, var(--bg-paper) 0%, var(--bg) 60%, var(--bg-2) 100%);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.grain {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(184, 134, 11, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(74, 93, 35, 0.08) 0%, transparent 40%);
}
.vignette { position: absolute; inset: 0; background: radial-gradient(ellipse at center, transparent 50%, rgba(62, 39, 35, 0.15) 100%); }
.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed var(--ocre-dourado);
  opacity: 0.2;
  animation: orbit 120s linear infinite;
}
.orbit-1 { width: 600px; height: 600px; top: -150px; right: -200px; }
.orbit-2 { width: 900px; height: 900px; top: -300px; right: -400px; opacity: 0.1; animation-direction: reverse; animation-duration: 200s; }
@keyframes orbit { from { transform: rotate(0); } to { transform: rotate(360deg); } }

.hero-grid {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

.badge-offer {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--ocre-claro) 0%, var(--ocre-dourado) 100%);
  color: var(--marrom-escuro);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  box-shadow: 0 6px 20px -6px rgba(184, 134, 11, 0.45);
  animation: badge-bob 3s ease-in-out infinite;
}
.badge-offer-icon {
  background: var(--marrom-escuro);
  color: var(--ocre-claro);
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}
.badge-offer strong { font-weight: 700; }
@keyframes badge-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.hero-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(40px, 5.5vw, 78px);
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: var(--marrom-escuro);
  margin-bottom: 24px;
}
.hero-title em {
  font-family: var(--script);
  font-style: italic;
  font-weight: 400;
  color: var(--ocre-dourado);
  font-size: 1.15em;
  letter-spacing: 0;
  background: linear-gradient(135deg, var(--ocre-dourado) 0%, var(--ocre-escuro) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 32px;
}
.hero-sub strong { color: var(--marrom-escuro); font-weight: 600; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }

.hero-trust { list-style: none; display: flex; gap: 28px; flex-wrap: wrap; padding: 0; }
.hero-trust li { display: flex; flex-direction: column; gap: 2px; }
.trust-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  color: var(--marrom-escuro);
  line-height: 1;
}
.trust-lbl {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* ============ HERO ART ============ */
.hero-art {
  position: relative;
  aspect-ratio: 1 / 1.05;
  max-width: 580px;
  margin: 0 auto;
  width: 100%;
}
.hero-art-mark {
  position: absolute;
  top: -8%;
  right: 6%;
  width: 28%;
  z-index: 4;
  filter: drop-shadow(0 16px 32px rgba(62, 39, 35, 0.25));
  animation: float 6s ease-in-out infinite;
}
.hero-art-mark img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  background: var(--bg-paper);
  padding: 6%;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}
.hero-art-photo {
  position: absolute;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 48px -16px rgba(62, 39, 35, 0.35);
  border: 4px solid var(--bg-paper);
}
.hero-art-photo--main {
  top: 8%;
  left: 0;
  width: 70%;
  aspect-ratio: 4 / 5;
  z-index: 2;
  transform: rotate(-3deg);
}
.hero-art-photo--accent {
  bottom: 4%;
  right: 0;
  width: 56%;
  aspect-ratio: 1 / 1;
  z-index: 3;
  transform: rotate(4deg);
}
.hero-art-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-art-tagline {
  position: absolute;
  bottom: -2%;
  left: 4%;
  background: var(--marrom-escuro);
  color: var(--ocre-claro);
  padding: 16px 22px;
  border-radius: 14px;
  z-index: 5;
  max-width: 50%;
  box-shadow: 0 16px 32px -10px rgba(62, 39, 35, 0.45);
}
.hero-art-tagline p {
  font-family: var(--script);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.2;
  color: var(--ocre-claro);
}

@media (max-width: 980px) {
  .hero-art { max-width: 480px; aspect-ratio: 1 / 0.95; }
}

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 1px solid var(--ocre-dourado);
  border-radius: 14px;
  z-index: 5;
}
.scroll-cue span {
  position: absolute;
  top: 8px; left: 50%;
  margin-left: -2px;
  width: 4px; height: 6px;
  background: var(--ocre-dourado);
  border-radius: 2px;
  animation: cueDrop 1.6s ease-in-out infinite;
}
@keyframes cueDrop {
  0% { opacity: 0; transform: translateY(0); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translateY(18px); }
}

/* ============ MANIFESTO ============ */
.manifesto {
  padding: 90px 24px;
  background: var(--marrom-escuro);
  color: var(--bege-trigo);
  position: relative;
  overflow: hidden;
}
.manifesto::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(200, 150, 62, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(139, 69, 19, 0.2) 0%, transparent 50%);
}
.manifesto > * { position: relative; z-index: 2; }
.manifesto-text {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(22px, 3.2vw, 38px);
  line-height: 1.4;
  color: var(--bege-trigo);
  max-width: 980px;
  margin: 16px auto 0;
}
.manifesto-text em {
  font-family: var(--script);
  font-style: italic;
  font-weight: 400;
  font-size: 1.2em;
  color: var(--ocre-claro);
}
.manifesto-text strong { color: var(--ocre-claro); font-weight: 700; }

/* ============ SECTIONS ============ */
.section { padding: 110px 24px; position: relative; }
.section--alt { background: var(--bg-2); }
@media (max-width: 880px) { .section { padding: 70px 24px; } }

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ocre-escuro);
  font-weight: 600;
  margin-bottom: 16px;
}
.eyebrow--center { text-align: center; }
.eyebrow--light { color: var(--ocre-claro); }

h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(32px, 4.6vw, 58px);
  line-height: 1.12;
  letter-spacing: 0.005em;
  color: var(--marrom-escuro);
  margin-bottom: 16px;
}
h2.light { color: var(--bege-trigo); }
h2 em {
  font-family: var(--script);
  font-style: italic;
  font-weight: 400;
  color: var(--ocre-dourado);
  font-size: 1.18em;
  letter-spacing: 0;
}
h2.light em { color: var(--ocre-claro); }
.lead {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 780px;
  margin: 0 auto 60px;
  line-height: 1.7;
}
.lead strong { color: var(--marrom-escuro); font-weight: 600; }

/* ============ PRODUTOS ============ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 880px) { .products-grid { grid-template-columns: 1fr; } }

.product-card {
  background: var(--bg-paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--ocre-dourado);
  box-shadow: 0 28px 56px -20px rgba(184, 134, 11, 0.3);
}
.product-img {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-img img { transform: scale(1.06); }
.product-num {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--marrom-escuro);
  color: var(--ocre-claro);
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.1em;
}

.product-text { padding: 28px 30px 30px; flex: 1; display: flex; flex-direction: column; }
.product-tag {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ocre-dourado);
  font-weight: 700;
  margin-bottom: 10px;
}
.product-text h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  color: var(--marrom-escuro);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.product-text p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 18px;
  flex: 1;
}
.product-link {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ocre-dourado);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--ocre-dourado);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: color 0.2s ease;
}
.product-link:hover { color: var(--marrom-escuro); }

/* ============ BENEFÍCIOS ============ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 980px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .benefits-grid { grid-template-columns: 1fr; } }

.benefit {
  background: var(--bg-paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 28px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.benefit:hover { transform: translateY(-4px); border-color: var(--ocre-dourado); }
.benefit-num {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 32px;
  color: var(--ocre-dourado);
  margin-bottom: 16px;
  line-height: 1;
}
.benefit h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  color: var(--marrom-escuro);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
  line-height: 1.3;
}
.benefit p { font-size: 14px; color: var(--ink-soft); line-height: 1.65; }
.benefit p strong { color: var(--marrom-escuro); }

/* ============ SERVIÇOS ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}
@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .services-grid { grid-template-columns: 1fr; } }

.service {
  background: var(--bg-paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 28px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.service:hover {
  transform: translateY(-4px);
  border-color: var(--ocre-dourado);
  box-shadow: 0 20px 40px -16px rgba(184, 134, 11, 0.25);
}
.service--highlight {
  background: linear-gradient(135deg, var(--marrom-escuro) 0%, #1a0e08 100%);
  border-color: var(--ocre-dourado);
  color: var(--bege-trigo);
}
.service--highlight h3 { color: var(--bege-trigo); }
.service--highlight p { color: rgba(245, 222, 179, 0.78); }
.service--highlight p strong { color: var(--ocre-claro); }
.service-icon { font-size: 32px; margin-bottom: 16px; }
.service h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  color: var(--marrom-escuro);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.service p { font-size: 14px; color: var(--ink-soft); line-height: 1.65; }
.service p strong { color: var(--marrom-escuro); }

/* ============ DEPOIMENTOS ============ */
.section--testimonials {
  background: linear-gradient(180deg, var(--marrom-escuro) 0%, #1a0e08 100%);
  color: var(--bege-trigo);
  position: relative;
  overflow: hidden;
}
.section--testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(200, 150, 62, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(139, 69, 19, 0.15) 0%, transparent 50%);
  pointer-events: none;
}
.section--testimonials .wrap { position: relative; z-index: 2; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}
@media (max-width: 1080px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .testimonials-grid { grid-template-columns: 1fr; } }

.testimonial {
  background: rgba(212, 165, 116, 0.06);
  border: 1px solid rgba(212, 165, 116, 0.18);
  border-radius: 16px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.testimonial:hover { transform: translateY(-4px); border-color: var(--ocre-claro); }
.stars {
  color: var(--ocre-claro);
  font-size: 14px;
  letter-spacing: 0.1em;
}
.testimonial p {
  font-size: 14px;
  color: rgba(245, 222, 179, 0.85);
  line-height: 1.65;
  font-style: italic;
  flex: 1;
}
.testimonial-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 13px;
  color: var(--ocre-claro);
  letter-spacing: 0.05em;
  border-top: 1px solid rgba(212, 165, 116, 0.18);
  padding-top: 12px;
}

/* ============ GALERIA ============ */
.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 200px 200px;
  gap: 12px;
  margin-top: 40px;
  border-radius: 18px;
  overflow: hidden;
}
.gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  background: var(--marrom-escuro);
}
.gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery figure:hover img { transform: scale(1.06); }
.gal-1 { grid-column: span 3; grid-row: span 1; }
.gal-2 { grid-column: span 2; grid-row: span 1; }
.gal-3 { grid-column: span 1; grid-row: span 2; }
.gal-4 { grid-column: span 2; grid-row: span 1; }
.gal-5 { grid-column: span 2; grid-row: span 1; }
.gal-6 { grid-column: span 1; grid-row: span 1; }
@media (max-width: 880px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 200px);
  }
  .gal-1, .gal-2, .gal-3, .gal-4, .gal-5, .gal-6 {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* ============ SOBRE ============ */
.two-col {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 880px) { .two-col { grid-template-columns: 1fr; gap: 40px; } }

.about-art {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(62, 39, 35, 0.3);
}
.about-art > img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.about-stamp {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 90px;
  height: 90px;
  background: var(--bg-paper);
  border-radius: 50%;
  padding: 4px;
  border: 2px solid var(--ocre-dourado);
  box-shadow: 0 12px 24px -8px rgba(62, 39, 35, 0.35);
  animation: gentle-spin 80s linear infinite;
}
.about-stamp img { width: 100%; height: 100%; }
@keyframes gentle-spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }

.about-text p { font-size: 16px; line-height: 1.75; color: var(--ink-soft); margin-bottom: 18px; }
.about-text p strong { color: var(--marrom-escuro); }
.about-text .lead { margin-bottom: 18px; }

.about-pillars {
  list-style: none;
  display: flex;
  gap: 36px;
  margin-top: 28px;
  padding: 0;
  flex-wrap: wrap;
}
.about-pillars li { display: flex; flex-direction: column; padding-left: 16px; border-left: 2px solid var(--ocre-dourado); }
.pillar-num {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--ocre-escuro);
  font-weight: 600;
}
.pillar-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  color: var(--marrom-escuro);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ============ CONTACT CTA ============ */
.contact-cta {
  position: relative;
  padding: 120px 24px;
  background: linear-gradient(180deg, #1a0e08 0%, var(--marrom-escuro) 100%);
  color: var(--bege-trigo);
  overflow: hidden;
}
.contact-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 35%, rgba(200, 150, 62, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 75% 70%, rgba(74, 93, 35, 0.12) 0%, transparent 50%);
  pointer-events: none;
}
.contact-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

.contact-copy h2 { color: var(--bege-trigo); }
.contact-copy h2 em { color: var(--ocre-claro); -webkit-text-fill-color: var(--ocre-claro); }
.closing-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.1;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 17px;
  color: rgba(245, 222, 179, 0.78);
  margin: 16px 0 32px;
  line-height: 1.7;
  max-width: 580px;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(212, 165, 116, 0.18);
}
.info-item { display: flex; flex-direction: column; gap: 4px; }
.info-lbl {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ocre-claro);
  font-weight: 600;
}
.info-val {
  font-size: 14px;
  color: rgba(245, 222, 179, 0.88);
  font-weight: 500;
}

.contact-form {
  background: rgba(245, 222, 179, 0.05);
  border: 1px solid rgba(212, 165, 116, 0.25);
  border-radius: 22px;
  padding: 36px 32px;
  backdrop-filter: blur(10px);
}
.form-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  color: var(--bege-trigo);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.contact-form label {
  display: block;
  margin-bottom: 16px;
}
.contact-form label span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ocre-claro);
  font-weight: 600;
  margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(212, 165, 116, 0.2);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--bege-trigo);
  font-family: var(--body);
  font-size: 14px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(245, 222, 179, 0.4); }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--ocre-dourado);
  background: rgba(0, 0, 0, 0.3);
}
.contact-form textarea { resize: vertical; min-height: 70px; }
.form-hint {
  font-size: 11px;
  color: rgba(245, 222, 179, 0.5);
  text-align: center;
  margin-top: 12px;
  letter-spacing: 0.04em;
}

/* ============ FOOTER ============ */
.foot {
  background: #1a0e08;
  padding: 32px 24px;
  border-top: 1px solid rgba(212, 165, 116, 0.18);
  color: var(--bege-trigo);
}
.foot-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.foot-brand { display: flex; align-items: center; gap: 14px; }
.foot-logo {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bege-trigo);
  padding: 3px;
  flex-shrink: 0;
}
.foot-name { display: block; color: rgba(245, 222, 179, 0.85); font-size: 13px; }
.foot-tag {
  display: block;
  font-family: var(--script);
  font-size: 14px;
  color: var(--ocre-claro);
  margin-top: 2px;
}
.foot-links { display: flex; gap: 20px; }
.foot a { color: var(--ocre-claro); text-decoration: none; font-size: 13px; transition: color 0.2s ease; }
.foot a:hover { color: var(--bege-trigo); }

/* ============ WHATSAPP FLOAT ============ */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--wa) 0%, var(--wa-deep) 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px -6px rgba(37, 211, 102, 0.5);
  z-index: 100;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: wa-pulse 2.4s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 16px 40px -6px rgba(37, 211, 102, 0.7);
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 12px 30px -6px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 12px 30px -6px rgba(37, 211, 102, 0.5), 0 0 0 16px rgba(37, 211, 102, 0); }
}

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
  .reveal { opacity: 1; transform: none; }
}
