/* ============================================
   SIGNA JOIAS — Design System v2.0
   Fiel ao manual de identidade da marca
   ============================================ */

/* ─── Variáveis ──────────────────────────── */
:root {
  /* Cores */
  --cream:        #F7F3ED;
  --cream-2:      #EDE8DF;
  --cream-3:      #E5DDD3;
  --white:        #FFFFFF;
  --gold:         #B08D57;
  --gold-hover:   #8C6D3C;
  --brown-900:    #2A1A0E;
  --brown-700:    #4A3728;
  --brown-500:    #7A6555;
  --brown-300:    #A8978B;
  --brown-100:    #D8CFC8;
  --border:       #DDD5C8;

  /* Tipografia */
  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Jost', sans-serif;

  /* Grid — 30mm ≈ 113px, usar 7vw min 30mm */
  --max-w: 1200px;
  --pad-x: max(30mm, 5vw);

  /* Nav */
  --nav-h: 68px;

  /* Transição */
  --ease: 0.3s ease;
}

/* ─── Reset ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--brown-900);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
address { font-style: normal; }

/* ─── Utilitários ────────────────────────── */
.wrap {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* fade-in por scroll */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }

/* ─── Tipografia global ──────────────────── */
/* Títulos de seção — Cormorant Garamond */
.t-section {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  letter-spacing: .02em;
  line-height: 1.2;
  color: var(--brown-900);
}
.t-section em { font-style: italic; color: var(--brown-700); }

/* Eyebrow / label */
.t-label {
  font-family: var(--sans);
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brown-300);
}

/* Corpo */
.t-body {
  font-family: var(--sans);
  font-size: .875rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--brown-500);
}

/* ─── Botões ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: var(--ease);
  white-space: nowrap;
}
.btn .arr { transition: transform var(--ease); font-size: .8rem; }
.btn:hover .arr { transform: translateX(4px); }

/* Primário — preenchido dourado */
.btn-fill {
  background: var(--gold);
  color: var(--white);
  padding: .8rem 1.8rem;
  border-radius: 1px;
}
.btn-fill:hover { background: var(--gold-hover); }

/* Secundário — apenas texto + seta */
.btn-text {
  color: var(--brown-500);
  padding: 0;
}
.btn-text:hover { color: var(--gold); }

/* Outline dourado */
.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: .75rem 1.8rem;
  border-radius: 1px;
}
.btn-outline:hover { background: var(--gold); color: var(--white); }

/* Ghost — dourado sem borda */
.btn-ghost {
  color: var(--gold);
  padding: 0;
  font-size: .65rem;
}
.btn-ghost:hover { color: var(--gold-hover); }

/* ─── Ornamento linha + diamante ─────────── */
.ornament {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-block: 1.2rem;
}
.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
  max-width: 56px;
}
.ornament--left::before { max-width: 0; }
.ornament-gem {
  width: 5px; height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════ */
#header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  height: var(--nav-h);
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--ease);
}
#header.scrolled { box-shadow: 0 2px 24px rgba(42,26,14,.07); }

.nav-inner {
  max-width: var(--max-w);
  height: 100%;
  margin-inline: auto;
  padding-inline: var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 1;
}
.nav-logo-img {
  height: 42px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Logo no footer */
.footer-logo-img {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 1.2rem;
  /* logo sobre fundo claro — sem filtro */
  filter: none;
}

/* Links nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.nav-links a {
  font-family: var(--sans);
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brown-700);
  position: relative;
  padding-bottom: 3px;
  white-space: nowrap;
  transition: color var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Toggle mobile */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4.5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--brown-900);
  transition: var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Drawer mobile */
.nav-drawer {
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: var(--cream);
  z-index: 890;
  transform: translateX(100%);
  transition: transform .38s ease;
  overflow-y: auto;
  padding: 2rem var(--pad-x);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  border-top: 1px solid var(--border);
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer a {
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brown-700);
  padding-block: .4rem;
  border-bottom: 1px solid var(--border);
  transition: color var(--ease);
}
.nav-drawer a:hover { color: var(--gold); }

