/* ============================================================
   NINA RODRIGUES — Psicóloga Clínica e Carreira
   style.css — Design premium, minimalista e acolhedor
   ============================================================ */

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

:root {
  /* Paleta principal */
  --gold:          #e3c968;
  --gold-light:    #f0db8a;
  --gold-dark:     #c9a93a;
  --gold-pale:     #faf5e4;
  --gold-glow:     rgba(227, 201, 104, 0.18);

  /* Cor secundária */
  --wine:          #6b0926;
  --wine-light:    #8c1035;
  --wine-pale:     #f9f0f2;
  --wine-glow:     rgba(107, 9, 38, 0.12);

  /* Neutros */
  --white:         #ffffff;
  --off-white:     #faf8f2;
  --cream:         #f5f1e4;
  --dark:          #2a2a2a;
  --mid:           #5a5a5a;
  --light-gray:    #e8e4d9;

  /* Fundos de seção */
  --bg-light:      #faf8f2;
  --bg-dark:       #1e1c17;

  /* Tipografia */
  --serif:         'Playfair Display', Georgia, serif;
  --sans:          'Inter', system-ui, sans-serif;

  /* Espaçamentos */
  --space-xs:      0.5rem;
  --space-sm:      1rem;
  --space-md:      1.5rem;
  --space-lg:      2.5rem;
  --space-xl:      4rem;
  --space-2xl:     6rem;
  --space-3xl:     8rem;

  /* Container */
  --container:     1200px;
  --gutter:        clamp(1.25rem, 5vw, 2.5rem);

  /* Bordas */
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-xl:     40px;

  /* Sombras */
  --shadow-sm:     0 2px 12px rgba(42, 42, 42, 0.06);
  --shadow-md:     0 8px 32px rgba(42, 42, 42, 0.10);
  --shadow-lg:     0 20px 60px rgba(42, 42, 42, 0.14);
  --shadow-gold:   0 8px 32px rgba(227, 201, 104, 0.22);

  /* Transições */
  --ease:          cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:      cubic-bezier(0.0, 0.0, 0.2, 1);
  --dur-fast:      180ms;
  --dur-med:       320ms;
  --dur-slow:      500ms;

  /* Navbar */
  --navbar-h:      72px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── CONTAINER ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ── SEÇÕES ──────────────────────────────────────────────── */
.section { padding-block: var(--space-3xl); }
.section--light { background: var(--bg-light); }
.section--dark  { background: var(--bg-dark); color: var(--white); }

/* ── CABEÇALHOS DE SEÇÃO ─────────────────────────────────── */
.section-header { text-align: center; margin-bottom: var(--space-xl); }

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: var(--space-sm);
}
.section-eyebrow--light { color: var(--gold-light); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: var(--space-md);
}
.section-title--light { color: var(--white); }
.section-title em { color: var(--wine); font-style: italic; }

.section-sub {
  font-size: 1.0625rem;
  color: var(--mid);
  max-width: 560px;
  margin-inline: auto;
}

/* ── DIVISÓRIAS DOURADAS ─────────────────────────────────── */
.gold-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--wine), var(--gold-dark), var(--gold-light));
  border-radius: 2px;
  margin-bottom: var(--space-lg);
}
.gold-divider--center { margin-inline: auto; }

.gold-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}

/* ── BOTÕES ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-weight: 500;
  border-radius: 100px;
  transition: all var(--dur-med) var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity var(--dur-fast) var(--ease);
}
.btn:hover::after { opacity: 1; }

/* Tamanhos */
.btn--sm  { font-size: 0.8125rem; padding: 0.5rem 1.25rem; }
.btn--lg  { font-size: 1rem;      padding: 0.875rem 2rem; }
.btn--xl  { font-size: 1.0625rem; padding: 1.125rem 2.75rem; }

/* Sem tamanho explícito = médio */
.btn:not(.btn--sm):not(.btn--lg):not(.btn--xl) {
  font-size: 0.9375rem;
  padding: 0.75rem 1.75rem;
}

/* Dourado */
.btn--gold {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 60%, var(--gold-light) 100%);
  color: var(--dark);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(227, 201, 104, 0.35);
}
.btn--gold:active { transform: translateY(0); }

