/* ============================================================
   LEITADAS STUDIO — Premium Gold Theme
   Paleta: #080705 | #C8940E → #F5D060 | #FFFFFF
   Mobile-First · Dourado Premium Activo
   ============================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:    #080705;
  --black-s:  #0f0d09;
  --black-m:  #181410;

  --gold-deep:  #7a4e00;
  --gold:       #C8940E;
  --gold-mid:   #E0AA28;
  --gold-l:     #F5D060;
  --gold-d:     #9a6a00;
  --gold-shine: #FFF0A0;

  --grad-gold: linear-gradient(135deg,
    #7a4e00 0%, #C8940E 25%, #F5D060 50%, #E0AA28 70%, #9a6a00 100%
  );
  --grad-gold-h: linear-gradient(90deg,
    #C8940E 0%, #F5D060 40%, #FFF0A0 55%, #F5D060 70%, #C8940E 100%
  );
  --grad-gold-v: linear-gradient(180deg,
    #F5D060 0%, #C8940E 50%, #7a4e00 100%
  );

  --white:    #FFFFFF;
  --gray:     #A89880;
  --gray-d:   #5A5040;

  --font-d: 'Cormorant Garamond', serif;
  --font-b: 'Montserrat', sans-serif;

  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);

  --glow-gold:    0 0 24px rgba(200,148,14,0.45), 0 0 60px rgba(200,148,14,0.18);
  --glow-gold-sm: 0 0 12px rgba(200,148,14,0.4);
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-b);
  font-weight: 300;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-thumb { background: var(--grad-gold-h); }

/* ── NAVBAR ── */
.navbar {

position: fixed;
top: 0; left: 0; right: 0;
z-index: 1000;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0.75rem 1.5rem;
background: #000;
border-bottom: 1px solid rgba(255, 255, 255, 0.06);
transition: var(--transition);

}

.navbar.scrolled {
background: #000;
border-bottom: 1px solid rgba(255, 255, 255, 0.06);
padding: 0.75rem 1.5rem;
}
.nav-logo img {
  height: 72px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}
.navbar.scrolled .nav-logo img { height: 72px; }

.nav-links {
  display: none;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold-l); text-shadow: 0 0 8px rgba(245,208,96,0.45); }

.nav-cta {
  display: none;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--gold-mid);
  color: var(--gold-l);
  padding: 0.5rem 1.3rem;
  transition: var(--transition);
}
.nav-cta:hover { background: var(--grad-gold); color: var(--black); box-shadow: var(--glow-gold-sm); }

.nav-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--grad-gold-h);
  transition: var(--transition);
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 15, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-d);
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.nav-mobile a:hover { color: var(--gold-l); text-shadow: 0 0 12px rgba(245,208,96,0.45); }
.nav-mobile-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none;
  border: none;
  color: var(--gray);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ── HERO ── */
.hero {
  margin-top: 72px; /* Altura da sua navbar no mobile */
  height: calc(100svh - 72px); /* Ajusta a altura para não sobrar scroll */
  position: relative;
  overflow: hidden;
}

.hero-slides { position: absolute; inset: 0; }

.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1);
  
  background-size: cover;
  background-position: center 20%;
}
.hero-slide.active { opacity: 1; }

.hero-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(15, 15, 15, 0.80) 0%,
    rgba(15, 15, 15, 0.35) 55%,
    rgba(15, 15, 15, 0.65) 100%
  );
}

/* Background images */
.s-hero-c1 { background-image: url('images/hero-casamento-1.webp'); }
.s-hero-a1 { background-image: url('images/hero-aniversario-1.webp'); }
.s-hero-c2 { background-image: url('images/hero-casamento-2.webp'); }
.s-hero-r1 { background-image: url('images/hero-retrato-1.webp'); }
.s-hero-r2 { background-image: url('images/hero-retrato-2.webp'); }

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 1.5rem;
  max-width: 640px;
}

.hero-eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  background: var(--grad-gold-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  animation: fadeUp 1s 0.3s both;
}

