/* ─── RESET & TOKENS ─────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --cream:          #F7F3EE;
  --cream-deep:     #EDE5DA;
  --rose:           #C9A98C;
  --rose-dark:      #A67D60;
  --rose-muted:     #D4B89E;
  --chocolate:      #3D2B1F;
  --chocolate-mid:  #6B4A36;
  --warm-white:     #FDFAF7;
  --text-light:     #9C7D6F;

  --font-display:   'Playfair Display', Georgia, serif;
  --font-body:      'Jost', system-ui, sans-serif;

  --ease:           cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out:       cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:    cubic-bezier(0.65, 0, 0.35, 1);
}

/* ─── CUSTOM CURSOR (SVG Arrow) ─────────────────────── */
*, *::before, *::after { cursor: none !important; }

/*
  Shape exato via mask-image com o SVG fornecido.
  viewBox 0 0 24 24 — tip do cursor em ~(9.45, 3.49),
  que equivale a ~39% x 14.5% do elemento.
  transform corrige esse offset para alinhar o hot-spot ao mouse.
*/
.cursor-dot {
  position: fixed;
  width: 29px;
  height: 29px;
  background-color: var(--chocolate);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m9.448 3.487 10.887 8.989a1.82 1.82 0 0 1 -1.168 3.224h-3.91a3.67 3.67 0 0 0 -2.927 1.454l-2.356 3.117a1.83 1.83 0 0 1 -3.288-1.007l-.686-14.064a2.1 2.1 0 0 1 3.448-1.713z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m9.448 3.487 10.887 8.989a1.82 1.82 0 0 1 -1.168 3.224h-3.91a3.67 3.67 0 0 0 -2.927 1.454l-2.356 3.117a1.83 1.83 0 0 1 -3.288-1.007l-.686-14.064a2.1 2.1 0 0 1 3.448-1.713z'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  pointer-events: none;
  z-index: 9999;
  /* desloca para que o tip (39%, 14.5%) fique no ponto exato do mouse */
  transform: translate(-39%, -14.5%);
  transform-origin: 39% 14.5%;
  transition: background-color 0.22s, transform 0.15s var(--ease);
  will-change: left, top;
}

/* Hover — vira rose-dark como feedback */
.cursor-dot.hovered {
  background-color: var(--rose-dark);
}

/* Seções escuras (CTA + Footer) — cursor branco creme */
.cursor-dot.on-dark {
  background-color: var(--warm-white);
}
.cursor-dot.on-dark.hovered {
  background-color: var(--rose-muted);
}

/* Click — comprime a partir do tip */
.cursor-dot.clicking {
  transform: translate(-39%, -14.5%) scale(0.82);
  transition: transform 0.08s;
}

.cursor-ring { display: none; }

@media (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
  *, *::before, *::after { cursor: auto !important; }
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  background: var(--cream);
  color: var(--chocolate);
  line-height: 2;
  overflow-x: hidden;
}

img { display: block; width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }


