:root {
  --wine-900: #3d0a1c;
  --wine-800: #591024;
  --wine-700: #7a1832;
  --wine-600: #8f1e3d;
  --gold-500: #cdad76;
  --gold-400: #d9bc8b;
  --gold-300: #e6cfa8;
  --cream-50: #faf4e6;
  --cream-100: #f0e6cf;
  --ink-900: #1a1013;
  --ink-700: #3c2b30;
  --ink-500: #6b555b;
  --line: rgba(74, 13, 33, 0.12);
  --line-light: rgba(255, 255, 255, 0.18);
  --shadow-sm: 0 4px 14px rgba(74, 13, 33, 0.08);
  --shadow-md: 0 18px 40px rgba(74, 13, 33, 0.14);
  --radius: 14px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink-900);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 .5em;
  line-height: 1.15;
}
h1 { font-size: clamp(2.2rem, 4.6vw, 3.9rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }
p  { margin: 0 0 1em; color: var(--ink-700); }
.lede { font-size: 1.1rem; color: var(--ink-700); max-width: 62ch; }
.gold { color: var(--gold-500); font-style: italic; font-family: 'Cormorant Garamond', serif; font-weight: 600; }

.section { padding: clamp(64px, 9vw, 120px) 0; }
.section-light { background: #fff; }
.section-cream { background: var(--cream-50); }
.section-dark { background: linear-gradient(180deg, var(--wine-800), var(--wine-900)); color: #fff; }
.section-dark p, .section-dark li { color: rgba(255,255,255,.82); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }

.section-eyebrow {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--wine-700);
  border-bottom: 1px solid var(--gold-400);
  padding-bottom: 4px;
  margin-bottom: 20px;
}
.section-eyebrow.light { color: var(--gold-300); border-color: var(--gold-400); }

.section-mark {
  display: block;
  width: 60px; height: auto;
  margin: 0 0 24px;
  opacity: .9;
}

/* ===== Ornamento art déco ===== */
.ornament {
  display: flex;
  align-items: center; justify-content: center;
  padding: 30px 24px 0;
  color: var(--gold-500);
  background: transparent;
}
.ornament svg {
  width: min(220px, 60%);
  height: auto;
  stroke-width: 1;
  opacity: .75;
  animation: ornamentFade .9s ease-out both;
}
@keyframes ornamentFade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: .75; transform: translateY(0); }
}
.section-dark + .ornament { color: var(--gold-500); }
.section-cream + .ornament,
.section-light + .ornament { background: transparent; }
@media (prefers-reduced-motion: reduce) { .ornament svg { animation: none; } }

/* ===== Section head reutilizável ===== */
.section-head {
  max-width: 780px;
  margin-bottom: 44px;
}

.light { color: #fff; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(251, 246, 236, 0.88);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  min-height: 76px;
  padding: 10px 0;
}
.brand {
  display: inline-flex; align-items: center; gap: 14px;
  color: var(--wine-800);
}
.brand-mark-img {
  display: block;
  width: 56px; height: auto;
  flex-shrink: 0;
}
.brand-text {
  display: flex; flex-direction: column; gap: 4px;
  line-height: 1;
}
.brand-text strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--wine-800);
  white-space: nowrap;
}
.brand-text .brand-second { color: var(--gold-600, var(--gold-500)); font-weight: 600; }
.brand-text em {
  font-style: normal;
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-500);
}
@media (max-width: 560px) {
  .brand-mark-img { width: 44px; }
  .brand-text strong { font-size: .92rem; letter-spacing: .12em; }
  .brand-text em { font-size: .56rem; letter-spacing: .16em; }
}
@media (max-width: 400px) {
  .brand { gap: 10px; }
  .brand-mark-img { width: 42px; }
  .brand-text strong { font-size: .82rem; letter-spacing: .08em; }
  .brand-text em { font-size: .54rem; letter-spacing: .14em; }
}
@media (max-width: 340px) {
  .brand-text strong { font-size: .74rem; }
  .brand-text .brand-second { display: none; }
}
.brand-light { color: #fff; }
.brand-light .brand-text strong { color: #fff; }
.brand-light .brand-text .brand-second { color: var(--gold-300); }
.brand-light .brand-text em { color: var(--gold-300); }

.site-nav {
  display: flex; align-items: center; gap: 28px;
}
.site-nav a {
  font-size: .95rem;
  color: var(--ink-700);
  position: relative;
  padding: 6px 0;
}
.site-nav a:hover { color: var(--wine-700); }
.site-nav a.nav-cta {
  background: var(--wine-800); color: #fff;
  padding: 10px 18px; border-radius: 999px;
  font-weight: 500;
}
.site-nav a.nav-cta:hover { background: var(--wine-700); color:#fff; }

.nav-toggle {
  display: none;
  border: 0; background: none; padding: 8px; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--wine-800); margin: 5px 0;
  transition: transform .25s, opacity .25s;
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute; inset: 72px 0 auto 0;
    background: var(--cream-50);
    flex-direction: column; align-items: stretch;
    padding: 12px 24px 24px;
    gap: 0;
    transform: translateY(-8px);
    opacity: 0; pointer-events: none;
    transition: opacity .2s, transform .2s;
    border-bottom: 1px solid var(--line);
  }
  .site-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .site-nav a.nav-cta { text-align: center; margin-top: 12px; border: 0; }
  .site-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  padding: clamp(80px, 12vw, 160px) 0 clamp(80px, 12vw, 140px);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(205, 173, 118, 0.28), transparent 50%),
    radial-gradient(ellipse at 10% 90%, rgba(122, 24, 50, 0.55), transparent 55%),
    linear-gradient(160deg, #3d0a1c 0%, #7a1832 55%, #97244a 100%);
}
.hero-bg::after{
  content:"";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 78%);
}
.hero-watermark {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  max-width: 55%;
  height: auto;
  opacity: 0.08;
  pointer-events: none;
  filter: brightness(2);
}
@media (max-width: 720px) {
  .hero-watermark { right: -160px; opacity: 0.06; width: 380px; }
}
.hero-inner { position: relative; z-index: 1; }
.eyebrow {
  display: inline-block;
  font-size: .78rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold-300);
  border: 1px solid var(--gold-400);
  padding: 6px 14px; border-radius: 999px;
  margin-bottom: 26px;
}
.hero h1 { color: #fff; max-width: 18ch; }
.hero .lede { color: rgba(255,255,255,.85); margin-top: 14px; }
.hero-cta {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-top: 34px;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 500; font-size: .98rem;
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s, color .2s, border-color .2s;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--gold-500); color: var(--wine-900); }
.btn-primary:hover { background: var(--gold-400); }
.btn-ghost { border-color: rgba(255,255,255,.35); color: #fff; }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.06); }
.hero-badges {
  list-style: none; padding: 0; margin: 44px 0 0;
  display: flex; gap: 22px; flex-wrap: wrap;
  color: var(--gold-300); font-size: .8rem; letter-spacing: .22em; text-transform: uppercase;
}
.hero-badges li { position: relative; padding-left: 22px; }
.hero-badges li::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 14px; height: 1px; background: var(--gold-400);
}

