/* ── NAV ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 72px;
  display: flex;
  align-items: center;
  padding: 0 60px;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.01em;
}
.logo em {
  font-style: italic;
  color: var(--wine);
}

.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  padding: 10px 26px;
  background: var(--wine);
  color: #fff;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.88; }


/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 52% 48%;
  padding-top: 72px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 24px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--wine);
}

.hero-left h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 4.5vw, 60px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}
.hero-left h1 em {
  font-style: italic;
  color: var(--wine);
  font-weight: 400;
}

.hero-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 400px;
  margin-bottom: 44px;
  font-weight: 300;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.stats-row {
  display: flex;
  gap: 44px;
  margin-top: 60px;
  padding-top: 44px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.stat-n {
  display: block;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
}
.stat-l {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--faint);
  margin-top: 4px;
}

.hero-right {
  position: relative;
  background: #1A1218;
  overflow: hidden;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  opacity: 0.9;
}
.hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255,255,255,1) 0%,
    rgba(255,255,255,0.2) 12%,
    transparent 28%
  );
}

.hero-float {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 220px;
  animation: fadeUp 0.7s 0.55s both, float 3.5s 1.3s ease-in-out infinite;
}
.hf-dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--wine-soft);
  border: 1px solid var(--wine-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--wine);
  flex-shrink: 0;
  animation: pulse-ring 2.5s ease-in-out infinite;
}
.hf-title { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.hf-sub   { font-size: 11px; color: var(--faint); }


/* ── SECTION BASE ── */
section {
  padding: var(--section-pad);
}

.sec-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 16px;
}
.sec-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--wine);
}
.sec-label--light {
  color: rgba(255,255,255,0.5);
}
.sec-label--light::before {
  background: rgba(255,255,255,0.3);
}

.sec-h {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.sec-h em    { font-style: italic; font-weight: 400; color: var(--muted); }
.sec-h--light       { color: #fff; }
.sec-h--light em    { color: rgba(255,255,255,0.55); }

.sec-s {
  font-size: 15px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.8;
  font-weight: 300;
}


/* ── POR QUÊ ── */
#why {
  background: var(--bg-2);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 52px;
}
.why-card {
  background: var(--bg-2);
  padding: 36px 28px;
  transition: background 0.25s;
}
.why-card:hover { background: var(--bg-3); }
.wc-icon  {
  font-size: 20px;
  color: var(--wine);
  margin-bottom: 18px;
  display: inline-block;
  transition: transform 0.35s ease;
}
.why-card:hover .wc-icon { transform: scale(1.3) rotate(12deg); }
.wc-title { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 8px; letter-spacing: -0.01em; }
.wc-desc  { font-size: 13px; color: var(--muted); line-height: 1.7; font-weight: 300; }


/* ── SOBRE ── */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
}

.about-img-side {
  position: relative;
  background: #1A1218;
  min-height: 600px;
}
.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  opacity: 0.9;
}

.about-overlay-card {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}
.aoc-label { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); margin-bottom: 8px; }
.aoc-name  { font-family: var(--serif); font-size: 18px; font-weight: 500; color: var(--text); margin-bottom: 4px; }
.aoc-cro   { font-size: 12px; color: var(--muted); }
.aoc-line  { width: 40px; height: 2px; background: var(--wine); margin-top: 14px; }

.about-content-side {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg);
}
.about-content-side h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.about-content-side h2 em { font-style: italic; font-weight: 400; color: var(--wine); }
.about-content-side p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 16px;
  font-weight: 300;
}
.cro-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 9px 18px;
  background: var(--wine-soft);
  border: 1px solid var(--wine-light);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 500;
  color: var(--wine);
}


/* ── COMO FUNCIONA ── */
#how {
  background: var(--bg-3);
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-top: 52px;
}
.step-item {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}
.step-item::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--wine);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.step-item:hover::after { transform: scaleX(1); }
.step-item:last-child { border-right: none; }
.step-num   { display: block; font-family: var(--serif); font-size: 42px; font-weight: 400; color: var(--wine-light); line-height: 1; margin-bottom: 20px; transition: color 0.3s; }
.step-item:hover .step-num { color: rgba(92,26,43,0.4); }
.step-title { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 10px; letter-spacing: -0.01em; }
.step-desc  { font-size: 13px; color: var(--muted); line-height: 1.7; font-weight: 300; }


/* ── TRATAMENTOS ── */
#treatments {
  background: var(--bg);
}

.treat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 52px;
}
.treat-card {
  background: var(--bg);
  padding: 28px 24px;
  position: relative;
  transition: background 0.25s;
}
.treat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: var(--wine);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s ease;
}
.treat-card:hover { background: var(--bg-2); }
.treat-card:hover::before { transform: scaleY(1); }
.tc-cat   { display: block; font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--wine); margin-bottom: 10px; }
.tc-title { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 6px; letter-spacing: -0.01em; }
.tc-desc  { font-size: 12px; color: var(--muted); line-height: 1.6; font-weight: 300; }


/* ── DEPOIMENTOS ── */
#testimonials {
  background: var(--wine);
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 52px;
}
.tcard {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: background 0.25s, transform 0.3s ease;
}
.tcard:hover { background: rgba(255, 255, 255, 0.12); transform: translateY(-6px); }
.stars       { color: rgba(255, 255, 255, 0.6); font-size: 11px; letter-spacing: 4px; margin-bottom: 20px; }
.tq          { font-family: var(--serif); font-size: 16px; font-weight: 400; font-style: italic; color: rgba(255,255,255,0.85); line-height: 1.75; margin-bottom: 24px; }
.tauthor     { display: flex; align-items: center; gap: 12px; }
.avatar      { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.7); flex-shrink: 0; }
.author-name { font-size: 13px; font-weight: 500; color: #fff; }
.author-city { font-size: 11px; color: rgba(255,255,255,0.45); }
.proc-tag    { margin-left: auto; padding: 3px 10px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-full); font-size: 10px; font-weight: 500; color: rgba(255,255,255,0.6); white-space: nowrap; }


/* ── FAQ ── */
#faq {
  background: var(--bg-2);
}

.faq-list {
  margin-top: 52px;
  max-width: 680px;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 0;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  gap: 20px;
  transition: color 0.2s;
  letter-spacing: -0.01em;
}
.faq-q:hover { color: var(--wine); }
.faq-arrow {
  width: 24px;
  height: 24px;
  border: 1px solid var(--border-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--muted);
  flex-shrink: 0;
  transition: all 0.25s;
}
.faq-item.open .faq-arrow { background: var(--wine); border-color: var(--wine); color: #fff; transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
}
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 20px; }


/* ── CTA FINAL ── */
#cta {
  text-align: center;
  background: var(--bg);
}
.cta-inner { max-width: 560px; margin: 0 auto; }
.cta-mark  { font-size: 28px; color: var(--wine); margin-bottom: 20px; opacity: 0.6; display: inline-block; animation: spin-slow 14s linear infinite; }
#cta h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
  line-height: 1.2;
}
#cta h2 em { font-style: italic; font-weight: 400; color: var(--wine); }
#cta p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 40px;
  line-height: 1.8;
  font-weight: 300;
}


/* ── FOOTER ── */
#footer {
  background: var(--text);
  padding: 40px 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo { font-family: var(--serif); font-size: 16px; font-weight: 500; color: #fff; }
.footer-logo em { font-style: italic; color: rgba(255,255,255,0.4); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.7); }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.2); }
