:root {
  --wine: #6E1E42;
  --wine-dark: #3F1027;
  --rose: #C98CA0;
  --rose-light: #F1D9DF;
  --blush: #FBF0EC;
  --cream: #FDF8F5;
  --gold: #C9A26B;
  --ink: #2B1720;
  --ink-soft: #7A5A66;
  --white: #FFFFFF;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  color: var(--ink);
  background: var(--cream);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: var(--wine-dark);
  line-height: 1.15;
}

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

ul {
  list-style: none;
}

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: 'Jost', sans-serif;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem;
  color: var(--rose);
  font-weight: 500;
  display: inline-block;
  margin-bottom: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 2px;
  font-family: 'Jost', sans-serif;
  font-size: .86rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all .35s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--wine);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--wine-dark);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-ghost {
  border-color: rgba(110, 30, 66, .35);
  color: var(--wine);
  background: transparent;
}

.btn-ghost:hover {
  background: var(--wine);
  color: var(--white);
  border-color: var(--wine);
}

/* ===== Reveal on scroll (Com Fallback Seguro) ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease-out, transform .6s ease-out;
  will-change: opacity, transform;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ===== Header ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 248, 245, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(110, 30, 66, .08);
  transition: background .3s ease;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--wine-dark);
  letter-spacing: .04em;
}

.logo-img {
  height: 46px;
  width: 46px;
  object-fit: cover;
  border-radius: 50%;
  border: 1.5px solid var(--wine);
  box-shadow: 0 2px 8px rgba(110, 30, 66, 0.15);
}

.logo span.tagline {
  font-size: .62rem;
  letter-spacing: .28em;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  color: var(--ink-soft);
  display: block;
  text-transform: uppercase;
}

nav ul {
  display: flex;
  gap: 34px;
}

nav ul li a {
  font-size: .82rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding-bottom: 4px;
}

nav ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--wine);
  transition: width .3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--wine-dark);
  cursor: pointer;
}

@media (max-width: 860px) {
  nav {
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px 24px 30px;
    border-bottom: 1px solid rgba(110, 30, 66, .1);
    transform: translateY(-130%);
    transition: transform .4s ease;
  }

  nav.open {
    transform: translateY(0);
  }

  nav ul {
    flex-direction: column;
    gap: 18px;
  }

  .nav-toggle {
    display: block;
  }

  .header-actions .btn-primary {
    display: none;
  }
}

/* ===== Hero ===== */
.hero {
  padding: 150px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -160px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--rose-light) 0%, transparent 70%);
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.4rem, 4.2vw, 3.5rem);
  margin-bottom: 22px;
  letter-spacing: .01em;
}

.hero h1 em {
  font-style: italic;
  color: var(--wine);
}

.hero p.lead {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 460px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

.hero-meta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-meta div {
  font-size: .82rem;
  color: var(--ink-soft);
}

.hero-meta strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--wine-dark);
  font-weight: 600;
}

.hero-photo {
  position: relative;
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 4px 60px 4px 4px;
  box-shadow: 0 15px 35px rgba(63, 16, 39, .12);
}

.hero-photo-tag {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--wine);
  color: var(--white);
  padding: 18px 24px;
  border-radius: 2px;
  max-width: 240px;
  box-shadow: 0 20px 40px rgba(63, 16, 39, .25);
}

.hero-photo-tag p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  line-height: 1.3;
  font-weight: 500;
}

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

  .hero-photo {
    order: -1;
    max-width: 340px;
    margin: 0 auto 20px;
  }

  .hero-photo-tag {
    left: 12px;
    bottom: -18px;
  }
}

/* ===== Section shells ===== */
section {
  padding: 90px 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}

.section-head p {
  color: var(--ink-soft);
  margin-top: 14px;
  font-size: 1rem;
}

/* ===== Sobre ===== */
.sobre {
  background: var(--blush);
}

.sobre-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 60px;
  align-items: center;
}

.sobre-photo img {
  border-radius: 60px 4px 60px 4px;
  aspect-ratio: 1/1.05;
  object-fit: cover;
  box-shadow: 0 15px 30px rgba(110, 30, 66, .1);
}

.sobre-badges {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 26px;
}

.sobre-badge {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.sobre-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 9px;
  flex-shrink: 0;
}

.sobre-badge p {
  font-size: .96rem;
  color: var(--ink);
}

.sobre-badge strong {
  color: var(--wine-dark);
}

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

  .sobre-photo {
    max-width: 320px;
    margin: 0 auto;
  }
}

/* ===== Serviços ===== */
.servicos-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 22px;
  border-radius: 30px;
  border: 1px solid rgba(110, 30, 66, .25);
  background: transparent;
  font-family: 'Jost', sans-serif;
  font-size: .84rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--wine);
  cursor: pointer;
  transition: all .3s ease;
}

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

.servico-group {
  display: none;
}

.servico-group.active {
  display: grid;
}

.servico-group {
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.servico-card {
  background: var(--white);
  border: 1px solid rgba(110, 30, 66, .08);
  border-radius: 6px;
  padding: 24px;
  transition: transform .35s ease, box-shadow .35s ease;
  display: flex;
  flex-direction: column;
}

.servico-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(110, 30, 66, .1);
}

.servico-card-img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 18px;
}

.servico-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--rose-light);
  color: var(--wine);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.servico-card h3 {
  font-size: 1.28rem;
  margin-bottom: 10px;
}

.servico-card p {
  font-size: .9rem;
  color: var(--ink-soft);
}