/* ===== Sobre / grid ===== */
.grid-2 {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.grid-2-flip { direction: rtl; }
.grid-2-flip > * { direction: ltr; }
@media (max-width: 820px) { .grid-2, .grid-2-flip { grid-template-columns: 1fr; direction: ltr;} }

.check-list { list-style: none; padding: 0; margin: 22px 0 0; }
.check-list li {
  position: relative; padding: 8px 0 8px 30px;
  border-bottom: 1px dashed var(--line);
  color: var(--ink-700);
}
.check-list li::before{
  content: ""; position: absolute; left: 0; top: 16px;
  width: 14px; height: 14px;
  border: 1px solid var(--gold-500);
  transform: rotate(45deg);
}

.portrait-card {
  background: var(--wine-900);
  border-radius: var(--radius);
  padding: 28px;
  color: #fff;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.portrait-card::before{
  content: "";
  position: absolute; inset: 12px;
  border: 1px solid rgba(216, 183, 106, 0.35);
  border-radius: 10px;
  pointer-events: none;
}
.portrait {
  width: 100%; aspect-ratio: 4/5;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background: #2a0812;
}
.portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.portrait::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(61, 10, 28, .65));
  pointer-events: none;
}
.portrait-thumbs {
  margin-top: 12px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.portrait-thumbs img {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover; object-position: center 15%;
  border-radius: 8px;
  border: 1px solid rgba(216, 183, 106, .3);
  transition: transform .3s, border-color .3s;
}
.portrait-thumbs img:hover {
  transform: scale(1.02);
  border-color: var(--gold-400);
}
.portrait-caption { margin-top: 20px; display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
.signature {
  width: 220px; max-width: 90%;
  filter: brightness(1.05);
  margin-bottom: 4px;
}
.portrait-caption span { color: var(--gold-300); font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; }
.portrait-caption a { color: var(--gold-300); font-size: .9rem; margin-top: 6px; letter-spacing: .05em; }
.portrait-caption a:hover { color: #fff; }

/* ===== Formação ===== */
.cred-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px; margin-top: 32px;
}
.cred {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  transition: transform .2s, box-shadow .2s;
}
.cred:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.cred-highlight {
  background: linear-gradient(150deg, var(--wine-800), var(--wine-900));
  color: #fff;
  border-color: rgba(216, 183, 106, .4);
  position: relative;
}
.cred-highlight::before {
  content: "Novidade";
  position: absolute;
  top: 12px; right: 12px;
  font-size: .62rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--wine-900);
  background: var(--gold-400);
  padding: 3px 8px; border-radius: 999px;
  font-weight: 600;
}
.cred-highlight .cred-year { color: var(--gold-300); border-color: var(--gold-400); }
.cred-highlight p { color: #fff; }
.cred-highlight strong { color: var(--gold-300); }
.cred-year {
  display: inline-block;
  font-size: .74rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-500); font-weight: 600;
  border-left: 2px solid var(--gold-400);
  padding-left: 8px; margin-bottom: 8px;
}
.cred p { margin: 0; font-size: .95rem; }

/* ===== Pilares (luxuoso) ===== */
.pilar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-top: 40px;
  position: relative;
}
.pilar {
  position: relative;
  padding: 34px 26px 28px;
  background:
    radial-gradient(ellipse at 50% -20%, rgba(216, 183, 106, .15), transparent 60%),
    linear-gradient(160deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  border: 1px solid rgba(216, 183, 106, .22);
  border-radius: 4px;
  overflow: hidden;
  transition: transform .4s cubic-bezier(.2,.7,.3,1), border-color .3s, background .3s;
  isolation: isolate;
}
.pilar::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(216, 183, 106, .18);
  border-radius: 2px;
  pointer-events: none;
  z-index: 0;
}
.pilar::after {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 6px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  opacity: 0;
  transition: opacity .3s, width .4s;
}
.pilar:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 183, 106, .5);
}
.pilar:hover::after { opacity: 1; width: 90px; }
.pilar:hover .pilar-emblem { transform: translateY(-2px) rotate(-4deg); }
.pilar:hover .pilar-emblem::after { opacity: 1; transform: scale(1.15); }

