/* ============================================================
   B. OLIVEIRA PHOTOGRAPHY — estilo principal
   ============================================================ */
:root {
  --bg: #0e0d0b;
  --bg-2: #15130f;
  --bg-3: #1c1915;
  --ink: #f5efe6;
  --muted: #a89f91;
  --gold: #c9a36a;
  --gold-2: #e0c08e;
  --gold-dim: rgba(201, 163, 106, 0.16);
  --line: rgba(245, 239, 230, 0.1);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', 'Segoe UI', sans-serif;
  /* fonte de destaque (logótipo + títulos). Korolev vem da Adobe Fonts;
     enquanto o kit não estiver ligado, cai no stand-in Archivo. */
  --display: 'korolev', 'Archivo', 'Jost', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* o atributo hidden tem de ganhar a qualquer display definido em classes
   (ex.: .ca-auth/.ca-dash usam display:grid e ignorariam-no) */
[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16.5px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

::selection { background: var(--gold); color: var(--bg); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #3a342b; border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ---------- utilitários ---------- */
.container { width: min(1180px, 92%); margin-inline: auto; }

.section { padding: clamp(70px, 9vw, 130px) 0; }

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.12;
  margin-bottom: 18px;
}

.section-sub { color: var(--muted); max-width: 560px; margin-bottom: 40px; }
.center { text-align: center; margin-inline: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 30px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
}
.btn-lg { padding: 16px 38px; }
.btn-block { width: 100%; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #181410;
  box-shadow: 0 8px 28px rgba(201, 163, 106, 0.28);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(201, 163, 106, 0.4); }
.btn-ghost { border-color: rgba(245, 239, 230, 0.4); color: var(--ink); background: rgba(14, 13, 11, 0.2); backdrop-filter: blur(4px); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-2); transform: translateY(-3px); }
.btn-outline { border-color: rgba(201, 163, 106, 0.5); color: var(--gold-2); background: transparent; }
.btn-outline:hover { background: var(--gold-dim); transform: translateY(-3px); }

/* revelar ao scroll */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader-logo { display: flex; flex-direction: column; align-items: center; gap: 18px; color: var(--gold); }
.preloader-logo span { font-size: 13px; letter-spacing: 0.5em; color: var(--ink); animation: plFade 1.6s ease infinite alternate; }
.pl-ring { stroke-dasharray: 290; stroke-dashoffset: 290; animation: plRing 1.8s var(--ease) infinite; transform-origin: center; }
@keyframes plRing { 0% { stroke-dashoffset: 290; transform: rotate(0deg); } 100% { stroke-dashoffset: 0; transform: rotate(360deg); } }
@keyframes plFade { from { opacity: 0.35; } to { opacity: 1; } }

/* ---------- navbar ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  transition: background 0.45s ease, box-shadow 0.45s ease, padding 0.45s ease;
  padding: 18px 0;
}
.nav.scrolled {
  background: rgba(14, 13, 11, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
/* Com o menu mobile aberto o backdrop-filter tem de sair: cria um containing
   block e faria o overlay (position:fixed) colapsar dentro da barra ao fazer
   scroll. Tem de vir depois de .nav.scrolled para ganhar. */
.nav.menu-open {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: transparent;
  box-shadow: none;
  border-bottom-color: transparent;
}
.nav-inner { width: min(1320px, 94%); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav-logo { display: flex; flex-direction: column; line-height: 1.15; position: relative; z-index: 210; }

/* acesso discreto à Área Pessoal, escondido dentro do "O" de OLIVEIRA */
.logo-o { position: relative; display: inline-block; }
.pa-secret {
  position: absolute; top: -1px; right: -1px; bottom: -1px; left: -1px;
  border-radius: 50%; cursor: pointer;
  /* invisível: sem cor, sem contorno, sem sombra */
  background: transparent;
  transition: box-shadow 0.4s var(--ease);
}
/* pista quase impercetível ao passar o rato, para saberes onde é */
.pa-secret:hover { box-shadow: inset 0 0 0 1px rgba(201, 163, 106, 0.35); }
.nav-logo-main { font-family: var(--display); font-size: 21px; letter-spacing: 0.22em; word-spacing: -0.34em; }
.nav-logo-sub { font-size: 8.5px; letter-spacing: 0.6em; color: var(--gold); }
.nav-links { display: flex; gap: 30px; }
.nav-links a { font-size: 12.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); position: relative; padding: 6px 2px; transition: color 0.35s var(--ease), transform 0.35s var(--ease), letter-spacing 0.35s var(--ease); }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1.5px; background: linear-gradient(90deg, var(--gold), var(--gold-2)); transition: width 0.4s var(--ease); }
.nav-links a:hover { color: var(--gold-2); transform: translateY(-3px); letter-spacing: 0.2em; }
.nav-links a.active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* animação de entrada dos separadores (desktop) */
@keyframes navIn { from { opacity: 0; transform: translateY(-14px); } to { opacity: 1; transform: translateY(0); } }
@media (min-width: 861px) {
  .nav-links a { animation: navIn 0.6s var(--ease) backwards; }
  .nav-links a:nth-child(1) { animation-delay: 0.10s; }
  .nav-links a:nth-child(2) { animation-delay: 0.18s; }
  .nav-links a:nth-child(3) { animation-delay: 0.26s; }
  .nav-links a:nth-child(4) { animation-delay: 0.34s; }
  .nav-links a:nth-child(5) { animation-delay: 0.42s; }
  .nav-links a:nth-child(6) { animation-delay: 0.50s; }
  .nav-actions { animation: navIn 0.6s 0.56s var(--ease) backwards; }
}
.nav-actions { display: flex; align-items: center; gap: 14px; }
.btn-client { padding: 10px 20px; font-size: 11.5px; }

/* idioma */
.lang-switch { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 7px;
  background: transparent; border: 1px solid var(--line); color: var(--ink);
  padding: 9px 13px; border-radius: 2px; font-size: 12px; letter-spacing: 0.12em;
  transition: border-color 0.3s, color 0.3s, transform 0.3s var(--ease);
}
.lang-btn:hover { border-color: var(--gold); color: var(--gold-2); transform: translateY(-2px); }
.lang-menu {
  position: absolute; top: calc(100% + 10px); right: 0;
  /* fundo sólido + borda dourada + sombra funda: tem de se ler sobre fotografias */
  background: #100e0b;
  border: 1px solid rgba(201, 163, 106, 0.45);
  border-radius: 6px;
  min-width: 205px; padding: 7px; display: none; flex-direction: column; gap: 2px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.92), 0 3px 10px rgba(0, 0, 0, 0.8);
  z-index: 300;
}
.lang-menu.open { display: flex; animation: dropIn 0.25s var(--ease); }
.lang-menu button {
  display: flex; align-items: center; gap: 11px;
  background: none; border: none; color: var(--ink); text-align: left;
  padding: 11px 12px; font-size: 14px; border-radius: 4px;
  transition: background 0.22s, color 0.22s;
}
.lang-menu button:hover { background: rgba(201, 163, 106, 0.18); color: var(--gold-2); }
.lang-menu button.active { color: var(--gold-2); background: rgba(201, 163, 106, 0.1); }
/* código do idioma — substitui as bandeiras emoji, que não renderizam no Windows */
.lang-code {
  flex-shrink: 0; min-width: 34px; text-align: center;
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em;
  padding: 4px 0; border-radius: 3px;
  border: 1px solid rgba(245, 239, 230, 0.22); color: var(--muted);
  transition: border-color 0.22s, color 0.22s;
}
.lang-menu button:hover .lang-code,
.lang-menu button.active .lang-code { border-color: var(--gold); color: var(--gold-2); }
@keyframes dropIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