/* Outline */
.btn--outline {
  border: 1.5px solid var(--gold);
  color: var(--gold-dark);
  background: transparent;
}
.btn--outline:hover {
  background: var(--gold-glow);
  transform: translateY(-2px);
}

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
  transition-delay: var(--delay, 0s);
}
.reveal--right {
  transform: translateX(28px);
}
.reveal--left {
  transform: translateX(-28px);
}
.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--navbar-h);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background var(--dur-med) var(--ease),
              border-color var(--dur-med) var(--ease),
              box-shadow var(--dur-med) var(--ease);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  border-color: var(--light-gray);
  box-shadow: var(--shadow-sm);
}

.navbar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  flex-shrink: 0;
}
.navbar__logo-name {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--dark);
}
.navbar__logo-title {
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.navbar__nav { margin-left: auto; }

.navbar__list {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.navbar__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--mid);
  transition: color var(--dur-fast) var(--ease);
  position: relative;
}
.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--wine), var(--gold));
  transition: width var(--dur-med) var(--ease);
}
.navbar__link:hover,
.navbar__link.active { color: var(--dark); }
.navbar__link:hover::after,
.navbar__link.active::after { width: 100%; }

.navbar__cta { margin-left: 1rem; }

/* Toggle mobile */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 4px;
}
.navbar__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--dark);
  transition: all var(--dur-med) var(--ease);
  transform-origin: center;
}
.navbar__toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.navbar__toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Menu mobile */
.mobile-menu {
  display: none;
  position: absolute;
  top: var(--navbar-h);
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--light-gray);
  padding: var(--space-lg) var(--gutter);
  transform: translateY(-8px);
  opacity: 0;
  transition: opacity var(--dur-med) var(--ease), transform var(--dur-med) var(--ease);
  pointer-events: none;
}
.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.mobile-menu__list { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-menu__link {
  display: block;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--dark);
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--light-gray);
  transition: color var(--dur-fast) var(--ease);
}
.mobile-menu__link:hover { color: var(--gold-dark); }
.mobile-menu__cta {
  margin-top: var(--space-md);
  display: inline-flex;
  justify-content: center;
  width: 100%;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  padding-top: calc(var(--navbar-h) + var(--space-xl));
  padding-bottom: var(--space-3xl);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--white);
}

/* Fundo decorativo */
.hero__bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.hero__orb--1 {
  width: 600px; height: 600px;
  top: -100px; right: -150px;
  background: radial-gradient(circle, rgba(227,201,104,0.12) 0%, transparent 70%);
}
.hero__orb--2 {
  width: 400px; height: 400px;
  bottom: 0; left: -100px;
  background: radial-gradient(circle, rgba(245,241,228,0.8) 0%, transparent 70%);
}
.hero__orb--3 {
  width: 300px; height: 300px;
  top: 40%; right: 30%;
  background: radial-gradient(circle, rgba(227,201,104,0.06) 0%, transparent 70%);
}

.hero__lines {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  opacity: 0.04;
}
.hero__line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
}
.hero__line:nth-child(1) { left: 20%; }
.hero__line:nth-child(2) { left: 50%; }
.hero__line:nth-child(3) { left: 80%; }

/* Layout interno */
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

/* Conteúdo texto */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: var(--space-md);
}

.hero__headline {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: var(--space-lg);
}
.hero__headline em {
  color: var(--wine);
  font-style: italic;
}

.hero__sub {
  font-size: 1.0625rem;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
  max-width: 500px;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

/* Badges de credencial */
.hero__badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--mid);
  padding: 0.375rem 0.875rem;
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: 100px;
}
.badge__icon { color: var(--gold); font-size: 0.625rem; }

/* Visual / foto */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero__photo-frame {
  position: relative;
  width: 420px;
  max-width: 100%;
}

