/* ============================================
   WOONDERS TATTOO EXPERIENCE
   Cosmic Luxury Landing Page
   ============================================ */

/* --- CSS Variables --- */
:root {
  --bg-void: #05040a;
  --bg-deep: #0a0812;
  --bg-section: #0d0b16;
  --bg-card: #13101f;
  --bg-card-hover: #1a1530;

  --gold: #c9a96e;
  --gold-light: #e8d5a3;
  --gold-bright: #d4af37;
  --gold-muted: #8b7335;
  --gold-glow: rgba(201, 169, 110, 0.25);

  --cream: #faf0d7;
  --cream-soft: #f5e6c8;
  --white: #f0ebe3;
  --white-muted: rgba(240, 235, 227, 0.7);
  --white-dim: rgba(240, 235, 227, 0.4);

  --purple-deep: #1a0e2e;
  --purple-glow: rgba(120, 40, 200, 0.15);
  --magenta-glow: rgba(180, 50, 160, 0.1);

  --font-display: 'Cinzel Decorative', serif;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-height: 80px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  background: var(--bg-void);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

/* --- Cosmic Canvas --- */
#cosmos {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* --- Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}

.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}

.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* --- Real images inside frames --- */
.frame-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.02);
  transition: transform 0.8s var(--ease-out-expo), filter 0.4s ease;
}

.evento-card__img .frame-img {
  border-radius: 8px 8px 0 0;
}

.portfolio__item:hover .frame-img {
  transform: scale(1.06);
  filter: saturate(1.15) contrast(1.05);
}

.estudio__main-frame:hover .frame-img,
.estudio__gallery-item:hover .frame-img,
.historia__photo:hover .frame-img {
  transform: scale(1.04);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

.nav.is-scrolled {
  background: rgba(5, 4, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(201, 169, 110, 0.1);
}

.nav__container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  z-index: 1001;
}

.nav__logo-img {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.nav__logo:hover .nav__logo-img {
  transform: scale(1.05);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__link {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-muted);
  transition: color 0.3s ease;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out-expo);
}

.nav__link:hover {
  color: var(--gold-light);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link--cta {
  padding: 10px 22px;
  border: 1px solid var(--gold-muted);
  color: var(--gold-light);
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav__link--cta::after {
  display: none;
}

.nav__link--cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-void);
}

/* Mobile Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold-light);
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav__toggle.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.nav__toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 40px 80px;
  overflow: hidden;
}

.hero__nebula {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(120, 40, 200, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 30% 60%, rgba(180, 50, 160, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 70% 55% at 70% 30%, rgba(100, 60, 220, 0.1) 0%, transparent 65%),
    radial-gradient(circle at 50% 50%, rgba(201, 169, 110, 0.03) 0%, transparent 50%);
  animation: nebulaShift 20s ease-in-out infinite alternate;
  z-index: 1;
}

@keyframes nebulaShift {
  0% { opacity: 0.8; transform: scale(1) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.05) rotate(1deg); }
  100% { opacity: 0.9; transform: scale(1.02) rotate(-0.5deg); }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 920px;
}

.hero__badge {
  display: inline-block;
  margin-bottom: 16px;
}

.hero__logo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 0 40px rgba(201, 169, 110, 0.35));
  animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero__eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 24px;
}

.hero__title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--white-muted);
  letter-spacing: 0.03em;
  line-height: 1.7;
  margin-bottom: 56px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Dual CTA */
.hero__dual-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 760px;
  margin: 0 auto 64px;
}

.cta-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  border: 1px solid rgba(201, 169, 110, 0.22);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.06), rgba(201, 169, 110, 0.02));
  text-align: left;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 0%, rgba(201, 169, 110, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cta-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(201, 169, 110, 0.18);
}

.cta-card:hover::before {
  opacity: 1;
}

.cta-card--event {
  background: linear-gradient(135deg, rgba(120, 40, 200, 0.1), rgba(201, 169, 110, 0.04));
  border-color: rgba(150, 80, 220, 0.22);
}