/* ─── UTILITIES ─────────────────────────────────────── */
.section-tag {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rose-dark);
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.6rem;
}
.section-tag::after {
  content: '';
  display: block;
  width: 2.4rem;
  height: 1px;
  background: var(--rose);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  background: var(--chocolate);
  color: var(--warm-white);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.btn-primary:hover {
  background: var(--rose-dark);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-dark);
  border-bottom: 1px solid var(--rose-muted);
  padding-bottom: 0.2rem;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.btn-ghost:hover {
  color: var(--chocolate);
  border-color: var(--chocolate);
}


/* ─── FADE-UP ANIMATION ─────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 1.1s var(--ease) forwards;
}
.d-1 { animation-delay: 0.08s; }
.d-2 { animation-delay: 0.20s; }
.d-3 { animation-delay: 0.34s; }
.d-4 { animation-delay: 0.50s; }
.d-5 { animation-delay: 0.68s; }


/* ═══════════════════════════════════════════════════════
   1. NAVEGAÇÃO
═══════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 70px;
  background: rgba(253,250,247,0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid rgba(169,121,93,0);
  transition: background 0.5s var(--ease), backdrop-filter 0.5s, border-color 0.5s, box-shadow 0.5s var(--ease);
}

.nav.scrolled {
  background: rgba(253,250,247,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(169,121,93,0.18);
  box-shadow: 0 4px 40px rgba(61,43,31,0.07);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--chocolate);
  letter-spacing: 0.05em;
}
.nav-logo span { color: var(--rose); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.4rem;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--chocolate-mid);
  transition: color 0.3s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--rose);
  transition: width 0.4s var(--ease);
}
.nav-links a:hover { color: var(--chocolate); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 0.6rem 1.6rem;
  border: 1px solid var(--chocolate);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--chocolate);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.nav-cta:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--warm-white);
}


/* ═══════════════════════════════════════════════════════
   2. HERO
═══════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 70px;
  position: relative;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 5vw 6rem 7vw;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5vw, 5.5rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--chocolate);
  margin-bottom: 1.8rem;
  letter-spacing: -0.01em;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--rose-dark);
}

.hero-body {
  font-size: 1rem;
  font-weight: 300;
  color: var(--chocolate-mid);
  line-height: 2;
  max-width: 38ch;
  margin-bottom: 2.8rem;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  flex-wrap: wrap;
}

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-photo {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Overlay sutil para integrar a foto com a paleta */
.hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(61,43,31,0.08) 0%,
    rgba(61,43,31,0) 40%,
    rgba(61,43,31,0.22) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Float card — posicionado no hero pai para não ser clipado */
.hero-float-card {
  position: absolute;
  bottom: 3.5rem;
  left: calc(50% - 4rem);
  z-index: 10;
  background: var(--warm-white);
  border-left: 3px solid var(--rose);
  padding: 1.5rem 2rem;
  box-shadow: 0 24px 64px rgba(61,43,31,0.18), 0 4px 16px rgba(61,43,31,0.08);
  min-width: 200px;
}
.hero-float-card .stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--chocolate);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-float-card .stat-num span {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--rose);
}
.hero-float-card .stat-label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.5rem;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 7vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  z-index: 5;
}
.scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--rose), transparent);
  animation: scrollLine 1.8s var(--ease) infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}
.scroll-label {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-light);
  writing-mode: vertical-rl;
}


/* ═══════════════════════════════════════════════════════
   3. BRAND STRIP
═══════════════════════════════════════════════════════ */
.brand-strip {
  background: var(--chocolate);
  padding: 1.6rem 0;
  overflow: hidden;
}

.brand-strip-inner {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}

.brand-strip:hover .brand-strip-inner {
  animation-play-state: paused;
}

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

.brand-strip-item {
  display: inline-flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--rose-muted);
  padding: 0 2rem;
}
.brand-strip-item::after {
  content: '·';
  color: var(--rose);
  font-size: 1rem;
}


/* ═══════════════════════════════════════════════════════
   4. FILOSOFIA
═══════════════════════════════════════════════════════ */
.filosofia {
  padding: 9rem 7vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.filosofia h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--chocolate);
  margin-bottom: 1.8rem;
  letter-spacing: -0.01em;
}
.filosofia h2 em {
  font-style: italic;
  color: var(--rose-dark);
}

.filosofia-body {
  font-size: 1rem;
  color: var(--chocolate-mid);
  line-height: 2;
  margin-bottom: 2.4rem;
  max-width: 44ch;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  background: var(--cream-deep);
}

.stat-card {
  background: var(--warm-white);
  padding: 2.4rem 2rem;
}
.stat-card.full {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
}

.stat-card .num.accent { color: var(--rose-dark); }
.stat-card .num sup {
  font-size: 1.4rem;
  color: var(--rose);
}

.stat-card .stat-desc {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.5rem;
}

.stat-card.full .stat-text {
  font-size: 0.84rem;
  color: var(--chocolate-mid);
  line-height: 1.9;
}


/* ═══════════════════════════════════════════════════════
   5. SERVIÇOS
═══════════════════════════════════════════════════════ */
.servicos {
  padding: 5rem 7vw 8rem;
}

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

.servicos h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--chocolate);
  letter-spacing: -0.01em;
}
.servicos h2 em { font-style: italic; color: var(--rose-dark); }

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--cream-deep);
}

.service-card {
  background: var(--warm-white);
  padding: 2.8rem 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  background: var(--chocolate);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(61,43,31,0.18);
  z-index: 2;
}

.service-num {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--rose);
  font-weight: 400;
  transition: color 0.35s;
}
.service-card:hover .service-num { color: var(--rose-muted); }

.service-name-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.service-icon {
  color: var(--rose-dark);
  flex-shrink: 0;
  margin-top: 0.25rem;
  transition: color 0.4s var(--ease), transform 0.4s var(--ease);
}
.service-card:hover .service-icon {
  color: var(--rose-muted);
  transform: translateY(-2px);
}

/* ── Animação de traço nos ícones ───────────────────── */
@keyframes traceStroke {
  from { stroke-dashoffset: 200; }
  to   { stroke-dashoffset: 0; }
}