.hero__photo-placeholder {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(145deg, var(--cream), var(--off-white));
  border: 1px solid rgba(227,201,104,0.2);
  box-shadow: var(--shadow-lg), 0 0 80px rgba(227,201,104,0.08);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Quando há foto real */
.hero__photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero__photo-inner { width: 60%; opacity: 0.9; }

/* Anel decorativo */
.hero__photo-deco { position: absolute; inset: 0; pointer-events: none; }

.hero__photo-ring {
  position: absolute;
  inset: -12px;
  border-radius: calc(var(--radius-xl) + 12px);
  border: 1px solid rgba(227,201,104,0.25);
}

.hero__photo-dot {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
}
.hero__photo-dot--1 { width: 14px; height: 14px; top: 10%; right: -20px; }
.hero__photo-dot--2 { width: 8px; height: 8px; bottom: 20%; left: -16px; opacity: 0.6; }

/* Cards flutuantes */
.hero__card-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(227,201,104,0.2);
  border-radius: var(--radius-md);
  padding: 0.625rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--dark);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}
.hero__card-float--1 { top: 12%; left: -40px; animation: float 6s ease-in-out infinite; }
.hero__card-float--2 { bottom: 18%; right: -30px; animation: float 6s ease-in-out infinite 3s; }
.hero__card-icon { font-size: 1rem; }

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

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  opacity: 0.7;
  animation: fadeInUp 1s var(--ease-out) 1.5s both;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, var(--gold));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   SOBRE
   ============================================================ */
.about { background: var(--white); }

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

/* Coluna foto */
.about__photo-frame {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}
.about__photo-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(145deg, var(--cream), var(--off-white));
  border: 1px solid rgba(227,201,104,0.15);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.about__photo-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--radius-md);
  opacity: 0.12;
  z-index: -1;
}

/* Conteúdo texto */
.about__text {
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}
.about__text strong { color: var(--dark); }
.about__text em { color: var(--wine); }

.about__cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-block: var(--space-lg);
}
.about__card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--light-gray);
  transition: border-color var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease);
}
.about__card:hover {
  border-color: rgba(227,201,104,0.4);
  box-shadow: var(--shadow-sm);
}
.about__card-icon {
  color: var(--wine);
  font-size: 0.875rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.about__card strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--dark);
  margin-bottom: 2px;
}
.about__card span {
  font-size: 0.8125rem;
  color: var(--mid);
}

/* ============================================================
   DIFERENCIAIS
   ============================================================ */
.diff__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.diff__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--light-gray);
  transition: border-color var(--dur-med) var(--ease),
              box-shadow var(--dur-med) var(--ease),
              transform var(--dur-med) var(--ease);
  position: relative;
  overflow: hidden;
}
.diff__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--wine), var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity var(--dur-med) var(--ease);
}
.diff__card:hover {
  border-color: rgba(227,201,104,0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.diff__card:hover::before { opacity: 1; }

.diff__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold-pale), var(--cream));
  border-radius: var(--radius-md);
  color: var(--gold-dark);
  margin-bottom: 1.25rem;
  transition: background var(--dur-med) var(--ease);
}
.diff__card:hover .diff__card-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

.diff__card-title {
  font-family: var(--serif);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.75rem;
}
.diff__card-text {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.7;
}

/* ============================================================
   SERVIÇOS
   ============================================================ */
.services { background: var(--white); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  position: relative;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--light-gray);
  overflow: hidden;
  transition: border-color var(--dur-med) var(--ease),
              box-shadow var(--dur-med) var(--ease),
              transform var(--dur-med) var(--ease),
              background var(--dur-med) var(--ease);
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(0deg, rgba(227,201,104,0.06), transparent);
  transition: height var(--dur-med) var(--ease);
}
.service-card:hover {
  border-color: rgba(227,201,104,0.35);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  background: var(--white);
}
.service-card:hover::after { height: 100%; }

.service-card__number {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(227,201,104,0.12);
  line-height: 1;
  transition: color var(--dur-med) var(--ease);
}
.service-card:hover .service-card__number { color: rgba(227,201,104,0.22); }

.service-card__image {
  width: calc(100% + 4rem);
  margin: -2.5rem -2rem 1.75rem;
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s var(--ease);
}
.service-card:hover .service-card__image img {
  transform: scale(1.06);
}

.service-card__title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.875rem;
}

.service-card__text {
  font-size: 0.9375rem;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--wine);
  transition: gap var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.service-card__link:hover { gap: 0.625rem; color: var(--wine-light); }