.nav-burger { display: none; background: none; border: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav-burger span { width: 24px; height: 1.6px; background: var(--ink); transition: 0.35s var(--ease); }
.nav-burger.open span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero { position: relative; height: 100svh; min-height: 620px; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero-slides, .hero-slide { position: absolute; inset: 0; }
.hero-slide {
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.6s ease;
}
.hero-slide.active { opacity: 1; animation: kenburns 7.5s ease forwards; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,13,11,0.55) 0%, rgba(14,13,11,0.25) 45%, rgba(14,13,11,0.82) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 0 20px; max-width: 900px; }
.hero-eyebrow {
  font-size: 12px; letter-spacing: 0.5em; text-transform: uppercase; color: var(--gold-2);
  margin-bottom: 22px; animation: heroUp 1.1s 0.2s var(--ease) backwards;
}
.hero-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(44px, 8vw, 96px); line-height: 1.05;
  animation: heroUp 1.1s 0.4s var(--ease) backwards;
}
.hero-rotator { display: inline-block; min-height: 1.1em; }
.hero-word { display: inline-block; color: var(--gold-2); font-style: italic; transition: opacity 0.45s ease, transform 0.45s ease; }
.hero-word.swap { opacity: 0; transform: translateY(18px); }
.hero-sub { color: rgba(245, 239, 230, 0.82); font-size: 17px; max-width: 520px; margin: 24px auto 38px; animation: heroUp 1.1s 0.6s var(--ease) backwards; }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; animation: heroUp 1.1s 0.8s var(--ease) backwards; }
@keyframes heroUp { from { opacity: 0; transform: translateY(44px); } to { opacity: 1; transform: none; } }

.hero-dots { position: absolute; bottom: 110px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 3; }
.hero-dot { width: 26px; height: 2.5px; background: rgba(245,239,230,0.3); border: none; padding: 0; transition: background 0.4s; }
.hero-dot.active { background: var(--gold); }

.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 10.5px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--muted);
}
.hero-scroll-line { width: 1px; height: 36px; background: linear-gradient(var(--gold), transparent); animation: scrollPulse 1.8s ease infinite; }
@keyframes scrollPulse { 0%, 100% { transform: scaleY(0.4); opacity: 0.4; } 50% { transform: scaleY(1); opacity: 1; } }

/* ---------- marquee ---------- */
.marquee { overflow: hidden; border-block: 1px solid var(--line); padding: 18px 0; background: var(--bg-2); }
.marquee-track { display: flex; gap: 48px; width: max-content; animation: marquee 30s linear infinite; }
.marquee-track span { font-family: var(--serif); font-size: 22px; font-style: italic; color: var(--muted); white-space: nowrap; }
.marquee-track i { color: var(--gold); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- sobre ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: 3px; aspect-ratio: 4/5; object-fit: cover; position: relative; z-index: 1; }
.about-frame { position: absolute; inset: -18px 18px 18px -18px; border: 1px solid var(--gold); border-radius: 3px; z-index: 0; }
.img-fallback { background: linear-gradient(135deg, var(--bg-3), var(--gold-dim)); min-height: 460px; border-radius: 3px; }
.img-fallback img { display: none; }
.about-badge {
  position: absolute; right: -14px; bottom: 34px; z-index: 2;
  background: var(--gold); color: #181410; padding: 18px 22px; border-radius: 3px;
  display: flex; flex-direction: column; line-height: 1.2; box-shadow: var(--shadow);
}
.about-badge-num { font-family: var(--serif); font-size: 34px; font-weight: 600; }
.about-badge-txt { font-size: 11.5px; letter-spacing: 0.06em; max-width: 130px; }
.about-text p { color: var(--muted); margin-bottom: 18px; }
.about-sign { font-family: var(--serif); font-style: italic; font-size: 34px; color: var(--gold-2) !important; margin: 10px 0 26px !important; }

.stats {
  margin-top: clamp(60px, 8vw, 100px);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  border-block: 1px solid var(--line); padding: 44px 0;
}
.stat { text-align: center; }
.stat-num { font-family: var(--serif); font-size: clamp(40px, 4.5vw, 58px); color: var(--gold-2); display: block; line-height: 1; }
.stat-num::after { content: '+'; font-size: 0.6em; vertical-align: super; }
.stat-label { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-top: 10px; display: block; }

/* ---------- portfólio ---------- */
.portfolio { background: var(--bg-2); }
.pf-filters { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 46px; }
.pf-filter {
  background: transparent; border: 1px solid var(--line); color: var(--muted);
  padding: 9px 22px; border-radius: 40px; font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; transition: all 0.3s var(--ease);
}
.pf-filter:hover { border-color: var(--gold); color: var(--ink); }
.pf-filter.active { background: var(--gold); border-color: var(--gold); color: #181410; }

.pf-grid { columns: 3 300px; column-gap: 18px; }
.pf-item {
  position: relative; margin-bottom: 18px; overflow: hidden; border-radius: 3px;
  break-inside: avoid; cursor: zoom-in; opacity: 0; transform: scale(0.94);
  animation: pfIn 0.6s var(--ease) forwards;
}
@keyframes pfIn { to { opacity: 1; transform: none; } }
.pf-item img { width: 100%; transition: transform 0.9s var(--ease), filter 0.9s ease; }
.pf-item:hover img { transform: scale(1.07); filter: brightness(0.5); }
.pf-item-info {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 6px; text-align: center;
  opacity: 0; transform: translateY(14px); transition: all 0.45s var(--ease); padding: 16px;
}
.pf-item:hover .pf-item-info { opacity: 1; transform: none; }
.pf-item-info h4 { font-family: var(--serif); font-size: 22px; font-weight: 400; }
.pf-item-info p { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-2); }
.pf-item-info svg { margin-top: 8px; color: var(--gold); }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 500; background: rgba(10, 9, 7, 0.96);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.4s ease, visibility 0.4s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox figure { max-width: 88vw; max-height: 86vh; text-align: center; }
.lightbox img { max-width: 88vw; max-height: 78vh; object-fit: contain; border-radius: 3px; box-shadow: var(--shadow); animation: lbZoom 0.45s var(--ease); }
@keyframes lbZoom { from { opacity: 0; transform: scale(0.92); } to { opacity: 1; transform: none; } }
.lightbox figcaption { margin-top: 16px; color: var(--muted); font-size: 14px; letter-spacing: 0.1em; }
.lb-close, .lb-prev, .lb-next {
  position: absolute; background: rgba(245, 239, 230, 0.06); border: 1px solid var(--line);
  color: var(--ink); border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; z-index: 2;
}
.lb-close { top: 26px; right: 26px; width: 46px; height: 46px; font-size: 17px; }
.lb-prev, .lb-next { top: 50%; transform: translateY(-50%); width: 54px; height: 54px; font-size: 30px; line-height: 1; }
.lb-prev { left: 22px; } .lb-next { right: 22px; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--gold); color: #181410; border-color: var(--gold); }