.hero-title {
  font-family: var(--font-d);
  font-size: clamp(2.6rem, 10vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  animation: fadeUp 1s 0.5s both;
}
.hero-title em {
  font-style: italic;
  background: var(--grad-gold-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  margin-top: 1.2rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  line-height: 1.9;
  color: var(--gray);
  max-width: 340px;
  animation: fadeUp 1s 0.7s both;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 1s 0.9s both;
}

.btn-primary {
  background: var(--grad-gold);
  color: var(--black);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.85rem 2rem;
  transition: var(--transition);
  border: none;
  box-shadow: var(--glow-gold-sm);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,240,160,0.35) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.btn-primary:hover::after { transform: translateX(100%); }
.btn-primary:hover { box-shadow: var(--glow-gold); transform: translateY(-2px); }

.btn-outline {
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  transition: var(--transition);
}
.btn-outline:hover { border-color: var(--gold-l); color: var(--gold-l); text-shadow: 0 0 8px rgba(245,208,96,0.5); }

/* Hero dots */
.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 1.5rem;
  z-index: 3;
  display: flex;
  gap: 0.5rem;
}
.hero-dot {
  width: 24px; height: 2px;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.hero-dot.active { background: var(--grad-gold-h); width: 40px; box-shadow: var(--glow-gold-sm); }

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 2rem; right: 1.5rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray);
}
.scroll-line {
  width: 36px; height: 1px;
  background: var(--grad-gold-h);
  transform-origin: left;
  animation: pulse-line 2s 1.5s infinite;
  box-shadow: 0 0 6px rgba(200,148,14,0.6);
}

/* ── SECTION BASE ── */
.section { padding: 5rem 1.5rem; }

.section-eyebrow {
  font-size: 0.58rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  background: var(--grad-gold-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.7rem;
}
.section-title {
  font-family: var(--font-d);
  font-size: clamp(1.9rem, 6vw, 3.2rem);
  font-weight: 300;
  line-height: 1.1;
}
.section-title em {
  font-style: italic;
  background: var(--grad-gold-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gold-bar {
  width: 44px; height: 2px;
  background: var(--grad-gold-h);
  margin: 1.5rem 0;
  box-shadow: var(--glow-gold-sm);
}

/* ── ABOUT ── */
.about { background: var(--black-s); }

.about-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.about-img-wrap { position: relative; }

.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-img-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -0.5rem;
  background: var(--grad-gold);
  color: var(--black);
  padding: 1rem 1.2rem;
  text-align: center;
  box-shadow: var(--glow-gold);
}
.about-img-badge .big { font-family: var(--font-d); font-size: 2rem; font-weight: 400; line-height: 1; display: block; }
.about-img-badge .small { font-size: 0.55rem; letter-spacing: 0.2em; text-transform: uppercase; display: block; margin-top: 2px; }

.about-text { padding-top: 2rem; }
.about-text p { font-size: 0.82rem; line-height: 1.95; color: var(--gray); margin-bottom: 1rem; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(200, 148, 14, 0.25);
}
.stat-num {
  font-family: var(--font-d);
  font-size: 2rem;
  font-weight: 300;
  background: var(--grad-gold-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-lbl {
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-d);
  margin-top: 0.3rem;
}

/* ── SERVICES ── */
.services { background: var(--black); }

.services-header { margin-bottom: 2.5rem; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: linear-gradient(135deg, rgba(200,148,14,0.12), rgba(245,208,96,0.06));
}

.svc-card {
  background: var(--black);
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-d));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.svc-card:hover { background: var(--black-m); }
.svc-card:hover::after { transform: scaleX(1); }

.svc-icon { font-size: 1.6rem; margin-bottom: 1.2rem; }
.svc-num {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-family: var(--font-d);
  font-size: 3rem;
  color: rgba(200,148,14,0.07);
  line-height: 1;
}
.svc-name { font-family: var(--font-d); font-size: 1.4rem; margin-bottom: 0.6rem; }
.svc-desc { font-size: 0.75rem; line-height: 1.85; color: var(--gray); }

/* ── GALLERY / PORTFOLIO ── */
.gallery { background: var(--black-s); }
.gallery-header { margin-bottom: 2rem; }

/* Filter buttons */
.gallery-filters {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.filter-btn {
  font-family: var(--font-b);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: none;
  border: 1px solid rgba(200,148,14,0.25);
  color: var(--gray);
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover { border-color: var(--gold-mid); color: var(--gold-l); }
.filter-btn.active { background: var(--grad-gold); border-color: var(--gold-mid); color: var(--black); box-shadow: var(--glow-gold-sm); font-weight: 600; }

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
  background: var(--black-m);
}

.gallery-item.landscape { aspect-ratio: 4/3; }
.gallery-item.wide { grid-column: span 2; aspect-ratio: 16/9; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img { transform: scale(1.06); filter: brightness(1.05); }

.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(120,80,0,0.75) 0%, rgba(200,148,14,0.15) 55%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-label {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--grad-gold);
  padding: 0.3rem 0.7rem;
}

/* hidden filter */
.gallery-item[style*="none"] { display: none !important; }

/* ── PROCESS ── */
.process { background: var(--black); }

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
}

.process-step { display: flex; gap: 1.2rem; align-items: flex-start; }

.step-number {
  width: 3.2rem; height: 3.2rem;
  border: 1px solid transparent;
  border-radius: 50%;
  background: linear-gradient(var(--black), var(--black)) padding-box,
              var(--grad-gold) border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-d);
  font-size: 1.1rem;
  background-clip: padding-box, border-box;
  color: var(--gold-l);
  flex-shrink: 0;
  box-shadow: var(--glow-gold-sm);
}
.step-body h3 { font-family: var(--font-d); font-size: 1.2rem; margin-bottom: 0.4rem; }
.step-body p { font-size: 0.75rem; line-height: 1.85; color: var(--gray); }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--black-s); text-align: center; }