.pilar > * { position: relative; z-index: 1; }

.pilar-emblem {
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-400);
  position: relative;
  transition: transform .5s cubic-bezier(.2,.7,.3,1);
  filter: drop-shadow(0 2px 8px rgba(216, 183, 106, .25));
}
.pilar-emblem::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(216, 183, 106, .35);
  transform: rotate(45deg);
  border-radius: 4px;
}
.pilar-emblem::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(216, 183, 106, .5);
  transform: rotate(45deg) scale(1);
  border-radius: 4px;
  opacity: 0;
  transition: opacity .4s, transform .5s cubic-bezier(.2,.7,.3,1);
}

.pilar-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold-300);
  letter-spacing: .3em;
  text-align: center;
  margin-bottom: 12px;
}

.pilar h3 {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  text-align: center;
  margin: 0 0 12px;
  letter-spacing: .02em;
}
.pilar h3::after {
  content: "";
  display: block;
  width: 32px; height: 1px;
  background: var(--gold-500);
  margin: 10px auto 0;
  transition: width .4s;
}
.pilar:hover h3::after { width: 60px; }

.pilar p {
  font-size: .9rem;
  line-height: 1.5;
  color: rgba(255,255,255,.78);
  text-align: center;
  margin: 0;
}

/* ===== Serviços ===== */
.servico-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px; margin-top: 36px;
}
.servico {
  padding: 28px;
  background: var(--cream-50);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .2s, box-shadow .2s;
}
.servico:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.servico-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--wine-800); color: var(--gold-300);
  border-radius: 10px;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.servico h3 { color: var(--wine-800); }
.servico p { margin: 0; font-size: .95rem; }

.disponibilidade {
  margin-top: 50px;
  padding: 34px;
  background: var(--wine-900);
  color: #fff;
  border-radius: var(--radius);
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 30px;
  align-items: center;
}
.disponibilidade h3 { color: #fff; }
.disponibilidade p { color: rgba(255,255,255,.85); }
.canais {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 10px;
}
.canal {
  display: flex; flex-direction: column;
  gap: 6px;
  padding: 14px 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(216, 183, 106, .18);
  border-radius: 12px;
  transition: background .2s, border-color .2s;
}
.canal:hover { background: rgba(255,255,255,.1); border-color: var(--gold-400); }
.canal-label {
  color: var(--gold-300);
  font-size: .68rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 500;
}
.canal-value {
  color: #fff;
  font-size: 1rem;
  font-family: 'Playfair Display', serif;
  word-break: break-word;
  overflow-wrap: anywhere;
  text-decoration: none;
  transition: color .2s;
}
.canal-value:hover { color: var(--gold-300); }
@media (min-width: 720px) {
  .canal {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  .canal-label { flex-shrink: 0; }
  .canal-value { text-align: right; }
}
@media (max-width: 720px) { .disponibilidade { grid-template-columns: 1fr; } }

.seguro-badge {
  margin-top: 22px;
  padding: 16px 20px;
  display: flex; align-items: flex-start; gap: 16px;
  border: 1px solid rgba(216, 183, 106, .35);
  border-radius: 12px;
  background: rgba(216, 183, 106, .08);
  color: #fff;
}
.seguro-badge svg {
  color: var(--gold-400);
  flex-shrink: 0;
  margin-top: 2px;
}
.seguro-badge strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: .78rem; font-weight: 600;
  color: var(--gold-300);
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1.4;
}
.seguro-badge span {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: #fff;
  margin-top: 6px;
  letter-spacing: .01em;
}

/* ===== Estrutura ===== */
.dept-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}
.dept {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--wine-700);
  border-radius: 10px;
  transition: transform .2s, box-shadow .2s;
}
.dept:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.dept h4 { color: var(--wine-800); letter-spacing: .04em; text-transform: uppercase; font-size: .82rem; font-family: 'Inter', sans-serif; font-weight: 700; }
.dept p { margin: 6px 0 0; font-size: .92rem; }