/* ════════════════════════════════════════════
   BREADCRUMB
   ════════════════════════════════════════════ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--sans);
  font-size: .58rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brown-300);
  margin-bottom: 1.6rem;
}
.breadcrumb a { transition: color var(--ease); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--brown-300); }

/* ════════════════════════════════════════════
   HERO — 2 colunas: texto esq | imagem dir full-bleed
   ════════════════════════════════════════════ */
#hero {
  --hero-bg-extra: 48px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  min-height: calc(100vh + var(--hero-bg-extra));
  background: var(--cream);
  overflow: hidden;
}

/* Coluna esquerda: texto alinhado exatamente com o logo */
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + clamp(2rem, 4vw, 3.5rem)) 20mm clamp(2rem, 4vw, 3.5rem) 30mm;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.35vw, 3.35rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: .025em;
  color: var(--brown-900);
  margin-bottom: 1rem;
}
/* Parte do título em dourado — como no modelo */
.hero-title .gold { color: var(--gold); font-style: italic; }

.hero-sub {
  font-family: var(--sans);
  font-size: .875rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--brown-500);
  max-width: 360px;
  margin-bottom: 1.6rem;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  flex-wrap: wrap;
}

/* Indicador de scroll */
.hero-scroll {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .6rem;
}
.hero-scroll-label {
  font-family: var(--sans);
  font-size: .52rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brown-300);
  line-height: 1.6;
}
.hero-scroll-arrow {
  font-size: 1rem;
  color: var(--brown-300);
  animation: bounce-down 1.8s ease-in-out infinite;
}
@keyframes bounce-down {
  0%,100% { transform: translateY(0); opacity:.5; }
  50% { transform: translateY(5px); opacity:1; }
}

/* Coluna direita: imagem full-bleed desde o topo (sobre o header fixo) */
.hero-img {
  position: relative;
  overflow: hidden;
  height: 100vh;
  align-self: start;
  background: #ede5d8;
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* gradiente suave para fundir com o fundo cream à esquerda */
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--cream) 0%, rgba(247,243,237,.15) 20%, transparent 40%);
}

/* Classe gold para o título hero */
.hero-title .gold,
em.gold {
  color: var(--gold);
  font-style: italic;
  font-family: var(--serif);
}

/* ════════════════════════════════════════════
   HISTÓRIAS — seção home
   ════════════════════════════════════════════ */
#historias {
  background: var(--white);
  height: 100svh;
  min-height: 640px;
  padding-block: clamp(1rem, 2vw, 1.6rem);
  display: flex;
  align-items: center;
  overflow: hidden;
}
#historias .wrap {
  width: 100%;
}

/* Cabeçalho de seção */
.sec-head {
  text-align: center;
  margin-bottom: 2.8rem;
}
#historias .sec-head {
  margin-bottom: clamp(.85rem, 1.5vw, 1.2rem);
  transform: translateY(-5mm);
}
#historias .sec-head .t-section {
  font-size: clamp(1.35rem, 2.35vw, 2.05rem);
  line-height: 1.2;
  padding-bottom: .75rem;
}
.hist-filter-spacer {
  position: relative;
  height: clamp(.9rem, 1.4vw, 1.15rem);
  margin-bottom: clamp(.7rem, 1.2vw, 1rem);
}
.hist-filter-spacer::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4mm;
  height: 1px;
  background: var(--gold);
}
#historias .hist-grid {
  transform: translateY(-10mm);
}
#historias .hist-cta {
  transform: translateY(0);
}
#historias .hist-cta .btn-outline {
  gap: .6rem;
  font-size: .58rem;
  letter-spacing: .22em;
  padding: .75rem 2rem;
}
#historias .hist-filter-spacer {
  transform: translateY(-5mm);
}
#historias .hist-filter-spacer::after {
  display: none;
}
.sec-head .t-label { display: block; margin-bottom: .7rem; }
.sec-head .t-section { margin-bottom: .4rem; }
.sec-sub {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  font-weight: 300;
  color: var(--brown-500);
}

