/* ═══════════════════════════════════════════════════
   ORGULHO AFRIKANO BEAUTY — CSS Premium
   Paleta: #0a0a0a (preto), #c8a97e (dourado), #f5efe8 (nude claro)
═══════════════════════════════════════════════════ */

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

:root {
  --black:      #0a0a0a;
  --black-soft: #141414;
  --gold:       #c8a97e;
  --gold-light: #e2c99f;
  --gold-dark:  #a8845a;
  --nude:       #f5efe8;
  --nude-mid:   #e8ddd2;
  --white:      #ffffff;
  --text:       #2a2a2a;
  --text-light: #6b6b6b;

  --ff-serif:  'Cormorant Garamond', Georgia, serif;
  --ff-sans:   'Montserrat', system-ui, sans-serif;

  --radius:    4px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow:    0 20px 60px rgba(0,0,0,0.12);
  --shadow-dark: 0 30px 80px rgba(0,0,0,0.35);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--ff-sans);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

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

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

ul { list-style: none; }

/* ---------- Scroll bar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--nude); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Utilitários de Texto ---------- */
.section-pretitle {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

.section-pretitle.light { color: var(--gold-light); }

.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 24px;
}

.section-title.light { color: var(--white); }

.section-desc {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 540px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-desc {
  margin: 0 auto;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--ff-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn--primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(200,169,126,0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn--ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--white);
}

.btn--gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn--gold:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(200,169,126,0.4);
}

.btn--lg {
  padding: 18px 44px;
  font-size: 0.9rem;
}

/* ---------- Reveal (Scroll Animation) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

/* Stagger for children */
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ═══════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-logo__name {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
}

.brand-logo__tag {
  font-family: var(--ff-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

/* Nav Links */
.main-nav ul {
  display: flex;
  gap: 36px;
  align-items: center;
}

.main-nav a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.main-nav a:hover,
.main-nav a:hover::after {
  color: var(--gold);
  width: 100%;
}

.main-nav a.nav-cta {
  background: var(--gold);
  color: var(--black);
  padding: 9px 22px;
  border-radius: var(--radius);
  letter-spacing: 0.1em;
}

.main-nav a.nav-cta::after { display: none; }

.main-nav a.nav-cta:hover {
  background: var(--gold-dark);
  color: var(--black);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__image-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero.loaded .hero__img {
  transform: scale(1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.75) 0%,
    rgba(10,10,10,0.55) 50%,
    rgba(10,10,10,0.35) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 80px;
  /* AJUSTE 1: conteúdo alinhado à esquerda */
  text-align: left;
}

.hero__pretitle {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 700px;
}

.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 42px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,0.5);
  font-size: 1.1rem;
  animation: bounce 2s infinite;
}

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

/* ═══════════════════════════════════════
   SOBRE
═══════════════════════════════════════ */
.sobre {
  padding: 120px 0;
  background: var(--white);
}

.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sobre__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  height: 600px;
}

.sobre__img-main {
  grid-row: span 2;
  border-radius: 2px;
  overflow: hidden;
}

.sobre__img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.sobre__img-secondary {
  border-radius: 2px;
  overflow: hidden;
}

.sobre__img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.sobre__lead {
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 20px;
}

.sobre__pillars {
  margin: 36px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.pillar-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--nude);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.sobre__pillars strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

.sobre__pillars span {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ═══════════════════════════════════════
   EXPERIÊNCIA SIGNATURE
═══════════════════════════════════════ */
.experiencia {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}

.experiencia__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.experiencia__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(20%);
}

.experiencia__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.92) 0%,
    rgba(10,10,10,0.82) 100%
  );
}

.experiencia .container {
  position: relative;
  z-index: 1;
}

.experiencia__header {
  text-align: center;
  margin-bottom: 70px;
}

.experiencia__intro {
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
}

.experiencia__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.exp-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,169,126,0.2);
  border-radius: 2px;
  padding: 36px 28px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.exp-card:hover {
  background: rgba(200,169,126,0.07);
  border-color: rgba(200,169,126,0.4);
  transform: translateY(-4px);
}

.exp-card__icon {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.exp-card h3 {
  font-family: var(--ff-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}

.exp-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

.experiencia__quote {
  text-align: center;
  border-top: 1px solid rgba(200,169,126,0.2);
  padding-top: 60px;
}

.experiencia__quote blockquote {
  font-family: var(--ff-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto 16px;
}

.experiencia__quote blockquote em {
  color: var(--gold-light);
  font-style: italic;
}

.experiencia__quote cite {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ═══════════════════════════════════════
   SERVIÇOS
═══════════════════════════════════════ */
.servicos {
  padding: 120px 0;
  background: var(--nude);
}

/* VIP Highlight */
.servico-vip {
  background: var(--black);
  border-radius: 2px;
  padding: 48px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.servico-vip::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(200,169,126,0.15), transparent 70%);
  pointer-events: none;
}

.servico-vip__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 28px;
}

.servico-vip__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.servico-vip__text h3 {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
}

.servico-vip__text p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.servico-vip__includes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.servico-vip__includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
}

.servico-vip__includes li i {
  color: var(--gold);
  font-size: 0.75rem;
}

.servico-vip__image {
  border-radius: 2px;
  overflow: hidden;
  height: 420px;
}

.servico-vip__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* AJUSTE 1: rosto da noiva no topo, sem corte */
  object-position: center top;
}

/* Services grid */
.servicos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.servico-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: 2px;
  transition: transform var(--transition), box-shadow var(--transition);
  border-bottom: 2px solid transparent;
}