/* ===== Processo ===== */
.section-process {
  background: linear-gradient(180deg, var(--cream-50), #fff);
}
.process {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
  position: relative;
}
.process::before {
  content: "";
  position: absolute;
  top: 44px; left: 8%; right: 8%;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold-400) 0 8px,
    transparent 8px 16px
  );
  z-index: 0;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold-500);
  border-radius: var(--radius);
  padding: 28px 22px 24px;
  position: relative;
  z-index: 1;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--wine-700);
}
.step-num {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--wine-800);
  color: var(--gold-300);
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 18px;
  position: relative;
  box-shadow: 0 4px 12px rgba(74, 13, 33, .18);
}
.step-num::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(216, 183, 106, .3);
}
.step h3 {
  color: var(--wine-800);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin: 0 0 8px;
}
.step p {
  margin: 0;
  font-size: .93rem;
  line-height: 1.5;
  color: var(--ink-700);
}
@media (max-width: 900px) {
  .process { grid-template-columns: 1fr 1fr; }
  .process::before { display: none; }
}
@media (max-width: 520px) {
  .process { grid-template-columns: 1fr; }
}

/* ===== Editorial ===== */
.section-editorial {
  background: var(--cream-50);
  padding: clamp(64px, 9vw, 120px) 0;
  position: relative;
  overflow: hidden;
}
.section-editorial::before {
  content: "";
  position: absolute;
  right: -80px; top: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(205, 173, 118, .18), transparent 70%);
  pointer-events: none;
}
.editorial-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  position: relative;
}
.editorial-photo {
  margin: 0;
  position: relative;
}
.editorial-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center 20%;
  border-radius: var(--radius);
  box-shadow: 0 30px 60px rgba(74, 13, 33, .18);
}
.editorial-photo::after {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid var(--gold-500);
  border-radius: var(--radius);
  z-index: -1;
}
.editorial-copy blockquote {
  margin: 20px 0 16px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.4rem, 2.3vw, 1.85rem);
  font-style: italic;
  line-height: 1.35;
  color: var(--wine-800);
  font-weight: 500;
  quotes: none;
}
.editorial-copy blockquote em {
  color: var(--gold-500);
  font-style: italic;
  font-weight: 600;
}
.editorial-attr {
  font-family: 'Inter', sans-serif;
  font-size: .82rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--wine-700);
  margin: 0 0 34px;
}
.editorial-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.editorial-facts strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--wine-800);
  font-weight: 600;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.editorial-facts span {
  display: block;
  margin-top: 6px;
  font-size: .78rem;
  color: var(--ink-500);
  line-height: 1.3;
}
@media (max-width: 820px) {
  .editorial-grid { grid-template-columns: 1fr; }
  .editorial-facts { grid-template-columns: 1fr; gap: 14px; }
  .editorial-facts > div { display: flex; align-items: baseline; gap: 14px; }
  .editorial-facts strong { font-size: 1.8rem; }
  .editorial-photo::after { inset: 12px -12px -12px 12px; }
}

/* ===== Benfeitoria ===== */
.beforeafter {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.ba-card {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 12px;
  text-align: center;
  margin: 0;
}
.ba-card figcaption {
  display: inline-block; margin-top: 10px;
  font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-300);
}
.ba-card img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover; border-radius: 10px;
  display: block;
}
.benefit-list { list-style: none; padding: 0; margin: 18px 0 0; }
.benefit-list li {
  position: relative; padding: 8px 0 8px 26px; color: rgba(255,255,255,.85);
  border-bottom: 1px dashed var(--line-light);
}
.benefit-list li::before{
  content: "✓"; position: absolute; left: 0; color: var(--gold-400);
}

/* ===== Credenciais Oficiais (discreto) ===== */
.section-credenciais {
  background: #fff;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.credenciais-title {
  text-align: center;
  margin: 0 0 26px;
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 500;
}
.credenciais-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 8px 32px;
  align-items: start;
}
.credenciais-list li {
  display: grid;
  grid-template-columns: 22px auto;
  grid-template-rows: auto auto;
  column-gap: 10px;
  align-items: center;
  padding: 10px 0;
}
.credencial-mark {
  grid-row: span 2;
  align-self: flex-start;
  margin-top: 2px;
  color: var(--gold-500);
  display: inline-flex;
}
.credenciais-list strong {
  font-family: 'Playfair Display', serif;
  font-size: .98rem;
  font-weight: 600;
  color: var(--wine-800);
  letter-spacing: .04em;
}
.credenciais-list span {
  font-size: .78rem;
  color: var(--ink-500);
  line-height: 1.45;
}
@media (max-width: 720px) {
  .credenciais-list { grid-template-columns: 1fr; gap: 4px; }
  .credenciais-list li { padding: 8px 0; }
}