/* ---------- serviços ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.svc-card {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 4px;
  padding: 42px 34px; position: relative; display: flex; flex-direction: column;
  transition: transform 0.45s var(--ease), border-color 0.45s, box-shadow 0.45s;
}
.svc-card:hover { transform: translateY(-10px); border-color: rgba(201, 163, 106, 0.45); box-shadow: var(--shadow); }
.svc-featured { background: linear-gradient(170deg, var(--bg-3), var(--bg-2)); border-color: rgba(201, 163, 106, 0.55); transform: scale(1.03); }
.svc-featured:hover { transform: scale(1.03) translateY(-10px); }
.svc-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #181410; font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; padding: 6px 18px; border-radius: 30px;
}
.svc-card h3 { font-family: var(--serif); font-size: 27px; font-weight: 400; margin-bottom: 8px; }
.svc-price { font-family: var(--serif); font-size: 42px; color: var(--gold-2); margin-bottom: 26px; }
.svc-price span { font-family: var(--sans); font-size: 12px; color: var(--muted); letter-spacing: 0.18em; text-transform: uppercase; display: block; }
.svc-card ul { list-style: none; margin-bottom: 32px; flex: 1; }
.svc-card li { padding: 10px 0 10px 26px; border-bottom: 1px dashed var(--line); color: var(--muted); font-size: 14.5px; position: relative; }
.svc-card li::before { content: '✦'; position: absolute; left: 0; color: var(--gold); font-size: 11px; top: 13px; }
.svc-note { text-align: center; color: var(--muted); font-size: 14px; margin-top: 38px; }

/* ---------- processo ---------- */
.process { background: var(--bg-2); }
.proc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 50px; }
.proc-step { position: relative; padding-top: 18px; }
.proc-num {
  font-family: var(--serif); font-size: 64px; line-height: 1; color: transparent;
  -webkit-text-stroke: 1px rgba(201, 163, 106, 0.55); display: block; margin-bottom: 14px;
}
.proc-step h4 { font-family: var(--serif); font-size: 23px; font-weight: 500; margin-bottom: 8px; }
.proc-step p { color: var(--muted); font-size: 14.5px; }

/* ---------- depoimentos ---------- */
.tst-slider { max-width: 760px; margin-inline: auto; overflow: hidden; }
.tst-track { display: flex; transition: transform 0.7s var(--ease); }
.tst-item { min-width: 100%; text-align: center; padding: 10px 24px; }
.tst-stars { color: var(--gold); letter-spacing: 6px; font-size: 15px; margin-bottom: 22px; }
.tst-quote { font-family: var(--serif); font-size: clamp(20px, 2.6vw, 27px); font-style: italic; line-height: 1.5; margin-bottom: 26px; }
.tst-author { font-size: 13px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-2); }
.tst-meta { font-size: 12.5px; color: var(--muted); margin-top: 5px; }
.tst-dots { display: flex; gap: 9px; justify-content: center; margin-top: 34px; }
.tst-dot { width: 8px; height: 8px; border-radius: 50%; border: 1px solid var(--gold); background: transparent; padding: 0; transition: background 0.3s; }
.tst-dot.active { background: var(--gold); }

/* ---------- instagram ---------- */
.insta { padding-bottom: 0; }
.insta .section-title { margin-bottom: 6px; }
.insta-handle { display: block; text-align: center; color: var(--gold-2); letter-spacing: 0.2em; font-size: 14px; margin-bottom: 40px; }
.insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); }
.insta-item { position: relative; overflow: hidden; aspect-ratio: 1; display: block; }
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease), filter 0.5s; }
.insta-item:hover img { transform: scale(1.1); filter: brightness(0.45); }
.insta-item svg { position: absolute; inset: 0; margin: auto; color: var(--ink); opacity: 0; transform: scale(0.6); transition: all 0.4s var(--ease); }
.insta-item:hover svg { opacity: 1; transform: scale(1); }

/* ---------- cta banner ---------- */
.cta-banner { position: relative; padding: clamp(90px, 12vw, 160px) 20px; text-align: center; overflow: hidden; }
.cta-banner-bg {
  position: absolute; inset: -60px;
  background: url('../img/l/concert/nena/dsc04122.jpg') center/cover fixed;
  filter: brightness(0.3);
}
.cta-banner-content { position: relative; z-index: 1; max-width: 680px; margin-inline: auto; }
.cta-banner h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(32px, 5vw, 54px); margin-bottom: 16px; }
.cta-banner p { color: rgba(245, 239, 230, 0.85); margin-bottom: 34px; }

/* ---------- contacto ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 6vw, 90px); }
.contact-info p { color: var(--muted); }
.contact-list { list-style: none; margin: 34px 0; }
.contact-list li { display: flex; align-items: center; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.contact-list svg { color: var(--gold); flex-shrink: 0; }
.contact-list a { transition: color 0.3s; word-break: break-word; }
.contact-list a:hover { color: var(--gold-2); }
.contact-social { display: flex; gap: 12px; }
.contact-social a {
  width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--muted);
  transition: all 0.35s var(--ease);
}
.contact-social a:hover { border-color: var(--gold); color: var(--gold-2); transform: translateY(-4px); }

/* ícones sociais no rodapé */
.footer-social { display: flex; gap: 10px; margin-top: 12px; }
.footer-social a {
  width: 38px; height: 38px; padding: 0; flex-shrink: 0;
  border: 1px solid var(--line); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: all 0.3s var(--ease);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold-2); transform: translateY(-3px); }

.contact-form { background: var(--bg-2); border: 1px solid var(--line); border-radius: 4px; padding: clamp(26px, 4vw, 44px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 11.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--line); border-radius: 3px;
  color: var(--ink); padding: 13px 15px; font-size: 15px; transition: border-color 0.3s;
  color-scheme: dark;
}
.form-field textarea { resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--gold); }
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(168, 159, 145, 0.5); }

/* ---------- footer ---------- */
.footer { background: #0a0908; border-top: 1px solid var(--line); padding-top: 70px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; }
.footer-logo { font-family: var(--display); font-size: 23px; letter-spacing: 0.2em; word-spacing: -0.32em; margin-bottom: 12px; }
.footer-logo span { display: block; font-family: var(--sans); font-size: 9px; letter-spacing: 0.6em; color: var(--gold); }
.footer-tagline { color: var(--muted); font-size: 14px; max-width: 260px; }
.footer h5 { font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; font-weight: 500; }
.footer-grid a { display: block; color: var(--muted); font-size: 14.5px; padding: 5px 0; transition: color 0.3s, transform 0.3s; }
.footer-grid a:hover { color: var(--ink); transform: translateX(5px); }
.footer-bottom { border-top: 1px solid var(--line); padding: 22px 0; text-align: center; color: var(--muted); font-size: 13px; }

.back-top {
  position: fixed; bottom: 28px; left: 28px; z-index: 150;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--bg-3); border: 1px solid var(--line); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(16px);
  transition: all 0.4s var(--ease);
}
.back-top.show { opacity: 1; visibility: visible; transform: none; }
.back-top:hover { background: var(--gold); color: #181410; }

/* ============================================================
   ÁREA DE CLIENTE
   ============================================================ */
.ca-overlay {
  position: fixed; inset: 0; z-index: 400; background: rgba(8, 7, 6, 0.78);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; visibility: hidden; transition: opacity 0.4s ease, visibility 0.4s;
}
.ca-overlay.open { opacity: 1; visibility: visible; }
.ca-panel {
  position: relative; width: min(1060px, 100%); max-height: 92vh;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 8px;
  overflow: hidden; box-shadow: var(--shadow);
  transform: translateY(26px) scale(0.98); transition: transform 0.45s var(--ease);
  display: flex; flex-direction: column;
}
.ca-overlay.open .ca-panel { transform: none; }
.ca-close {
  position: absolute; top: 14px; right: 14px; z-index: 10;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(245, 239, 230, 0.06); border: 1px solid var(--line); color: var(--ink);
  transition: all 0.3s;
}
.ca-close:hover { background: var(--gold); color: #181410; }

/* autenticação */
.ca-auth { display: grid; grid-template-columns: 1fr 1.15fr; min-height: 520px; }
.ca-auth-side {
  background: url('../img/l/concert/yago-oproprio/dsc00720.jpg') center/cover;
  position: relative; display: flex; align-items: flex-end;
}
.ca-auth-side::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,13,11,0.3), rgba(14,13,11,0.92)); }
.ca-auth-side-content { position: relative; padding: 38px; }
.ca-auth-side-content h2 { font-family: var(--serif); font-weight: 400; font-size: 30px; margin-bottom: 12px; }
.ca-auth-side-content p { color: rgba(245,239,230,0.8); font-size: 14.5px; margin-bottom: 20px; }
.ca-auth-side-content ul { list-style: none; }
.ca-auth-side-content li { font-size: 13.5px; color: var(--gold-2); padding: 4px 0; }
.ca-auth-main { padding: clamp(30px, 5vw, 56px); display: flex; flex-direction: column; justify-content: center; }
.ca-tabs { display: flex; gap: 6px; margin-bottom: 30px; border-bottom: 1px solid var(--line); }
.ca-tab {
  background: none; border: none; color: var(--muted); padding: 12px 20px;
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  border-bottom: 2px solid transparent; margin-bottom: -1px; transition: all 0.3s;
}
.ca-tab.active { color: var(--gold-2); border-bottom-color: var(--gold); }
.ca-demo-hint { text-align: center; font-size: 12.5px; color: var(--muted); margin-top: 16px; }