.cta-card--event::before {
  background: radial-gradient(ellipse at 100% 100%, rgba(150, 80, 220, 0.18), transparent 60%);
}

.cta-card--event:hover {
  border-color: rgba(180, 100, 240, 0.5);
  box-shadow: 0 16px 50px rgba(150, 80, 220, 0.2);
}

.cta-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(201, 169, 110, 0.1);
  color: var(--gold);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.cta-card__icon svg {
  width: 24px;
  height: 24px;
}

.cta-card--event .cta-card__icon {
  background: rgba(150, 80, 220, 0.12);
  color: var(--gold-light);
}

.cta-card__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
  z-index: 1;
}

.cta-card__label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-dim);
}

.cta-card__text strong {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
}

.cta-card__arrow {
  width: 20px;
  height: 20px;
  color: var(--gold);
  transition: transform 0.3s var(--ease-out-expo);
  position: relative;
  z-index: 1;
}

.cta-card:hover .cta-card__arrow {
  transform: translateX(4px);
}

/* Scroll Indicator */
.hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

.hero__scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-muted);
}

/* --- Sections Common --- */
.section {
  position: relative;
  padding: 120px 40px;
  z-index: 1;
  overflow: hidden;
}

.section__glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.section__glow--left {
  left: -200px;
  top: 10%;
  background: radial-gradient(circle, var(--purple-glow) 0%, transparent 70%);
}

.section__glow--right {
  right: -200px;
  top: 20%;
  background: radial-gradient(circle, var(--magenta-glow) 0%, transparent 70%);
}

.section__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  position: relative;
  padding-left: 40px;
}

.section__label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 1px;
  background: var(--gold-muted);
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 24px;
}

.section__title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section__title--center {
  text-align: center;
}

.section__text {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--white-muted);
  max-width: 580px;
  margin-bottom: 40px;
}

.section__text--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg-void);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-light));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 169, 110, 0.3);
}

.btn:hover::before {
  opacity: 1;
}

.btn span,
.btn svg {
  position: relative;
  z-index: 1;
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s var(--ease-out-expo);
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn--gold {
  /* alias of base .btn */
}

/* --- Nossa História Section --- */
.historia {
  background:
    linear-gradient(180deg, var(--bg-void) 0%, var(--bg-deep) 50%, var(--bg-section) 100%);
}

.historia__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.historia__photos {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 560px;
}

.historia__photo {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, 0.18);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.historia__photo--main {
  grid-column: 1 / -1;
  grid-row: 1 / 3;
}

.historia__photo--small {
  display: none; /* default hide on lg, kept for future composition */
}

.historia__content {
  position: relative;
  z-index: 1;
}

.historia__text {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 12px;
}

.historia__text p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--white-muted);
}

.historia__text p strong {
  color: var(--cream);
  font-weight: 500;
}

.historia__text p em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400;
}

.historia__closing {
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid rgba(201, 169, 110, 0.12);
  font-size: 1.05rem !important;
  color: var(--cream-soft) !important;
}

/* --- Estúdio Section --- */
.estudio {
  background:
    linear-gradient(180deg, var(--bg-section) 0%, var(--bg-deep) 100%);
}

.estudio__container {
  max-width: 1200px;
  margin: 0 auto;
}

.estudio__header {
  text-align: center;
  margin-bottom: 56px;
}

.estudio__hero-image {
  margin: 0 auto 64px;
  max-width: 980px;
}

.estudio__main-frame {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, 0.2);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5), 0 0 60px rgba(201, 169, 110, 0.08);
}

.estudio__main-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(5, 4, 10, 0.4) 100%);
  pointer-events: none;
}

.estudio__main-frame .frame-img {
  object-position: center 40%;
}

.estudio__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}

.estudio__feature {
  padding: 28px 22px;
  border: 1px solid rgba(201, 169, 110, 0.1);
  border-radius: 10px;
  background: rgba(201, 169, 110, 0.025);
  transition: all 0.4s ease;
}

.estudio__feature:hover {
  border-color: rgba(201, 169, 110, 0.28);
  background: rgba(201, 169, 110, 0.05);
  transform: translateY(-4px);
}

