/* ─── ANDRÉIA HORTA — HOME CSS ─────────────────────────────────────── */

:root {
  --ah-ink:        #0d0d0d;
  --ah-ivory:      #f5f2ec;
  --ah-cream:      #f0ede6;
  --ah-gold:       #b8975a;
  --ah-gold-lt:    #d4b87a;
  --ah-muted:      #6b6055;
  --ah-rule:       rgba(184,151,90,.22);
  --ah-ff-disp:    'Cormorant Garamond', Georgia, serif;
  --ah-ff-body:    'Inter', system-ui, sans-serif;
  --ah-ease:       cubic-bezier(.25,.46,.45,.94);
}

/* ── Reset dentro do escopo ─────────────────────────────────────────── */
.ah-nav, .ah-hero, .ah-section, .ah-footer,
.ah-video-modal, .ah-lightbox {
  box-sizing: border-box;
  font-family: var(--ah-ff-body);
}

/* Remove margens do body que o tema possa adicionar quando é canvas */
body.elementor-template-canvas { margin: 0; padding: 0; }

/* ── NAV ────────────────────────────────────────────────────────────── */
.ah-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 4rem;
  transition: background .4s var(--ah-ease), backdrop-filter .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.ah-nav.ah-scrolled {
  background: rgba(245,242,236,.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--ah-rule);
}
.ah-nav-logo {
  font-family: var(--ah-ff-disp);
  font-size: 1rem; letter-spacing: .28em; text-transform: uppercase;
  color: rgba(245,242,236,.9);
  transition: color .4s; white-space: nowrap;
}
.ah-nav.ah-scrolled .ah-nav-logo { color: var(--ah-ink); }

.ah-nav-links { display: flex; gap: 2.2rem; list-style: none; margin: 0; padding: 0; }
.ah-nav-links a {
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(245,242,236,.72); transition: color .3s; text-decoration: none;
}
.ah-nav-links a:hover { color: var(--ah-gold-lt); }
.ah-nav.ah-scrolled .ah-nav-links a { color: var(--ah-muted); }
.ah-nav.ah-scrolled .ah-nav-links a:hover { color: var(--ah-gold); }

.ah-nav-social a { color: rgba(245,242,236,.7); transition: color .3s; }
.ah-nav.ah-scrolled .ah-nav-social a { color: var(--ah-muted); }
.ah-nav-social a:hover { color: var(--ah-gold); }
.ah-nav-social svg { display:block; }

/* ── HERO ───────────────────────────────────────────────────────────── */
.ah-hero {
  position: relative;
  height: 100svh; min-height: 620px;
  display: grid; place-items: center;
  overflow: hidden;
}
.ah-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg,#1a1410 0%,#2e1f10 50%,#0d0d0d 100%);
}
/* quando tem foto, oculta gradiente puro */
.ah-hero.ah-has-photo .ah-hero-bg { display: none; }