/* dashboard */
.ca-dash { display: grid; grid-template-columns: 250px 1fr; min-height: 600px; max-height: 92vh; }
.ca-side { background: var(--bg-3); border-right: 1px solid var(--line); padding: 26px 18px; display: flex; flex-direction: column; }
.ca-user { display: flex; align-items: center; gap: 12px; padding: 6px 8px 22px; border-bottom: 1px solid var(--line); margin-bottom: 18px; }
.ca-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #181410;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 20px; font-weight: 600;
}
.ca-user-name { font-size: 15px; line-height: 1.3; }
.ca-user-mail { font-size: 11.5px; color: var(--muted); word-break: break-all; }
.ca-nav { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.ca-nav-btn {
  display: flex; align-items: center; gap: 12px;
  background: none; border: none; color: var(--muted); text-align: left;
  padding: 12px 14px; border-radius: 5px; font-size: 14px; transition: all 0.25s;
}
.ca-nav-btn:hover { background: rgba(245, 239, 230, 0.05); color: var(--ink); }
.ca-nav-btn.active { background: var(--gold-dim); color: var(--gold-2); }
.ca-logout {
  display: flex; align-items: center; gap: 10px;
  background: none; border: 1px solid var(--line); border-radius: 5px;
  color: var(--muted); padding: 11px 14px; font-size: 13px; transition: all 0.3s;
}
.ca-logout:hover { border-color: #b96a5a; color: #d98a78; }

.ca-main { padding: clamp(24px, 4vw, 44px); overflow-y: auto; }
.ca-main h3 { font-family: var(--serif); font-weight: 400; font-size: 30px; margin-bottom: 6px; }
.ca-main-sub { color: var(--muted); font-size: 14.5px; margin-bottom: 30px; }

/* visão geral */
.ca-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 30px; }
.ca-card { background: var(--bg); border: 1px solid var(--line); border-radius: 6px; padding: 22px; transition: border-color 0.3s, transform 0.3s; }
.ca-card:hover { border-color: rgba(201,163,106,0.4); transform: translateY(-3px); }
.ca-card-num { font-family: var(--serif); font-size: 38px; color: var(--gold-2); line-height: 1; }
.ca-card-label { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 8px; }
.ca-next {
  background: linear-gradient(135deg, var(--gold-dim), transparent);
  border: 1px solid rgba(201,163,106,0.35); border-radius: 6px; padding: 22px; margin-bottom: 30px;
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
.ca-next-icon { width: 52px; height: 52px; border-radius: 50%; background: var(--gold); color: #181410; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ca-next-info { flex: 1; min-width: 200px; }
.ca-next-info strong { font-size: 16px; display: block; }
.ca-next-info span { color: var(--muted); font-size: 13.5px; }
.ca-quick { display: flex; gap: 12px; flex-wrap: wrap; }

/* calendário */
.ca-cal-wrap { display: grid; grid-template-columns: 1.25fr 1fr; gap: 28px; align-items: start; }
.ca-cal { background: var(--bg); border: 1px solid var(--line); border-radius: 6px; padding: 20px; }
.ca-cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.ca-cal-head strong { font-family: var(--serif); font-size: 20px; font-weight: 500; text-transform: capitalize; }
.ca-cal-nav { display: flex; gap: 6px; }
.ca-cal-nav button {
  width: 34px; height: 34px; border-radius: 5px; background: var(--bg-3);
  border: 1px solid var(--line); color: var(--ink); font-size: 16px; transition: all 0.25s;
}
.ca-cal-nav button:hover { border-color: var(--gold); color: var(--gold-2); }
.ca-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.ca-cal-wd { text-align: center; font-size: 10.5px; letter-spacing: 0.1em; color: var(--muted); text-transform: uppercase; padding: 6px 0; }
.ca-day {
  aspect-ratio: 1; border: 1px solid transparent; border-radius: 5px; background: var(--bg-3);
  color: var(--ink); font-size: 13.5px; display: flex; align-items: center; justify-content: center;
  position: relative; transition: all 0.2s;
}
.ca-day:not(:disabled):hover { border-color: var(--gold); }
.ca-day:disabled { opacity: 0.22; cursor: default; }
.ca-day.busy { background: rgba(185, 106, 90, 0.16); color: #d98a78; cursor: not-allowed; opacity: 0.7; }
.ca-day.mine { background: var(--gold-dim); color: var(--gold-2); border-color: rgba(201,163,106,0.5); }
.ca-day.mine::after { content: ''; position: absolute; bottom: 5px; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.ca-day.selected { background: var(--gold); color: #181410; font-weight: 600; }
.ca-day.empty { background: transparent; }
.ca-day.today { box-shadow: inset 0 0 0 1px var(--gold-2); }
.ca-list-title { font-family: var(--serif); font-size: 21px; font-weight: 500; margin: 30px 0 14px; }

/* ---------- estatísticas ---------- */
.ca-stat-block { margin-bottom: 36px; }
.ca-stat-block h4 {
  font-family: var(--serif); font-size: 21px; font-weight: 500; margin-bottom: 16px;
  padding-bottom: 10px; border-bottom: 1px solid var(--line);
}
.ca-bar-title { font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin: 22px 0 14px; }
.ca-bar-row { display: flex; align-items: center; gap: 14px; margin-bottom: 11px; }
.ca-bar-label { min-width: 118px; font-size: 13.5px; color: var(--ink); }
.ca-bar-track { flex: 1; height: 8px; background: var(--bg-3); border-radius: 20px; overflow: hidden; }
.ca-bar-fill {
  display: block; height: 100%; border-radius: 20px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  animation: barGrow 0.9s var(--ease) backwards;
}
@keyframes barGrow { from { width: 0 !important; } }
.ca-bar-val { min-width: 52px; text-align: right; font-size: 13.5px; color: var(--gold-2); }
.ca-note {
  font-size: 13px; color: var(--muted); line-height: 1.65;
  border-left: 2px solid rgba(201, 163, 106, 0.45); padding-left: 13px; margin-top: 16px;
}
.ca-note strong { color: var(--gold-2); font-weight: 500; }

@media (max-width: 560px) {
  .ca-bar-label { min-width: 84px; font-size: 12.5px; }
  .ca-bar-val { min-width: 40px; font-size: 12.5px; }
}
.ca-legend { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 16px; font-size: 12px; color: var(--muted); }
.ca-legend span { display: flex; align-items: center; gap: 6px; }
.ca-legend i { width: 11px; height: 11px; border-radius: 3px; display: inline-block; }
.ca-legend .lg-free { background: var(--bg-3); border: 1px solid var(--line); }
.ca-legend .lg-busy { background: rgba(185, 106, 90, 0.4); }
.ca-legend .lg-mine { background: var(--gold); }
.ca-legend .lg-today { background: transparent; box-shadow: inset 0 0 0 1px var(--gold-2); }

.ca-book-form { background: var(--bg); border: 1px solid var(--line); border-radius: 6px; padding: 22px; }
.ca-book-form h4 { font-family: var(--serif); font-size: 20px; font-weight: 500; margin-bottom: 4px; }
.ca-book-date { color: var(--gold-2); font-size: 13.5px; margin-bottom: 18px; min-height: 20px; }

/* listas (marcações, histórico, orçamentos) */
.ca-list { display: flex; flex-direction: column; gap: 12px; }
.ca-item {
  background: var(--bg); border: 1px solid var(--line); border-radius: 6px;
  padding: 18px 20px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  transition: border-color 0.3s;
}
.ca-item:hover { border-color: rgba(201,163,106,0.35); }
.ca-item-thumb { width: 64px; height: 64px; border-radius: 5px; object-fit: cover; flex-shrink: 0; }
.ca-item-body { flex: 1; min-width: 180px; }
.ca-item-body strong { display: block; font-size: 15.5px; }
.ca-item-body span { color: var(--muted); font-size: 13px; }
.ca-status { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 13px; border-radius: 30px; white-space: nowrap; }
.st-pending { background: rgba(201, 163, 106, 0.14); color: var(--gold-2); border: 1px solid rgba(201,163,106,0.4); }
.st-confirmed { background: rgba(106, 185, 116, 0.12); color: #8fd49a; border: 1px solid rgba(106,185,116,0.35); }
.st-done { background: rgba(245,239,230,0.07); color: var(--muted); border: 1px solid var(--line); }
.st-analysis { background: rgba(120, 150, 220, 0.12); color: #9eb6ec; border: 1px solid rgba(120,150,220,0.35); }
.st-sent { background: rgba(201, 163, 106, 0.14); color: var(--gold-2); border: 1px solid rgba(201,163,106,0.4); }
.st-accepted { background: rgba(106, 185, 116, 0.12); color: #8fd49a; border: 1px solid rgba(106,185,116,0.35); }
.ca-item-actions { display: flex; gap: 8px; }
.btn-sm { padding: 8px 16px; font-size: 11px; }
.btn-danger-ghost { border: 1px solid rgba(185,106,90,0.45); background: none; color: #d98a78; }
.btn-danger-ghost:hover { background: rgba(185,106,90,0.14); }
.ca-empty { text-align: center; color: var(--muted); padding: 46px 18px; border: 1px dashed var(--line); border-radius: 6px; }
.ca-empty svg { color: var(--gold); margin-bottom: 12px; opacity: 0.7; }
.ca-section-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
.ca-section-head h3 { margin-bottom: 0; }
.ca-quote-price { font-family: var(--serif); font-size: 24px; color: var(--gold-2); white-space: nowrap; }

/* ============================================================
   SIMULADOR DE ORÇAMENTO
   ============================================================ */
.q-overlay {
  position: fixed; inset: 0; z-index: 450; background: rgba(8, 7, 6, 0.8);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; visibility: hidden; transition: opacity 0.4s ease, visibility 0.4s;
}
.q-overlay.open { opacity: 1; visibility: visible; }
.q-panel {
  position: relative; width: min(940px, 100%); max-height: 92vh; overflow-y: auto;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 8px;
  box-shadow: var(--shadow); padding: clamp(26px, 4vw, 44px);
  transform: translateY(26px) scale(0.98); transition: transform 0.45s var(--ease);
}
.q-overlay.open .q-panel { transform: none; }
.q-head { margin-bottom: 24px; }
.q-head h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(26px, 3.4vw, 36px); }
.q-sub { color: var(--muted); font-size: 14.5px; margin-top: 6px; }

.q-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.q-tab {
  background: transparent; border: 1px solid var(--line); color: var(--muted);
  padding: 10px 20px; border-radius: 40px; font-size: 12.5px; letter-spacing: 0.12em;
  text-transform: uppercase; transition: all 0.3s var(--ease);
}
.q-tab:hover { border-color: var(--gold); color: var(--ink); }
.q-tab.active { background: var(--gold); border-color: var(--gold); color: #181410; }

.q-body { display: grid; grid-template-columns: 1.25fr 1fr; gap: 30px; align-items: start; }
.q-fields { display: flex; flex-direction: column; gap: 18px; }
.q-field label, .q-toggle-label { display: block; font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 9px; }
.q-field label .info-btn, .q-toggle-label .info-btn { width: 17px; height: 17px; font-size: 10px; margin-left: 7px; vertical-align: middle; }
.q-field-toggle {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  border-top: 1px dashed var(--line); padding-top: 15px;
}
.q-field-toggle .q-toggle-label { margin-bottom: 0; letter-spacing: 0.06em; text-transform: none; font-size: 14.5px; color: var(--ink); }

.q-num { display: flex; align-items: center; gap: 8px; }
.q-num input {
  flex: 1; min-width: 0; text-align: center;
  background: var(--bg); border: 1px solid var(--line); border-radius: 4px;
  color: var(--ink); padding: 11px 8px; font-size: 15px; font-family: inherit;
  -moz-appearance: textfield; color-scheme: dark;
}
.q-num input::-webkit-outer-spin-button, .q-num input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.q-num input:focus { outline: none; border-color: var(--gold); }
.q-step {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: 4px; font-size: 17px;
  background: var(--bg-3); border: 1px solid var(--line); color: var(--ink); transition: all 0.25s;
}
.q-step:hover { border-color: var(--gold); color: var(--gold-2); }

.q-choice { display: flex; gap: 8px; }
.q-opt {
  flex: 1; background: var(--bg); border: 1px solid var(--line); color: var(--muted);
  padding: 11px 10px; border-radius: 4px; font-size: 14px; transition: all 0.25s;
}
.q-opt:hover { border-color: var(--gold); color: var(--ink); }
.q-opt.active { background: var(--gold-dim); border-color: var(--gold); color: var(--gold-2); }

.q-switch {
  width: 46px; height: 26px; flex-shrink: 0; border-radius: 30px; padding: 0;
  background: var(--bg-3); border: 1px solid var(--line); position: relative; transition: all 0.3s var(--ease);
}
.q-switch span {
  position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--muted); transition: all 0.3s var(--ease);
}
.q-switch.on { background: var(--gold-dim); border-color: var(--gold); }
.q-switch.on span { left: 23px; background: var(--gold); }

.q-result {
  background: var(--bg); border: 1px solid rgba(201, 163, 106, 0.35); border-radius: 6px;
  padding: 24px; position: sticky; top: 0;
}
.q-result-label { font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); }
.q-total { font-family: var(--serif); font-size: clamp(38px, 5vw, 52px); color: var(--gold-2); line-height: 1.1; margin: 6px 0 18px; }
.q-lines { list-style: none; border-top: 1px solid var(--line); padding-top: 14px; margin-bottom: 16px; }
.q-lines li { display: flex; justify-content: space-between; gap: 12px; font-size: 13px; color: var(--muted); padding: 5px 0; }
.q-lines li span:last-child { color: var(--ink); white-space: nowrap; }
.q-lines li.q-line-note { color: var(--gold-2); font-style: italic; font-size: 12.5px; padding-top: 2px; }
.q-hint { display: block; margin-top: 3px; font-size: 10.5px; letter-spacing: 0.06em; text-transform: none; color: var(--gold); font-style: italic; }
.q-note { font-size: 12px; color: var(--muted); line-height: 1.6; margin-bottom: 18px; }
.q-total-vat { font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin: -12px 0 16px; }
.q-sums { border-top: 1px solid var(--line); padding-top: 12px; margin-bottom: 16px; }
.q-sums div { display: flex; justify-content: space-between; gap: 12px; font-size: 13.5px; padding: 4px 0; color: var(--muted); }
.q-sums div span:last-child { color: var(--ink); }
#qPdf { margin-top: 10px; }

@media (max-width: 800px) {
  .q-body { grid-template-columns: 1fr; }
  .q-result { position: static; }
}

/* ============================================================
   CHATBOT
   ============================================================ */
.chat-widget { position: fixed; right: 26px; bottom: 26px; z-index: 300; }
.chat-fab {
  position: relative; width: 62px; height: 62px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2)); border: none; color: #181410;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 34px rgba(201, 163, 106, 0.45);
  transition: transform 0.35s var(--ease);
}
.chat-fab:hover { transform: scale(1.08); }
.chat-fab-pulse {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--gold); animation: chatPulse 2.2s ease-out infinite;
}
@keyframes chatPulse { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(1.65); opacity: 0; } }
.chat-fab-close { display: none; }
.chat-widget.open .chat-fab-icon { display: none; }
.chat-widget.open .chat-fab-close { display: block; }
.chat-widget.open .chat-fab-pulse { display: none; }

.chat-panel {
  position: absolute; right: 0; bottom: 78px;
  width: min(380px, calc(100vw - 40px)); height: min(560px, calc(100svh - 130px));
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow); display: flex; flex-direction: column; overflow: hidden;
  opacity: 0; visibility: hidden; transform: translateY(20px) scale(0.97);
  transition: all 0.4s var(--ease);
}
.chat-widget.open .chat-panel { opacity: 1; visibility: visible; transform: none; }

.chat-header {
  display: flex; align-items: center; gap: 13px; padding: 16px 18px;
  background: linear-gradient(135deg, var(--bg-3), var(--bg-2)); border-bottom: 1px solid var(--line);
}
.chat-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: var(--gold-dim); color: var(--gold-2);
  display: flex; align-items: center; justify-content: center;
}
.chat-title { font-size: 15.5px; font-weight: 500; }
.chat-title span { color: var(--muted); font-weight: 300; font-size: 13px; }
.chat-status { font-size: 11.5px; color: #8fd49a; display: flex; align-items: center; gap: 6px; }
.chat-status-dot { width: 7px; height: 7px; border-radius: 50%; background: #6ab974; animation: plFade 1.4s ease infinite alternate; }

.chat-body { flex: 1; overflow-y: auto; padding: 18px 16px; display: flex; flex-direction: column; gap: 11px; }
.chat-msg { max-width: 84%; padding: 11px 15px; border-radius: 14px; font-size: 14px; line-height: 1.55; animation: msgIn 0.35s var(--ease); white-space: pre-line; }
@keyframes msgIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.chat-msg.bot { background: var(--bg-3); border: 1px solid var(--line); border-bottom-left-radius: 4px; align-self: flex-start; }
.chat-msg.user { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #181410; border-bottom-right-radius: 4px; align-self: flex-end; }
.chat-msg a { color: var(--gold-2); text-decoration: underline; }
.chat-msg.user a { color: #181410; }
.chat-typing { display: flex; gap: 5px; padding: 14px 16px; background: var(--bg-3); border: 1px solid var(--line); border-radius: 14px; border-bottom-left-radius: 4px; align-self: flex-start; }
.chat-typing i { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); animation: typing 1.2s ease infinite; }
.chat-typing i:nth-child(2) { animation-delay: 0.18s; }
.chat-typing i:nth-child(3) { animation-delay: 0.36s; }
@keyframes typing { 0%, 60%, 100% { transform: translateY(0); opacity: 0.4; } 30% { transform: translateY(-6px); opacity: 1; } }

.chat-quick { display: flex; gap: 7px; padding: 0 14px 10px; flex-wrap: wrap; }
.chat-quick button {
  background: transparent; border: 1px solid rgba(201,163,106,0.45); color: var(--gold-2);
  font-size: 12px; padding: 7px 13px; border-radius: 30px; transition: all 0.25s;
}
.chat-quick button:hover { background: var(--gold); color: #181410; }

.chat-input { display: flex; gap: 8px; padding: 12px 14px; border-top: 1px solid var(--line); background: var(--bg-3); }
.chat-input input {
  flex: 1; background: var(--bg); border: 1px solid var(--line); border-radius: 30px;
  color: var(--ink); padding: 11px 18px; font-size: 14px;
}
.chat-input input:focus { outline: none; border-color: var(--gold); }
.chat-input button {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: var(--gold); border: none; color: #181410;
  display: flex; align-items: center; justify-content: center; transition: transform 0.25s;
}
.chat-input button:hover { transform: scale(1.08); }

/* ---------- toasts ---------- */
.toasts { position: fixed; top: 90px; right: 22px; z-index: 600; display: flex; flex-direction: column; gap: 10px; }
.toast {
  background: var(--bg-3); border: 1px solid rgba(201,163,106,0.5); border-radius: 6px;
  color: var(--ink); padding: 14px 20px; font-size: 14px; max-width: 340px;
  box-shadow: var(--shadow); animation: toastIn 0.45s var(--ease);
  display: flex; align-items: center; gap: 10px;
}
.toast.success { border-color: rgba(106,185,116,0.6); }
.toast.error { border-color: rgba(185,106,90,0.6); }
.toast.out { animation: toastOut 0.4s var(--ease) forwards; }
@keyframes toastIn { from { opacity: 0; transform: translateX(60px); } to { opacity: 1; transform: none; } }
@keyframes toastOut { to { opacity: 0; transform: translateX(60px); } }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1024px) {
  .pf-grid { columns: 2 280px; }
  .svc-grid { grid-template-columns: 1fr; max-width: 470px; margin-inline: auto; gap: 30px; }
  .svc-featured { transform: none; }
  .svc-featured:hover { transform: translateY(-10px); }
  .proc-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .ca-cal-wrap { grid-template-columns: 1fr; }
  .cta-banner-bg { background-attachment: scroll; }
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed; inset: 0; background: rgba(10, 9, 7, 0.97); backdrop-filter: blur(10px);
    flex-direction: column; align-items: center; justify-content: center; gap: 30px;
    opacity: 0; visibility: hidden; transition: opacity 0.4s ease, visibility 0.4s;
  }
  .nav-links.open { opacity: 1; visibility: visible; }
  .nav-links a { font-size: 17px; }
  .nav-burger { display: flex; z-index: 210; }
  .btn-client span { display: none; }
  .btn-client { padding: 11px 13px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 420px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .ca-auth { grid-template-columns: 1fr; }
  .ca-auth-side { display: none; }
  .ca-dash { grid-template-columns: 1fr; max-height: none; }
  .ca-side { flex-direction: row; align-items: center; flex-wrap: wrap; gap: 10px; border-right: none; border-bottom: 1px solid var(--line); padding: 14px; }
  .ca-user { border: none; padding: 0; margin: 0; flex-basis: 100%; }
  .ca-nav { flex-direction: row; flex-wrap: wrap; flex: 1; }
  .ca-nav-btn span { display: none; }
  .ca-logout span { display: none; }
  .ca-panel { max-height: 96vh; overflow-y: auto; }
  .ca-cards { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .proc-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .pf-grid { columns: 1 auto; }
  .hero-dots { bottom: 96px; }
  .stats { gap: 30px 12px; }
  .chat-widget { right: 16px; bottom: 16px; }
  .back-top { left: 16px; bottom: 16px; }
  .toasts { right: 12px; left: 12px; }
  .toast { max-width: none; }
}

/* ============================================================
   PÁGINAS SEPARADAS — hero sóbrio, coleções e álbuns
   ============================================================ */

/* ---------- hero minimalista (home) ---------- */
.hero-min { position: relative; height: 100svh; min-height: 560px; overflow: hidden; }
.hero-min-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  animation: heroZoom 14s ease forwards;
}
@keyframes heroZoom { from { transform: scale(1.06); } to { transform: scale(1); } }
.hero-min-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,13,11,0.42) 0%, rgba(14,13,11,0.05) 40%, rgba(14,13,11,0.72) 100%);
}
.hero-min-text {
  position: absolute; left: 0; right: 0; bottom: clamp(56px, 12vh, 120px);
  padding-inline: max(5vw, 24px); z-index: 2;
}
.hero-min-text .eyebrow { margin-bottom: 10px; animation: heroUp 1s 0.2s var(--ease) backwards; }
.hero-min-text h1 {
  font-family: var(--display); font-weight: 400; letter-spacing: 0.08em; word-spacing: -0.16em;
  font-size: clamp(30px, 4.4vw, 52px); line-height: 1.1;
  animation: heroUp 1s 0.35s var(--ease) backwards;
}
.hero-min-text h1 span { color: inherit; font-style: normal; }
.hero-min-tag {
  color: rgba(245, 239, 230, 0.75); font-size: 13.5px; letter-spacing: 0.3em;
  text-transform: uppercase; margin-top: 12px;
  animation: heroUp 1s 0.5s var(--ease) backwards;
}

/* ---------- vídeo aéreo (drone) ---------- */
.aerial-sub { max-width: 560px; margin: 0 auto 42px; color: var(--muted); }
.aerial-grid { display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; }
.aerial-video {
  width: 100%; max-width: 320px; aspect-ratio: 9 / 16; height: auto;
  background: #000; border-radius: 14px; overflow: hidden; display: block;
  object-fit: cover; box-shadow: 0 22px 55px rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(201, 163, 106, 0.16);
}
@media (max-width: 720px) { .aerial-video { max-width: 78vw; } }

/* ---------- mosaicos das coleções (home) ---------- */
.cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.cat-tile {
  position: relative; display: block; overflow: hidden; border-radius: 4px;
  aspect-ratio: 3 / 4; opacity: 0; transform: translateY(24px);
  animation: pfIn 0.8s var(--ease) forwards;
}
.cat-tile:nth-child(2) { animation-delay: 0.12s; }
.cat-tile:nth-child(3) { animation-delay: 0.24s; }
.cat-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.cat-tile:hover img { transform: scale(1.06); }
.cat-tile-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(10, 9, 7, 0.85) 100%);
  transition: background 0.4s;
}
.cat-tile-info { position: absolute; left: 24px; right: 24px; bottom: 22px; z-index: 2; }
.cat-tile-info h3 {
  font-family: var(--serif); font-weight: 400; font-size: 27px;
  display: flex; align-items: center; gap: 10px;
}
.cat-tile-info h3::after {
  content: '→'; font-family: var(--sans); font-size: 18px; color: var(--gold);
  transition: transform 0.35s var(--ease);
}
.cat-tile:hover .cat-tile-info h3::after { transform: translateX(6px); }
.cat-tile-info p { font-size: 11.5px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

/* ---------- faixa de convite (home) ---------- */
.home-strip { border-top: 1px solid var(--line); padding: clamp(50px, 7vw, 80px) 0; background: var(--bg-2); }
.home-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap; }
.svc-cta-group { display: flex; gap: 12px; flex-wrap: wrap; }
.home-strip h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 6px; }
.home-strip p { color: var(--muted); }