.testimonial-wrap { max-width: 640px; margin: 3rem auto 0; }

.testimonial-slide { display: none; }
.testimonial-slide.active { display: block; }

.t-quote-mark {
  font-family: var(--font-d);
  font-size: 5rem;
  background: var(--grad-gold-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 0.5;
  margin-bottom: 1.5rem;
  opacity: 0.7;
}

.t-text {
  font-family: var(--font-d);
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.t-author {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background: var(--grad-gold-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.t-nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.t-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(200,148,14,0.3);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
.t-dot.active { background: var(--grad-gold-h); box-shadow: var(--glow-gold-sm); }

/* ── CONTACT ── */
.contact { background: var(--black); }

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-info p {
  font-size: 0.8rem;
  line-height: 1.95;
  color: var(--gray);
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.contact-icon {
  width: 2.2rem; height: 2.2rem;
  border: 1px solid rgba(200,148,14,0.3); box-shadow: inset 0 0 8px rgba(200,148,14,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
}
.contact-detail strong {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--grad-gold-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.2rem;
  font-weight: 500;
}
.contact-detail span,
.contact-detail a {
  font-size: 0.82rem;
  color: var(--gray);
  transition: color 0.3s;
}
.contact-detail a:hover { color: var(--gold); }

.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: #fff;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.85rem 1.6rem;
  margin-top: 1rem;
  transition: var(--transition);
}
.wa-btn:hover { background: #1fbd5a; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }

.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--grad-gold-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--black-m);
  border: 1px solid rgba(200,148,14,0.2);
  color: var(--white);
  padding: 0.85rem 1rem;
  font-family: var(--font-b);
  font-size: 0.8rem;
  font-weight: 300;
  outline: none;
  width: 100%;
  transition: border-color 0.3s;
  resize: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold-mid); box-shadow: 0 0 0 2px rgba(200,148,14,0.12), var(--glow-gold-sm); }
.form-group select option { background: var(--black-m); }

.btn-submit {
  background: var(--grad-gold);
  color: var(--black);
  font-family: var(--font-b);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  border: none;
  padding: 1rem 2.5rem;
  cursor: pointer;
  transition: var(--transition);
  align-self: flex-start;
  box-shadow: var(--glow-gold-sm);
  position: relative;
  overflow: hidden;
}
.btn-submit::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,240,160,0.35), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.btn-submit:hover::after { transform: translateX(100%); }
.btn-submit:hover { box-shadow: var(--glow-gold); transform: translateY(-2px); }

/* ── DEV CREDIT ── */
.dev-credit {
  background: var(--black-m);
  padding: 1.8rem 1.5rem;
  border-top: 1px solid rgba(200,148,14,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.dev-avatar {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--grad-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-d);
  font-size: 1.1rem;
  color: var(--black);
  font-weight: 600;
  flex-shrink: 0;
}

.dev-info strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.dev-info span { font-size: 0.7rem; color: var(--gray); }
.dev-info a { font-size: 0.7rem; color: var(--gold); }

/* ── FOOTER ── */
footer {
  background: var(--black-s);
  padding: 2rem 1.5rem;
  border-top: 1px solid rgba(200,148,14,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-logo img {
  height: 38px;
  object-fit: contain;
  mix-blend-mode: screen;
}

.footer-copy {
  font-size: 0.62rem;
  color: rgba(160, 160, 160, 0.35);
  letter-spacing: 0.1em;
}

.footer-socials { display: flex; gap: 0.8rem; }
.social-btn {
  width: 2rem; height: 2rem;
  border: 1px solid rgba(200,148,14,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: var(--transition);
  font-size: 0.75rem;
}
.social-btn:hover { border-color: var(--gold-mid); color: var(--gold-l); box-shadow: var(--glow-gold-sm); }

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  z-index: 2000;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }

.lightbox-inner {
  position: relative;
  max-width: 92vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 92vw;
  max-height: 86vh;
  object-fit: contain;
  border: 1px solid rgba(200,148,14,0.2); box-shadow: var(--glow-gold);
}

.lightbox-close {
  position: absolute;
  top: -2.8rem; right: 0;
  background: none;
  border: none;
  color: var(--gray);
  font-size: 1.4rem;
  cursor: pointer;
  transition: color 0.3s;
}
.lightbox-close:hover { color: var(--gold-l); text-shadow: 0 0 8px rgba(245,208,96,0.6); }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(200,148,14,0.12);
  border: 1px solid rgba(200,148,14,0.3);
  color: var(--white);
  font-size: 1.2rem;
  width: 2.4rem; height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.lightbox-prev { left: -3rem; }
.lightbox-next { right: -3rem; }
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--grad-gold); color: var(--black); box-shadow: var(--glow-gold-sm); }

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s cubic-bezier(0.4,0,0.2,1),
              transform 0.75s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
@keyframes pulse-line {
  0%, 100% { transform: scaleX(1); opacity: 1; }
  50%       { transform: scaleX(1.5); opacity: 0.4; }
}

/* ── DESKTOP ── */
@media (min-width: 768px) {
  .navbar { padding: 0.75rem 3rem; }
  .navbar.scrolled { padding: 0.75rem 3rem; }
  .nav-links { display: flex; }
  .nav-cta { display: block; }
  .nav-burger { display: none; }
  .nav-logo img { height: 90px; }
  .navbar.scrolled .nav-logo img { height: 90px; }

  .hero-content { padding: 0 3rem; max-width: 720px; }
  .hero-dots { left: 3rem; }
  .scroll-hint { right: 3rem; }

  .section { padding: 7rem 3rem; }

  .about-grid { flex-direction: row; gap: 5rem; align-items: center; }
  .about-img-wrap { flex: 1; }
  .about-text { flex: 1; padding-top: 0; }

  .services-grid { grid-template-columns: repeat(3, 1fr); }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .gallery-item.wide { grid-column: span 2; }

  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }

  .contact-grid { flex-direction: row; gap: 5rem; }
  .contact-info { flex: 1; }
  .contact-form { flex: 1; }

  .dev-credit {
    flex-direction: row;
    text-align: left;
    padding: 1.5rem 3rem;
    justify-content: space-between;
  }
  .dev-credit-inner { display: flex; align-items: center; gap: 1rem; }

  footer {
    flex-direction: row;
    justify-content: space-between;
    padding: 2rem 3rem;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .process-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ── LOGO SEM FUNDO ── */
.nav-logo img,
.footer-logo img {
  background: transparent;
}

/* ── SERVICE CARDS COM IMAGEM ── */
.svc-card {
  background-size: cover !important;
  background-position: center !important;
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 !important;
  overflow: hidden;
}

.svc-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 8, 0, 0.92) 0%,
    rgba(10, 8, 0, 0.65) 50%,
    rgba(10, 8, 0, 0.25) 100%
  );
  transition: background 0.4s;
}
.svc-card:hover .svc-card-overlay {
  background: linear-gradient(
    to top,
    rgba(8, 5, 0, 0.97) 0%,
    rgba(200, 148, 14, 0.28) 55%,
    rgba(245, 208, 96, 0.06) 100%
  );
}

.svc-card-content {
  position: relative;
  z-index: 1;
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* reset antigo ::after do svc-card */
.svc-card::after { display: none !important; }

.svc-card .svc-num {
  font-family: var(--font-d);
  font-size: 2.5rem;
  color: rgba(200,148,14,0.15);
  line-height: 1;
  position: static;
  pointer-events: none;
  align-self: flex-end;
  margin-bottom: -0.8rem;
}

.svc-card .svc-name {
  font-family: var(--font-d);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.svc-card .svc-desc {
  font-size: 0.74rem;
  line-height: 1.75;
  color: rgba(220, 210, 190, 0.85);
  margin-bottom: 0.8rem;
}

/* Botão WhatsApp dentro de cada serviço */
.svc-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--grad-gold);
  color: var(--black);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.6rem 1.1rem;
  text-decoration: none;
  transition: box-shadow 0.3s, transform 0.2s;
  align-self: flex-start;
  border: none;
  box-shadow: var(--glow-gold-sm);
}
.svc-wa-btn:hover {
  background: #25D366;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 16px rgba(37,211,102,0.4);
}
/* ── DOURADO PREMIUM — EXTRAS ACTIVOS ── */

/* Shimmer animado no hero dot activo */
@keyframes shimmer-gold {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.hero-dot.active {
  background-size: 200% auto;
  animation: shimmer-gold 2.5s linear infinite;
}

/* Glow pulsante nos números do processo */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 8px rgba(200,148,14,0.3); }
  50%       { box-shadow: 0 0 20px rgba(245,208,96,0.55), 0 0 40px rgba(200,148,14,0.25); }
}
.step-number { animation: pulse-glow 3s ease-in-out infinite; }