/* Estado base: stroke-dasharray define o comprimento; dashoffset=0 → visível */
.service-icon path,
.service-icon polyline,
.service-icon polygon,
.service-icon circle,
.service-icon line,
.service-icon ellipse {
  stroke-dasharray: 200;
  stroke-dashoffset: 0;
}

/* Hover: redesenha o traço do início ao fim */
.service-card:hover .service-icon path,
.service-card:hover .service-icon polyline,
.service-card:hover .service-icon polygon,
.service-card:hover .service-icon circle,
.service-card:hover .service-icon line,
.service-card:hover .service-icon ellipse {
  animation: traceStroke 0.7s var(--ease) forwards;
}

/* Stagger por elemento dentro do mesmo ícone */
.service-card:hover .service-icon *:nth-child(2) { animation-delay: 0.08s; }
.service-card:hover .service-icon *:nth-child(3) { animation-delay: 0.16s; }
.service-card:hover .service-icon *:nth-child(4) { animation-delay: 0.24s; }

.service-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--chocolate);
  line-height: 1.25;
  transition: color 0.4s var(--ease);
  position: relative;
  display: inline-block;
}
.service-name::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--rose-muted);
  transition: width 0.5s var(--ease);
}
.service-card:hover .service-name { color: var(--warm-white); }
.service-card:hover .service-name::after { width: 100%; }

.service-desc {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.85;
  transition: color 0.35s;
}
.service-card:hover .service-desc { color: rgba(253,250,247,0.6); }

.service-arrow {
  margin-top: auto;
  font-size: 0.9rem;
  color: var(--rose);
  transition: color 0.4s var(--ease), transform 0.5s var(--ease);
  align-self: flex-start;
}
.service-card:hover .service-arrow {
  color: var(--rose-muted);
  transform: translateX(10px);
}

/* CTA Card */
.service-card.cta-card {
  background: var(--cream-deep);
  justify-content: center;
  align-items: flex-start;
  gap: 1.6rem;
}
.service-card.cta-card:hover { background: var(--chocolate); }

.cta-card-label {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
  color: var(--chocolate-mid);
  line-height: 1.4;
  transition: color 0.35s;
}
.service-card.cta-card:hover .cta-card-label { color: var(--rose-muted); }
.service-card.cta-card:hover .btn-primary { background: var(--rose); }


/* ═══════════════════════════════════════════════════════
   6. MANIFESTO
═══════════════════════════════════════════════════════ */
.manifesto {
  background: var(--rose);
  padding: 8rem 7vw;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5rem;
  align-items: center;
}

.manifesto-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.62rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(253,250,247,0.5);
  font-weight: 400;
}

.manifesto-content {
  max-width: 760px;
}

.manifesto-quote {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--warm-white);
  margin-bottom: 3rem;
}
.manifesto-quote strong {
  font-weight: 500;
  font-style: italic;
  color: var(--warm-white);
}

.manifesto-author {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}
.manifesto-line {
  width: 2rem;
  height: 1px;
  background: rgba(253,250,247,0.4);
  margin-top: 0.9rem;
  flex-shrink: 0;
}
.manifesto-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--warm-white);
  line-height: 1.2;
}
.manifesto-role {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(253,250,247,0.6);
  margin-top: 0.3rem;
}


/* ═══════════════════════════════════════════════════════
   7. PROCESSO
═══════════════════════════════════════════════════════ */
.processo {
  padding: 9rem 7vw;
  background: var(--cream);
}

.processo-header {
  text-align: center;
  margin-bottom: 5rem;
}
.processo-header .section-tag {
  justify-content: center;
}
.processo-header .section-tag::before {
  content: '';
  display: block;
  width: 2.4rem;
  height: 1px;
  background: var(--rose);
}
.processo-header .section-tag::after {
  content: '';
  display: block;
  width: 2.4rem;
  height: 1px;
  background: var(--rose);
}

.processo h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  font-weight: 400;
  color: var(--chocolate);
  letter-spacing: -0.01em;
}
.processo h2 em { font-style: italic; color: var(--rose-dark); }

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  gap: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(1rem + 28px);
  right: calc(1rem + 28px);
  height: 1px;
  background: var(--rose-muted);
  z-index: 0;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.4rem;
  position: relative;
  z-index: 1;
  padding: 0 1rem;
}

.step-dot {
  width: 56px;
  height: 56px;
  border: 1px solid var(--rose-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--rose-dark);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--chocolate);
}