.servico-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-bottom-color: var(--gold);
}

.servico-card__icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.servico-card h3 {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.3;
}

.servico-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
}

.servico-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  transition: gap var(--transition), color var(--transition);
}

.servico-card__link:hover {
  gap: 12px;
  color: var(--gold);
}

/* ═══════════════════════════════════════
   GALERIA
═══════════════════════════════════════ */
.galeria {
  padding: 120px 0;
  background: var(--white);
}

.galeria__filtros {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filtro-btn {
  padding: 9px 22px;
  border: 1px solid var(--nude-mid);
  background: transparent;
  color: var(--text-light);
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}

.filtro-btn:hover,
.filtro-btn.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.galeria__grid {
  columns: 3;
  column-gap: 16px;
}

.galeria__item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
}

.galeria__item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.galeria__item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  opacity: 0;
  transition: all 0.35s ease;
}

/* Hover apenas em dispositivos com ponteiro (desktop) */
@media (hover: hover) and (pointer: fine) {
  .galeria__item:hover img { transform: scale(1.06); }
  .galeria__item:hover .galeria__item-overlay {
    background: rgba(10,10,10,0.4);
    opacity: 1;
  }
}
/* Em touch/mobile: overlay nunca aparece */
@media (hover: none) {
  .galeria__item-overlay { display: none; }
}

/* ═══════════════════════════════════════
   DEPOIMENTOS
═══════════════════════════════════════ */
.depoimentos {
  padding: 120px 0;
  background: var(--nude);
}

.depoimentos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.depoimento-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.depoimento-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.depoimento-card__img {
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.depoimento-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 10%;
  transition: transform 0.5s ease;
}

.depoimento-card:hover .depoimento-card__img img {
  transform: scale(1.05);
}

.depoimento-card__content {
  padding: 32px;
}

.stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.depoimento-card__content p {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}

.depoimento-card__content cite {
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-style: normal;
}

/* ═══════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════ */
.cta-final {
  position: relative;
  padding: 160px 0;
  overflow: hidden;
}

.cta-final__bg {
  position: absolute;
  inset: 0;
}

.cta-final__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* AJUSTE 2: rosto completo visível */
  object-position: center 18%;
  filter: grayscale(10%);
}

.cta-final__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.85) 0%,
    rgba(10,10,10,0.7) 100%
  );
}

.cta-final > .container {
  position: relative;
  z-index: 2;
}

.cta-final__content {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-final__title {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.cta-final__desc {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 42px;
}

.cta-final__note {
  margin-top: 22px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.site-footer {
  background: var(--black);
  padding: 80px 0 32px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

.footer__brand .brand-logo__name {
  display: block;
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 4px;
}

.footer__brand .brand-logo__tag {
  display: block;
  font-family: var(--ff-sans);
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer__brand p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 260px;
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  transition: color var(--transition);
}

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

.footer__contact p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer__contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: var(--radius);
  transition: background var(--transition);
}

.footer__contact a:hover { background: var(--gold-dark); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

/* ═══════════════════════════════════════
   WHATSAPP STICKY
═══════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  padding: 14px 22px;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(37,211,102,0.35);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(37,211,102,0.45);
}

.wa-float i { font-size: 1.2rem; }

/* ═══════════════════════════════════════
   LIGHTBOX
═══════════════════════════════════════ */
.lb-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lb-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

#lb-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 2px;
  transition: opacity 0.2s ease;
}

.lb-close,
.lb-prev,
.lb-next {
  position: fixed;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background 0.2s ease;
}

.lb-close { top: 20px; right: 20px; }
.lb-prev  { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next  { right: 20px; top: 50%; transform: translateY(-50%); }

.lb-close:hover,
.lb-prev:hover,
.lb-next:hover {
  background: rgba(255,255,255,0.18);
}

/* ═══════════════════════════════════════
   NAV OVERLAY (mobile)
═══════════════════════════════════════ */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 800;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1100px) {
  .experiencia__cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .servicos__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .sobre__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .sobre__images {
    height: 400px;
  }
  .servico-vip__content {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .servico-vip__image {
    height: 300px;
  }
  .depoimentos__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .galeria__grid {
    columns: 2;
  }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    background: var(--black);
    padding: 100px 36px 36px;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 850;
    overflow-y: auto;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .main-nav a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
  }

  .main-nav a.nav-cta {
    margin-top: 12px;
    padding: 12px 24px;
  }

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

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .wa-float span { display: none; }
  .wa-float { padding: 16px; border-radius: 50%; }

  .lb-prev, .lb-next { display: none; }
}

@media (max-width: 560px) {
  .hero__title { font-size: 2.6rem; }
  .galeria__grid { columns: 1; }
  .experiencia__cards { grid-template-columns: 1fr; }
  .sobre__images { grid-template-columns: 1fr; height: auto; }
  .sobre__img-main { grid-row: auto; height: 380px; }
  /* AJUSTE 2: segunda foto mostra mais corpo no mobile */
  .sobre__img-secondary { height: 420px; }
  .sobre__img-secondary img { object-position: center center; }
  .servico-vip { padding: 32px 24px; }
  .wa-float { bottom: 16px; right: 16px; }
}

/* ═══════════════════════════════════════
   AJUSTE ESPECÍFICO DESKTOP — CTA FINAL
   Garante que o rosto da CEO apareça
   completo apenas em ecrãs largos
═══════════════════════════════════════ */
@media (min-width: 821px) {
  .cta-final__bg-img {
    /* AJUSTE 2 desktop: rosto da CEO visível */
    object-position: center 20%;
  }
}
