/* ============================================
   Cema Pires Hair Care
   Estilo: Natural, Minimal, Wellness
   Referência: zayaheadspa / shantih
   Mobile First
   ============================================ */

/* ---------- Variables ---------- */
:root {
  --rose: #c4a882;
  --rose-light: #d9c4a8;
  --rose-dark: #a68b6b;
  --rose-10: rgba(196, 168, 130, 0.1);

  --bg: #faf8f5;
  --bg-warm: #f4f0eb;
  --white: #ffffff;

  --text: #2e2a27;
  --text-soft: #5c554f;
  --text-muted: #9a928a;

  --dark: #1e1b18;

  --ff-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --ff-sans: 'Montserrat', system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --promo-bar-h: 40px;
}

@media (max-width: 600px) {
  :root { --promo-bar-h: 36px; }
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

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

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 16px;
}

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

.heading-2 {
  font-family: var(--ff-serif);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.heading-2--light { color: var(--white); }

.heading-3 {
  font-family: var(--ff-serif);
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 400;
  line-height: 1.25;
  color: var(--dark);
  margin-bottom: 16px;
}

.body-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-soft);
  margin-bottom: 16px;
}

.body-text--sm { font-size: 14px; }
.body-text--light { color: rgba(255,255,255,0.75); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--rose-dark);
  transition: gap 0.3s var(--ease);
}

.text-link:hover { gap: 10px; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow { max-width: 800px; }
.container--wide { max-width: 1320px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.3s ease;
}

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

.btn--white:hover {
  background: transparent;
  color: var(--white);
  box-shadow: inset 0 0 0 1px var(--white);
}

/* ---------- Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s var(--ease) forwards;
}

.fade-in--d1 { animation-delay: 0.2s; }
.fade-in--d2 { animation-delay: 0.4s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal--d1 { transition-delay: 0.15s; }
.reveal--visible { opacity: 1; transform: translateY(0); }


/* ============================================
   PROMO BAR
   ============================================ */
.promo-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  background: linear-gradient(90deg, var(--rose-dark) 0%, var(--rose) 50%, var(--rose-dark) 100%);
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.promo-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 9px 24px;
  text-align: center;
}

.promo-bar__text strong { font-weight: 600; letter-spacing: 0.02em; }
.promo-bar__sep { opacity: 0.55; margin: 0 6px; }

.promo-bar__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}

.promo-bar__cta:hover {
  background: var(--white);
  color: var(--rose-dark);
  transform: translateY(-1px);
}

.promo-bar--hidden { display: none; }

/* Pequeno: esconde texto secundário e centro */
@media (max-width: 600px) {
  .promo-bar { font-size: 12px; }
  .promo-bar__inner { padding: 8px 16px; gap: 8px 12px; }
  .promo-bar__sep,
  .promo-bar__text > span:not(.promo-bar__sep) { display: none; }
}


/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: var(--promo-bar-h);
  left: 0;
  width: 100%;
  z-index: 100;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease, top 0.4s ease;
  padding: 6px 0;
}

.promo-bar--hidden ~ .header { top: 0; }

.header--scrolled {
  background: rgba(250, 248, 245, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 2px 0;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Logo */
.header__logo { display: flex; align-items: center; }

.header__logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
  transition: height 0.3s ease, filter 0.3s ease;
}

.header__logo-img--color {
  filter: contrast(1.18) saturate(1.35) brightness(0.92);
}

.header--scrolled .header__logo-img { height: 78px; }

.header__logo-img--white { display: none; }

/* On hero (transparent header): show white logo */
.header:not(.header--scrolled) .header__logo-img--color { display: none; }
.header:not(.header--scrolled) .header__logo-img--white { display: block; }

/* When scrolled: show color logo */
.header--scrolled .header__logo-img--color { display: block; }
.header--scrolled .header__logo-img--white { display: none; }

/* Nav (desktop) */
.header__nav { display: none; }

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__nav-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s ease;
  position: relative;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s var(--ease);
}

.header__nav-link:hover::after,
.header__nav-link--active::after { width: 100%; }

.header--scrolled .header__nav-link { color: var(--text-soft); }
.header--scrolled .header__nav-link:hover,
.header--scrolled .header__nav-link--active { color: var(--rose-dark); }

/* ---------- Dropdown (desktop) ---------- */
.header__nav-item--has-dropdown {
  position: relative;
}

.header__nav-link--has-dropdown {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.header__nav-caret {
  transition: transform 0.3s var(--ease);
  flex: none;
}

.header__nav-item--has-dropdown:hover .header__nav-caret,
.header__nav-item--has-dropdown:focus-within .header__nav-caret {
  transform: rotate(180deg);
}

.header__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 280px;
  padding: 12px;
  background: var(--white);
  border: 1px solid rgba(196, 168, 130, 0.18);
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04), 0 20px 50px rgba(30, 27, 24, 0.12);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s var(--ease);
  margin-top: 16px;
}

.header__dropdown::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}

