/* ══════════════════════════════════════
   LUKY BUZZIO — Actor Portfolio
   Estética: Cinematográfico Oscuro de Lujo
   ══════════════════════════════════════ */

/* ── Variables ── */
:root {
  --bg-primary: #1c1c1c;
  --bg-secondary: #222222;
  --bg-card: #141414;
  --accent: #c8a96e;
  --accent-warm: #e8c97a;
  --accent-dark: #8a7040;
  --text-primary: #f0ede8;
  --text-secondary: #8a8680;
  --text-muted: #4a4744;
  --border: #2a2724;
  --border-light: #3a3632;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Cormorant Garamond', Georgia, serif;
  --font-ui: 'Montserrat', sans-serif;

  --nav-h: 72px;
  --section-pad: clamp(80px, 10vw, 140px);
  --container: 1280px;
  --gutter: clamp(24px, 5vw, 80px);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden; /* moved from body so position:fixed children aren't clipped */
}
body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  cursor: default;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: default; border: none; background: none; font: inherit; }

/* ── Scroll Progress Bar ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent), var(--accent-warm));
  width: 0%;
  z-index: 1000;
  transition: width 0.1s;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  z-index: 900;
  transition: background 0.4s, backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(28, 28, 28, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav__logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--accent);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav__link {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  transition: color 0.3s;
}

/* Nav transparente sobre hero — links en oscuro */
.nav:not(.scrolled) .nav__link {
  color: #1a1a1a;
}
.nav:not(.scrolled) .nav__link:hover {
  color: #000;
}
.nav:not(.scrolled) .nav__link--cta {
  color: #1a1a1a;
  border-color: #1a1a1a;
}
.nav:not(.scrolled) .nav__link--cta:hover {
  background: #1a1a1a;
  color: #fff;
}
.nav:not(.scrolled) .nav__logo {
  color: #1a1a1a;
}
.nav:not(.scrolled) .lang-toggle button {
  color: #3a3a3a;
}
.nav:not(.scrolled) .lang-toggle button.active {
  color: var(--accent-dark);
  border-bottom-color: var(--accent-dark);
}
.nav:not(.scrolled) .lang-toggle span {
  color: #5a5a5a;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.nav__link:hover { color: var(--accent); }
.nav__link:hover::after { width: 100%; }

.nav__link--cta {
  color: var(--accent);
  border: 1px solid var(--accent-dark);
  padding: 8px 20px;
  transition: background 0.3s, color 0.3s;
}
.nav__link--cta:hover {
  background: var(--accent);
  color: var(--bg-primary);
}
.nav__link--cta::after { display: none; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

/* ── Lang toggle ── */
.lang-toggle {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--text-secondary);
  display: flex;
  gap: 6px;
  align-items: center;
}
.lang-toggle span { color: var(--text-muted); }
.lang-toggle button {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 2px 4px;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  transition: color 0.2s;
}
.lang-toggle button.active {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
}
.lang-toggle button:hover { color: var(--accent-warm); }
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text-primary);
  transition: 0.3s;
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.7) contrast(1.1);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.15) 0%,
    rgba(10,10,10,0.3) 40%,
    rgba(10,10,10,0.85) 75%,
    rgba(10,10,10,0.97) 100%
  );
}
.hero__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px;
  opacity: 0.5;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter) clamp(60px, 8vw, 110px);
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
}

.hero__eyebrow {
  font-family: var(--font-ui);
  font-size: 1.05rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 20px;
  margin-bottom: 0;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
}

.hero__name {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 10rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.02em;
  display: block;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}
.hero__name-first {
  display: block;
  color: var(--text-primary);
}
.hero__name-last {
  display: block;
  color: var(--text-primary);
}

.hero__divider {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin: 28px 0;
  opacity: 0;
  animation: fadeUp 0.8s ease 1s forwards;
}

.hero__tagline {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 520px;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.2s forwards;
}
.hero__tagline em {
  font-style: italic;
  color: var(--text-primary);
}

.hero__cta {
  display: inline-block;
  margin-top: 36px;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bg-primary);
  background: var(--accent);
  padding: 14px 36px;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.4s forwards;
  transition: background 0.3s, transform 0.3s;
}
.hero__cta:hover {
  background: var(--accent-warm);
  transform: translateY(-2px);
}