/* foto de fundo */
.ah-hero-photo-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
  filter: brightness(.55) saturate(.85);
}
.ah-hero-photo-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to top,  rgba(13,13,13,.95) 0%, rgba(13,13,13,.3) 38%, transparent 65%),
    linear-gradient(to right, rgba(13,13,13,.3) 0%, transparent 45%),
    linear-gradient(160deg, rgba(26,20,16,.4) 0%, transparent 55%);
}
.ah-hero-bg::after {
  content: ''; position: absolute; inset: 0; opacity: .4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E");
  pointer-events: none;
}
.ah-hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top,#0d0d0d 0%,rgba(13,13,13,.3) 40%,transparent 70%);
}
.ah-hero-content {
  position: relative; z-index: 3;
  text-align: center; color: var(--ah-ivory); padding: 0 2rem;
}
.ah-eyebrow {
  font-size: .68rem; letter-spacing: .38em; text-transform: uppercase;
  color: var(--ah-gold); margin-bottom: 1.5rem; margin-top: 0;
}
.ah-hero-name {
  font-family: var(--ah-ff-disp);
  font-size: clamp(4.5rem,12vw,10rem);
  font-weight: 300; line-height: .9; letter-spacing: -.01em;
  margin: 0;
}
.ah-hero-name em {
  display: block; font-style: italic; font-weight: 300; color: var(--ah-gold-lt);
}
.ah-hero-sub {
  margin-top: 2rem; font-size: .72rem; letter-spacing: .24em;
  text-transform: uppercase; color: rgba(245,242,236,.45);
}
.ah-scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 4; display: flex; flex-direction: column; align-items: center; gap: .6rem;
}
.ah-scroll-hint span {
  font-size: .62rem; letter-spacing: .28em; text-transform: uppercase;
  color: rgba(245,242,236,.35);
}
.ah-scroll-line {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom,var(--ah-gold),transparent);
  animation: ahScrollDrop 2.2s var(--ah-ease) infinite;
}
@keyframes ahScrollDrop {
  0%  { transform:scaleY(0); transform-origin:top; }
  50% { transform:scaleY(1); transform-origin:top; }
  51% { transform:scaleY(1); transform-origin:bottom; }
  100%{ transform:scaleY(0); transform-origin:bottom; }
}

/* ── SECTION COMMONS ────────────────────────────────────────────────── */
.ah-section { padding: 7rem 0; }
.ah-section--light  { background: var(--ah-ivory); }
.ah-section--cream  { background: var(--ah-cream); }
.ah-section--dark   { background: #111109; }
.ah-section--black  { background: #0d0d0d; }

.ah-container { max-width: 1120px; margin: 0 auto; padding: 0 2.5rem; }

.ah-label {
  font-size: .66rem; letter-spacing: .38em; text-transform: uppercase;
  color: var(--ah-gold); margin-bottom: .9rem; display: block;
}
.ah-section-title {
  font-family: var(--ah-ff-disp);
  font-size: clamp(2.4rem,5vw,4rem);
  font-weight: 300; line-height: 1.04; margin: 0;
  color: var(--ah-ink);
}
.ah-section-title em { font-style: italic; color: var(--ah-gold); }
.ah-section-title--light { color: var(--ah-ivory); }
.ah-rule {
  width: 48px; height: 1px;
  background: var(--ah-gold); margin: 2rem 0;
}
.ah-section--dark   .ah-label,
.ah-section--black  .ah-label  { color: var(--ah-gold); }
.ah-section--dark   .ah-section-title { color: var(--ah-ivory); }

/* ── REVEAL ANIMATIONS ──────────────────────────────────────────────── */
.ah-reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity .7s var(--ah-ease), transform .7s var(--ah-ease);
}
.ah-reveal.ah-visible   { opacity: 1; transform: none; }
.ah-reveal--d1 { transition-delay: .12s; }
.ah-reveal--d2 { transition-delay: .24s; }

/* ── BIOGRAPHY ──────────────────────────────────────────────────────── */
.ah-bio-grid {
  display: grid; grid-template-columns: 1fr 1.65fr;
  gap: 6rem; align-items: start; margin-top: 4rem;
}
.ah-bio-photo-wrap { position: sticky; top: 8rem; }
.ah-bio-photo-wrap img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  filter: grayscale(12%) contrast(1.04);
}
.ah-photo-placeholder {
  width: 100%; aspect-ratio: 3/4;
  background: #d5cfc5;
  display: flex; align-items: center; justify-content: center;
}
.ah-photo-placeholder span {
  font-size: .68rem; letter-spacing: .2em; color: #9a9085; text-transform: uppercase;
}
.ah-photo-caption {
  margin-top: .7rem; font-size: .67rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ah-muted); text-align: right;
}
.ah-bio-text p {
  color: #3a3530; line-height: 1.88; margin-bottom: 1.4rem; font-size: .95rem;
}
.ah-awards {
  margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--ah-rule);
}
.ah-award-item {
  display: flex; gap: 1.1rem; align-items: flex-start;
  padding: .95rem 0; border-bottom: 1px solid var(--ah-rule);
}
.ah-award-icon { color: var(--ah-gold); flex-shrink: 0; margin-top: .15rem; }
.ah-award-item strong {
  display: block; font-size: .88rem; font-weight: 600; color: var(--ah-ink); margin-bottom: .18rem;
}
.ah-award-item span { font-size: .82rem; color: var(--ah-muted); line-height: 1.5; }