/* ============================================================
   MISSÃO, VISÃO E VALORES
   ============================================================ */
.mvv { position: relative; overflow: hidden; background: var(--wine) !important; }

.mvv__bg { position: absolute; inset: 0; pointer-events: none; }
.mvv__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.mvv__orb--1 {
  width: 500px; height: 500px;
  top: -100px; left: -100px;
  background: radial-gradient(circle, rgba(227,201,104,0.14) 0%, transparent 70%);
}
.mvv__orb--2 {
  width: 400px; height: 400px;
  bottom: -80px; right: -80px;
  background: radial-gradient(circle, rgba(0,0,0,0.18) 0%, transparent 70%);
}

.mvv__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.mvv__card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(227,201,104,0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  backdrop-filter: blur(8px);
  transition: border-color var(--dur-med) var(--ease),
              background var(--dur-med) var(--ease),
              transform var(--dur-med) var(--ease);
}
.mvv__card:hover {
  border-color: rgba(227,201,104,0.4);
  background: rgba(255,255,255,0.09);
  transform: translateY(-4px);
}

.mvv__card-icon {
  color: var(--gold);
  margin-bottom: 1.25rem;
  opacity: 0.9;
}

.mvv__card-title {
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.mvv__card-text {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  font-style: italic;
}

.mvv__values-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.mvv__values-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.8);
}
.mvv__bullet { color: var(--gold); font-size: 0.625rem; }

/* ============================================================
   PÚBLICO
   ============================================================ */
.audience { background: var(--white); }

.audience__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.audience__intro {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.8;
  margin-top: var(--space-sm);
}

.audience__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.audience__item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.375rem 0;
  border-bottom: 1px solid var(--light-gray);
  transition: padding-left var(--dur-med) var(--ease);
}
.audience__item:first-child { border-top: 1px solid var(--light-gray); }
.audience__item:hover { padding-left: 0.5rem; }

.audience__icon {
  color: var(--wine);
  font-size: 1.125rem;
  margin-top: 1px;
  flex-shrink: 0;
  transition: transform var(--dur-med) var(--ease);
}
.audience__item:hover .audience__icon { transform: translateX(4px); }

.audience__item strong {
  display: block;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 0.25rem;
}
.audience__item p {
  font-size: 0.875rem;
  color: var(--mid);
  line-height: 1.6;
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
  position: relative;
  background: linear-gradient(135deg, var(--wine) 0%, var(--wine-light) 50%, var(--wine) 100%);
  overflow: hidden;
  padding-block: var(--space-3xl);
}

.cta__bg { position: absolute; inset: 0; pointer-events: none; }
.cta__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.cta__orb--1 {
  width: 500px; height: 500px;
  top: -100px; right: 10%;
  background: radial-gradient(circle, rgba(227,201,104,0.16) 0%, transparent 70%);
}
.cta__orb--2 {
  width: 350px; height: 350px;
  bottom: -80px; left: 5%;
  background: radial-gradient(circle, rgba(0,0,0,0.2) 0%, transparent 70%);
}
.cta__lines { position: absolute; inset: 0; opacity: 0.03; }
.cta__line {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 80px,
    var(--gold) 80px,
    var(--gold) 81px
  );
}
.cta__line:last-child {
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 80px,
    var(--gold) 80px,
    var(--gold) 81px
  );
}

.cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
}

.cta__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: var(--space-lg);
}
.cta__title em {
  color: var(--gold-light);
  font-style: italic;
  text-decoration: underline;
  text-decoration-color: var(--wine);
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}

.cta__text {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

/* ============================================================
   CONTATO
   ============================================================ */
.contact { background: var(--bg-light); }

.contact__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 700px;
  margin-inline: auto;
}

.contact__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-gray);
  transition: border-color var(--dur-med) var(--ease),
              box-shadow var(--dur-med) var(--ease),
              transform var(--dur-med) var(--ease);
}
.contact__card:hover {
  border-color: rgba(227,201,104,0.4);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.contact__card-icon {
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
  transition: color var(--dur-med) var(--ease);
}
.contact__card:hover .contact__card-icon { color: var(--gold); }

.contact__card-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
}
.contact__card-info {
  font-size: 0.9375rem;
  color: var(--mid);
}
.contact__card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--wine);
  margin-top: 0.5rem;
  transition: gap var(--dur-fast) var(--ease);
}
.contact__card:hover .contact__card-cta { gap: 0.625rem; }