/* Linha dourada animada no gold-bar */
@keyframes shimmer-bar {
  0%   { background-position: -100% center; }
  100% { background-position: 200% center; }
}
.gold-bar {
  background: var(--grad-gold-h);
  background-size: 200% auto;
  animation: shimmer-bar 3s linear infinite;
}

/* Borda dourada animada no about-img */
.about-img-wrap::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--grad-gold);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s;
  border-radius: 2px;
}
.about-img-wrap:hover::before { opacity: 1; }

/* Gallery item — borda dourada no hover */
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 0px solid transparent;
  z-index: 2;
  transition: border 0.3s, box-shadow 0.3s;
  pointer-events: none;
}
.gallery-item:hover::before {
  border: 2px solid rgba(245,208,96,0.5);
  box-shadow: inset 0 0 20px rgba(200,148,14,0.1);
}

/* Separadores da galeria com shimmer */
.gallery-sep-title {
  background: var(--grad-gold-h);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer-bar 4s linear infinite;
}
.gallery-sep-line {
  background: linear-gradient(90deg, transparent, rgba(200,148,14,0.6), rgba(245,208,96,0.8), rgba(200,148,14,0.6), transparent);
  box-shadow: 0 0 4px rgba(200,148,14,0.3);
}

/* Testemunho — linha decorativa dourada */
.testimonial-wrap {
  position: relative;
}
.testimonial-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 1px;
  background: var(--grad-gold-h);
  box-shadow: var(--glow-gold-sm);
}

/* Contact icon hover */
.contact-icon {
  transition: var(--transition);
}
.contact-item:hover .contact-icon {
  border-color: rgba(200,148,14,0.5);
  box-shadow: var(--glow-gold-sm);
  color: var(--gold-l);
}

/* Scrollbar premium */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb {
  background: var(--grad-gold-v);
  border-radius: 2px;
}