/* =============================================
   MICROPIGMENTAÇÃO 10 SOBRANCELHAS
   Dra. Mirela Areias — style.css
   ============================================= */

/* === TOKENS === */
:root {
  --gold:        #C9A84C;
  --gold-light:  #E2C06A;
  --gold-dark:   #9A7530;
  --black:       #0A0A0A;
  --dark:        #111111;
  --dark-2:      #1A1A1A;
  --dark-3:      #242424;
  --cream:       #F5EDD8;
  --cream-soft:  #EDE2C8;
  --white:       #FFFFFF;
  --text-muted:  #9A8E7A;
  --text-body:   #D4C9B0;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Inter', system-ui, sans-serif;

  --radius:   6px;
  --radius-lg: 16px;
  --shadow:   0 4px 32px rgba(0,0,0,.45);
  --shadow-gold: 0 0 0 1px rgba(201,168,76,.25);

  --max-w: 1160px;
  --section-pad: clamp(64px, 8vw, 112px);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* === UTILITIES === */
.container {
  width: min(var(--max-w), 100% - 2 * clamp(16px, 4vw, 48px));
  margin-inline: auto;
}
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-eyebrow--center { text-align: center; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}
.section-title--center { text-align: center; }
.section-title em { font-style: italic; color: var(--gold); }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .06em;
  cursor: pointer;
  border: none;
  transition: transform .2s, box-shadow .2s, background .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 4px 20px rgba(201,168,76,.3);
}
.btn--gold:hover { background: var(--gold-light); box-shadow: 0 6px 28px rgba(201,168,76,.45); }
.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn--outline:hover { background: rgba(201,168,76,.08); }
.btn--dark {
  background: var(--black);
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn--dark:hover { background: var(--dark-2); }
.btn__icon { width: 18px; height: 18px; flex-shrink: 0; }

/* =============================================
   HEADER
   ============================================= */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .3s, padding .3s, box-shadow .3s;
}
.header.scrolled {
  background: rgba(10,10,10,.95);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,.5);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.header__text {
  display: flex;
  flex-direction: column;
}
.header__sobrancelhas {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: .02em;
}
.header__sub {
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}

/* NAV */
.nav__list {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__link {
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-body);
  transition: color .2s;
}
.nav__link:hover { color: var(--gold); }
.nav__link--cta {
  background: var(--gold);
  color: var(--black);
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 500;
}
.nav__link--cta:hover { background: var(--gold-light); color: var(--black); }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 70% at 70% 40%, rgba(201,168,76,.07) 0%, transparent 65%),
    var(--black);
}
.hero__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(100px, 18vw, 260px);
  font-weight: 700;
  color: rgba(201,168,76,.04);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -.04em;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__eyebrow {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 16px;
}
.hero__title--light {
  font-weight: 400;
  font-size: 60%;
  color: var(--text-body);
}
.hero__title--name {
  font-style: italic;
  color: var(--gold);
  display: block;
}
.hero__tagline {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: .2em;
  color: var(--gold-dark);
  margin-bottom: 24px;
}
.hero__desc {
  font-size: .95rem;
  line-height: 1.75;
  color: var(--text-body);
  max-width: 460px;
  margin-bottom: 36px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Hero image */
.hero__image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.hero__image-ring { display: none; }
.hero__photo {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: cover;
  object-position: top center;
  border-radius: 12px;
  position: relative;
  z-index: 1;
  box-shadow: 0 12px 60px rgba(0,0,0,.6);
  display: block;
}
.hero__badge {
  position: absolute;
  bottom: 16px;
  left: -16px;
  background: var(--gold);
  color: var(--black);
  border-radius: var(--radius);
  padding: 12px 20px;
  display: flex;
  align-items: baseline;
  gap: 6px;
  box-shadow: var(--shadow);
  z-index: 2;
}
.hero__badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.hero__badge-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
}
.hero__scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__scroll-cue span {
  display: block;
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.04); opacity: .6; }
}
@keyframes scroll-line {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* =============================================
   PILLARS
   ============================================= */
.pillars {
  background: var(--dark-2);
  border-top: 1px solid rgba(201,168,76,.12);
  border-bottom: 1px solid rgba(201,168,76,.12);
  padding: 48px 0;
}
.pillars__inner {
  display: flex;
  align-items: center;
  gap: 0;
}
.pillar {
  flex: 1;
  text-align: center;
  padding: 24px 32px;
}
.pillar__icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin: 0 auto 16px;
}
.pillar__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.pillar__desc {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.pillar__divider {
  width: 1px;
  height: 80px;
  background: rgba(201,168,76,.2);
  flex-shrink: 0;
}

/* =============================================
   SOBRE
   ============================================= */
.sobre {
  padding: var(--section-pad) 0;
  background: var(--dark);
}
.sobre__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.sobre__visual { position: relative; }
.sobre__frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,.2);
  box-shadow: var(--shadow);
}
.sobre__logo-img {
  width: 100%;
  display: block;
}
.sobre__stat-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold);
  color: var(--black);
  border-radius: var(--radius);
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow);
}
.sobre__stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}
.sobre__stat-label {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1.4;
  text-align: center;
  margin-top: 4px;
}
.sobre__text {
  color: var(--text-body);
  font-size: .95rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.sobre__text strong { color: var(--gold); font-weight: 500; }
.sobre__list {
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sobre__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--text-body);
}
.sobre__list li::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* =============================================
   SERVIÇOS
   ============================================= */