.estudio__feature-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  color: var(--gold);
}

.estudio__feature-icon svg {
  width: 100%;
  height: 100%;
}

.estudio__feature h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
  line-height: 1.3;
}

.estudio__feature p {
  font-size: 0.85rem;
  color: var(--white-dim);
  line-height: 1.6;
}

.estudio__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 64px;
}

.estudio__gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, 0.1);
  cursor: pointer;
  transition: all 0.4s ease;
}

.estudio__gallery-item:hover {
  border-color: rgba(201, 169, 110, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.estudio__gallery-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  padding: 6px 14px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(5, 4, 10, 0.78);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  border: 1px solid rgba(201, 169, 110, 0.25);
  z-index: 2;
}

.estudio__cta-block,
.eventos__cta-block {
  text-align: center;
  padding: 32px 24px;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  margin-top: 24px;
}

.estudio__cta-text,
.eventos__cta-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--cream-soft);
  margin-bottom: 24px;
}

/* --- Eventos Section --- */
.eventos {
  background:
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-section) 50%, var(--bg-deep) 100%);
}

.eventos__container {
  max-width: 1200px;
  margin: 0 auto;
}

.eventos__header {
  margin-bottom: 64px;
}

.eventos__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 24px;
}

.evento-card {
  padding: 48px 32px;
  text-align: center;
  border: 1px solid rgba(201, 169, 110, 0.1);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(201, 169, 110, 0.03) 0%, rgba(201, 169, 110, 0.01) 100%);
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.evento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.evento-card:hover {
  border-color: rgba(201, 169, 110, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px var(--gold-glow);
}

.evento-card:hover::before {
  opacity: 1;
}

.evento-card--featured {
  border-color: rgba(201, 169, 110, 0.3);
  background: linear-gradient(180deg, rgba(201, 169, 110, 0.06) 0%, rgba(201, 169, 110, 0.02) 100%);
}

.evento-card__img {
  height: 200px;
  margin: -48px -32px 24px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  position: relative;
}

.evento-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  color: var(--gold);
}

.evento-card__icon svg {
  width: 100%;
  height: 100%;
}

.evento-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
}

.evento-card p {
  font-size: 0.9rem;
  color: var(--white-dim);
  line-height: 1.6;
}

.evento-card:nth-child(1) .frame-img { object-position: center 40%; }
.evento-card:nth-child(2) .frame-img { object-position: center 70%; }
.evento-card:nth-child(3) .frame-img { object-position: center 42%; }

/* --- Showreel Section --- */
.showreel {
  background:
    radial-gradient(ellipse at top, rgba(120, 40, 200, 0.08) 0%, transparent 60%),
    var(--bg-deep);
}

.showreel__container {
  max-width: 1100px;
  margin: 0 auto;
}

.showreel__header {
  text-align: center;
  margin-bottom: 56px;
}

.showreel__player {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, 0.22);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.55),
    0 0 60px rgba(201, 169, 110, 0.12),
    0 0 0 1px rgba(201, 169, 110, 0.08) inset;
  background: var(--bg-void);
}

.showreel__video {
  width: 100%;
  display: block;
  aspect-ratio: 9/16;
  object-fit: cover;
  background: var(--bg-void);
}

.showreel__player-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, var(--gold-glow) 0%, transparent 70%);
  z-index: -1;
  filter: blur(40px);
  opacity: 0.5;
  pointer-events: none;
}

/* Intro video block (top of page, right after hero) */
.intro-reel {
  padding-top: 60px;
  padding-bottom: 60px;
  background:
    radial-gradient(ellipse at top left, rgba(120, 40, 200, 0.08) 0%, transparent 60%),
    var(--bg-deep);
}

.intro-reel__container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: center;
}

.intro-reel__text {
  max-width: 460px;
}

.intro-reel__text .section__title {
  margin: 18px 0 24px;
}

.intro-reel__player {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, 0.22);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.55),
    0 0 60px rgba(201, 169, 110, 0.12),
    0 0 0 1px rgba(201, 169, 110, 0.08) inset;
  background: var(--bg-void);
}