.header__dropdown::after {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  background: var(--white);
  border-left: 1px solid rgba(196, 168, 130, 0.18);
  border-top: 1px solid rgba(196, 168, 130, 0.18);
  transform: translateX(-50%) rotate(45deg);
}

.header__nav-item--has-dropdown:hover .header__dropdown,
.header__nav-item--has-dropdown:focus-within .header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.header__dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  text-transform: none;
  letter-spacing: 0;
  transition: background 0.3s var(--ease);
  position: relative;
  z-index: 1;
}

.header__dropdown-item + .header__dropdown-item { margin-top: 4px; }

.header__dropdown-item:hover { background: var(--bg-warm); }

.header__dropdown-icon {
  width: 36px;
  height: 36px;
  flex: none;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--rose-10);
  color: var(--rose-dark);
}

.header__dropdown-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.header__dropdown-title {
  font-family: var(--ff-serif);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--dark);
  line-height: 1.2;
}

.header__dropdown-sub {
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-transform: none;
}

/* Header CTA */
.header__cta {
  display: none;
  padding: 8px 24px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
  transition: all 0.3s ease;
}

.header__cta:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

.header--scrolled .header__cta {
  border-color: var(--rose);
  color: var(--rose-dark);
}

.header--scrolled .header__cta:hover {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
}

/* Menu Toggle */
.header__menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 200;
}

.header__menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s ease;
}

.header--scrolled .header__menu-toggle span { background: var(--dark); }

.header__menu-toggle--active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.header__menu-toggle--active span:nth-child(2) { opacity: 0; }
.header__menu-toggle--active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* Force dark lines when menu is open (over white bg) */
.header__menu-toggle--active span { background: var(--dark) !important; }


/* ============================================
   MOBILE NAV
   ============================================ */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-nav--open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav__inner { text-align: center; }

.mobile-nav__logo {
  display: inline-block;
  margin-bottom: 48px;
}

.mobile-nav__logo img {
  height: 80px;
  width: auto;
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 48px;
}

.mobile-nav__link {
  font-family: var(--ff-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--dark);
  transition: color 0.3s ease;
}

.mobile-nav__link:hover { color: var(--rose); }

/* ---------- Mobile dropdown (acordeão) ---------- */
.mobile-nav__group {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mobile-nav__group-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--ff-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--dark);
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 0;
  background: transparent;
}

.mobile-nav__group-toggle:hover { color: var(--rose); }

.mobile-nav__group-caret {
  transition: transform 0.4s var(--ease);
  flex: none;
}

.mobile-nav__group--open .mobile-nav__group-toggle { color: var(--rose); }
.mobile-nav__group--open .mobile-nav__group-caret { transform: rotate(180deg); }

.mobile-nav__sub {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition: max-height 0.45s var(--ease), opacity 0.4s var(--ease), margin-top 0.4s var(--ease);
}

.mobile-nav__group--open .mobile-nav__sub {
  max-height: 220px;
  opacity: 1;
  margin-top: 18px;
}

.mobile-nav__sub-link {
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
  transition: color 0.3s ease;
}

.mobile-nav__sub-link:hover { color: var(--rose-dark); }

.mobile-nav__cta {
  display: inline-block;
  padding: 14px 36px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  border: 1px solid var(--rose);
  transition: all 0.3s ease;
}

.mobile-nav__cta:hover {
  background: var(--rose);
  color: var(--white);
}


/* ============================================
   HERO — Image Slideshow
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__slideshow {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero__slide--active {
  opacity: 1;
}

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 6s ease;
}

.hero__slide--active img {
  transform: scale(1.04);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(30, 27, 24, 0.40) 0%,
    rgba(30, 27, 24, 0.50) 50%,
    rgba(30, 27, 24, 0.55) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 680px;
}

.hero__title {
  font-family: var(--ff-serif);
  font-size: clamp(32px, 7vw, 56px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero__subtitle {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.hero__btn {
  display: inline-block;
  padding: 14px 44px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
  transition: all 0.3s ease;
}

.hero__btn:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}


/* ============================================
   PHILOSOPHY
   ============================================ */
.philosophy {
  position: relative;
  padding: 90px 0 100px;
  background: var(--bg);
  overflow: hidden;
}

.philosophy__quote-mark {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: auto;
  color: var(--rose);
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
}

.philosophy__content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.philosophy__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 18px;
}

.philosophy__heading {
  font-family: var(--ff-serif);
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}

.philosophy__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--rose);
  margin-bottom: 32px;
}

.philosophy__divider svg { flex: none; }

.philosophy__divider-line {
  width: 70px;
  height: 1px;
  background-image: radial-gradient(circle, currentColor 1px, transparent 1.4px);
  background-size: 6px 1px;
  background-repeat: repeat-x;
  background-position: center;
  opacity: 0.7;
}