/* ── CENAS ──────────────────────────────────────────────────────────── */
.ah-cenas-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; margin-top: 4rem;
  background: rgba(184,151,90,.12);
}
.ah-cena-card {
  position: relative; aspect-ratio: 16/9;
  overflow: hidden; background: #1a1a14; cursor: pointer;
}
.ah-cena-thumb {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ah-ease), filter .6s;
  filter: grayscale(25%) brightness(.75);
  display: block;
}
.ah-cena-card:hover .ah-cena-thumb {
  transform: scale(1.05); filter: grayscale(0%) brightness(.55);
}
.ah-cena-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.ah-cp1 { background: linear-gradient(135deg,#2a1f0f,#1a0f05); }
.ah-cp2 { background: linear-gradient(135deg,#0f1a1f,#050f1a); }
.ah-cp3 { background: linear-gradient(135deg,#1a1a0a,#0a0a0a); }
.ah-cp4 { background: linear-gradient(135deg,#1f0a0f,#0f0508); }
.ah-cp5 { background: linear-gradient(135deg,#0f1f0a,#050f05); }
.ah-cp6 { background: linear-gradient(135deg,#1f1a0f,#0f0a05); }
.ah-cena-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,rgba(0,0,0,.88) 0%,transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.4rem;
  /* sempre visível */
  opacity: 1;
  transition: none;
}
/* sobrescrita para hover: escurece mais quando com foto */
.ah-cena-card:hover .ah-cena-overlay {
  background: linear-gradient(to top,rgba(0,0,0,.92) 0%,rgba(0,0,0,.2) 65%,transparent 100%);
}
.ah-cena-title {
  font-family: var(--ah-ff-disp); font-style: italic;
  font-size: 1.1rem; color: var(--ah-ivory); line-height: 1.2; margin: 0;
}
.ah-cena-meta {
  font-size: .66rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ah-gold); margin: .35rem 0 0;
}
.ah-play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(.8);
  width: 58px; height: 58px; border-radius: 50%;
  background: rgba(184,151,90,.88);
  display: flex; align-items: center; justify-content: center;
  transition: transform .4s var(--ah-ease), opacity .4s;
  opacity: 0; pointer-events: none;
}
.ah-play-btn svg { margin-left: 4px; }
.ah-cena-card:hover .ah-play-btn {
  transform: translate(-50%,-50%) scale(1); opacity: 1;
}

/* ── VIDEO MODAL ────────────────────────────────────────────────────── */
.ah-video-modal {
  position: fixed; inset: 0; z-index: 99999;
  background: rgba(0,0,0,.94);
  display: grid; place-items: center;
}
.ah-video-modal[hidden] { display: none; }
.ah-video-modal-inner { position: relative; width: min(900px,92vw); }
.ah-video-close {
  position: absolute; top: -2.8rem; right: 0;
  font-size: 2rem; color: #fff; background: none; border: none; cursor: pointer; line-height: 1;
}
.ah-video-wrap { position: relative; padding-bottom: 56.25%; height: 0; }
.ah-video-wrap iframe {
  position: absolute; inset: 0; width: 100%; height: 100%;
}

/* ── GALERIA ────────────────────────────────────────────────────────── */
.ah-galeria-masonry {
  column-count: 3; column-gap: 1.1rem; margin-top: 3.5rem;
}
.ah-galeria-item {
  break-inside: avoid; margin-bottom: 1.1rem;
  overflow: hidden; cursor: pointer; position: relative;
}
.ah-galeria-item img {
  width: 100%; display: block;
  transition: transform .5s var(--ah-ease), filter .5s;
  filter: brightness(.97);
}
.ah-galeria-item:hover img { transform: scale(1.04); filter: brightness(.8); }
.ah-galeria-placeholder {
  width: 100%; aspect-ratio: 3/4;
  background: #d5cfc5;
  display: flex; align-items: center; justify-content: center;
  transition: filter .4s;
}
.ah-galeria-item:hover .ah-galeria-placeholder { filter: brightness(.85); }
.ah-galeria-placeholder span {
  font-size: .65rem; letter-spacing: .2em; color: #9a9085; text-transform: uppercase;
}
.ah-galeria-credito {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top,rgba(0,0,0,.6),transparent);
  font-size: .62rem; color: rgba(255,255,255,.7);
  padding: .8rem .6rem .4rem; letter-spacing: .1em;
  opacity: 0; transition: opacity .3s;
}
.ah-galeria-item:hover .ah-galeria-credito { opacity: 1; }

/* ── LIGHTBOX ───────────────────────────────────────────────────────── */
.ah-lightbox {
  position: fixed; inset: 0; z-index: 99998;
  background: rgba(0,0,0,.95);
  display: flex; align-items: center; justify-content: center;
}
.ah-lightbox[hidden] { display: none; }
.ah-lightbox img {
  max-height: 90vh; max-width: 90vw; object-fit: contain;
}
.ah-lightbox-close,
.ah-lightbox-prev,
.ah-lightbox-next {
  position: absolute;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.75);
  cursor: pointer;
  font-size: 1.5rem; line-height: 1;
  padding: .5rem .75rem;
  border-radius: 4px;
  transition: background .2s, color .2s, border-color .2s;
  font-family: inherit;
}
.ah-lightbox-close { top: 1.5rem; right: 2rem; font-size: 1.6rem; padding: .4rem .8rem; }
.ah-lightbox-prev  { left: 1.5rem;  top: 50%; transform: translateY(-50%); }
.ah-lightbox-next  { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.ah-lightbox-close:hover,
.ah-lightbox-prev:hover,
.ah-lightbox-next:hover {
  background: rgba(184,151,90,.25);
  border-color: rgba(184,151,90,.6);
  color: var(--ah-gold);
}

/* ── MÍDIA ──────────────────────────────────────────────────────────── */
.ah-quotes-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; margin-top: 4rem;
}
.ah-quote-block {
  padding: 3rem; background: var(--ah-ivory);
  border-left: 3px solid transparent; transition: border-color .35s;
}
.ah-quote-block:hover { border-left-color: var(--ah-gold); }
.ah-quote-text {
  font-family: var(--ah-ff-disp); font-style: italic;
  font-size: 1.25rem; line-height: 1.58; color: #2a2520; margin: 0 0 1.4rem;
}
.ah-quote-text::before {
  content: '\201C'; color: var(--ah-gold); font-size: 2rem;
  line-height: 0; vertical-align: -.35em; margin-right: .12em;
}
.ah-quote-source { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ah-muted); }
.ah-quote-source strong { display: block; color: var(--ah-gold); margin-bottom: .2rem; font-weight: 600; }
.ah-press-intro {
  text-align: center; margin: 4rem 0 0;
  font-size: .7rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--ah-gold);
}
.ah-press-logos {
  display: flex; align-items: center; justify-content: center;
  gap: 3.5rem; flex-wrap: wrap;
  margin-top: 2rem; padding-top: 2rem;
}
.ah-press-logo {
  /* botão clicável — reset total para eliminar borda/fundo/realce nativo (rosa #c36) */
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
  background: transparent !important; background-color: transparent !important;
  border: 0 !important; border-color: transparent !important;
  outline: none; box-shadow: none !important; color: inherit !important;
  -webkit-tap-highlight-color: transparent;
  padding: .5rem; margin: 0;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: opacity .35s, transform .35s var(--ah-ease);
}
.ah-press-logo:hover,
.ah-press-logo:focus,
.ah-press-logo:active {
  background: transparent !important; border: 0 !important;
  outline: none; box-shadow: none !important;
}
.ah-press-logo:hover { transform: translateY(-3px); }
.ah-press-logo:focus-visible { outline: 2px solid rgba(184,151,90,.5); outline-offset: 4px; }
/* Logo na cor original (sem filtro, sem opacidade reduzida) */
.ah-press-logo img {
  height: 52px; width: auto; max-width: 200px; display: block;
  transition: transform .35s;
}

/* ── POPUP MÍDIA ────────────────────────────────────────────────────── */
.ah-media-modal {
  position: fixed; inset: 0; z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
}
.ah-media-modal[hidden] { display: none; }
.ah-media-modal-overlay {
  position: absolute; inset: 0;
  background: rgba(10,9,8,.82);
  backdrop-filter: blur(5px);
  animation: ahFadeIn .35s ease forwards;
}
.ah-media-modal-box {
  position: relative; z-index: 1;
  background: var(--ah-ivory, #f5f2ec);
  max-width: 860px; width: 100%; max-height: 88vh; overflow-y: auto;
  padding: 3rem 3rem 2.5rem;
  border-radius: 2px;
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
  transform: translateY(24px) scale(.97); opacity: 0;
  animation: ahPopIn .45s var(--ah-ease, cubic-bezier(.2,.7,.2,1)) .08s forwards;
}
@keyframes ahFadeIn { from { opacity: 0 } to { opacity: 1 } }
@keyframes ahPopIn {
  from { transform: translateY(24px) scale(.97); opacity: 0 }
  to   { transform: translateY(0) scale(1); opacity: 1 }
}
.ah-media-modal-close {
  position: absolute; top: 1.1rem; right: 1.3rem;
  background: none; border: 0; cursor: pointer;
  font-size: 2rem; line-height: 1; color: var(--ah-muted);
  transition: color .25s; padding: .2rem .5rem;
}
.ah-media-modal-close:hover { color: var(--ah-gold); }
.ah-media-modal-label {
  font-size: .68rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--ah-gold); margin: 0 0 .6rem;
}
.ah-media-modal-title {
  font-family: var(--ah-ff-disp); font-size: 1.9rem; line-height: 1.2;
  color: #1a1a1a; margin: 0 0 .5rem; font-weight: 400;
}
.ah-media-modal-materia {
  font-size: .95rem; line-height: 1.6; color: var(--ah-muted);
  margin: 0 0 1.8rem; font-style: italic;
}
.ah-media-modal-gallery {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
}
.ah-media-modal-gallery img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block;
  border-radius: 2px; cursor: zoom-in;
  transition: transform .4s var(--ah-ease), box-shadow .3s;
}
.ah-media-modal-gallery img:hover {
  transform: scale(1.03); box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.ah-media-modal-link {
  display: inline-block; margin-top: 1.8rem;
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ah-gold); text-decoration: none;
  border-bottom: 1px solid currentColor; padding-bottom: 3px;
  transition: opacity .25s;
}
.ah-media-modal-link:hover { opacity: .7; }

/* ── ZOOM da foto (por cima do popup) ───────────────────────────────── */
.ah-media-zoom {
  position: fixed; inset: 0; z-index: 100001;
  display: none; align-items: center; justify-content: center;
  padding: 3rem;
  background: rgba(10,9,8,.92);
  backdrop-filter: blur(6px);
  opacity: 0; transition: opacity .3s ease;
  cursor: zoom-out;
}
.ah-media-zoom.ah-open { opacity: 1; }
.ah-media-zoom img {
  max-width: 92vw; max-height: 88vh; object-fit: contain;
  display: block; border-radius: 2px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  transform: scale(.96); transition: transform .3s var(--ah-ease);
}
.ah-media-zoom.ah-open img { transform: scale(1); }
.ah-media-zoom-close {
  position: absolute; top: 1.5rem; right: 2rem;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.8); cursor: pointer;
  font-size: 1.6rem; line-height: 1; padding: .3rem .7rem; border-radius: 4px;
  transition: all .25s;
}
.ah-media-zoom-close:hover {
  background: rgba(184,151,90,.25); border-color: rgba(184,151,90,.6);
  color: var(--ah-gold-lt);
}
@media (max-width: 580px) {
  .ah-media-modal-box { padding: 2.2rem 1.5rem 2rem; }
  .ah-media-modal-title { font-size: 1.5rem; }
  .ah-press-logos { gap: 2rem; }
  .ah-press-logo img { height: 42px; }
}

/* ── TRABALHOS ──────────────────────────────────────────────────────── */
.ah-trabalhos-filter {
  display: flex; gap: .8rem; flex-wrap: wrap;
  margin: 2.5rem 0 3rem;
}
.ah-filter {
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  padding: .5rem 1.25rem; border: 1px solid var(--ah-rule);
  background: none; cursor: pointer; color: var(--ah-muted);
  transition: all .25s; font-family: var(--ah-ff-body);
}
.ah-filter.active, .ah-filter:hover {
  background: var(--ah-gold); border-color: var(--ah-gold); color: #fff;
}
.ah-trabalhos-list { display: flex; flex-direction: column; }
.ah-trabalho-item {
  display: grid; grid-template-columns: 5rem 1fr auto;
  gap: 1.5rem; align-items: center;
  padding: 1.1rem 0.6rem; border-bottom: 1px solid var(--ah-rule);
  transition: background .22s, padding-left .22s;
}
.ah-trabalho-item:hover {
  background: rgba(184,151,90,.06); padding-left: 1rem;
}
.ah-trabalho-year {
  font-family: var(--ah-ff-disp); font-size: 1.4rem;
  color: var(--ah-gold); font-weight: 300; flex-shrink: 0;
}
.ah-trabalho-title {
  font-size: .9rem; font-weight: 600; color: var(--ah-ink);
  margin: 0 0 .18rem; display: flex; align-items: center; gap: .4rem;
}
.ah-premio-badge { color: var(--ah-gold); font-size: .85rem; }
.ah-trabalho-role { font-size: .78rem; color: var(--ah-muted); font-style: italic; margin: 0; }
.ah-trabalho-premio {
  font-size: .72rem; color: var(--ah-gold); margin: .2rem 0 0; font-style: italic;
}
.ah-tag {
  font-size: .6rem; letter-spacing: .15em; text-transform: uppercase;
  padding: .25rem .7rem; border: 1px solid var(--ah-rule); color: var(--ah-muted);
  white-space: nowrap; flex-shrink: 0;
}
.ah-tag--tv      { border-color: rgba(184,151,90,.5); color: var(--ah-gold); }
.ah-tag--film    { border-color: rgba(90,130,184,.45); color: #5a82b8; }
.ah-tag--teatro  { border-color: rgba(90,160,90,.45);  color: #5a9a5a; }
.ah-tag--stream  { border-color: rgba(175,90,175,.4);  color: #af5aaf; }
.ah-tag--programa{ border-color: rgba(184,151,90,.3);  color: var(--ah-muted); }

/* ── CONTATO ────────────────────────────────────────────────────────── */
.ah-contato-sub {
  color: rgba(245,242,236,.52); font-size: .9rem;
  max-width: 480px; margin: 0 auto 3rem; line-height: 1.7;
}
.ah-contato-cards {
  display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap;
  margin-bottom: 3rem;
}
.ah-contato-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(184,151,90,.2);
  padding: 2.2rem 2.8rem; min-width: 240px;
  transition: border-color .3s, background .3s;
}
.ah-contato-card:hover { border-color: var(--ah-gold); background: rgba(184,151,90,.06); }
.ah-contato-label {
  font-size: .64rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--ah-gold); margin-bottom: .7rem;
}
.ah-contato-name {
  font-family: var(--ah-ff-disp); font-size: 1.15rem; font-style: italic;
  color: var(--ah-ivory); margin: 0 0 .5rem;
}
.ah-contato-detail {
  font-size: .82rem; color: rgba(245,242,236,.5); margin: .2rem 0; line-height: 1.5;
}
.ah-contato-detail a { color: rgba(245,242,236,.5); transition: color .3s; }
.ah-contato-detail a:hover { color: var(--ah-gold); }
.ah-social-row {
  display: flex; justify-content: center; gap: 1.2rem; margin-top: 1.5rem; flex-wrap: wrap;
}
.ah-social-pill {
  display: flex; align-items: center; gap: .55rem;
  padding: .6rem 1.4rem; border: 1px solid rgba(184,151,90,.3);
  font-size: .7rem; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(245,242,236,.55); transition: all .3s; text-decoration: none;
  font-family: var(--ah-ff-body);
}
.ah-social-pill:hover { border-color: var(--ah-gold); color: var(--ah-gold); }

/* ── FOOTER ─────────────────────────────────────────────────────────── */
.ah-footer {
  background: #080807; text-align: center; padding: 2.2rem 2.5rem;
  border-top: 1px solid rgba(184,151,90,.08);
}
.ah-footer-copy {
  font-size: .66rem; letter-spacing: .16em; color: rgba(245,242,236,.2);
  text-transform: uppercase; margin: 0 0 1rem;
}
.ah-footer-agency {
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  font-size: .62rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(245,242,236,.2); margin: 0;
}
.ah-footer-logo-link {
  display: inline-flex; align-items: center;
  transition: opacity .3s; text-decoration: none;
}
.ah-footer-logo {
  width: auto; display: block;
  /* altura vem do style inline (editável no painel) */
  opacity: .75;
  transition: opacity .3s;
}
.ah-footer-logo-link:hover .ah-footer-logo { opacity: 1; }

/* ── IDIOMA BR | EN | ES ─────────────────────────────────────────── */
.ah-lang-bar {
  display: flex; align-items: center; gap: 0;
  line-height: 1;
}
.ah-lang-btn {
  /* reset total — sem borda, sem fundo, sem aparência nativa */
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
  border: 0; background: transparent; outline: none; box-shadow: none;
  margin: 0; padding: 2px 7px;
  font-family: var(--ah-ff-body);
  font-size: 9px; letter-spacing: .14em; text-transform: uppercase; font-weight: 500;
  line-height: 1; cursor: pointer;
  color: rgba(245,242,236,.4);
  transition: color .25s;
}
.ah-lang-btn:hover,
.ah-lang-btn:focus { color: rgba(245,242,236,.85); }
.ah-lang-btn--active { color: var(--ah-gold-lt); }
.ah-lang-sep {
  display: inline-block;
  width: 1px; height: 10px;
  background: rgba(245,242,236,.22);
  font-size: 0; line-height: 0;
  pointer-events: none; user-select: none;
}
/* Scrolled */
.ah-nav.ah-scrolled .ah-lang-btn { color: rgba(107,96,85,.5); }
.ah-nav.ah-scrolled .ah-lang-btn:hover,
.ah-nav.ah-scrolled .ah-lang-btn:focus { color: var(--ah-ink); }
.ah-nav.ah-scrolled .ah-lang-btn--active { color: var(--ah-gold); }
.ah-nav.ah-scrolled .ah-lang-sep { background: rgba(107,96,85,.25); }
/* Nav social link */
.ah-nav-social-link { color: rgba(245,242,236,.65); transition: color .3s; }
.ah-nav-social-link:hover { color: var(--ah-gold-lt); }
.ah-nav.ah-scrolled .ah-nav-social-link { color: var(--ah-muted); }
.ah-nav.ah-scrolled .ah-nav-social-link:hover { color: var(--ah-gold); }
/* Nav right cluster */
.ah-nav-right { display: flex; align-items: center; gap: .75rem; }

/* Botão menu mobile (hamburger) — escondido no desktop */
.ah-nav-toggle {
  display: none;
  -webkit-appearance: none; appearance: none;
  background: none; border: 0; cursor: pointer;
  width: 28px; height: 22px; padding: 0;
  flex-direction: column; justify-content: space-between;
}
.ah-nav-toggle span {
  display: block; height: 2px; width: 100%;
  background: rgba(245,242,236,.85);
  transition: background .3s;
}
.ah-nav.ah-scrolled .ah-nav-toggle span { background: var(--ah-ink); }

/* Menu mobile overlay */
.ah-mobile-menu {
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(13,13,13,.97);
  backdrop-filter: blur(6px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .35s var(--ah-ease);
}
.ah-mobile-menu.ah-open { opacity: 1; pointer-events: auto; }
.ah-mobile-menu ul { list-style: none; margin: 0; padding: 0; text-align: center; }
.ah-mobile-menu li { margin: 1.1rem 0; }
.ah-mobile-menu a {
  font-family: var(--ah-ff-disp); font-style: italic;
  font-size: 1.8rem; color: rgba(245,242,236,.85);
  text-decoration: none; transition: color .25s;
}
.ah-mobile-menu a:hover { color: var(--ah-gold-lt); }
.ah-mobile-close {
  position: absolute; top: 1.5rem; right: 1.8rem;
  background: none; border: 0; color: rgba(245,242,236,.7);
  font-size: 2.2rem; line-height: 1; cursor: pointer;
}
/* Oculta TODA a UI nativa do Google Translate (banner, tooltip, balão) */
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
.goog-te-gadget,
.goog-te-gadget-icon,
iframe.skiptranslate,
.skiptranslate > iframe,
#goog-gt-tt,
.goog-te-balloon-frame,
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf,
.VIpgJd-ZVi9od-ORHb-OEVmcd {
  display: none !important;
  visibility: hidden !important;
}
/* Google empurra o body com top:40px — força sempre no topo */
body { top: 0 !important; position: static !important; }
/* Remove o destaque (fundo rosa/amarelo) que o Google aplica nas palavras */
font[style], .goog-text-highlight {
  background: none !important;
  box-shadow: none !important;
}
#google_translate_element { display: none !important; }

/* ── MOBILE ─────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .ah-nav { padding: 1rem 1.5rem; }
  .ah-nav-links { display: none; }          /* esconde menu inline */
  .ah-nav-toggle { display: flex; }          /* mostra hambúrguer */
  /* lang bar + instagram continuam visíveis */
  .ah-bio-grid { grid-template-columns: 1fr; gap: 3rem; margin-top: 2.5rem; }
  .ah-bio-photo-wrap { position: static; max-width: 380px; }
  .ah-cenas-grid { grid-template-columns: 1fr 1fr; }
  .ah-quotes-grid { grid-template-columns: 1fr; }
  .ah-galeria-masonry { column-count: 2; }
  .ah-trabalho-item { grid-template-columns: 4rem 1fr; }
  .ah-tag { display: none; }
}
@media (max-width: 580px) {
  .ah-section { padding: 4.5rem 0; }
  .ah-cenas-grid { grid-template-columns: 1fr; }
  .ah-galeria-masonry { column-count: 1; }
  .ah-contato-cards { flex-direction: column; align-items: center; }
  .ah-press-logos { gap: 1.5rem; }
  .ah-quotes-grid { gap: 0; }
  .ah-nav-right { gap: .5rem; }
}

/* ── NOTRANSLATE — protege nomes próprios ─────────────────────────── */
.notranslate { unicode-bidi: isolate; }