.hero__scroll-hint {
  position: absolute;
  bottom: 40px;
  right: var(--gutter);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s ease 2s forwards;
}
.hero__scroll-hint span {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #aaa;
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* ── SECTIONS ── */
.section {
  padding: var(--section-pad) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.section--alt {
  max-width: none;
  background: var(--bg-secondary);
  padding-left: calc(50vw - var(--container)/2 + var(--gutter));
  padding-right: calc(50vw - var(--container)/2 + var(--gutter));
}
@media (max-width: 1280px) {
  .section--alt {
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }
}

.section__header {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 60px;
}
.section__number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1;
  flex-shrink: 0;
}
.section__title-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.section__badge {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(200, 169, 110, 0.1);
  border: 1px solid var(--accent-dark);
  padding: 4px 12px;
  display: inline-block;
  width: fit-content;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
}
.section__desc {
  font-size: 1.35rem;
  color: var(--text-secondary);
  max-width: none;
  white-space: nowrap;
  margin-bottom: 40px;
  font-style: italic;
}

/* ── VIDEO GRID ── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.video-grid--single {
  grid-template-columns: minmax(280px, 600px);
}

.video-card {
  position: relative;
  background: var(--bg-card);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}
.video-card:hover { border-color: var(--accent-dark); }

.video-card__thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #1a1714;
}
.video-card__thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.video-card:hover .video-card__thumb video {
  transform: scale(1.04);
}

.video-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.35);
  transition: background 0.3s;
}
.video-card:hover .video-card__play {
  background: rgba(10, 10, 10, 0.2);
}
.video-card__play svg {
  width: 52px;
  height: 52px;
  color: var(--accent);
  transition: transform 0.3s, color 0.3s;
  filter: drop-shadow(0 0 20px rgba(200, 169, 110, 0.4));
}
.video-card:hover .video-card__play svg {
  transform: scale(1.12);
  color: var(--accent-warm);
}

.video-card__info {
  padding: 14px 18px;
  border-top: 1px solid var(--border);
}
.video-card__label {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── VIDEO CARD LARGE ── */
.video-card--large .video-card__thumb {
  aspect-ratio: 16/9;
}
.video-card--large .video-card__play svg {
  width: 72px;
  height: 72px;
}

/* ── SUPERMERCADO LAYOUT ── */
.supermercado-youtube {
  max-width: 900px;
  margin: 0 auto 32px;
}
.supermercado-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.supermercado-photos .photo-card {
  aspect-ratio: 4/3;
}

/* ── YOUTUBE EMBED ── */
.youtube-embed {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  border: 1px solid var(--border);
}
.youtube-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── PHOTO CARD (supermercado gallery) ── */
.photo-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.3s;
  flex: 1;
  min-height: 0;
}
.photo-card:hover { border-color: var(--accent-dark); }
.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.photo-card:hover img { transform: scale(1.04); }
.photo-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0);
  color: var(--accent);
  opacity: 0;
  transition: background 0.3s, opacity 0.3s;
}
.photo-card:hover .photo-card__overlay {
  background: rgba(10, 10, 10, 0.45);
  opacity: 1;
}

/* Series sub-grid within supermercado */
.supermercado-series {
  margin-top: 40px;
}
.supermercado-series__label {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
  padding-left: 2px;
}

/* ── VOICEOVER ── */
.waveform-decor {
  margin-bottom: 40px;
  opacity: 0.6;
  height: 60px;
}
.waveform-decor svg { width: 100%; height: 100%; }

.voiceover-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.audio-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
}
.audio-card:hover {
  border-color: var(--accent-dark);
  background: #161310;
}
.audio-card__icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
}
.audio-card__icon svg {
  width: 100%;
  height: 100%;
}
.audio-card__label {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.audio-card__play {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-dark);
  padding: 8px 16px;
  transition: background 0.3s, color 0.3s;
}
.audio-card__play:hover {
  background: var(--accent);
  color: var(--bg-primary);
}

/* ── SOBRE LUKY ── */
.sobre {
  background: var(--bg-primary);
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}
.sobre__content {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--section-pad) var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.sobre__left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.sobre__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag {
  font-family: var(--font-ui);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-dark);
  padding: 6px 14px;
  background: rgba(200, 169, 110, 0.05);
}

.sobre__right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sobre__bio {
  font-size: 1.35rem;
  line-height: 1.9;
  color: var(--text-secondary);
  font-style: italic;
}
.sobre__quote {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-style: italic;
  color: var(--text-primary);
  border-left: 2px solid var(--accent);
  padding-left: 24px;
  line-height: 1.8;
  margin: 8px 0;
}
.sobre__quote em { color: var(--accent-warm); }
.sobre__disciplines {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #aaa;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* ── CONTACTO ── */
.contacto {
  max-width: none;
  background: var(--bg-secondary);
  text-align: center;
  padding: var(--section-pad) var(--gutter);
}
.contacto__content {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.contacto__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 700;
  font-style: italic;
  color: var(--text-primary);
}
.contacto__sub {
  font-family: var(--font-body);
  font-size: 1.35rem;
  color: var(--text-secondary);
  font-style: italic;
  letter-spacing: 0.05em;
}
.contacto__cta {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bg-primary);
  background: var(--accent);
  padding: 18px 52px;
  transition: background 0.3s, transform 0.3s;
}
.contacto__cta:hover {
  background: var(--accent-warm);
  transform: translateY(-2px);
}
.social-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 8px;
}
.social-link svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
  transition: color 0.3s, transform 0.3s;
}
.social-link:hover svg {
  color: var(--accent-warm);
  transform: translateY(-3px);
}

