/* ============================================
   TOKENS
   ============================================ */
:root {
  /* cor */
  --bg: #FBF6F1;
  --bg-alt: #F3E6DA;
  --card: #F6ECE3;
  --ink: #2B211C;
  --ink-soft: #6C5D52;
  --line: #E3D1C1;
  --accent: #96503C;
  --accent-dark: #6B3527;
  --gold: #B08A5B;
  --white: #FFFFFF;

  /* tipografia */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* layout */
  --maxw: 1160px;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 22px;
}

/* ============================================
   RESET
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
table { border-collapse: collapse; width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.wrap {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ============================================
   TIPOGRAFIA
   ============================================ */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.9rem;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  line-height: 1.15;
  max-width: 20ch;
}

.section-lede {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 56ch;
  margin-top: 1rem;
}

.section-head {
  margin-bottom: 2.75rem;
}

/* ============================================
   BOTÕES
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.98rem;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover { background: var(--accent-dark); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.brand-icon {
  height: 42px;
  width: auto;
  display: block;
}
.brand-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
}
.brand-sub {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.03em;
}
.brand-icon-full {
  height: 64px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.65rem;
}
.main-nav a {
  font-size: 0.92rem;
  color: var(--ink-soft);
  position: relative;
  padding-bottom: 4px;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--ink); }
.main-nav .btn-primary { display: none; }

.header-actions { display: flex; align-items: center; gap: 1.5rem; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  display: block;
}

@media (max-width: 880px) {
  .main-nav {
    position: fixed;
    inset: 76px 0 0 0;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 1rem var(--pad) 2rem;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    border-bottom: 1px solid var(--line);
  }
  .main-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .main-nav a {
    width: 100%;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }
  .header-actions .btn-primary { display: none; }
  .main-nav .btn-primary {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    margin-top: 1.25rem;
    padding: 0.85rem 1.6rem;
    border-bottom: none;
    font-size: 0.98rem;
    color: var(--white);
    background: var(--accent);
  }
  .menu-toggle { display: flex; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  overflow: hidden;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  padding-block: clamp(2.5rem, 6vw, 5rem);
}
.hero-copy h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.5rem, 5.2vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.hero-copy p.lede {
  margin-top: 1.4rem;
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 46ch;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.1rem;
  flex-wrap: wrap;
}
.hero-figure {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  opacity: 0;
  transform: scale(1.03);
  animation: hero-reveal 0.9s ease-out 0.1s forwards;
}
.hero-figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: var(--focus, center);
}

@keyframes hero-reveal {
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 880px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-figure { order: -1; aspect-ratio: 16/11; }
  .hero-figure img { object-position: var(--focus-mobile, var(--focus, center)); }
}

/* ============================================
   SERVIÇOS — VISÃO GERAL
   ============================================ */
.services-overview {
  padding-block: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--line);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card {
  background: var(--bg);
  padding: 2.1rem 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  min-height: 220px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
}
.service-card p {
  color: var(--ink-soft);
  font-size: 0.94rem;
  flex-grow: 1;
}
.service-card .card-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
}

@media (max-width: 880px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ============================================
   SEÇÕES GERAIS
   ============================================ */
.section {
  padding-block: clamp(3.5rem, 7vw, 6rem);
  border-top: 1px solid var(--line);
  scroll-margin-top: 90px;
}
.section-alt { background: var(--bg-alt); }

.section-intro {
  color: var(--ink-soft);
  max-width: 62ch;
  margin-top: 1rem;
  font-size: 1.02rem;
}

/* ============================================
   TABELAS DE PREÇO
   ============================================ */
.pricing-block {
  margin-top: 2.5rem;
}
.pricing-block + .pricing-block { margin-top: 2.75rem; }

.pricing-block h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
}
.pricing-block .pricing-note {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-top: 0.35rem;
  font-style: italic;
}