/* ===== Trajetória (compact luxo) ===== */
.section-trajetoria {
  background:
    radial-gradient(ellipse at 100% 0%, rgba(205, 173, 118, .12), transparent 50%),
    radial-gradient(ellipse at 0% 100%, rgba(122, 24, 50, .08), transparent 55%),
    linear-gradient(180deg, #fbf6ec 0%, #fff 100%);
  padding: clamp(56px, 7vw, 84px) 0;
  position: relative;
  overflow: hidden;
}
.section-trajetoria::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: min(220px, 60%); height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}
.trajetoria-head { text-align: center; margin-inline: auto; margin-bottom: 40px; }
.trajetoria-head h2 em {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  color: var(--gold-500);
  font-weight: 600;
}

.trajetoria {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 780px;
  position: relative;
}
.trajetoria::before {
  content: "";
  position: absolute;
  top: 12px; bottom: 12px;
  left: 108px;
  width: 1px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(205, 173, 118, .25) 6%,
    var(--gold-500) 50%,
    rgba(205, 173, 118, .25) 94%,
    transparent 100%);
}

.trajetoria-row {
  display: grid;
  grid-template-columns: 92px 32px 1fr;
  align-items: baseline;
  gap: 0 16px;
  padding: 10px 0;
  position: relative;
}
.trajetoria-row + .trajetoria-row {
  border-top: 1px dashed rgba(205, 173, 118, .18);
}

.trajetoria-year {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--wine-800);
  letter-spacing: .02em;
  text-align: right;
  padding-right: 4px;
}

.trajetoria-dot {
  position: relative;
  justify-self: center;
  align-self: center;
  width: 12px; height: 12px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  border-radius: 50%;
  box-shadow:
    0 0 0 3px #fff,
    0 0 0 4px rgba(205, 173, 118, .35),
    0 4px 10px rgba(205, 173, 118, .3);
  z-index: 1;
  transition: transform .3s cubic-bezier(.2,.7,.3,1);
}
.trajetoria-row:hover .trajetoria-dot {
  transform: scale(1.25);
}

.trajetoria-text h3 {
  color: var(--wine-800);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 2px;
  letter-spacing: .01em;
  display: inline-flex; align-items: center; gap: 10px;
}
.trajetoria-text p {
  margin: 0;
  font-size: .88rem;
  line-height: 1.5;
  color: var(--ink-500);
}

.trajetoria-agora {
  font-family: 'Inter', sans-serif;
  font-size: .58rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--wine-900);
  background: var(--gold-400);
  padding: 3px 8px;
  border-radius: 999px;
  font-weight: 600;
  position: relative;
}

.trajetoria-current .trajetoria-dot {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  transform: scale(1.15);
}
.trajetoria-current .trajetoria-dot::after {
  content: "";
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--gold-500);
  animation: pulse-ring 2.4s infinite;
}
@keyframes pulse-ring {
  0% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.6); }
}

@media (max-width: 620px) {
  .trajetoria::before { left: 70px; }
  .trajetoria-row {
    grid-template-columns: 58px 24px 1fr;
    gap: 0 10px;
  }
  .trajetoria-year { font-size: .9rem; }
  .trajetoria-text h3 { font-size: .95rem; }
  .trajetoria-text p { font-size: .82rem; }
}

/* ===== Presença na Mídia ===== */
.section-imprensa {
  background:
    radial-gradient(ellipse at 100% 50%, rgba(205, 173, 118, .12), transparent 55%),
    linear-gradient(180deg, #fff 0%, var(--cream-50) 100%);
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
  overflow: hidden;
}
.section-imprensa::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'><path d='M0 12 L24 12 M12 0 L12 24' stroke='%23cdad76' stroke-width='.3' opacity='.25'/></svg>");
  background-size: 24px 24px;
  opacity: .5;
  pointer-events: none;
}
.section-imprensa .container { position: relative; z-index: 1; }
.section-imprensa .section-head { text-align: center; margin-inline: auto; margin-bottom: 40px; }