.intro-reel__video {
  width: 100%;
  display: block;
  aspect-ratio: 9/16;
  object-fit: cover;
  background: var(--bg-void);
}

@media (max-width: 860px) {
  .intro-reel__container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .intro-reel__text {
    max-width: 100%;
  }

  .intro-reel__player {
    max-width: 320px;
  }
}

/* --- Portfolio Section --- */
.portfolio {
  background:
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-section) 100%);
}

.portfolio__container {
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio__header {
  text-align: center;
  margin-bottom: 48px;
}

.portfolio__filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.portfolio__filter {
  padding: 10px 24px;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dim);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 4px;
  transition: all 0.3s ease;
  font-family: var(--font-body);
}

.portfolio__filter:hover {
  color: var(--gold-light);
  border-color: var(--gold-muted);
}

.portfolio__filter.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-void);
  font-weight: 500;
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}

.portfolio__item {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, 0.08);
  cursor: pointer;
  transition: all 0.5s var(--ease-out-expo);
  background: var(--bg-card);
}

.portfolio__item--tall {
  grid-row: span 2;
}

.portfolio__item--wide {
  grid-column: span 2;
}

.portfolio__img {
  position: absolute;
  inset: 0;
}

.portfolio__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5, 4, 10, 0.9) 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.portfolio__item:hover {
  transform: scale(1.02);
  border-color: rgba(201, 169, 110, 0.3);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.portfolio__item:hover .portfolio__overlay {
  opacity: 1;
}

.portfolio__category {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.portfolio__item.is-hidden {
  display: none;
}

/* Portfolio image framing — keep faces and tattoos in view */
.portfolio__item[data-category="estudio"]:nth-child(1) .frame-img { object-position: center 28%; }
.portfolio__item[data-category="estudio"] .frame-img { object-position: center center; }
.portfolio__item[data-category="eventos"] .frame-img { object-position: center 35%; }

/* --- Diferenciais Section --- */
.diferenciais {
  background: var(--bg-deep);
}

.diferenciais__container {
  max-width: 1100px;
  margin: 0 auto;
}

.diferenciais__header {
  margin-bottom: 64px;
  text-align: center;
}

.diferenciais__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.diferencial {
  display: flex;
  gap: 24px;
  padding: 40px 36px;
  background: rgba(201, 169, 110, 0.02);
  border: 1px solid rgba(201, 169, 110, 0.06);
  transition: all 0.4s ease;
}

.diferencial:hover {
  background: rgba(201, 169, 110, 0.05);
  border-color: rgba(201, 169, 110, 0.15);
}

.diferencial__number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold-muted);
  opacity: 0.4;
  line-height: 1;
  flex-shrink: 0;
}

.diferencial h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
}

.diferencial p {
  font-size: 0.88rem;
  color: var(--white-dim);
  line-height: 1.7;
}

/* --- Processo (Como funciona) Section --- */
.processo {
  background: var(--bg-section);
}

.processo__container {
  max-width: 1100px;
  margin: 0 auto;
}

.processo__header {
  text-align: center;
  margin-bottom: 64px;
}

.processo__tracks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.processo__track {
  padding: 36px 32px;
  border: 1px solid rgba(201, 169, 110, 0.12);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(201, 169, 110, 0.04), rgba(201, 169, 110, 0.01));
  transition: all 0.4s ease;
}

.processo__track:hover {
  border-color: rgba(201, 169, 110, 0.28);
  background: linear-gradient(180deg, rgba(201, 169, 110, 0.06), rgba(201, 169, 110, 0.02));
}

.processo__track-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.12);
  margin-bottom: 24px;
}

.processo__track-header svg {
  width: 32px;
  height: 32px;
  color: var(--gold);
  flex-shrink: 0;
}

.processo__track-header h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
  font-style: italic;
}

.processo__steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.processo__steps-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.processo__steps-list li span {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--gold-muted);
  background: rgba(201, 169, 110, 0.06);
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--gold);
}

.processo__steps-list li strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 4px;
}