.step-text {
  font-size: 0.92rem;
  color: var(--chocolate-mid);
  line-height: 1.9;
}


/* ═══════════════════════════════════════════════════════
   8. GALERIA
═══════════════════════════════════════════════════════ */
.galeria {
  padding: 0 7vw 9rem;
}

.galeria-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.4rem;
}

.galeria h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 400;
  color: var(--chocolate);
  letter-spacing: -0.01em;
}
.galeria h2 em { font-style: italic; color: var(--rose-dark); }

.galeria-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 6px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
}
.gallery-item.large {
  grid-row: 1 / 3;
}

.gallery-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s var(--ease);
}
.gallery-item:hover .gallery-photo {
  transform: scale(1.04);
}

/* Remove os background-image anteriores — fotos reais agora */

.gallery-label {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  background: rgba(61,43,31,0.72);
  backdrop-filter: blur(6px);
  padding: 0.35rem 0.9rem;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-muted);
}


/* ═══════════════════════════════════════════════════════
   9. DEPOIMENTOS
═══════════════════════════════════════════════════════ */
.depoimentos {
  padding: 9rem 7vw;
  background: var(--cream-deep);
}

.depoimentos-header {
  text-align: center;
  margin-bottom: 4rem;
}
.depoimentos-header .section-tag {
  justify-content: center;
}
.depoimentos-header .section-tag::before {
  content: '';
  display: block;
  width: 2.4rem;
  height: 1px;
  background: var(--rose);
}
.depoimentos-header .section-tag::after { display: none; }

.depoimentos h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 400;
  color: var(--chocolate);
  letter-spacing: -0.01em;
}
.depoimentos h2 em { font-style: italic; color: var(--rose-dark); }

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(169,121,93,0.15);
}

.depo-card {
  background: var(--warm-white);
  padding: 2.8rem 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.stars {
  display: flex;
  gap: 3px;
}
.star {
  width: 14px;
  height: 14px;
  background: var(--rose);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.depo-quote {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  color: var(--chocolate);
  line-height: 1.75;
  flex-grow: 1;
}

.depo-divider {
  height: 1px;
  background: var(--cream-deep);
}

.depo-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.depo-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--rose-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--chocolate);
  flex-shrink: 0;
}
.depo-name {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--chocolate);
}
.depo-since {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--text-light);
  margin-top: 0.1rem;
}


/* ═══════════════════════════════════════════════════════
   10. CTA + FORMULÁRIO
═══════════════════════════════════════════════════════ */
.cta-section {
  background: var(--cream-deep);
  padding: 9rem 7vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--chocolate);
  margin-bottom: 1.6rem;
  letter-spacing: -0.01em;
}
.cta-section h2 em {
  font-style: italic;
  color: var(--rose-dark);
}

.cta-body {
  font-size: 1rem;
  color: var(--chocolate-mid);
  line-height: 2;
  margin-bottom: 2.8rem;
}

.cta-infos {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cta-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.92rem;
  color: var(--chocolate-mid);
}
.cta-info-item .icon {
  color: var(--rose-dark);
  flex-shrink: 0;
  font-size: 0.9rem;
}

/* Formulário */
.form {
  display: flex;
  flex-direction: column;
  gap: 1.2px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2px;
}

.form-field {
  position: relative;
}

.form-field input,
.form-field select {
  width: 100%;
  padding: 1.1rem 1.4rem;
  background: rgba(253,250,247,0.7);
  border: 1px solid rgba(61,43,31,0.14);
  color: var(--chocolate);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  appearance: none;
}

.form-field input::placeholder {
  color: rgba(61,43,31,0.38);
}
.form-field select option {
  background: var(--warm-white);
  color: var(--chocolate);
}

.form-field input:focus,
.form-field select:focus {
  border-color: var(--rose-dark);
  background: rgba(253,250,247,0.95);
}

.form-field input.valid {
  border-color: rgba(166,125,96,0.6);
  background: rgba(253,250,247,0.95);
}

.form-field input.invalid {
  border-color: rgba(200,90,80,0.4);
  background: rgba(200,80,70,0.03);
}