.imprensa-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.veiculo {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 26px 26px;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .3s cubic-bezier(.2,.7,.3,1), box-shadow .3s, border-color .3s;
  box-shadow:
    0 1px 2px rgba(74, 13, 33, .04),
    0 10px 26px rgba(74, 13, 33, .06);
}
.veiculo:hover {
  transform: translateY(-6px);
  box-shadow:
    0 2px 4px rgba(74, 13, 33, .06),
    0 24px 48px rgba(74, 13, 33, .14);
  border-color: rgba(216, 183, 106, .5);
}
.veiculo-badge {
  align-self: flex-start;
  margin-bottom: 14px;
}
.veiculo-badge span {
  display: inline-block;
  font-size: .68rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--wine-700);
  background: rgba(216, 183, 106, .12);
  border: 1px solid rgba(216, 183, 106, .35);
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 600;
}
.veiculo h3 {
  font-family: 'Playfair Display', serif;
  color: var(--wine-800);
  font-size: 1.35rem;
  margin: 0 0 12px;
}
.veiculo-desc {
  color: var(--ink-700);
  font-size: .95rem;
  line-height: 1.55;
  margin: 0 0 18px;
  flex: 1;
}
.veiculo-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--wine-700);
  font-size: .88rem;
  letter-spacing: .04em;
  border-bottom: 1px solid var(--gold-400);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: color .2s, border-color .2s, gap .2s;
}
.veiculo-link:hover {
  color: var(--wine-800);
  border-color: var(--wine-700);
  gap: 10px;
}
.veiculo-destaque {
  background: linear-gradient(160deg, var(--wine-800) 0%, var(--wine-900) 100%);
  color: #fff;
  border-color: rgba(216, 183, 106, .4);
  overflow: hidden;
}
.veiculo-destaque::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 90% 100%, rgba(216, 183, 106, .2), transparent 50%),
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px) 0 0 / 20px 20px,
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px) 0 0 / 20px 20px;
  border-radius: 16px;
  pointer-events: none;
}
.veiculo-destaque > * { position: relative; }
.veiculo-destaque h3 { color: #fff; }
.veiculo-destaque .veiculo-desc { color: rgba(255,255,255,.85); }
.veiculo-destaque .veiculo-badge span {
  color: var(--gold-300);
  background: rgba(216, 183, 106, .15);
  border-color: rgba(216, 183, 106, .5);
}
.veiculo-destaque .veiculo-link {
  color: var(--gold-300);
  border-bottom-color: var(--gold-400);
}
.veiculo-destaque .veiculo-link:hover {
  color: #fff;
  border-bottom-color: var(--gold-300);
}

/* ===== Depoimentos ===== */
.section-depoimentos {
  background: linear-gradient(180deg, var(--cream-50) 0%, #fff 100%);
  padding: clamp(64px, 9vw, 120px) 0;
  position: relative;
  overflow: hidden;
}
.section-depoimentos::before {
  content: "";
  position: absolute;
  right: -100px; top: 40px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(205, 173, 118, .16), transparent 70%);
  pointer-events: none;
}
.section-depoimentos .section-head { text-align: center; margin-inline: auto; margin-bottom: 44px; }

.depoimentos-carousel {
  position: relative;
  padding: 8px 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
}
.depoimentos-track {
  display: flex;
  gap: 22px;
  padding: 8px 0;
  width: max-content;
  animation: depoimentos-marquee var(--marquee-duration, 90s) linear infinite;
}
.depoimentos-carousel:hover .depoimentos-track,
.depoimentos-carousel:focus-within .depoimentos-track {
  animation-play-state: paused;
}
@keyframes depoimentos-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(var(--marquee-shift, -50%)); }
}
@media (prefers-reduced-motion: reduce) {
  .depoimentos-track { animation: none; }
  .depoimentos-carousel { overflow-x: auto; scroll-snap-type: x mandatory; }
}

.depoimento {
  flex: 0 0 360px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 28px 26px;
  margin: 0;
  display: flex; flex-direction: column;
  position: relative;
  box-shadow: 0 4px 14px rgba(74, 13, 33, .04);
  transition: transform .3s cubic-bezier(.2,.7,.3,1), box-shadow .3s, border-color .3s;
}
.depoimento:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(74, 13, 33, .1);
  border-color: rgba(216, 183, 106, .5);
}
.depoimento-quote {
  position: absolute;
  top: 12px; left: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--gold-500);
  opacity: .6;
}
.depoimento blockquote {
  margin: 24px 0 22px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--ink-900);
  font-style: italic;
  flex: 1;
}
.depoimento figcaption {
  display: flex; align-items: center; gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.depoimento-avatar {
  width: 52px; height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wine-800), var(--wine-900));
  display: inline-flex;
  align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.depoimento-avatar::before {
  content: attr(data-initials);
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: .04em;
  color: var(--gold-300);
}
.depoimento-avatar::after {
  content: "";
  position: absolute; inset: 3px;
  border-radius: 50%;
  border: 1px solid rgba(216, 183, 106, .4);
  pointer-events: none;
}
.depoimento-avatar-img {
  background: var(--wine-900);
  border: 2px solid var(--gold-500);
  padding: 0;
}
.depoimento-avatar-img::before { content: none; }
.depoimento-avatar-img::after { inset: -4px; border-color: rgba(216, 183, 106, .25); }
.depoimento-avatar-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.depoimento cite {
  font-family: 'Playfair Display', serif;
  font-style: normal;
  font-weight: 600;
  color: var(--wine-800);
  font-size: 1rem;
  letter-spacing: .01em;
}

@media (max-width: 720px) {
  .depoimento { padding: 26px 22px 22px; flex-basis: 300px; }
  .depoimento blockquote { font-size: 1.02rem; }
}