.philosophy__quote {
  font-family: var(--ff-serif);
  font-size: clamp(20px, 3.2vw, 26px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 24px;
  border: none;
  letter-spacing: -0.005em;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.philosophy__author {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--rose-dark);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}


/* ============================================
   ABOUT PREVIEW
   ============================================ */
.about-preview {
  position: relative;
  padding: 80px 0 90px;
  background: var(--bg-warm);
}

.about-preview__grid {
  display: grid;
  gap: 48px;
}

.about-preview__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-preview__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  margin-bottom: 18px;
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--rose-dark);
  background: rgba(196, 168, 130, 0.10);
  border: 1px solid rgba(196, 168, 130, 0.35);
  border-radius: 999px;
}

.about-preview__badge svg {
  color: var(--rose);
  flex: none;
}

.about-preview__eyebrow {
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 20px;
}

.about-preview__body strong {
  color: var(--text);
  font-weight: 600;
}

.about-preview__title {
  font-family: var(--ff-serif);
  font-size: clamp(32px, 5.4vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}

.about-preview__divider {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--rose);
  margin-bottom: 28px;
}

.about-preview__divider svg { flex: none; }

.about-preview__dots {
  height: 1px;
  width: 60px;
  background-image: radial-gradient(circle, currentColor 0.8px, transparent 1.2px);
  background-size: 6px 1px;
  background-repeat: repeat-x;
  background-position: center;
}

.about-preview__body {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-soft);
  margin-bottom: 24px;
}

.about-preview__quote {
  position: relative;
  padding-left: 18px;
  margin: 0 0 32px;
  border-left: 2px solid var(--rose);
  font-style: italic;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
}

.about-preview__founder {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 4px;
}

.about-preview__founder-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-warm);
  flex: none;
}

.about-preview__founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-preview__founder-name {
  font-family: var(--ff-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 2px;
}

.about-preview__founder-role {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

.about-preview__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  margin-top: 32px;
  padding: 14px 32px;
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  background: transparent;
  border: 1px solid var(--rose);
  border-radius: 0;
  position: relative;
  overflow: hidden;
  transition: color 0.4s var(--ease), border-color 0.4s var(--ease);
  isolation: isolate;
}

.about-preview__btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--dark);
  transform: translateX(-101%);
  transition: transform 0.5s var(--ease);
  z-index: -1;
}

.about-preview__btn span,
.about-preview__btn svg {
  position: relative;
  z-index: 1;
}

.about-preview__btn svg {
  transition: transform 0.4s var(--ease);
}

.about-preview__btn:hover {
  color: var(--white);
  border-color: var(--dark);
}

.about-preview__btn:hover::before {
  transform: translateX(0);
}

.about-preview__btn:hover svg {
  transform: translateX(4px);
}

.about-preview__video {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 24px auto 32px;
  isolation: isolate;
}

.about-preview__video::before {
  content: '';
  position: absolute;
  inset: 22px -22px -22px 22px;
  border: 1px solid var(--rose);
  border-radius: 6px;
  z-index: -1;
  opacity: 0.55;
  transition: inset 0.6s var(--ease);
}

.about-preview__video::after {
  content: '';
  position: absolute;
  inset: 14px -14px -14px 14px;
  background: var(--rose-light);
  border-radius: 6px;
  z-index: -2;
  opacity: 0.35;
}

.about-preview__video:hover::before {
  inset: 18px -18px -18px 18px;
}

.about-preview__video video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
  border-radius: 6px;
  box-shadow: 0 30px 70px -28px rgba(30, 27, 24, 0.45),
              0 12px 30px -12px rgba(30, 27, 24, 0.18);
  position: relative;
  z-index: 1;
}


/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 90px 0 100px;
  background: var(--bg);
}

.services__header {
  text-align: center;
  margin-bottom: 56px;
}

.services__grid {
  display: grid;
  gap: 48px;
}

.services__card {
  display: grid;
  gap: 0;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 18px 50px -28px rgba(30, 27, 24, 0.18),
              0 6px 18px -10px rgba(30, 27, 24, 0.06);
  border: 1px solid rgba(196, 168, 130, 0.15);
  border-radius: 4px;
  transition: box-shadow 0.5s var(--ease), transform 0.5s var(--ease);
}

.services__card:hover {
  box-shadow: 0 30px 70px -28px rgba(30, 27, 24, 0.28),
              0 10px 26px -10px rgba(30, 27, 24, 0.10);
  transform: translateY(-3px);
}

.services__card-img {
  overflow: hidden;
}

.services__card-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.services__card:hover .services__card-img img {
  transform: scale(1.05);
}

.services__card-body {
  position: relative;
  padding: 36px 28px 32px;
}

.services__card-number {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--ff-serif);
  font-size: 30px;
  font-weight: 300;
  font-style: italic;
  color: var(--rose);
  opacity: 0.55;
  line-height: 1;
  letter-spacing: -0.02em;
}

.services__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
  margin-bottom: 24px;
}

.services__list li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 14px;
  position: relative;
}

.services__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--rose-light);
}


/* ============================================
   PORTFOLIO PREVIEW
   ============================================ */
.portfolio-preview {
  padding: 80px 0;
  background: var(--bg-warm);
}