/* ── FOOTER ── */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px var(--gutter);
  border-top: 1px solid var(--border);
  font-family: var(--font-ui);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.active {
  opacity: 1;
  pointer-events: all;
}
.lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.93);
}
.lightbox__container {
  position: relative;
  z-index: 1;
  width: min(90vw, 1100px);
}
.lightbox__close {
  position: absolute;
  top: -44px;
  right: 0;
  font-family: var(--font-ui);
  font-size: 1rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.lightbox__close:hover { color: var(--accent); }
.lightbox__video {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
}
.lightbox__image {
  width: 100%;
  max-height: 85vh;
  object-fit: contain;
  display: block;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── DYNAMIC POSTS (Supabase) ── */
.dynamic-posts-container { margin-bottom: 40px; }
.dynamic-posts-container:empty { display: none; }
.dynamic-post {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.dynamic-post:last-child { border-bottom: none; padding-bottom: 0; }
.dynamic-post__text {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 20px;
  font-style: italic;
}
.dynamic-post__img {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: block;
  border: 1px solid var(--border);
}
.dynamic-post .video-card { max-width: 600px; }
.dynamic-post__embed {
  position: relative;
  aspect-ratio: 16/9;
  max-width: 900px;
  background: #000;
  border: 1px solid var(--border);
  margin-top: 16px;
}
.dynamic-post__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.dynamic-post__link {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bg-primary);
  background: var(--accent);
  padding: 10px 24px;
  transition: background 0.3s;
}
.dynamic-post__link:hover { background: var(--accent-warm); }

/* ── RESPONSIVE ── */

/* Desktop (≥1024px): menú horizontal */
@media (min-width: 1024px) {
  .nav__links {
    display: flex !important;
    position: static;
    flex-direction: row;
    height: auto;
    width: auto;
    background: none;
    padding: 0;
    gap: 16px;
    flex-wrap: nowrap;
    overflow: visible;
    backdrop-filter: none;
  }
  .nav__hamburger { display: none !important; }
  .nav__link {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    white-space: nowrap;
  }
}

/* Tablet (768px–1023px): menú horizontal compacto */
@media (min-width: 768px) and (max-width: 1023px) {
  .nav__links {
    display: flex !important;
    position: static;
    flex-direction: row;
    height: auto;
    width: auto;
    background: none;
    padding: 0;
    gap: 10px;
    flex-wrap: nowrap;
    overflow: visible;
    backdrop-filter: none;
  }
  .nav__hamburger { display: none !important; }
  .nav__link {
    font-size: 0.65rem !important;
    letter-spacing: 0.12em !important;
    white-space: nowrap;
  }
  .nav__link--cta { padding: 6px 12px !important; }
}

/* Mobile (<768px): hamburger panel */
@media (max-width: 767px) {
  .nav__links {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: auto;
    min-width: 220px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.97);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 100px 40px 40px;
    gap: 28px;
    z-index: 9998;
    list-style: none;
    backdrop-filter: blur(12px);
  }
  .nav__links.open { display: flex !important; }
  .nav__link {
    font-size: 0.95rem !important;
    color: var(--text-primary) !important;
  }
  .nav__link--cta {
    color: var(--accent) !important;
    border-color: var(--accent-dark) !important;
  }
  .nav__hamburger {
    display: flex !important;
    position: relative;
    z-index: 9999;
  }
}

/* Mobile: hero image + grid fixes */
@media (max-width: 767px) {
  .hero {
    overflow: hidden;
    width: 100vw;
  }
  .hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
  .supermercado-grid { grid-template-columns: 1fr; }
  .sobre__content { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr 1fr; }
  .voiceover-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .video-grid { grid-template-columns: 1fr; }
  .voiceover-grid { grid-template-columns: 1fr 1fr; }
  .supermercado-photos { grid-template-columns: 1fr; }
  .footer { flex-direction: column; gap: 8px; text-align: center; }
  .section__desc { white-space: normal; }
}