/* ---------- pop-up informativo ---------- */
.info-btn {
  flex-shrink: 0; width: 21px; height: 21px; border-radius: 50%;
  background: transparent; border: 1px solid rgba(201, 163, 106, 0.55); color: var(--gold);
  font-family: var(--serif); font-size: 12px; font-style: italic; line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.25s var(--ease); padding: 0;
}
.info-btn:hover, .info-btn[aria-expanded="true"] { background: var(--gold); color: #181410; transform: scale(1.12); }

.info-pop {
  position: fixed; z-index: 700;
  background: #100e0b; border: 1px solid rgba(201, 163, 106, 0.5); border-radius: 8px;
  padding: 16px 18px; box-shadow: 0 22px 55px rgba(0, 0, 0, 0.92);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
}
.info-pop.open { opacity: 1; visibility: visible; transform: none; }
.info-pop-title {
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.info-pop-text { font-size: 13.5px; line-height: 1.65; color: var(--ink); }

/* linha do serviço dentro do simulador */
.q-svc-info {
  display: flex; align-items: center; gap: 9px;
  margin: -18px 0 24px; font-size: 13px; color: var(--muted);
}

/* ---------- apoio a profissionais ---------- */
.collab-box {
  display: flex; align-items: center; gap: 26px; flex-wrap: wrap;
  margin-top: 46px; padding: 32px 34px; position: relative; overflow: hidden;
  background: linear-gradient(120deg, rgba(201, 163, 106, 0.16), rgba(201, 163, 106, 0.03) 55%, transparent);
  border: 1px solid rgba(201, 163, 106, 0.5); border-radius: 10px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
  scroll-margin-top: 100px;
}
/* brilho ténue no canto, para a caixa saltar à vista */
.collab-box::after {
  content: ''; position: absolute; top: -70px; right: -70px; width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(201, 163, 106, 0.22), transparent 70%);
  pointer-events: none;
}
.collab-icon {
  position: relative; flex-shrink: 0;
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-dim); border: 1px solid rgba(201, 163, 106, 0.5); color: var(--gold-2);
}
.collab-icon-plus {
  position: absolute; right: -3px; bottom: -3px;
  width: 22px; height: 22px; padding: 4px; border-radius: 50%;
  background: var(--gold); color: #181410;
}
.collab-text { flex: 1; min-width: 240px; }
.collab-box h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(23px, 2.8vw, 31px); margin-bottom: 8px; }
.collab-box p { color: var(--muted); font-size: 14.5px; max-width: 520px; }
.collab-box .eyebrow { margin-bottom: 8px; }
.collab-box .btn { position: relative; z-index: 1; }
.footer-collab { color: var(--gold-2) !important; }