.portfolio-preview__header {
  text-align: center;
  margin-bottom: 48px;
}

.portfolio-preview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.portfolio-preview__item {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: 2px;
}

.portfolio-preview__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
  transition: transform 0.6s var(--ease);
}

.portfolio-preview__item--tall {
  grid-row: span 2;
}

.portfolio-preview__item--tall img {
  aspect-ratio: auto;
}

.portfolio-preview__overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 27, 24, 0);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  transition: background 0.4s ease;
}

.portfolio-preview__item:hover .portfolio-preview__overlay {
  background: rgba(30, 27, 24, 0.35);
}

.portfolio-preview__item:hover img {
  transform: scale(1.04);
}

.portfolio-preview__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s var(--ease);
}

.portfolio-preview__item:hover .portfolio-preview__tag {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-preview__footer {
  text-align: center;
  margin-top: 40px;
}


/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 80px 0;
  background: var(--bg);
  overflow: hidden;
}

.testimonials__header {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials__track {
  display: flex;
  transition: transform 0.6s var(--ease);
}

.testimonials__slide {
  min-width: 100%;
  text-align: center;
  padding: 0 16px;
}

.testimonials__avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 18px;
  display: block;
  border: 2px solid var(--white);
  box-shadow: 0 6px 18px -6px rgba(30, 27, 24, 0.18),
              0 0 0 1px rgba(196, 168, 130, 0.35);
  background: var(--bg-warm);
}

.testimonials__stars {
  display: flex;
  justify-content: center;
  gap: 3px;
  color: var(--rose);
  margin-bottom: 22px;
}

.testimonials__quote {
  position: relative;
  font-family: var(--ff-serif);
  font-size: clamp(17px, 2.5vw, 22px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
  color: var(--text);
  margin: 0 auto 26px;
  max-width: 580px;
  padding-top: 22px;
  border: none;
}

.testimonials__quote::before {
  content: '\201C';
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--ff-serif);
  font-style: normal;
  font-size: 72px;
  line-height: 1;
  color: var(--rose);
  opacity: 0.3;
  pointer-events: none;
}

.testimonials__cite {
  display: block;
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
  color: var(--dark);
  margin-bottom: 10px;
}

.testimonials__age {
  font-weight: 400;
  color: var(--text-muted);
}

.testimonials__service {
  display: inline-block;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose-dark);
  background: rgba(196, 168, 130, 0.10);
  border: 1px solid rgba(196, 168, 130, 0.30);
}

.testimonials__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.testimonials__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--rose-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  transition: all 0.3s ease;
}

.testimonials__arrow:hover {
  border-color: var(--rose);
  color: var(--rose-dark);
}

.testimonials__dots {
  display: flex;
  gap: 8px;
}

.testimonials__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose-light);
  opacity: 0.4;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  padding: 0;
}

.testimonials__dot--active {
  opacity: 1;
  background: var(--rose-dark);
}


/* ============================================
   CTA
   ============================================ */
.cta {
  padding: 100px 0 60px;
  background: var(--dark);
}

.cta__content { text-align: center; }


/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  padding: 56px 0 32px;
  color: rgba(255,255,255,0.5);
}

.footer__top {
  display: grid;
  gap: 40px;
  margin-bottom: 48px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  gap: 18px;
  align-self: stretch;
  padding-bottom: 54px;
}

.footer__logo {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 2.4 / 1;
  height: auto;
  object-fit: cover;
  object-position: center;
  margin: 0;
  opacity: 0.9;
}

.footer__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
}

.footer__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.footer__heading {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__list a,
.footer__list li {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s ease;
}

.footer__list a:hover { color: var(--rose-light); }

.footer__list--contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}

.footer__icon {
  flex: none;
  margin-top: 4px;
  color: var(--rose);
  opacity: 0.85;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.footer__social a:hover {
  color: var(--white);
  border-color: var(--rose);
  background: rgba(196, 168, 130, 0.12);
}

/* Mapa minimalista — grayscale por padrão, colorido no hover */
.footer__map {
  margin: 8px 0 36px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
}

.footer__map iframe {
  display: block;
  width: 100%;
  height: 260px;
  border: 0;
  filter: grayscale(0.85) contrast(1.05) brightness(0.85);
  transition: filter 0.6s var(--ease);
}

.footer__map:hover iframe {
  filter: grayscale(0) contrast(1) brightness(1);
}

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}


/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: wpAppear 0.4s 1s var(--ease) both;
}

.whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

@keyframes wpAppear {
  from { opacity: 0; transform: scale(0); }
  to { opacity: 1; transform: scale(1); }
}


/* ============================================
   RESPONSIVE — 600px
   ============================================ */
@media (min-width: 600px) {
  .about-preview__grid {
    grid-template-columns: 7fr 5fr;
    gap: 48px;
    align-items: center;
  }

  .portfolio-preview__grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
  }

  .footer__nav {
    grid-template-columns: 1fr 1fr 1fr;
  }
}


/* ============================================
   RESPONSIVE — 768px
   ============================================ */