.form-field .field-icon {
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 0.75rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.form-field input.valid ~ .field-icon.ok   { opacity: 1; color: #a0b896; }
.form-field input.invalid ~ .field-icon.err { opacity: 1; color: #c8665a; }

/* Botão de submit com loader */
.form-submit .btn-primary {
  position: relative;
  overflow: hidden;
}
.form-submit .btn-primary.loading {
  pointer-events: none;
  color: transparent;
}
.form-submit .btn-primary.loading::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(253,250,247,0.3);
  border-top-color: var(--warm-white);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  color: var(--chocolate);
}
.form-success.visible { display: block; }
.form-success-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
  color: var(--rose-dark);
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
}
.form-success p {
  font-size: 0.84rem;
  color: var(--chocolate-mid);
  line-height: 2;
}

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

.select-arrow {
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--rose-muted);
  font-size: 0.7rem;
}

.form-submit {
  margin-top: 0.5rem;
}
.form-submit .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 1.2rem;
  background: var(--rose);
  font-size: 0.72rem;
}
.form-submit .btn-primary:hover {
  background: var(--rose-dark);
}


/* ═══════════════════════════════════════════════════════
   11. FOOTER
═══════════════════════════════════════════════════════ */
.footer {
  background: var(--cream);
  padding: 6rem 7vw 3rem;
  border-top: 1px solid rgba(61,43,31,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(61,43,31,0.1);
}

.footer-brand-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--chocolate);
  letter-spacing: 0.02em;
  margin-bottom: 1.2rem;
}
.footer-brand-logo span { color: var(--rose-dark); }

.footer-brand-desc {
  font-size: 0.9rem;
  color: var(--chocolate-mid);
  line-height: 2;
  max-width: 28ch;
}

.footer-col h4 {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose-dark);
  margin-bottom: 1.6rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.footer-links a {
  font-size: 0.9rem;
  color: var(--chocolate-mid);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--rose-dark); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2.4rem;
}

.footer-copy {
  font-size: 0.68rem;
  color: rgba(61,43,31,0.38);
  letter-spacing: 0.08em;
}

.footer-socials {
  display: flex;
  gap: 2rem;
}
.footer-socials a {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(61,43,31,0.45);
  transition: color 0.3s;
}
.footer-socials a:hover { color: var(--rose-dark); }


/* ─── SCROLL REVEAL ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Variante para stat counters */
.stat-card .num {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 400;
  line-height: 1;
  color: var(--chocolate);
  letter-spacing: -0.02em;
  transition: color 0.3s;
}


/* ─── RESPONSIVIDADE ─────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 5rem 6vw; }
  .hero-right { min-height: 55vw; }
  .hero-photo { min-height: 55vw; object-position: center 20%; }
  .hero-float-card { left: 3rem; bottom: 2.5rem; }
  .scroll-indicator { display: none; }

  .filosofia { grid-template-columns: 1fr; gap: 3.5rem; padding: 6rem 6vw; }
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
  .manifesto { grid-template-columns: 1fr; gap: 2rem; padding: 6rem 6vw; }
  .manifesto-label { writing-mode: horizontal-tb; transform: none; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { display: none; }
  .galeria-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item.large { grid-row: auto; }
  .depoimentos-grid { grid-template-columns: 1fr; }
  .cta-section { grid-template-columns: 1fr; gap: 4rem; padding: 6rem 6vw; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 640px) {
  .only-desktop { display: none; }

  .nav-links { display: none; }
  .nav { padding: 0 5vw; }

  .hero h1 { font-size: clamp(2.4rem, 8vw, 3.2rem); }
  .hero-body { font-size: 0.98rem; max-width: none; }
  .hero-left { padding: 4rem 5vw; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-float-card { left: 1.5rem; bottom: 2rem; min-width: 170px; }

  .section-tag { font-size: 0.6rem; letter-spacing: 0.2em; }

  .filosofia h2,
  .servicos h2,
  .processo h2,
  .galeria h2,
  .depoimentos h2,
  .cta-section h2 {
    font-size: clamp(1.9rem, 7vw, 2.6rem);
  }

  .filosofia-body { font-size: 0.96rem; max-width: none; }
  .stat-card .stat-desc { font-size: 0.74rem; letter-spacing: 0.1em; }

  .service-name { font-size: 1.35rem; }
  .service-desc { font-size: 0.9rem; }

  .manifesto-quote { font-size: clamp(1.35rem, 5vw, 1.8rem); }

  .step-title { font-size: 1.2rem; }
  .step-text { font-size: 0.9rem; }

  .depo-quote { font-size: 1.1rem; }

  .cta-body { font-size: 0.96rem; }
  .cta-info-item { font-size: 0.9rem; }

  .servicos-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .galeria-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-row: auto; }
  .timeline { grid-template-columns: 1fr; }
  .depoimentos-grid { grid-template-columns: 1fr; }

  .processo, .galeria, .depoimentos, .filosofia, .servicos {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