.processo__steps-list li p {
  font-size: 0.85rem;
  color: var(--white-dim);
  line-height: 1.55;
}

/* --- Contato Section --- */
.contato {
  position: relative;
  text-align: center;
  padding: 140px 40px;
  overflow: hidden;
}

.contato__nebula {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 50%, rgba(120, 40, 200, 0.1) 0%, transparent 70%),
    radial-gradient(ellipse 60% 60% at 30% 50%, rgba(201, 169, 110, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(180, 50, 160, 0.06) 0%, transparent 60%);
  z-index: 0;
}

.contato__container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.contato__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 20px;
}

.contato__title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contato__text {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--white-muted);
  margin-bottom: 56px;
}

.contato__paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.path-card {
  padding: 40px 32px;
  border: 1px solid rgba(201, 169, 110, 0.18);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(201, 169, 110, 0.05), rgba(201, 169, 110, 0.01));
  text-align: left;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.path-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 0%, rgba(201, 169, 110, 0.12), transparent 65%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.path-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(201, 169, 110, 0.2);
}

.path-card:hover::before {
  opacity: 1;
}

.path-card--accent {
  background: linear-gradient(180deg, rgba(150, 80, 220, 0.08), rgba(201, 169, 110, 0.02));
  border-color: rgba(150, 80, 220, 0.22);
}

.path-card--accent::before {
  background: radial-gradient(ellipse at 100% 100%, rgba(180, 100, 240, 0.18), transparent 65%);
}

.path-card--accent:hover {
  border-color: rgba(180, 100, 240, 0.55);
  box-shadow: 0 18px 50px rgba(150, 80, 220, 0.25);
}

.path-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(201, 169, 110, 0.1);
  color: var(--gold);
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.path-card--accent .path-card__icon {
  background: rgba(150, 80, 220, 0.14);
  color: var(--gold-light);
}

.path-card__icon svg {
  width: 30px;
  height: 30px;
}

.path-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.path-card p {
  font-size: 0.95rem;
  color: var(--white-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.path-card__action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  position: relative;
  z-index: 1;
}

.path-card__action svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease-out-expo);
}

.path-card:hover .path-card__action svg {
  transform: translateX(4px);
}

.contato__address {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--white-dim);
  margin-bottom: 20px;
}

.contato__address svg {
  flex-shrink: 0;
  color: var(--gold-muted);
}

.contato__instagram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--gold-light);
  transition: all 0.3s ease;
}

.contato__instagram:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.08);
}

.contato__instagram svg {
  width: 16px;
  height: 16px;
}

/* --- Footer --- */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  padding: 60px 40px 40px;
  background: var(--bg-void);
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.footer__brand {
  text-align: center;
}

.footer__logo-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
  display: block;
}

.footer__tagline {
  font-size: 0.85rem;
  color: var(--white-dim);
  margin-top: 12px;
  font-style: italic;
  font-family: var(--font-heading);
}

.footer__address {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--white-dim);
  opacity: 0.6;
}

.footer__address svg {
  flex-shrink: 0;
  color: var(--gold-muted);
}

.footer__links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__links a {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: var(--gold-light);
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-muted);
  transition: all 0.3s ease;
}

.footer__social a svg {
  width: 18px;
  height: 18px;
}

.footer__social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 169, 110, 0.08);
}

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(201, 169, 110, 0.06);
  width: 100%;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.75rem;
  color: var(--white-dim);
  opacity: 0.5;
}