@media (min-width: 768px) {
  .container { padding: 0 40px; }

  .philosophy { padding: 100px 0; }
  .philosophy__quote { font-size: 26px; }

  .about-preview { padding: 80px 0 100px; }
  .about-preview__grid { gap: 64px; }

  .about-preview__video { max-width: 360px; }
  .about-preview__video video { max-height: 560px; }

  .portfolio-preview { padding: 100px 0; }
  .portfolio-preview__grid { gap: 12px; }

  .services { padding: 100px 0; }

  .services__card {
    grid-template-columns: 1fr 1fr;
  }

  .services__card--reverse .services__card-img { order: 2; }

  .services__card-img img { aspect-ratio: auto; height: 100%; min-height: 360px; }

  .services__card-body {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .testimonials { padding: 100px 0; }

  .footer__top {
    grid-template-columns: 1.2fr 2fr;
    gap: 64px;
  }
}


/* ============================================
   RESPONSIVE — 1024px (Desktop)
   ============================================ */
@media (min-width: 1024px) {
  .header__nav { display: flex; }
  .header__cta { display: inline-block; }
  .header__menu-toggle { display: none; }

  .header__logo-img { height: 124px; }
  .header--scrolled .header__logo-img { height: 92px; }

  .hero__title { font-size: 52px; }

  .philosophy { padding: 120px 0; }

  .about-preview__grid { gap: 80px; }

  .about-preview__video { max-width: 380px; }
  .about-preview__video video { max-height: 600px; }

  .portfolio-preview__grid { gap: 16px; }

  .services__card-body { padding: 56px 48px; }
  .services__grid { gap: 56px; }

  .testimonials { padding: 120px 0; }

  .cta { padding: 140px 0 80px; }
}


/* ============================================
   PAGE — SERVIÇOS (servicos.html)
   ============================================ */

/* Header solid mode (sub-páginas têm fundo claro debaixo) */
.header--solid {
  background: rgba(250, 248, 245, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.header--solid .header__logo-img--white { display: none; }
.header--solid .header__logo-img--color { display: block; }
.header--solid .header__nav-link { color: var(--text-soft); }
.header--solid .header__nav-link--active,
.header--solid .header__nav-link:hover { color: var(--rose-dark); }
.header--solid .header__cta {
  border-color: var(--rose);
  color: var(--rose-dark);
}
.header--solid .header__cta:hover {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
}
.header--solid .header__menu-toggle span { background: var(--dark); }

/* Page hero */
.page-hero {
  padding: calc(var(--promo-bar-h) + 130px) 0 60px;
  background: var(--bg);
  text-align: center;
}

.page-hero__title {
  font-family: var(--ff-serif);
  font-size: clamp(34px, 5.5vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--dark);
  margin: 12px 0 20px;
  letter-spacing: -0.01em;
}

.page-hero__subtitle {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-soft);
  max-width: 560px;
  margin: 0 auto;
}

/* ---------- Page hero com imagem (banner) ---------- */
.page-hero--image {
  position: relative;
  padding: calc(var(--promo-bar-h) + 120px) 0 140px;
  background: var(--dark);
  overflow: hidden;
  text-align: center;
}

/* Quando o banner é seguido por uma seção com evaluation-cta,
   o card "flutua" sobreposto ao banner */
.page-hero--image + .services-page {
  padding-top: 0;
}

.page-hero--image + .services-page .evaluation-cta {
  position: relative;
  z-index: 2;
  margin-top: -60px;
}

@media (min-width: 768px) {
  .page-hero--image {
    padding: calc(var(--promo-bar-h) + 140px) 0 160px;
  }

  .page-hero--image + .services-page .evaluation-cta {
    margin-top: -80px;
  }
}

.page-hero--image .page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero--image .page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  animation: heroZoom 14s ease-out forwards;
}

@keyframes heroZoom {
  to { transform: scale(1.08); }
}

.page-hero--image .page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30,27,24,0.55) 0%, rgba(30,27,24,0.60) 50%, rgba(30,27,24,0.78) 100%);
}

.page-hero--image .container {
  position: relative;
  z-index: 1;
}

.page-hero--image .eyebrow { color: var(--rose-light); }
.page-hero--image .page-hero__title { color: var(--white); }
.page-hero--image .page-hero__subtitle { color: rgba(255,255,255,0.82); }

.page-hero__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 18px;
  color: var(--rose-light);
}

.page-hero__divider-line {
  width: 40px;
  height: 1px;
  background: currentColor;
}

/* Section wrappers */
.services-page {
  padding: 60px 0 70px;
  background: var(--bg);
}

.services-page--alt {
  background: var(--bg-warm);
}

.services-page__header {
  text-align: left;
  margin-bottom: 48px;
}

.services-page__header--center { text-align: center; }
.services-page__header .body-text { margin-top: 16px; max-width: 580px; }
.services-page__header--center .body-text { margin-left: auto; margin-right: auto; }