/* ---------- editor de preços (área pessoal) ---------- */
.pr-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 16px; }
.pr-field label { display: block; font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.pr-input { display: flex; align-items: center; gap: 8px; }
.pr-input input {
  flex: 1; min-width: 0; background: var(--bg); border: 1px solid var(--line); border-radius: 4px;
  color: var(--ink); padding: 10px 12px; font-size: 15px; font-family: inherit; color-scheme: dark;
}
.pr-input input:focus { outline: none; border-color: var(--gold); }
.pr-input span { color: var(--gold-2); font-size: 14px; min-width: 16px; }
.pr-publish {
  margin-top: 26px; padding: 22px 24px; border-radius: 8px;
  background: linear-gradient(135deg, var(--gold-dim), transparent);
  border: 1px solid rgba(201, 163, 106, 0.35);
}
.pr-publish h4 { font-family: var(--serif); font-size: 19px; font-weight: 500; margin-bottom: 10px; border: none; padding: 0; }
.pr-publish .ca-note { margin: 0 0 16px; }

/* --- caixa de entrada (Área Pessoal) --- */
.inbox-item { padding: 14px 16px; border-radius: 8px; margin-bottom: 10px; border: 1px solid rgba(201, 163, 106, 0.14); background: rgba(255, 255, 255, 0.02); }
.inbox-item.unread { border-color: rgba(201, 163, 106, 0.42); background: rgba(201, 163, 106, 0.06); }
.inbox-head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.inbox-badge { font-size: 10.5px; letter-spacing: 0.05em; text-transform: uppercase; padding: 2px 9px; border-radius: 20px; background: rgba(201, 163, 106, 0.18); color: var(--gold, #c9a36a); white-space: nowrap; }
.inbox-badge.inbox-quote { background: rgba(120, 180, 120, 0.16); color: #8fce8f; }
.inbox-badge.inbox-collab { background: rgba(140, 160, 220, 0.16); color: #9fb0e6; }
.inbox-title { font-weight: 500; font-size: 13.5px; }
.inbox-date { margin-left: auto; font-size: 11.5px; color: var(--muted, #8a8378); }
.inbox-body { white-space: pre-wrap; word-break: break-word; font-family: inherit; font-size: 12.5px; line-height: 1.55; margin: 8px 0 0; color: var(--muted, #8a8378); }
.inbox-actions { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }

/* --- gestão de avaliações (Área Pessoal) --- */
.rvadm-card {
  padding: 16px 18px; border-radius: 8px; margin-bottom: 12px;
  background: var(--surface, rgba(255,255,255,0.03));
  border: 1px solid rgba(201, 163, 106, 0.18);
}
.rvadm-stars { color: var(--gold, #c9a36a); letter-spacing: 2px; font-size: 14px; }
.rvadm-text { margin: 8px 0 6px; line-height: 1.5; }
.rvadm-meta { font-size: 12.5px; color: var(--muted, #8a8378); }
.rvadm-actions { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.rvadm-add { margin: 8px 0 4px; }
.rvadm-add > summary { cursor: pointer; padding: 10px 0; color: var(--gold, #c9a36a); font-size: 14px; letter-spacing: 0.02em; }
.rvadm-add[open] > summary { margin-bottom: 8px; }
#pwCode {
  width: 100%; margin-top: 8px; padding: 12px 14px;
  background: var(--bg); border: 1px solid rgba(201, 163, 106, 0.4); border-radius: 4px;
  color: var(--gold-2); font-family: ui-monospace, Consolas, monospace; font-size: 12px;
  resize: vertical; word-break: break-all;
}

/* ---------- avaliações de clientes ---------- */
.rv-summary {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  flex-wrap: wrap; margin-bottom: 34px;
}
.rv-avg { font-family: var(--serif); font-size: 46px; color: var(--gold-2); line-height: 1; }
.rv-avg-stars { color: var(--gold); font-size: 19px; letter-spacing: 3px; }
.rv-count { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }

.rv-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 18px; }
.rv-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: 6px; padding: 26px 24px;
  transition: border-color 0.35s;
}
.rv-card:hover { border-color: rgba(201, 163, 106, 0.4); }
.rv-stars { color: var(--gold); letter-spacing: 4px; font-size: 15px; margin-bottom: 14px; }
.rv-text { font-family: var(--serif); font-style: italic; font-size: 18px; line-height: 1.55; margin-bottom: 16px; }
.rv-meta { font-size: 12.5px; color: var(--muted); }
.rv-meta strong { color: var(--gold-2); font-weight: 500; }

.rv-empty {
  grid-column: 1 / -1; text-align: center; color: var(--muted);
  border: 1px dashed var(--line); border-radius: 6px; padding: 50px 24px;
}
.rv-empty svg { color: var(--gold); opacity: 0.65; margin-bottom: 14px; }
.rv-empty p { max-width: 420px; margin-inline: auto; font-size: 14.5px; }
.rv-actions { text-align: center; margin-top: 34px; }

/* estrelas selecionáveis */
.rv-panel { width: min(620px, 100%); }
.rv-picker { display: flex; gap: 6px; }
.rv-star {
  background: none; border: none; padding: 0 2px;
  font-size: 32px; line-height: 1; color: rgba(245, 239, 230, 0.22);
  transition: color 0.2s, transform 0.2s var(--ease);
}
.rv-star:hover { transform: scale(1.12); }
.rv-star.on { color: var(--gold); }
.rv-note { text-align: center; font-size: 12px; color: var(--muted); margin-top: 14px; }

/* ---------- equipas (página Sobre) ---------- */
.team { background: var(--bg-2); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(238px, 1fr)); gap: 18px; margin-top: 12px; }
.team-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: 6px; padding: 26px 24px;
  transition: border-color 0.35s, transform 0.35s var(--ease);
}
.team-card:hover { border-color: rgba(201, 163, 106, 0.45); transform: translateY(-4px); }
.team-card h3 {
  font-family: var(--serif); font-weight: 500; font-size: 20px; margin-bottom: 10px;
  padding-bottom: 10px; border-bottom: 1px solid var(--line);
}
.team-card p { color: var(--muted); font-size: 14px; line-height: 1.65; }
.team-note {
  text-align: center; color: var(--muted); font-size: 13.5px;
  max-width: 620px; margin: 32px auto 0; font-style: italic;
}

/* ---------- página de serviços ---------- */
.svc-wrap { padding-bottom: clamp(50px, 7vw, 90px); }
.svc-block { padding: clamp(32px, 4.5vw, 52px) 0; border-top: 1px solid var(--line); }
.svc-block:first-child { border-top: none; padding-top: clamp(20px, 3vw, 34px); }
.svc-block-head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 16px; flex-wrap: wrap; }
.svc-block-head .info-btn { align-self: center; }
.svc-num { font-family: var(--serif); font-size: 15px; letter-spacing: 0.14em; color: var(--gold); }
.svc-block h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(28px, 3.6vw, 42px); line-height: 1.15; }
.svc-desc { color: var(--muted); max-width: 640px; margin-bottom: 30px; }
.svc-includes {
  font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.svc-items {
  list-style: none;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(235px, 1fr)); gap: 11px 28px;
}
.svc-items li { position: relative; padding-left: 21px; font-size: 14.5px; }
.svc-items li::before { content: '✦'; position: absolute; left: 0; top: 3px; font-size: 10px; color: var(--gold); }

/* ---------- cabeçalho das páginas interiores ---------- */
.page-head { padding: 140px 0 10px; }
.page-head .section-sub { margin-bottom: 10px; }
.gal-wrap { padding-bottom: clamp(70px, 9vw, 120px); }

/* ---------- cartões de álbum ("pastas") ---------- */
.gal-albums { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px 18px; margin-top: 30px; }
.album-card { display: block; opacity: 0; transform: translateY(24px); animation: pfIn 0.7s var(--ease) forwards; }
.album-cover { position: relative; overflow: hidden; border-radius: 4px; aspect-ratio: 3 / 2; }
.album-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease), filter 0.6s ease; }
/* capa em retrato: puxar o enquadramento para cima (rostos/cabeças) */
.album-cover img.cover-tall { object-position: center 20%; }
.album-card:hover .album-cover img { transform: scale(1.07); filter: brightness(0.55); }
.album-open {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 11.5px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-2);
  opacity: 0; transform: translateY(10px); transition: all 0.4s var(--ease);
}
.album-card:hover .album-open { opacity: 1; transform: none; }
.album-card h3 { font-family: var(--serif); font-weight: 500; font-size: 21px; margin-top: 14px; }
.album-card p { font-size: 11.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-top: 2px; }

/* ---------- vista de álbum ---------- */
.gal-album-head { margin: 26px 0 26px; }
.gal-back {
  background: none; border: 1px solid var(--line); color: var(--muted);
  padding: 9px 18px; border-radius: 30px; font-size: 12.5px; letter-spacing: 0.12em;
  transition: all 0.3s; margin-bottom: 20px;
}
.gal-back:hover { border-color: var(--gold); color: var(--gold-2); }
.gal-album-head h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(30px, 4vw, 44px); line-height: 1.1; }
.gal-album-head p { color: var(--muted); font-size: 12.5px; letter-spacing: 0.22em; text-transform: uppercase; margin-top: 6px; }

@media (max-width: 900px) {
  .cats { grid-template-columns: 1fr; }
  .cat-tile { aspect-ratio: 16 / 10; }
  .gal-albums { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .gal-albums { grid-template-columns: 1fr; }
  .page-head { padding-top: 120px; }
}