/* --- WhatsApp Floating Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  color: #fff;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float__pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: whatsappPulse 2s ease-out infinite;
}

@keyframes whatsappPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(5, 4, 10, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 64px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out-expo);
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}

.lightbox__img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7), 0 0 60px rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.18);
  transform: scale(0.96);
  transition: transform 0.4s var(--ease-out-expo);
  background: var(--bg-deep);
}

.lightbox.is-open .lightbox__img {
  transform: scale(1);
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.3);
  color: var(--gold-light);
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lightbox__close svg,
.lightbox__nav svg {
  width: 22px;
  height: 22px;
}

.lightbox__close:hover,
.lightbox__nav:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-void);
  transform: scale(1.05);
}

.lightbox__close {
  top: 24px;
  right: 24px;
}

.lightbox__nav--prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__nav--next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__nav--prev:hover,
.lightbox__nav--next:hover {
  transform: translateY(-50%) scale(1.05);
}

.lightbox__caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 18px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(5, 4, 10, 0.6);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  white-space: nowrap;
  max-width: calc(100vw - 48px);
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Make any image-bearing element clickable as lightbox trigger */
.lightbox-trigger {
  cursor: zoom-in;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
  .historia__container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .historia__photos {
    max-width: 540px;
    margin: 0 auto;
    height: 460px;
  }

  .estudio__features {
    grid-template-columns: repeat(2, 1fr);
  }

  .estudio__gallery {
    grid-template-columns: 1fr 1fr;
  }

  .estudio__gallery-item:nth-child(3) {
    grid-column: 1 / -1;
    max-height: 320px;
  }

  .eventos__cards {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto 24px;
  }

  .diferenciais__grid {
    grid-template-columns: 1fr;
  }

  .processo__tracks {
    grid-template-columns: 1fr;
  }

  .portfolio__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
  }

  .portfolio__item--tall {
    grid-row: span 1;
  }

  .portfolio__item--wide {
    grid-column: span 1;
  }

  .hero__dual-cta {
    grid-template-columns: 1fr;
    max-width: 460px;
  }

  .contato__paths {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .section {
    padding: 80px 24px;
  }

  .hero {
    padding: 100px 24px 60px;
  }

  .hero__logo {
    width: 160px;
    height: 160px;
  }

  .hero__subtitle {
    margin-bottom: 36px;
  }

  .nav__container {
    padding: 0 24px;
  }

  .nav__logo-img {
    height: 56px;
    width: 56px;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 4, 10, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 1000;
  }

  .nav__menu.is-open {
    opacity: 1;
    pointer-events: all;
  }

  .nav__menu .nav__link {
    font-size: 1rem;
    letter-spacing: 0.15em;
  }

  .historia__photos {
    display: block;
    height: auto;
    width: 100%;
  }

  .historia__photo {
    width: 100%;
  }

  .historia__photo--main {
    aspect-ratio: 4/5;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    height: auto;
  }

  .estudio__features {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .estudio__gallery {
    grid-template-columns: 1fr;
  }

  .estudio__gallery-item {
    aspect-ratio: 16/10;
  }

  .estudio__gallery-item:nth-child(3) {
    grid-column: 1;
    max-height: none;
  }

  .estudio__main-frame {
    aspect-ratio: 4/3;
  }

  .processo__tracks {
    gap: 20px;
  }

  .processo__track {
    padding: 28px 22px;
  }

  .portfolio__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .portfolio__filters {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .contato {
    padding: 100px 24px;
  }

  .btn {
    width: 100%;
    max-width: 360px;
    justify-content: center;
  }

  .footer {
    padding: 40px 24px 30px;
  }

  .footer__links {
    gap: 20px;
  }

  .cta-card {
    padding: 18px 18px;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
  }

  .cta-card__icon {
    width: 40px;
    height: 40px;
  }

  .cta-card__text strong {
    font-size: 1rem;
  }

  .estudio__cta-text,
  .eventos__cta-text {
    font-size: 1.15rem;
  }

  .lightbox {
    padding: 64px 16px 80px;
  }

  .lightbox__close {
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
  }

  .lightbox__nav {
    width: 42px;
    height: 42px;
  }

  .lightbox__nav--prev { left: 12px; }
  .lightbox__nav--next { right: 12px; }

  .lightbox__caption {
    bottom: 16px;
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2.2rem;
  }

  .section__title {
    font-size: 1.8rem;
  }

  .contato__title {
    font-size: 1.8rem;
  }

  .historia__photos {
    aspect-ratio: 4/5;
  }

  .path-card {
    padding: 32px 24px;
  }

  .path-card h3 {
    font-size: 1.25rem;
  }
}