.servicos {
  padding: var(--section-pad) 0;
  background: var(--black);
}
.servicos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.servico-card {
  background: var(--dark-2);
  border: 1px solid rgba(201,168,76,.12);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: border-color .3s, transform .3s;
}
.servico-card:hover {
  border-color: rgba(201,168,76,.4);
  transform: translateY(-4px);
}
.servico-card--featured {
  background: linear-gradient(135deg, rgba(201,168,76,.1), var(--dark-2));
  border-color: rgba(201,168,76,.4);
}
.servico-card__badge {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--gold);
  color: var(--black);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 0 0 var(--radius) var(--radius);
}
.servico-card__icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 20px;
  line-height: 1;
}
.servico-card__title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.servico-card__desc {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =============================================
   DIFERENCIAIS
   ============================================= */
.diferenciais {
  padding: var(--section-pad) 0;
  background: var(--dark-2);
  border-top: 1px solid rgba(201,168,76,.1);
}
.diferenciais__inner {
  display: block;
  max-width: 720px;
}
.diferenciais__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
}
.diferencial {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.diferencial__marker {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(201,168,76,.25);
  line-height: 1;
  flex-shrink: 0;
  width: 44px;
  text-align: right;
}
.diferencial__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.diferencial__desc {
  font-size: .87rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.quote {
  background: linear-gradient(135deg, rgba(201,168,76,.1), rgba(201,168,76,.04));
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 40px 36px;
  position: relative;
}
.quote__text {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
  margin-bottom: 20px;
}
.quote__author {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}
.diferenciais__deco {
  position: relative;
  height: 120px;
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.deco-circle {
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,.2);
}
.deco-circle--2 { width: 48px; height: 48px; background: rgba(201,168,76,.06); }

/* =============================================
   CTA BAND
   ============================================= */
.cta-band {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  padding: 60px 0;
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}
.cta-band__sub {
  font-size: .9rem;
  color: rgba(0,0,0,.6);
}

/* =============================================
   CONTATO
   ============================================= */
.contato {
  padding: var(--section-pad) 0;
  background: var(--dark);
}
.contato__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--dark-2);
  border: 1px solid rgba(201,168,76,.1);
  border-radius: var(--radius);
  transition: border-color .2s, background .2s;
}
a.contact-item:hover {
  border-color: rgba(201,168,76,.4);
  background: rgba(201,168,76,.05);
}
.contact-item--no-link { cursor: default; }
.contact-item__icon {
  width: 40px;
  height: 40px;
  background: rgba(201,168,76,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-item__icon svg { width: 20px; height: 20px; }
.contact-item__label {
  display: block;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.contact-item__value {
  display: block;
  font-size: .92rem;
  color: var(--white);
  line-height: 1.5;
}
.contato__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,.15);
  box-shadow: var(--shadow);
  margin-top: 48px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(201,168,76,.12);
  padding: 40px 0;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.footer__name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
}
.footer__micro {
  display: block;
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer__tagline {
  font-family: var(--font-serif);
  font-size: .95rem;
  letter-spacing: .15em;
  color: var(--gold-dark);
}
.footer__copy {
  font-size: .75rem;
  color: var(--text-muted);
}

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.55); }
.whatsapp-float svg { width: 28px; height: 28px; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero__image-wrap { order: -1; width: 100%; }
  .hero__photo { width: 100%; max-width: 100%; height: auto; border-radius: 8px; }
  .hero__desc { max-width: 100%; margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__badge { left: 8px; bottom: 8px; transform: none; }

  .pillars__inner { flex-direction: column; }
  .pillar__divider { width: 80px; height: 1px; }

  .sobre__inner,
  .diferenciais__inner,
  .contato__inner { grid-template-columns: 1fr; gap: 48px; }
  .sobre__stat-card { right: 0; bottom: -20px; }
  .servicos__grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }

  .cta-band__inner { flex-direction: column; text-align: center; }

  .nav__list { display: none; flex-direction: column; gap: 0; }
  .nav__list.open {
    display: flex;
    position: fixed;
    inset: 0;
    background: rgba(10,10,10,.97);
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 99;
  }
  .nav__link { font-size: 1.1rem; }
  .nav__link--cta { padding: 14px 32px; }
  .nav__toggle { display: flex; position: relative; z-index: 100; }
}

@media (max-width: 480px) {
  .hero { padding: 100px 0 60px; }
  .hero__title { font-size: 2.5rem; }
  .btn { padding: 12px 20px; font-size: .82rem; }
  .sobre__stat-card { position: static; margin-top: 24px; align-self: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}