/* Filtros — traço alinhado exatamente na borda inferior */
.hist-filters {
  display: flex;
  justify-content: center;
  gap: 0;
  position: relative;
  margin-bottom: clamp(1rem, 1.8vw, 1.4rem);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.hist-filters::-webkit-scrollbar { display: none; }
/* traço único abaixo de todos os itens */
.hist-filters::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.hist-filter {
  font-family: var(--sans);
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brown-300);
  padding: .65rem 1.1rem;
  border-bottom: 2px solid transparent;
  position: relative;
  z-index: 1;
  transition: color var(--ease), border-color var(--ease);
  white-space: nowrap;
}
.hist-filter.active,
.hist-filter:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Grid de cards */
.hist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(.85rem, 1.2vw, 1rem);
  margin-bottom: clamp(.55rem, 1vw, .85rem);
}

/* Card de história — SEM fundo/borda, imagem diretamente */
.hist-card {
  display: flex;
  flex-direction: column;
  transition: transform var(--ease);
}
.hist-card:hover { transform: translateY(-3px); }

.hist-card-img {
  width: 100%;
  height: clamp(170px, 28svh, 245px);
  overflow: hidden;
  background: var(--cream-2);
  margin-bottom: .65rem;
}
.hist-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.hist-card:hover .hist-card-img img { transform: scale(1.04); }

.hist-card-cat {
  font-family: var(--sans);
  font-size: .56rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .35rem;
}
.hist-card-title {
  font-family: var(--serif);
  font-size: clamp(.9rem, 1vw, 1rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--brown-900);
  margin-bottom: .35rem;
}
.hist-card-desc {
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 300;
  line-height: 1.45;
  color: var(--brown-500);
  margin-bottom: .55rem;
}
.hist-card-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--sans);
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: auto;
  transition: color var(--ease);
}
.hist-card-link .arr { transition: transform var(--ease); font-size: .7rem; }
.hist-card-link:hover { color: var(--gold-hover); }
.hist-card-link:hover .arr { transform: translateX(4px); }

.hist-cta { text-align: center; }

/* ════════════════════════════════════════════
   COLEÇÕES
   ════════════════════════════════════════════ */
#colecoes {
  background: var(--cream);
  padding-block: clamp(3.5rem, 7vw, 6rem);
}

.colecoes-intro {
  margin-bottom: 2.5rem;
}
.colecoes-intro .t-label { display: block; margin-bottom: .6rem; }
.colecoes-intro .t-section { margin-bottom: .8rem; }
.colecoes-intro p {
  font-family: var(--sans);
  font-size: .875rem;
  font-weight: 300;
  color: var(--brown-500);
  line-height: 1.85;
  max-width: 460px;
}

.colecoes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* Card de coleção: texto esq + imagem dir */
.col-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream-2);
  overflow: hidden;
  min-height: 340px;
}
.col-card-body {
  padding: clamp(1.5rem, 4vw, 2.8rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .6rem;
}
.col-card-tag {
  font-family: var(--sans);
  font-size: .54rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}
.col-card-title {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--brown-900);
}
.col-card-desc {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--brown-500);
}
.col-card-img {
  overflow: hidden;
  position: relative;
}
.col-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.col-card:hover .col-card-img img { transform: scale(1.04); }

/* ════════════════════════════════════════════
   DEPOIMENTOS
   ════════════════════════════════════════════ */
#depoimentos {
  background: var(--white);
  border-top: 1px solid rgba(176, 125, 58, .45);
  padding-block: clamp(3.5rem, 7vw, 6rem);
}
#depoimentos .sec-head .t-section {
  font-size: clamp(1.35rem, 2.35vw, 2.05rem);
  line-height: 1.2;
}

.dep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.dep-card {
  padding: 2rem 1.8rem;
  background: var(--cream);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.dep-stars { display: flex; gap: 3px; }
.dep-stars span { color: var(--gold); font-size: .7rem; }
.dep-quote {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  font-weight: 300;
  color: var(--brown-700);
  line-height: 1.7;
  flex: 1;
}
.dep-author {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-top: .5rem;
  border-top: 1px solid var(--border);
}
.dep-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--cream-2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: .85rem;
  color: var(--brown-500);
  flex-shrink: 0;
}
.dep-name {
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 500;
  color: var(--brown-900);
  letter-spacing: .04em;
}
.dep-role {
  font-family: var(--sans);
  font-size: .62rem;
  font-weight: 300;
  color: var(--brown-300);
}