/* ===== Portfolio ===== */
.port-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px; margin-top: 36px;
}
.port-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  margin: 0;
  display: flex; flex-direction: column;
  position: relative;
}
.port-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .4s cubic-bezier(.2,.7,.3,1);
  z-index: 2;
}
.port-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.port-card:hover::before { transform: scaleX(1); }
.port-card img {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform .6s cubic-bezier(.2,.7,.3,1), filter .35s;
  filter: saturate(.92);
}
.port-card:hover img { transform: scale(1.05); filter: saturate(1.05); }
.port-card figcaption { padding: 16px 20px 22px; }
.port-card h4 { margin: 0 0 4px; color: var(--wine-800); font-family: 'Playfair Display', serif; font-size: 1.05rem; }
.port-card p  { margin: 0; font-size: .88rem; color: var(--ink-500); }

/* ===== Contato ===== */
.section-contato {
  background: linear-gradient(155deg, #3f0a1c 0%, #7a1832 100%);
  color: #fff;
  padding: clamp(64px, 9vw, 120px) 0;
}
.contato-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: start;
}
@media (max-width: 900px) { .contato-inner { grid-template-columns: 1fr; } }

.contact-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin-top: 30px;
}
@media (max-width: 500px) { .contact-cards { grid-template-columns: 1fr; } }
.contact-card {
  display: block;
  padding: 16px 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line-light);
  border-radius: 12px;
  transition: background .2s, transform .2s, border-color .2s;
}
.contact-card:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); border-color: var(--gold-400); }
.cc-label {
  display: block;
  font-size: .7rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold-300); margin-bottom: 4px;
}
.contact-card strong { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 1.05rem; color: #fff; }

.form-card {
  background: #fff;
  color: var(--ink-900);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-md);
  display: grid; gap: 12px;
}
.form-card h3 { color: var(--wine-800); font-family: 'Playfair Display', serif; margin-bottom: 6px; }
.form-card label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: .82rem; color: var(--ink-500); letter-spacing: .06em; text-transform: uppercase;
}
.form-card input, .form-card textarea {
  font: inherit;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink-900);
  background: var(--cream-50);
  text-transform: none; letter-spacing: 0;
  transition: border-color .2s, background .2s;
}
.form-card input:focus, .form-card textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  background: #fff;
}
.form-card .btn-primary { margin-top: 6px; }
.form-note { font-size: .78rem; color: var(--ink-500); margin: 4px 0 0; }

.closing {
  margin-top: clamp(60px, 8vw, 100px);
  padding-top: 40px;
  border-top: 1px solid rgba(216, 183, 106, .25);
  text-align: center;
}
.ig-link {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 24px;
  border: 1px solid rgba(216, 183, 106, .4);
  border-radius: 999px;
  color: var(--gold-300);
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  transition: background .2s, color .2s, border-color .2s;
}
.ig-link:hover {
  background: rgba(216, 183, 106, .12);
  color: #fff;
  border-color: var(--gold-400);
}
.ig-link svg { color: var(--gold-400); }

/* ===== Footer ===== */
.site-footer {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(205, 173, 118, .12), transparent 55%),
    radial-gradient(ellipse at 90% 100%, rgba(122, 24, 50, .55), transparent 60%),
    linear-gradient(180deg, #2a0812 0%, #180408 100%);
  color: rgba(255,255,255,.75);
  padding: clamp(44px, 6vw, 64px) 0 20px;
  position: relative;
  overflow: hidden;
}
/* Textura arquitetônica: pequenas "casinhas" do símbolo, tiled, em opacidade mínima */
.footer-pattern {
  position: absolute; inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='72' viewBox='0 0 60 72'><g fill='none' stroke='%23cdad76' stroke-width='1' opacity='0.08'><path d='M30 8 L14 22 L14 44 L46 44 L46 22 Z M22 30 L22 44 M38 30 L38 44 M30 20 L30 44'/></g></svg>");
  background-size: 90px 108px;
  opacity: .5;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.4), rgba(0,0,0,.15) 60%, transparent);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.4), rgba(0,0,0,.15) 60%, transparent);
}
/* Ornamento art déco no topo do rodapé */
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: min(320px, 60%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}
.site-footer::after {
  content: "";
  position: absolute;
  top: -6px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: var(--wine-900);
  border: 1px solid var(--gold-500);
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 780px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  .footer-col-brand { text-align: left; }
  .footer-col-connect { text-align: right; }
  .footer-col-connect .footer-icons { justify-content: flex-end; }
  .footer-col-connect .footer-nav { justify-content: flex-end; }
  .footer-col-brand { border-right: 1px solid rgba(216, 183, 106, .18); padding-right: 40px; }
}

.footer-col-brand {
  display: flex; flex-direction: column;
  align-items: center;
  gap: 14px;
}
@media (min-width: 780px) { .footer-col-brand { align-items: flex-start; } }
.footer-logo {
  width: 190px;
  max-width: 65%;
  height: auto;
  display: block;
  filter: brightness(1.05);
}
.footer-signature {
  width: 170px;
  max-width: 55%;
  height: auto;
  display: block;
  opacity: .85;
}

.footer-col-connect { display: flex; flex-direction: column; gap: 14px; align-items: center; }
@media (min-width: 780px) { .footer-col-connect { align-items: flex-end; } }
.footer-eyebrow {
  margin: 0;
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-300);
}