@media (max-width: 860px) {
  .servico-group {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .servico-group {
    grid-template-columns: 1fr;
  }
}

/* ===== Destaque Microagulhamento ===== */
.destaque {
  background: var(--wine);
  color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.destaque-text {
  padding: 56px;
}

.destaque .eyebrow {
  color: var(--rose-light);
}

.destaque h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 18px;
}

.destaque p {
  color: rgba(255, 255, 255, .82);
  margin-bottom: 26px;
}

.destaque-list {
  margin-bottom: 30px;
}

.destaque-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: .95rem;
  color: rgba(255, 255, 255, .92);
}

.destaque-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 600;
}

.destaque-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 26px;
}

.destaque-price .from {
  font-size: .85rem;
  color: rgba(255, 255, 255, .65);
}

.destaque-price .value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--gold);
}

.destaque-photo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  min-height: 340px;
}

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

  .destaque-text {
    padding: 40px 28px;
  }

  .destaque-photo img {
    min-height: 260px;
  }
}

/* ===== Ritual GM (elemento assinatura) ===== */
.ritual {
  background: var(--blush);
}

.ritual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 50px;
}

.ritual-photo img {
  border-radius: 8px;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(110, 30, 66, .1);
}

.ritual-flow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  margin-top: 20px;
}

.ritual-flow::before {
  content: '';
  position: absolute;
  top: 29px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: repeating-linear-gradient(to right, var(--rose) 0, var(--rose) 8px, transparent 8px, transparent 16px);
  z-index: 0;
}

.ritual-step {
  position: relative;
  z-index: 1;
  flex: 1;
  text-align: center;
  padding: 0 12px;
}

.ritual-num {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--wine);
  color: var(--wine);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.ritual-step h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.ritual-step p {
  font-size: .85rem;
  color: var(--ink-soft);
}

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

  .ritual-flow {
    flex-direction: column;
    gap: 34px;
  }

  .ritual-flow::before {
    display: none;
  }
}

/* ===== Instagram Feed Gallery ===== */
.insta-gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.insta-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 1/1;
  box-shadow: 0 4px 15px rgba(110, 30, 66, .08);
  background: var(--rose-light);
}

.insta-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.insta-gallery-item:hover img {
  transform: scale(1.08);
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(110, 30, 66, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity .3s ease;
  padding: 10px;
  text-align: center;
}

.insta-gallery-item:hover .insta-overlay {
  opacity: 1;
}

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

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

/* ===== Diferenciais ===== */
.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.diferencial {
  padding: 6px;
}

.diferencial .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--rose);
  letter-spacing: .1em;
  margin-bottom: 12px;
  display: block;
}

.diferencial h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.diferencial p {
  font-size: .88rem;
  color: var(--ink-soft);
}

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

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

/* ===== Depoimentos ===== */
.depoimentos {
  background: var(--wine-dark);
  color: var(--white);
}

.depoimentos .section-head h2 {
  color: var(--white);
}

.depoimentos .section-head p {
  color: rgba(255, 255, 255, .65);
}

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

.depo-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 6px;
  padding: 30px;
}

.depo-card .stars {
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 16px;
  font-size: .9rem;
}

.depo-card p.quote {
  font-size: .96rem;
  color: rgba(255, 255, 255, .88);
  margin-bottom: 20px;
  font-style: italic;
}

.depo-card .who {
  display: flex;
  align-items: center;
  gap: 12px;
}

.depo-card .avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: var(--wine-dark);
}

.depo-card .who span {
  font-size: .82rem;
  color: rgba(255, 255, 255, .6);
}

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

/* ===== FAQ ===== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(110, 30, 66, .15);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--wine-dark);
}

.faq-question .icon {
  font-size: 1.3rem;
  color: var(--rose);
  transition: transform .3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open .faq-question .icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.faq-answer p {
  padding-bottom: 22px;
  color: var(--ink-soft);
  font-size: .94rem;
  max-width: 640px;
}

/* ===== CTA final ===== */
.cta-final {
  background: linear-gradient(135deg, var(--wine) 0%, var(--wine-dark) 100%);
  color: var(--white);
  border-radius: 8px;
  padding: 70px 40px;
  text-align: center;
}

.cta-final h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin-bottom: 16px;
}

.cta-final p {
  color: rgba(255, 255, 255, .78);
  max-width: 520px;
  margin: 0 auto 32px;
}

.cta-final .btn-primary {
  background: var(--gold);
  color: var(--wine-dark);
}

.cta-final .btn-primary:hover {
  background: var(--white);
  color: var(--wine-dark);
}

/* ===== Localização ===== */
.local-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.local-info li {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
  align-items: flex-start;
}

.local-info .ic {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--rose-light);
  color: var(--wine);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.local-info strong {
  display: block;
  color: var(--wine-dark);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
}

.local-info span {
  font-size: .9rem;
  color: var(--ink-soft);
}

.local-map img {
  border-radius: 6px;
  aspect-ratio: 1/1;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(110, 30, 66, .1);
}

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

/* ===== Footer ===== */
footer {
  background: var(--wine-dark);
  color: rgba(255, 255, 255, .7);
  padding: 50px 0 26px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 42px;
  width: 42px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--rose);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  margin-bottom: 24px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--white);
}

.footer-grid p {
  max-width: 280px;
  font-size: .88rem;
}

.footer-links {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-links h5 {
  text-transform: uppercase;
  font-size: .74rem;
  letter-spacing: .12em;
  color: var(--rose-light);
  margin-bottom: 14px;
}

.footer-links li {
  margin-bottom: 9px;
  font-size: .9rem;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .78rem;
}

/* ===== Floating WhatsApp ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, .45);
  z-index: 999;
  transition: transform .3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}