/* ════════════════════════════════════════════
   CONTACTO
   ════════════════════════════════════════════ */
#contato {
  background: var(--cream);
  padding-block: clamp(3.5rem, 7vw, 6rem);
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.contato-info .t-label { display: block; margin-bottom: .6rem; }
.contato-info .t-section { margin-bottom: .5rem; }
.contato-info > .t-body { max-width: 320px; margin-bottom: 2.4rem; }

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
}
.contact-icon {
  width: 16px; flex-shrink: 0; margin-top: 2px;
}
.contact-icon svg {
  width: 16px; height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-lbl {
  font-family: var(--sans);
  font-size: .56rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brown-300);
  margin-bottom: .15rem;
}
.contact-val {
  font-family: var(--sans);
  font-size: .84rem;
  font-weight: 300;
  color: var(--brown-700);
  transition: color var(--ease);
}
.contact-val a:hover { color: var(--gold); }

/* Form */
.contato-form {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  position: relative;
}
.form-field label {
  font-family: var(--sans);
  font-size: .56rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brown-300);
}
.form-field input,
.form-field textarea,
.form-field select {
  font-family: var(--sans);
  font-size: .875rem;
  font-weight: 300;
  color: var(--brown-900);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: .5rem 0;
  outline: none;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color var(--ease);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-bottom-color: var(--gold); }
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--brown-300); font-weight: 300; }
.form-field textarea { resize: none; min-height: 90px; }
.form-field select { cursor: pointer; }

/* Seta do select */
.sel-wrap { position: relative; }
.sel-wrap::after {
  content: '';
  position: absolute;
  right: 0; top: 60%;
  transform: translateY(-50%);
  border: 4px solid transparent;
  border-top-color: var(--brown-300);
  pointer-events: none;
}

/* Linha focus animada */
.form-line {
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--ease);
}
.form-field:focus-within .form-line { width: 100%; }

/* Mensagem de sucesso */
#form-msg {
  display: none;
  padding: .9rem 1.3rem;
  background: var(--cream-2);
  border-left: 3px solid var(--gold);
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 300;
  color: var(--brown-700);
}
#form-msg.show { display: block; }

/* ════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */
#footer {
  background: #FAF8F5;
  color: var(--brown-900);
  border-top: 1px solid rgba(176,141,87,.18);
  padding-block: clamp(3rem, 6vw, 5rem) 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(176,141,87,.15);
  margin-bottom: 1.8rem;
}

.footer-brand p {
  font-family: var(--sans);
  font-size: .85rem;
  font-weight: 300;
  color: rgba(42,32,22,.75);
  line-height: 1.85;
  margin-top: 1.2rem;
  max-width: 260px;
}
.footer-socials {
  display: flex;
  gap: .75rem;
  margin-top: 1.5rem;
}
.footer-social-link {
  width: 32px; height: 32px;
  border: 1px solid rgba(176,141,87,.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem;
  color: rgba(42,32,22,.5);
  transition: var(--ease);
}
.footer-social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(42,32,22,.95);
  margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .7rem; }
.footer-col ul a {
  font-family: var(--sans);
  font-size: .85rem;
  font-weight: 400;
  color: rgba(42,32,22,.7);
  transition: color var(--ease);
}
.footer-col ul a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
}
.footer-bottom p {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 300;
  color: rgba(42,32,22,.55);
}
.footer-bottom a { transition: color var(--ease); }
.footer-bottom a:hover { color: var(--gold); }

/* ════════════════════════════════════════════
   PÁGINA PLACEHOLDER (para páginas futuras)
   ════════════════════════════════════════════ */
.page-coming {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 4rem) var(--pad-x) 4rem;
  text-align: center;
  background: var(--cream);
}
.page-coming .t-label { margin-bottom: 1rem; display: block; }
.page-coming .t-section { margin-bottom: 1.2rem; }
.page-coming .t-body { max-width: 400px; margin: 0 auto 2.4rem; }

/* ════════════════════════════════════════════
   RESPONSIVO
   ════════════════════════════════════════════ */