.footer-icons {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.footer-icons a {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 12px;
  color: var(--gold-300);
  border: 1px solid rgba(216, 183, 106, .28);
  background: rgba(216, 183, 106, .04);
  transition: color .2s, border-color .2s, background .2s, transform .2s;
  position: relative;
}
.footer-icons a:hover {
  color: var(--wine-900);
  border-color: var(--gold-400);
  background: var(--gold-400);
  transform: translateY(-2px);
}
/* Tooltip com o nome da rede */
.footer-icons a::after {
  content: attr(data-label);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--wine-900);
  color: var(--gold-300);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity .2s, transform .2s;
  border: 1px solid rgba(216, 183, 106, .3);
}
.footer-icons a:hover::after { opacity: 1; transform: translateX(-50%) translateY(0); }

.footer-nav {
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: 4px 20px;
  margin: 6px 0 0;
}
.footer-nav a {
  font-size: .74rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  transition: color .2s;
  padding: 2px 0;
}
.footer-nav a:hover { color: var(--gold-300); }

.footer-bottom {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(216, 183, 106, .12);
  display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: center;
  gap: 8px 20px;
  font-size: .72rem;
  letter-spacing: .1em;
  color: rgba(255,255,255,.5);
}
.footer-bottom p { margin: 0; }
.footer-credit {
  text-transform: uppercase;
  font-size: .68rem;
  letter-spacing: .18em;
  color: rgba(255,255,255,.55);
}
.footer-credit a {
  color: var(--gold-300);
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
  padding-bottom: 1px;
  font-weight: 500;
}
.footer-credit a:hover {
  color: #fff;
  border-bottom-color: var(--gold-400);
}
@media (max-width: 560px) {
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ===== Barra de progresso ===== */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  transform-origin: 0 50%;
  transform: scaleX(0);
  z-index: 60;
  transition: transform .1s linear;
}

/* ===== Voltar ao topo ===== */
.to-top {
  position: fixed; right: 20px; bottom: 88px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--wine-800); color: var(--gold-300);
  border: 1px solid var(--gold-500);
  display: grid; place-items: center;
  opacity: 0; pointer-events: none;
  transform: translateY(8px);
  transition: opacity .3s, transform .3s, background .2s;
  z-index: 45;
  cursor: pointer;
}
.to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.to-top:hover { background: var(--wine-700); color: #fff; }

/* ===== Lightbox ===== */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(20, 5, 12, 0.94);
  display: none;
  align-items: center; justify-content: center;
  z-index: 80;
  padding: 40px;
  backdrop-filter: blur(6px);
}
.lightbox.open { display: flex; animation: lbFade .25s ease-out; }
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
.lb-figure {
  margin: 0; max-width: 92vw; max-height: 86vh;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.lb-figure img {
  max-width: 100%; max-height: 78vh;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  animation: lbZoom .3s cubic-bezier(.2,.7,.3,1);
}
@keyframes lbZoom { from { transform: scale(.94); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.lb-figure figcaption {
  color: var(--gold-300);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  letter-spacing: .04em;
  text-align: center;
}
.lb-close, .lb-nav {
  position: absolute;
  background: transparent;
  border: 1px solid rgba(216,183,106,.4);
  color: var(--gold-300);
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.lb-close {
  top: 24px; right: 24px;
  width: 40px; height: 40px; border-radius: 50%;
  font-size: 1.8rem; line-height: 1;
  display: grid; place-items: center;
}
.lb-nav {
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  font-size: 1.8rem; line-height: 1;
  display: grid; place-items: center;
}
.lb-prev { left: 24px; }
.lb-next { right: 24px; }
.lb-close:hover, .lb-nav:hover {
  background: rgba(216,183,106,.15);
  color: #fff; border-color: var(--gold-400);
}
@media (max-width: 600px) {
  .lightbox { padding: 20px; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
  .lb-close { top: 12px; right: 12px; }
}

/* Foco visível ampliado nas imagens clicáveis */
.port-card img:focus-visible,
.ba-card img:focus-visible,
.editorial-photo img:focus-visible,
.portrait-thumbs img:focus-visible {
  outline: 2px solid var(--gold-400);
  outline-offset: 3px;
}

/* ===== WhatsApp float ===== */
.wa-float {
  position: fixed; right: 20px; bottom: 20px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 12px 26px rgba(37,211,102,.4);
  z-index: 50;
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.06); }

/* ===== Reveal animation ===== */
.section h2, .section .lede, .section .cred, .section .pilar,
.section .servico, .section .dept, .section .port-card {
  opacity: 0; transform: translateY(14px);
  animation: rise .8s ease-out forwards;
  animation-delay: var(--d, 0s);
}
@keyframes rise { to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  .section h2, .section .lede, .section .cred, .section .pilar,
  .section .servico, .section .dept, .section .port-card {
    animation: none; opacity: 1; transform: none;
  }
  html { scroll-behavior: auto; }
}