/* Avaliação capilar — bloco intro */
.evaluation {
  display: grid;
  gap: 20px;
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid rgba(196, 168, 130, 0.20);
  border-radius: 6px;
  box-shadow: 0 18px 50px -28px rgba(30, 27, 24, 0.18);
}

.evaluation__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(196, 168, 130, 0.10);
  color: var(--rose-dark);
}

.evaluation__body strong { color: var(--text); font-weight: 600; }

/* ---------- Avaliação CTA (versão chamativa) ---------- */
.evaluation-cta {
  position: relative;
  padding: 44px 28px 48px;
  background: linear-gradient(135deg, var(--dark) 0%, #2a2622 100%);
  border-radius: 6px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 24px 60px -24px rgba(30, 27, 24, 0.35);
}

.evaluation-cta::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(196, 168, 130, 0.22), transparent 70%);
  z-index: -1;
}

.evaluation-cta::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(196, 168, 130, 0.10), transparent 70%);
  z-index: -1;
}

.evaluation-cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  margin-bottom: 22px;
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--rose);
  border-radius: 999px;
  animation: pulseSoft 2.4s ease-in-out infinite;
}

@keyframes pulseSoft {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.evaluation-cta__badge svg { flex: none; }

.evaluation-cta__title {
  font-family: var(--ff-serif);
  font-size: clamp(28px, 4.2vw, 38px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.evaluation-cta__title em {
  font-style: italic;
  color: var(--rose-light);
}

.evaluation-cta__sub {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  max-width: 480px;
  margin: 0 auto 28px;
}

.evaluation-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--white);
  border-radius: 0;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.evaluation-cta__btn:hover {
  transform: translateY(-2px);
  background: var(--rose);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(196, 168, 130, 0.45);
}

.evaluation-cta__btn svg { flex: none; }

.evaluation-cta__small {
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}

/* Price grid */
.price-grid {
  display: grid;
  gap: 28px;
}

/* Price card */
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(196, 168, 130, 0.18);
  border-radius: 6px;
  box-shadow: 0 18px 50px -32px rgba(30, 27, 24, 0.18);
  transition: box-shadow 0.5s var(--ease), transform 0.5s var(--ease);
  overflow: hidden;
}

.price-card:hover {
  box-shadow: 0 28px 60px -28px rgba(30, 27, 24, 0.25);
  transform: translateY(-3px);
}

.price-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-warm);
}

.price-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.price-card:hover .price-card__image img {
  transform: scale(1.05);
}

.price-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(30,27,24,0.18) 100%);
  pointer-events: none;
}

.price-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 28px 26px 28px;
}

.price-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  padding: 12px 26px;
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  background: transparent;
  border: 1px solid var(--rose);
  border-radius: 0;
  align-self: flex-start;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s var(--ease), border-color 0.4s var(--ease);
}

.price-card__btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--rose);
  transform: translateX(-101%);
  transition: transform 0.45s var(--ease);
  z-index: -1;
}

.price-card__btn:hover {
  color: var(--white);
  border-color: var(--rose);
}

.price-card__btn:hover::before {
  transform: translateX(0);
}

.price-card__btn svg {
  flex: none;
  transition: transform 0.4s var(--ease);
}

.price-card__btn:hover svg {
  transform: translateX(3px);
}

.price-card__head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 14px;
}

.price-card__num {
  font-family: var(--ff-serif);
  font-size: 28px;
  font-weight: 300;
  font-style: italic;
  color: var(--rose);
  opacity: 0.6;
  line-height: 1;
}

.price-card__title {
  font-family: var(--ff-serif);
  font-size: clamp(22px, 2.6vw, 26px);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.2;
  margin: 0;
}

.price-card__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 20px;
}

.price-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(196, 168, 130, 0.18);
  padding-top: 18px;
}

.price-card__list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  color: var(--text-soft);
}

.price-card__value {
  font-family: var(--ff-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--rose-dark);
  letter-spacing: 0.01em;
  font-variant-numeric: lining-nums tabular-nums;
  white-space: nowrap;
}

.price-card__value em {
  font-family: var(--ff-sans);
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-right: 4px;
}

.price-card__list--bullets li {
  display: list-item;
  list-style: none;
  padding-left: 18px;
  position: relative;
}

.price-card__list--bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--rose-light);
}

.price-card__list--two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
}

.price-card__list--two-col li {
  display: flex;
  padding-left: 14px;
  position: relative;
  justify-content: flex-start;
}

.price-card__list--two-col li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--rose-light);
}

.price-card__list--plain {
  border-top: none;
  padding-top: 0;
  margin-bottom: 18px;
}

.price-card__list--prices {
  margin-top: auto;
}