/* — 1100px — */
@media (max-width: 1100px) {
  .nav-links { gap: 1.2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* — 900px — */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  #hero {
    grid-template-columns: 1fr;
    min-height: auto;
    border-bottom: 1px solid rgba(176, 125, 58, .32);
  }
  .hero-content {
    order: 2;
    padding: clamp(2.5rem, 6vw, 4rem) var(--pad-x);
  }
  .hero-img {
    order: 1;
    height: 60vw;
    min-height: 280px;
    margin-top: var(--nav-h); /* empurra para baixo do nav fixo */
  }
  .hero-img-overlay {
    background: linear-gradient(to bottom, transparent 50%, var(--cream) 100%);
  }
  .hero-scroll { display: none; }

  #historias {
    height: auto;
    min-height: auto;
    display: block;
    overflow: visible;
    padding-block: clamp(2.5rem, 6vw, 4rem);
  }
  .hist-grid { grid-template-columns: repeat(2, 1fr); }
  .hist-card-img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .colecoes-grid { grid-template-columns: 1fr; }

  .dep-grid { grid-template-columns: 1fr 1fr; }

  .contato-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  #footer {
    padding-block: 2.8rem 1.4rem;
  }
  #footer .wrap {
    padding-inline: 1.25rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    padding-bottom: 1.8rem;
  }
  .footer-grid > .footer-col:not(:last-child) {
    display: none;
  }
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-logo-img {
    margin-inline: auto;
  }
  .footer-brand p {
    max-width: 100%;
  }
  .footer-socials {
    display: flex;
    justify-content: center;
  }
  .footer-bottom p:last-child {
    display: none;
  }
}

/* — 640px — */
@media (max-width: 640px) {
  :root { --nav-h: 60px; }

  .hero-title { font-size: 1.8rem; }
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: 1.1rem; }

  .hist-grid { grid-template-columns: 1fr; }
  .hist-filters { justify-content: flex-start; }

  .col-card { grid-template-columns: 1fr; min-height: auto; }
  .col-card-img { height: 220px; }

  #depoimentos .wrap {
    padding-inline: 1.25rem;
  }
  .dep-grid {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }
  .dep-card {
    padding: 1.6rem 1.35rem;
  }

  .form-row { grid-template-columns: 1fr; gap: 1.2rem; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* — 400px — */
@media (max-width: 400px) {
  .hero-title { font-size: 1.6rem; }
}

/* ══════════════════════════════════════
   BANNER DE COOKIES
   ══════════════════════════════════════ */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--brown-900);
  color: var(--cream);
  padding: 1.2rem var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(201,167,106,.25);
  /* começa escondido, entra com transição */
  transform: translateY(100%);
  opacity: 0;
  transition: transform .4s ease, opacity .4s ease;
  pointer-events: none;
}
#cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-text {
  flex: 1;
  min-width: 220px;
}
.cookie-text p {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(239,230,213,.75);
}
.cookie-text a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(176,141,87,.4);
  text-underline-offset: 2px;
  transition: text-decoration-color .2s;
}
.cookie-text a:hover {
  text-decoration-color: var(--gold);
}

.cookie-actions {
  display: flex;
  gap: .75rem;
  flex-shrink: 0;
  align-items: center;
  flex-wrap: wrap;
}

/* Aceitar tudo — fundo dourado */
.cookie-btn-accept {
  font-family: var(--sans);
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--brown-900);
  border: 1px solid var(--gold);
  padding: .6rem 1.6rem;
  cursor: pointer;
  transition: background .25s, color .25s;
  white-space: nowrap;
}
.cookie-btn-accept:hover {
  background: transparent;
  color: var(--gold);
}

/* Apenas necessários — outline */
.cookie-btn-necessary {
  font-family: var(--sans);
  font-size: .58rem;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  background: transparent;
  color: rgba(239,230,213,.55);
  border: 1px solid rgba(239,230,213,.2);
  padding: .6rem 1.4rem;
  cursor: pointer;
  transition: border-color .25s, color .25s;
  white-space: nowrap;
}
.cookie-btn-necessary:hover {
  border-color: rgba(239,230,213,.5);
  color: rgba(239,230,213,.85);
}

@media (max-width: 600px) {
  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
  }
  .cookie-actions {
    width: 100%;
    justify-content: flex-start;
  }
}