/* ============================================================
   RODAPÉ
   ============================================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding-top: var(--space-3xl);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.footer__title-text {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer__bio {
  font-size: 0.875rem;
  line-height: 1.75;
  margin-bottom: var(--space-md);
  max-width: 340px;
}
.footer__wa-btn { text-align: center; }

.footer__nav-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.footer__link {
  font-size: 0.9rem;
  transition: color var(--dur-fast) var(--ease);
}
.footer__link:hover { color: var(--gold); }

.footer__social-links {
  display: flex;
  gap: 0.75rem;
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
  transition: background var(--dur-med) var(--ease), color var(--dur-med) var(--ease);
}
.footer__social-link:hover {
  background: var(--gold);
  color: var(--dark);
}

.footer__bottom {
  padding-block: 1.5rem;
  background: rgba(0,0,0,0.15);
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer__copy,
.footer__dev {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
}
.footer__dev-link {
  color: var(--gold);
  transition: color var(--dur-fast) var(--ease);
}
.footer__dev-link:hover { color: var(--gold-light); }

/* ============================================================
   BOTÃO FLUTUANTE WHATSAPP
   ============================================================ */
.wa-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease);
  animation: fadeInUp 0.6s var(--ease-out) 2s both;
}
.wa-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.wa-fab__tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.375rem 0.875rem;
  border-radius: 100px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-fast) var(--ease);
}
.wa-fab:hover .wa-fab__tooltip { opacity: 1; }

/* ============================================================
   ANIMAÇÕES AUXILIARES
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   LOGO IMAGENS
   ============================================================ */
.navbar__logo-img {
  height: 64px;
  width: auto;
  display: block;
}

.footer__logo-img {
  height: 72px;
  width: auto;
  display: block;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

/* ============================================================
   PARALLAX LEVE (via JS class)
   ============================================================ */
.parallax-slow { will-change: transform; }

/* ============================================================
   RESPONSIVO — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --space-2xl: 5rem;
    --space-3xl: 6rem;
  }

  .hero__inner { gap: 3rem; }
  .hero__card-float--1 { left: -20px; }
  .hero__card-float--2 { right: -10px; }
  .hero__photo-frame { width: 340px; }

  .about__inner { gap: 3rem; }

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

  .mvv__grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }

  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

/* ============================================================
   RESPONSIVO — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --navbar-h: 64px;
    --space-xl:  2.5rem;
    --space-2xl: 4rem;
    --space-3xl: 5rem;
  }

  /* Navbar */
  .navbar__nav,
  .navbar__cta { display: none; }
  .navbar__toggle { display: flex; }
  .mobile-menu { display: block; }

  /* Hero — empilhado */
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__sub { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__badges { justify-content: center; }

  .hero__visual { order: -1; }
  .hero__photo-frame { width: 260px; }
  .hero__card-float--1 { left: -10px; }
  .hero__card-float--2 { right: -10px; }

  /* Sobre */
  .about__inner { grid-template-columns: 1fr; }
  .about__photo-frame { max-width: 280px; }

  /* Diferenciais */
  .diff__grid { grid-template-columns: 1fr; }

  /* Serviços */
  .services__grid { grid-template-columns: 1fr; }

  /* Público */
  .audience__inner { grid-template-columns: 1fr; }

  /* Contato */
  .contact__grid { grid-template-columns: 1fr; max-width: 420px; }

  /* Rodapé */
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }

  /* FAB */
  .wa-fab { bottom: 1.25rem; right: 1.25rem; }
}

/* ============================================================
   RESPONSIVO — MOBILE PEQUENO (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__actions .btn {
    justify-content: center;
  }
  .hero__photo-frame { width: 220px; }
  .hero__card-float { display: none; }
}

/* ============================================================
   PREFERÊNCIA: MOVIMENTO REDUZIDO
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