/* Big price block (single-price cards) */
.price-card__price {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(196, 168, 130, 0.18);
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.price-card__price em {
  font-family: var(--ff-sans);
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.price-card__price strong {
  font-family: var(--ff-sans);
  font-size: 26px;
  font-weight: 400;
  color: var(--rose-dark);
  letter-spacing: -0.005em;
  font-variant-numeric: lining-nums tabular-nums;
}

/* ============================================
   HEAD SPA — destaque escuro
   ============================================ */
.head-spa {
  position: relative;
  padding: 90px 0 100px;
  background: var(--bg);
  color: var(--text-soft);
}

.head-spa::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 60px;
  height: 1px;
  transform: translateX(-50%);
  background: var(--rose);
  opacity: 0.5;
}

.head-spa__grid {
  display: grid;
  gap: 24px;
  margin-top: 48px;
}

.head-spa__card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(196, 168, 130, 0.18);
  border-radius: 6px;
  box-shadow: 0 18px 50px -32px rgba(30, 27, 24, 0.18);
  transition: transform 0.5s var(--ease), background 0.4s ease, border-color 0.4s ease, box-shadow 0.5s var(--ease);
  overflow: hidden;
}

.head-spa__image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--dark);
}

.head-spa__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.head-spa__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(30,27,24,0.65) 100%);
  pointer-events: none;
}

.head-spa__card:hover .head-spa__image img {
  transform: scale(1.06);
}

.head-spa__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 28px 26px 30px;
}

.head-spa__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px -28px rgba(30, 27, 24, 0.25);
  border-color: rgba(196, 168, 130, 0.35);
}

.head-spa__card--featured {
  background: var(--white);
  border-color: var(--rose);
  box-shadow: 0 24px 60px -24px rgba(196, 168, 130, 0.4);
}

.head-spa__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 14px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--rose);
  border-radius: 999px;
  white-space: nowrap;
}

.head-spa__tier {
  font-family: var(--ff-serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  color: var(--rose);
  margin-bottom: 4px;
}

.head-spa__title {
  font-family: var(--ff-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.2;
}

.head-spa__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 18px;
}

.head-spa__features {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.head-spa__features li {
  position: relative;
  padding-left: 16px;
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.5;
}

.head-spa__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--rose);
}

.head-spa__meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: auto;
  margin-bottom: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid rgba(196, 168, 130, 0.18);
  border-bottom: 1px solid rgba(196, 168, 130, 0.18);
}

.head-spa__meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.head-spa__price {
  font-family: var(--ff-sans);
  font-size: 32px;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 24px;
  letter-spacing: -0.005em;
  font-variant-numeric: lining-nums tabular-nums;
}

.head-spa__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  margin-top: auto;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  background: transparent;
  border: 1px solid var(--rose);
  border-radius: 0;
  transition: all 0.3s ease;
}

.head-spa__btn:hover {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
}

.head-spa__btn--solid {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--white);
}

.head-spa__btn--solid:hover {
  background: var(--rose-dark);
  border-color: var(--rose-dark);
  color: var(--white);
}

/* ============================================
   PROCESS — stepper horizontal premium
   ============================================ */
.process {
  padding: 140px 0 140px;
  background: var(--bg);
}

.process__steps {
  position: relative;
  display: grid;
  gap: 30px;
  margin-top: 60px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.process__step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 30px;
}

/* Linha vertical entre bullets (mobile) */
.process__step:not(:last-child)::before {
  content: '';
  position: absolute;
  top: 64px;
  left: 27px;
  bottom: -6px;
  width: 1px;
  background: linear-gradient(180deg, rgba(196, 168, 130, 0.5), rgba(196, 168, 130, 0.1));
}

.process__bullet {
  position: relative;
  z-index: 2;
  flex: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-serif);
  font-size: 20px;
  font-weight: 500;
  font-style: italic;
  color: var(--rose-dark);
  letter-spacing: 0;
  box-shadow: 0 4px 14px rgba(196, 168, 130, 0.18);
  transition: background 0.4s var(--ease), color 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

@media (min-width: 900px) {
  .process__bullet {
    width: 76px;
    height: 76px;
    font-size: 26px;
  }
}

.process__step:hover .process__bullet {
  background: var(--rose);
  color: var(--white);
  transform: scale(1.06);
  box-shadow: 0 8px 22px rgba(196, 168, 130, 0.4);
}

.process__body {
  flex: 1;
  padding-top: 12px;
}

.process__title {
  font-family: var(--ff-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
  line-height: 1.25;
}

.process__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
  max-width: 320px;
}

/* Layout horizontal no desktop */
@media (min-width: 900px) {
  .process__steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 100%;
    margin-top: 90px;
  }

  /* Linha conectora horizontal entre bullets — vai do centro do bullet atual ao centro do próximo */
  .process__step:not(:last-child)::before {
    content: '';
    position: absolute;
    top: 37px;
    left: 50%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
      rgba(196, 168, 130, 0.4) 0%,
      rgba(196, 168, 130, 0.4) 100%);
    bottom: auto;
    z-index: 0;
  }

  .process__step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    padding: 0 24px;
  }

  .process__body {
    padding-top: 0;
    max-width: 240px;
  }

  .process__title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .process__desc {
    font-size: 14px;
    line-height: 1.7;
    max-width: 100%;
  }
}

/* ============================================
   CROSS-SELL (página de Salão)
   ============================================ */