.price-table {
  margin-top: 1.3rem;
}
.price-table th, .price-table td {
  text-align: left;
  padding: 0.95rem 0.5rem;
  border-bottom: 1px solid var(--line);
}
.price-table th {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.price-table td:first-child, .price-table th:first-child {
  padding-left: 0;
}
.price-table td:last-child, .price-table th:last-child {
  text-align: right;
  padding-right: 0;
  white-space: nowrap;
}
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table .price {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--accent-dark);
}
.price-table tr.highlight td { font-weight: 600; }

.pricing-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 780px) {
  .pricing-two-col { grid-template-columns: 1fr; gap: 0; }
}

/* ============================================
   GALERIA DE CÍLIOS
   ============================================ */
.gallery {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.85rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.7rem 0.6rem 0.6rem;
  background: linear-gradient(to top, rgba(43,33,28,0.82), transparent);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.25;
}

@media (max-width: 980px) {
  .gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   SPLIT (imagem + conteúdo) — sobrancelhas / micro / limpeza
   ============================================ */
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.split.reverse { grid-template-columns: 1.1fr 0.9fr; }
.split.reverse .split-media { order: 2; }

.split-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.split-media img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: var(--focus, center);
}
@media (max-width: 780px) {
  .split-media img { object-position: var(--focus-mobile, var(--focus, center)); }
}

.placeholder-media {
  width: 100%; height: 100%;
  background: linear-gradient(155deg, var(--card), var(--bg-alt));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}
.placeholder-media span {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1rem;
  opacity: 0.75;
}

@media (max-width: 780px) {
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split-media { aspect-ratio: 16/10; }
  .split.reverse .split-media { order: -1; }
}

/* ============================================
   LIMPEZA DE PELE — benefícios + preço em destaque
   ============================================ */
.price-highlight {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-top: 0.6rem;
}
.price-highlight .amount {
  font-family: var(--font-display);
  font-size: 3.1rem;
  font-weight: 600;
  color: var(--accent-dark);
  line-height: 1;
}
.price-highlight .unit { color: var(--ink-soft); font-size: 0.95rem; }

.benefits-list {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1.5rem;
}
.benefits-list li {
  padding-left: 1.15rem;
  position: relative;
  font-size: 0.96rem;
  color: var(--ink);
}
.benefits-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.6em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
@media (max-width: 540px) {
  .benefits-list { grid-template-columns: 1fr; }
}

/* ============================================
   CURSOS
   ============================================ */
.courses-grid {
  margin-top: 2.75rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}
.course-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
}
.course-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
}
.course-price {
  margin-top: 0.5rem;
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 1.05rem;
}
.course-card ul {
  margin-top: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex-grow: 1;
}
.course-card li {
  padding-left: 1.15rem;
  position: relative;
  font-size: 0.96rem;
  color: var(--ink-soft);
}
.course-card li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.6em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.course-card .btn { margin-top: 1.75rem; align-self: flex-start; }

@media (max-width: 780px) {
  .courses-grid { grid-template-columns: 1fr; }
}

/* ============================================
   CONTATO
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.contact-info dl {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.contact-info dt {
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-weight: 600;
}
.contact-info dd {
  margin: 0.3rem 0 0;
  font-size: 1.08rem;
}
.contact-info dd a:hover { color: var(--accent); }

.contact-cta {
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
}
.contact-cta h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  max-width: 18ch;
}
.contact-cta p {
  margin-top: 0.9rem;
  opacity: 0.88;
  max-width: 34ch;
}
.contact-cta .btn {
  margin-top: 1.75rem;
  background: var(--white);
  color: var(--accent-dark);
}
.contact-cta .btn:hover { background: var(--bg-alt); }

@media (max-width: 780px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  border-top: 1px solid var(--line);
  padding-block: 2.5rem;
}
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-links a { font-size: 0.9rem; color: var(--ink-soft); }
.footer-links a:hover { color: var(--accent); }
.footer-copy {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 1.75rem;
}

/* ============================================
   WHATSAPP FLUTUANTE (mobile)
   ============================================ */
.whatsapp-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 60;
  background: var(--accent);
  color: var(--white);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(43,33,28,0.22);
}
.whatsapp-float svg { width: 26px; height: 26px; }
@media (min-width: 881px) {
  .whatsapp-float { display: none; }
}