.cross-sell {
  padding: 50px 0 80px;
  background: var(--bg);
}

.cross-sell__card {
  position: relative;
  padding: 44px 28px;
  background: var(--bg-warm);
  border-radius: 4px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.cross-sell__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at top left, var(--rose-10), transparent 70%);
  z-index: -1;
}

.cross-sell__card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at bottom right, var(--rose-10), transparent 70%);
  z-index: -1;
}

.cross-sell__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  color: var(--rose-dark);
  margin: 0 auto 18px;
  box-shadow: 0 6px 18px rgba(196, 168, 130, 0.14);
}

.cross-sell__card .eyebrow { margin-bottom: 10px; }

.cross-sell__card .heading-3 {
  max-width: 480px;
  margin: 0 auto 14px;
}

.cross-sell__card .body-text {
  max-width: 520px;
  margin: 0 auto 22px;
}

.cross-sell__card .text-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ============================================
   DROPDOWN ITEM ATIVO
   ============================================ */
.header__dropdown-item--active {
  background: var(--bg-warm);
}

.header__dropdown-item--active .header__dropdown-title {
  color: var(--rose-dark);
}

/* RESPONSIVE — Serviços */
@media (min-width: 600px) {
  .price-grid { grid-template-columns: 1fr 1fr; }
  .price-grid--two { grid-template-columns: 1fr 1fr; }

  .evaluation {
    grid-template-columns: auto 1fr;
    align-items: flex-start;
    gap: 28px;
    padding: 36px 40px;
  }

  .cross-sell__card { padding: 56px 40px; }
}

@media (min-width: 768px) {
  .page-hero { padding: calc(var(--promo-bar-h) + 150px) 0 80px; }
  .services-page { padding: 80px 0 90px; }
  .head-spa { padding: 110px 0 120px; }
  .head-spa__grid { grid-template-columns: 1fr 1fr 1fr; gap: 28px; align-items: stretch; }
  .head-spa__card--featured { transform: translateY(-12px); }
  .head-spa__card--featured:hover { transform: translateY(-16px); }
  .process { padding: 90px 0 100px; }
  .cross-sell { padding: 60px 0 100px; }
}

@media (min-width: 1024px) {
  .price-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .price-grid--two { grid-template-columns: 1fr 1fr; max-width: 900px; margin: 0 auto; }
}


/* ============================================
   CTA — destaque avaliação grátis
   ============================================ */
.cta__badge {
  display: inline-block;
  margin: 0 0 28px;
  padding: 9px 20px;
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--rose-light);
  border-radius: 2px;
}

.cta__btn { margin-top: 8px; }

.cta__small {
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.45);
}


/* ============================================
   PROMO MODAL (popup de boas-vindas)
   ============================================ */
.promo-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.promo-modal--open {
  opacity: 1;
  visibility: visible;
}

.promo-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 27, 24, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.promo-modal__box {
  position: relative;
  width: 100%;
  max-width: 460px;
  padding: 56px 36px 32px;
  background: var(--white);
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 30px 80px -20px rgba(30, 27, 24, 0.5);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.55s var(--ease);
}

.promo-modal--open .promo-modal__box {
  transform: translateY(0) scale(1);
}

.promo-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--text-muted);
  border-radius: 50%;
  transition: background 0.3s ease, color 0.3s ease;
}

.promo-modal__close:hover {
  background: rgba(196, 168, 130, 0.12);
  color: var(--rose-dark);
}

.promo-modal__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-dark);
  background: rgba(196, 168, 130, 0.12);
  border: 1px solid rgba(196, 168, 130, 0.4);
  border-radius: 999px;
}

.promo-modal__badge svg { color: var(--rose); flex: none; }

.promo-modal__title {
  font-family: var(--ff-serif);
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1.05;
}

.promo-modal__discount {
  font-size: clamp(44px, 10vw, 64px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--rose-dark);
  background: linear-gradient(135deg, var(--rose-dark) 0%, var(--rose) 60%, var(--rose-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.promo-modal__sub {
  font-family: var(--ff-sans);
  font-size: clamp(14px, 2.4vw, 16px);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--text-soft);
  font-variant-numeric: lining-nums tabular-nums;
}

.promo-modal__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 28px;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.promo-modal__text strong { color: var(--rose-dark); font-weight: 600; }

.promo-modal__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: #25D366;
  border-radius: 0;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 30px -8px rgba(37, 211, 102, 0.45);
}

.promo-modal__btn:hover {
  background: #1ebc56;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px -8px rgba(37, 211, 102, 0.55);
}

.promo-modal__skip {
  display: block;
  width: 100%;
  margin-top: 14px;
  padding: 8px;
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: underline;
  text-decoration-color: rgba(154, 146, 138, 0.4);
  text-underline-offset: 3px;
  transition: color 0.3s ease;
}

.promo-modal__skip:hover { color: var(--text); }

@media (max-width: 480px) {
  .promo-modal__box { padding: 50px 24px 28px; }
}
