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

:root {
  --bg-base:   #F4F0E6;
  --bg-white:  #FDFAF4;
  --text-main: #2A2318;
  --copper:    #B56830;
  --copper-dk: #96531F;
  --green:     #2F5232;
  --sand:      #D4C4A8;
  --t:         all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--bg-base);
  color: var(--text-main);
  line-height: 1.8;
  font-weight: 300;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  letter-spacing: -0.02em;
}

/* ── WHATSAPP FLOAT ── */
.wp {
  position: fixed; bottom: 32px; right: 32px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,.3); transition: var(--t);
}
.wp:hover { transform: scale(1.08); }
.wp svg { width: 28px; fill: #fff; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  padding: 24px 48px;
  display: flex; justify-content: space-between; align-items: center;
  transition: var(--t);
}
.nav.scrolled {
  background-color: rgba(244,240,230,.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(42,35,24,.05);
  padding: 16px 48px;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 300;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-main); text-decoration: none;
  display: flex; align-items: center; gap: 12px;
}
.nav-logo-img {
  height: 40px; width: auto; object-fit: contain;
  flex-shrink: 0;
}
.nav-logo span { color: var(--copper); }

/* ── HIGHLIGHT ── */
.highlight {
  color: var(--copper);
  font-style: italic;
}
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  color: var(--text-main); text-decoration: none;
  font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 400; transition: var(--t); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--copper); transition: var(--t);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 400; padding: 12px 28px;
  background: var(--green); color: var(--bg-white);
  text-decoration: none; transition: var(--t);
  min-height: 48px; display: inline-flex; align-items: center;
}
.nav-cta:hover { background: #3d6b40; }
.btn-entrar {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 400; padding: 12px 28px;
  border: 1px solid var(--copper); color: var(--copper);
  text-decoration: none; transition: var(--t); margin-right: 12px;
  min-height: 48px; display: inline-flex; align-items: center;
}
.btn-entrar:hover { background: var(--copper); color: var(--bg-white); }
/* ── HAMBURGUER ── */
.mobile-toggle {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 8px; background: none; border: none;
}
.mobile-toggle span {
  width: 22px; height: 1.5px; background: var(--text-main);
  border-radius: 2px; transition: var(--t); display: block;
}

/* ── OVERLAY ── */
.mobile-overlay {
  display: none; position: fixed; inset: 0; z-index: 997;
  background: rgba(42,35,24,0.55); backdrop-filter: blur(2px);
  opacity: 0; transition: opacity 0.35s ease;
}
.mobile-overlay.active {
  display: block;
  animation: overlayIn 0.35s ease forwards;
}
@keyframes overlayIn { from { opacity: 0; } to { opacity: 1; } }

/* ── PAINEL OFFCANVAS ── */
.mobile-menu {
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 90vw;
  max-width: 380px;
  background: var(--bg-white);
  z-index: 998;
  flex-direction: column;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    transform 0.38s cubic-bezier(0.25,0.46,0.45,0.94),
    opacity 0.25s ease,
    visibility 0.25s ease;
  box-shadow: -12px 0 48px rgba(42,35,24,0.15);
  overflow-y: auto;
  overflow-x: hidden;
}

.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ── CABEÇALHO ── */
.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px 18px;
  border-bottom: 0.5px solid var(--sand);
  background: var(--bg-white);
  flex-shrink: 0;
}
.mobile-menu-logo { display: flex; align-items: center; text-decoration: none; }
.mobile-menu-logo img { height: 34px; width: auto; display: block; }
.mobile-close {
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  transition: background 0.2s; flex-shrink: 0;
}
.mobile-close:hover { background: rgba(42,35,24,0.06); }
.mobile-close svg { width: 18px; height: 18px; stroke: var(--text-main); }

/* ── ÁREA DO CLIENTE (topo) ── */
.mobile-cliente-btn {
  display: flex; align-items: center; justify-content: space-between;
  margin: 16px 24px;
  padding: 13px 18px;
  border: 1px solid var(--copper);
  color: var(--copper); text-decoration: none;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.mobile-cliente-btn:hover { background: var(--copper); color: var(--bg-white); }
.mobile-cliente-btn svg { width: 14px; height: 14px; stroke: currentColor; flex-shrink: 0; }

/* ── DIVISOR DE SEÇÃO ── */
.mobile-section-label {
  font-size: 10px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(42,35,24,0.35);
  padding: 4px 24px 8px; flex-shrink: 0;
}

/* ── NAVEGAÇÃO ── */
.mobile-menu-nav {
  display: flex; flex-direction: column;
  border-top: 0.5px solid rgba(212,196,168,0.5);
  flex-shrink: 0;
}
.mobile-nav-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 300;
  color: var(--text-main); text-decoration: none;
  border-bottom: 0.5px solid rgba(212,196,168,0.4);
  transition: background 0.2s, color 0.2s;
}
.mobile-nav-link:last-child { border-bottom: none; }
.mobile-nav-link:hover { background: rgba(212,196,168,0.15); color: var(--copper); }
.mobile-nav-arrow {
  width: 14px; height: 14px; stroke: var(--sand); flex-shrink: 0;
  transition: transform 0.2s, stroke 0.2s;
}
.mobile-nav-link:hover .mobile-nav-arrow { stroke: var(--copper); transform: translateX(3px); }

/* ── ESPAÇADOR ── */
.mobile-menu-spacer { flex: 1; min-height: 24px; }

/* ── RODAPÉ ── */
.mobile-menu-footer {
  padding: 20px 24px 28px;
  border-top: 0.5px solid var(--sand);
  background: var(--bg-base);
  flex-shrink: 0;
}
.mobile-menu-contact {
  display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px;
}
.mobile-contact-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: rgba(42,35,24,0.65);
  text-decoration: none; transition: color 0.2s;
}
.mobile-contact-item:hover { color: var(--copper); }
.mobile-contact-item svg { width: 14px; height: 14px; stroke: var(--copper); flex-shrink: 0; fill: none; }
.mobile-menu-cta {
  display: block; width: 100%; text-align: center;
  padding: 15px 20px;
  background: var(--green); color: #fff;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none; transition: background 0.2s;
  margin-bottom: 14px;
}
.mobile-menu-cta:hover { background: #3d6b40; color: #fff; }
.mobile-menu-address {
  font-size: 11px; color: rgba(42,35,24,0.4);
  text-align: center; line-height: 1.7; letter-spacing: 0.02em;
}

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; padding: 120px 48px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background: linear-gradient(135deg, #EDE8DA 0%, #E4DDCF 100%);
}
.hero-texture {
  position: absolute; inset: 0; z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.03;
}
.hero-content { max-width: 800px; text-align: center; animation: fadeInUp 1s ease-out both; }
.hero-eyebrow {
  font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--copper); margin-bottom: 24px; font-weight: 400; display: block;
}
.hero-title { font-size: clamp(44px,7vw,76px); line-height: 1.08; margin-bottom: 32px; color: var(--text-main); }
.hero-title em { font-style: italic; color: var(--copper); }
.hero-desc { font-size: 16px; line-height: 1.9; color: rgba(42,35,24,.65); max-width: 500px; margin: 0 auto 48px; }
.hero-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 52px; }
.pill {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  border: 1px solid var(--sand); padding: 7px 18px;
  color: rgba(42,35,24,.6); font-weight: 400;
}
.hero-btns { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn {
  padding: 18px 40px; font-size: 12px; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 500; cursor: pointer;
  transition: var(--t); text-decoration: none; display: inline-block;
  font-family: 'Montserrat', sans-serif; border: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green); color: var(--bg-white); border: 1px solid var(--green); }
.btn-primary:hover { background: #3d6b40; border-color: #3d6b40; }
.btn-secondary { background: transparent; color: var(--text-main); border: 1px solid var(--sand); }
.btn-secondary:hover { border-color: var(--text-main); }
.btn-copper { background: var(--copper); color: var(--bg-white); border: 1px solid var(--copper); }
.btn-copper:hover { background: var(--copper-dk); border-color: var(--copper-dk); }
.btn-ghost-w { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.5); }
.btn-ghost-w:hover { border-color: #fff; }
.btn-full { width: 100%; text-align: center; }

/* ── SCROLL INDICATOR ── */
.scroll-indicator {
  position: absolute; bottom: 48px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  animation: bounce 2s infinite;
}
.scroll-indicator span { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(42,35,24,.5); }
.scroll-indicator svg { width: 24px; height: 24px; stroke: rgba(42,35,24,.4); fill: none; }

@keyframes fadeInUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes bounce { 0%,20%,50%,80%,100% { transform:translateX(-50%) translateY(0); } 40% { transform:translateX(-50%) translateY(-10px); } 60% { transform:translateX(-50%) translateY(-5px); } }

/* ── SECTIONS ── */
section { padding: 140px 48px; }
.section-header { text-align: center; margin-bottom: 80px; }
.section-label {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--copper); margin-bottom: 16px; font-weight: 400; display: block;
}
.section-title { font-size: clamp(32px,4vw,48px); color: var(--text-main); }
.section-desc { font-size: 15px; color: rgba(42,35,24,.6); max-width: 500px; margin: 20px auto 0; }

/* ── FADE IN ── */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── NUMEROS DE PROVA ── */
.numeros {
  padding: 60px 48px;
  background: var(--bg-white);
  border-bottom: 1px solid var(--sand);
}
.numeros-grid {
  display: flex; justify-content: center; align-items: center;
  gap: 0; max-width: 960px; margin: 0 auto 32px; flex-wrap: wrap;
}
.numero-item {
  text-align: center; flex: 1; min-width: 160px; padding: 24px 32px;
}
.numero-divider {
  width: 1px; height: 60px; background: var(--sand); flex-shrink: 0;
}
.numero-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; font-weight: 300; color: var(--text-main);
  line-height: 1; margin-bottom: 12px;
}
.numero-label {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(42,35,24,.5); font-weight: 400;
}
.numeros-sub {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-style: italic;
  color: rgba(42,35,24,.55); max-width: 600px;
  margin: 0 auto; font-weight: 300;
}

/* ── PHILOSOPHY / SOBRE ── */
.philosophy { background: var(--bg-white); }
.philosophy-image {
  position: relative; aspect-ratio: 4/5;
  background: #E8E4DC; overflow: hidden;
}
.philosophy-image img { width:100%; height:100%; object-fit:cover; transition: transform .8s ease; }
.philosophy-image:hover img { transform: scale(1.05); }
.philosophy-image-placeholder {
  width:100%; height:100%; display:flex; align-items:center; justify-content:center;
}
.philosophy-image-placeholder svg { width:80px; opacity:.12; }
.philosophy-image::after {
  content:''; position:absolute; bottom:-16px; right:-16px;
  width:55%; height:55%; border:1px solid var(--sand); pointer-events:none;
}
.philosophy-content { padding: 40px; }
.philosophy-content .section-label { text-align: left; }
.philosophy-content .section-title { text-align: left; margin-bottom: 32px; }
.philosophy-text { font-size: 16px; line-height: 2; color: rgba(42,35,24,.7); margin-bottom: 24px; }
.philosophy-features { display:grid; grid-template-columns:1fr 1fr; gap:32px; margin-top:48px; }
.philosophy-feature { border-top: 1px solid var(--sand); padding-top: 24px; }
.philosophy-feature h4 { font-size: 18px; margin-bottom: 12px; color: var(--text-main); }
.philosophy-feature p { font-size: 14px; color: rgba(42,35,24,.6); line-height: 1.7; }

/* ── TABS ── */
.tabs-nav {
  display: flex; max-width: 260px; margin: 0 auto 60px; border-bottom: 1px solid var(--sand);
}
.tab-btn {
  flex: 1; background: none; border: none; border-bottom: 2px solid transparent;
  padding: 14px 0; font-family: 'Montserrat', sans-serif;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(42,35,24,.5); cursor: pointer; margin-bottom: -1px; transition: var(--t);
}
.tab-btn.active { color: var(--copper); border-bottom-color: var(--copper); }
.tab-panel { display: none; }
.tab-panel.active { display: grid; grid-template-columns:1fr 1fr; gap:80px; max-width:1400px; margin:0 auto; align-items:center; }

/* ── TRATAMENTOS ── */
.tratamentos { background: var(--bg-base); }
.tratamentos-filter {
  display: flex; justify-content: center; gap: 32px; margin-bottom: 60px; flex-wrap: wrap;
}
.filter-btn {
  background: none; border: none; font-family: 'Montserrat', sans-serif;
  font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(42,35,24,.5); cursor: pointer; padding: 8px 0;
  position: relative; transition: var(--t);
}
.filter-btn.active, .filter-btn:hover { color: var(--text-main); }
.filter-btn.active::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--copper);
}
.tratamentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px; max-width: 1400px; margin: 0 auto;
}
.trat-card { background: var(--bg-white); transition: var(--t); cursor: pointer; }
.trat-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(42,35,24,.08); }
.trat-image { aspect-ratio: 3/4; background: #F0EDE8; position: relative; overflow: hidden; }
.trat-image img { width:100%; height:100%; object-fit:cover; transition:transform .6s ease; }
.trat-card:hover .trat-image img { transform: scale(1.08); }
.trat-image-ph { width:100%; height:100%; display:flex; align-items:center; justify-content:center; }
.trat-image-ph span {
  font-family:'Cormorant Garamond',serif; font-size:88px; font-style:italic;
  color:rgba(181,104,48,.15); user-select:none;
}
.trat-badge {
  position:absolute; top:16px; left:16px;
  background:var(--copper); color:#fff;
  font-size:10px; letter-spacing:.1em; text-transform:uppercase; padding:6px 12px;
}
.trat-quick {
  position:absolute; bottom:0; left:0; right:0;
  background: var(--green); color: #fff;
  padding: 18px; text-align:center;
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  font-weight: 400; font-family: 'Montserrat', sans-serif;
  transform: translateY(100%); transition: var(--t);
  text-decoration: none; display: block;
}
.trat-card:hover .trat-quick { transform: translateY(0); }
.trat-info { padding: 24px; text-align: center; }
.trat-cat { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--copper); margin-bottom: 8px; display: block; }
.trat-name { font-family:'Cormorant Garamond',serif; font-size: 22px; color:var(--text-main); margin-bottom:8px; }
.trat-tagline { font-size: 13px; color: rgba(42,35,24,.55); }

/* ── CANETAS EMAGRECEDORAS ── */
.canetas { background: var(--bg-base); }
.canetas-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 28px; max-width: 1200px; margin: 0 auto;
}
.caneta-card {
  background: var(--bg-white); padding: 40px 32px;
  transition: var(--t); position: relative;
}
.caneta-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(42,35,24,.08); }
.caneta-card--dest { border-top: 2px solid var(--copper); }
.caneta-badge {
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--copper); margin-bottom: 20px; display: block; font-weight: 400;
}
.caneta-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; color: var(--text-main);
  margin-bottom: 16px; line-height: 1.35; font-weight: 300;
}
.caneta-sub {
  font-size: 14px; color: rgba(42,35,24,.6); line-height: 1.8;
  font-style: italic; border-left: 1px solid var(--sand);
  padding-left: 16px; margin-bottom: 28px;
}
.caneta-cta {
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--copper); text-decoration: none; transition: var(--t); font-weight: 400;
}
.caneta-cta:hover { color: var(--copper-dk); }
.canetas-bottom {
  max-width: 1200px; margin: 40px auto 0; padding: 40px 48px;
  background: var(--green); display: flex;
  align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.canetas-bottom-question {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px,2.5vw,26px); color: var(--bg-base);
  font-style: italic; font-weight: 300; margin-bottom: 8px;
}
.canetas-bottom-sub { font-size: 13px; color: rgba(244,240,230,.6); line-height: 1.7; }

/* ── DIFERENCIAIS ── */
.diferenciais { background: var(--bg-white); }
.diferenciais-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; max-width: 1400px; margin: 0 auto; align-items: start;
}
.dif-text-block { font-size: 16px; line-height: 2; color: rgba(42,35,24,.7); margin-bottom: 24px; }
.dif-text-block strong { color: var(--text-main); font-weight: 500; }
.dif-highlight {
  background: var(--bg-base); padding: 28px 32px;
  border-left: 2px solid var(--copper); margin-bottom: 24px;
}
.dif-highlight p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-style: italic;
  color: var(--text-main); line-height: 1.7; font-weight: 300;
}
.dif-seals {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--sand);
}
.dif-seal {
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  border: 1px solid var(--sand); padding: 7px 16px;
  color: rgba(42,35,24,.55); font-weight: 400;
}
.dif-cards-col { display: flex; flex-direction: column; gap: 2px; }
.dif-card {
  background: var(--bg-base); padding: 24px 28px;
  display: flex; align-items: flex-start; gap: 20px; transition: var(--t);
}
.dif-card:hover { background: #edeae0; }
.dif-card-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border: 1px solid var(--sand); display: flex; align-items: center; justify-content: center;
}
.dif-card-icon svg { width: 20px; height: 20px; stroke: var(--copper); fill: none; }
.dif-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; color: var(--text-main); margin-bottom: 4px; font-weight: 300;
}
.dif-card-sub { font-size: 13px; color: rgba(42,35,24,.6); line-height: 1.7; }

/* ── CREDIBILIDADE ── */
.credibilidade {
  padding: 80px 48px;
  background: var(--bg-base);
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
}
.cred-strip {
  display: flex; justify-content: center; align-items: center;
  gap: 80px; flex-wrap: wrap; opacity: 0.45;
}
.cred-item {
  font-family: 'Cormorant Garamond', serif; font-size: 22px;
  letter-spacing: 0.12em; color: var(--text-main); text-transform: uppercase;
}

/* ── ANTES & DEPOIS ── */
.antes-depois { background: var(--bg-base); }
.ad-grid { max-width: 1200px; margin: 0 auto; }
.ad-placeholder { padding: 80px 48px; text-align: center; border: 1px dashed var(--sand); }
.ad-placeholder-icon {
  width: 48px; height: 48px; stroke: var(--sand); fill: none;
  margin: 0 auto 20px; display: block;
}
.ad-placeholder-text {
  font-family: 'Cormorant Garamond', serif; font-size: 22px;
  color: rgba(42,35,24,.3); margin-bottom: 8px; font-weight: 300;
}
.ad-placeholder-sub { font-size: 13px; color: rgba(42,35,24,.3); }

/* ── DEPOIMENTOS — CAROUSEL ── */
.testimonials { background: var(--bg-white); }
.test-google-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; margin-bottom: 48px; flex-wrap: wrap;
}
.test-google-score { display: flex; align-items: center; gap: 10px; }
.test-google-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 300; color: var(--text-main);
}
.test-google-stars { display: flex; gap: 3px; }
.test-google-stars svg { width: 16px; height: 16px; }
.test-google-label { font-size: 12px; color: rgba(42,35,24,.5); letter-spacing: 0.1em; }
.test-google-link {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--copper); text-decoration: none;
  border-bottom: 1px solid var(--sand); padding-bottom: 2px; transition: var(--t);
}
.test-google-link:hover { border-color: var(--copper); }
.test-carousel-wrap { overflow: hidden; max-width: 1200px; margin: 0 auto 32px; }
.test-carousel-track {
  display: flex; gap: 24px;
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.test-card {
  background: var(--bg-base); padding: 36px 32px;
  flex: 0 0 calc(50% - 12px); min-width: calc(50% - 12px);
  display: flex; flex-direction: column; gap: 16px;
}
.test-card--placeholder { opacity: 0.4; border: 1px dashed var(--sand); background: transparent; }
.test-stars { display: flex; gap: 3px; }
.test-stars svg { width: 14px; height: 14px; }
.test-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; font-style: italic;
  color: var(--text-main); line-height: 1.7; flex: 1; font-weight: 300;
}
.test-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--sand); gap: 12px; flex-wrap: wrap;
}
.test-name {
  font-size: 12px; font-weight: 500; color: var(--text-main);
  display: block; letter-spacing: 0.08em; text-transform: uppercase;
}
.test-meta { font-size: 11px; color: rgba(42,35,24,.5); display: block; margin-top: 2px; }
.test-badge {
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  border: 1px solid var(--sand); padding: 5px 12px;
  color: rgba(42,35,24,.5); white-space: nowrap;
}
.test-nav {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto;
}
.test-dots { display: flex; gap: 10px; align-items: center; }
.test-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sand); border: none; cursor: pointer;
  transition: var(--t); padding: 0;
}
.test-dot.active { background: var(--copper); width: 20px; border-radius: 4px; }
.test-arrows { display: flex; gap: 8px; }
.test-arr {
  width: 44px; height: 44px; border: 1px solid var(--sand);
  background: transparent; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: var(--t);
}
.test-arr:hover { border-color: var(--copper); }
.test-arr svg { width: 18px; height: 18px; stroke: var(--text-main); fill: none; }

/* ── FAQ ── */
.faq { background: var(--bg-base); }
.faq-filter { display: flex; justify-content: center; gap: 32px; margin-bottom: 60px; flex-wrap: wrap; }
.faq-filter-btn {
  background: none; border: none; font-family: 'Montserrat', sans-serif;
  font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(42,35,24,.5); cursor: pointer; padding: 8px 0;
  position: relative; transition: var(--t);
}
.faq-filter-btn.active, .faq-filter-btn:hover { color: var(--text-main); }
.faq-filter-btn.active::after { content:''; position:absolute; bottom:0; left:0; right:0; height:1px; background:var(--copper); }
.faq-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0 72px; max-width: 1200px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--sand); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; cursor: pointer; gap: 20px; min-height: 72px;
}
.faq-q-text { font-family:'Cormorant Garamond',serif; font-size: 20px; font-weight: 300; color: var(--text-main); line-height: 1.3; }
.faq-icon {
  width: 26px; height: 26px; flex-shrink: 0;
  border: 1px solid var(--sand); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; transition: var(--t);
}
/* Ícone CSS puro — elimina SVG do DOM (reduz 24 elementos + profundidade) */
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  width: 10px; height: 1.5px;
  background: rgba(42,35,24,.5);
  border-radius: 1px;
  transition: var(--t);
}
.faq-icon { position: relative; }
.faq-icon::after { transform: rotate(90deg); }
.faq-item.open .faq-icon { background: var(--copper); border-color: var(--copper); }
.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after { background: #fff; }
.faq-item.open .faq-icon::after { transform: rotate(0deg); }
.faq-answer { font-size:14px; color:rgba(42,35,24,.65); line-height:1.85; max-height:0; overflow:hidden; transition:max-height .4s ease, padding-bottom .3s ease; }
.faq-item.open .faq-answer { max-height: 260px; padding-bottom: 22px; }
.faq-bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; max-width: 1200px; margin: 48px auto 0;
  padding-top: 48px; border-top: 1px solid var(--sand); flex-wrap: wrap;
}
.faq-bottom-text p {
  font-family: 'Cormorant Garamond', serif; font-size: 28px;
  color: var(--text-main); margin-bottom: 6px; font-weight: 300;
}
.faq-bottom-text span { font-size: 14px; color: rgba(42,35,24,.55); }

/* ── CLUBE ── */
.clube { background: var(--bg-white); }
.clube-scarcity {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--copper); font-weight: 400; margin-bottom: 48px;
}
.clube-scarcity-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--copper); flex-shrink: 0; }
.clube-paths-title {
  text-align: center; font-size: 11px; letter-spacing: 0.25em;
  text-transform: uppercase; color: rgba(42,35,24,.5); margin-bottom: 32px;
}
.clube-paths {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 28px; max-width: 1200px; margin: 0 auto 48px;
}
.clube-path { padding: 52px 40px; background: var(--bg-base); position: relative; transition: var(--t); }
.clube-path:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(42,35,24,.09); }
.clube-path--dest { background: var(--green); }
.clube-path--dest .section-label { color: var(--copper); }
.clube-path--dest .clube-path-name { color: var(--bg-base); }
.clube-path--dest .ccard-rule { background: rgba(244,240,230,.15); }
.clube-path--dest .ccard-item { color: rgba(244,240,230,.7); }
.clube-path-name {
  font-family: 'Cormorant Garamond', serif; font-size: 30px;
  color: var(--text-main); margin-bottom: 6px; font-weight: 300;
}
.ccard-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--copper); color: #fff; font-size: 9px; letter-spacing: .2em;
  text-transform: uppercase; padding: 5px 18px;
}
.ccard-rule { height: 1px; background: var(--sand); margin: 28px 0; }
.ccard-item {
  font-size: 13px; color: rgba(42,35,24,.65); padding: 9px 0;
  display: flex; gap: 12px; align-items: flex-start; line-height: 1.5;
}
.ccard-item::before { content: '–'; color: var(--copper); flex-shrink: 0; }
.clube-base {
  max-width: 800px; margin: 0 auto 24px; padding: 32px 40px;
  background: var(--bg-base); border-left: 2px solid var(--copper);
}
.clube-base p { font-size: 15px; color: rgba(42,35,24,.7); line-height: 1.85; }
.clube-base strong { color: var(--text-main); font-weight: 500; }
.clube-price-note {
  text-align: center; font-size: 12px; color: rgba(42,35,24,.4); margin-top: 8px;
}

/* ── CTA SAZONAL / FINAL ── */
.cta-sazonal {
  background: var(--copper); text-align: center; padding: 120px 48px;
  position: relative; overflow: hidden;
}
.cta-sazonal::before { content:''; position:absolute; top:-80px; right:-80px; width:400px; height:400px; border-radius:50%; border:1px solid rgba(255,255,255,.1); pointer-events:none; }
.cta-sazonal::after  { content:''; position:absolute; bottom:-100px; left:-60px; width:320px; height:320px; border-radius:50%; border:1px solid rgba(255,255,255,.07); pointer-events:none; }
.cta-inner { position: relative; z-index: 1; }
.cta-eyebrow { font-size:11px; letter-spacing:.3em; text-transform:uppercase; color:rgba(255,255,255,.65); display:block; margin-bottom:20px; }
.cta-title { font-size:clamp(36px,5vw,62px); color:#fff; margin-bottom:22px; line-height:1.12; }
.cta-title em { font-style:italic; }
.cta-text { font-size:16px; color:rgba(255,255,255,.8); max-width:520px; margin:0 auto 48px; line-height:1.9; }

/* ── NEWSLETTER ── */
.newsletter { background: var(--bg-white); text-align: center; }
.newsletter-form { max-width: 500px; margin: 0 auto; }
.newsletter-input-wrapper { position: relative; margin-bottom: 24px; }
.newsletter-input {
  width: 100%; padding: 20px 0;
  border: none; border-bottom: 1px solid var(--sand);
  background: transparent; font-family: 'Montserrat', sans-serif;
  font-size: 16px; font-weight: 300; color: var(--text-main);
  outline: none; transition: var(--t);
}
.newsletter-input::placeholder { color: rgba(42,35,24,.4); }
.newsletter-input:focus { border-bottom-color: var(--copper); }
.newsletter-btn {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  background: none; border: none; font-size: 12px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--copper); cursor: pointer;
  font-family: 'Montserrat', sans-serif; font-weight: 400; transition: var(--t);
}
.newsletter-btn:hover { color: var(--copper-dk); }
.newsletter-msg { font-size: 14px; color: var(--copper); min-height: 24px; }
.newsletter-note { font-size: 12px; color: rgba(42,35,24,.4); margin-top: 16px; }

/* ── CONTATO ── */
.contato { background: var(--green); }
.contato-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; max-width:1400px; margin:0 auto; align-items:start; }
.contato .section-label { color:var(--copper); }
.contato .section-title { color:var(--bg-base); text-align:left; margin-bottom:24px; }
.ci { display:flex; gap:20px; align-items:flex-start; margin-bottom:28px; }
.ci-icon { width:44px; height:44px; flex-shrink:0; border:1px solid rgba(181,104,48,.35); display:flex; align-items:center; justify-content:center; }
.ci-icon svg { width:20px; stroke:var(--copper); fill:none; }
.ci-label { font-size:9px; letter-spacing:.28em; text-transform:uppercase; color:var(--copper); display:block; margin-bottom:5px; }
.ci-val { font-size:15px; color:var(--bg-base); line-height:1.6; }
.contato-cta { margin-top:40px; padding-top:36px; border-top:1px solid rgba(181,104,48,.2); display:flex; flex-direction:column; gap:12px; align-items:flex-start; }
.contato-cta p { font-family:'Cormorant Garamond',serif; font-style:italic; font-size:20px; color:var(--bg-base); margin-bottom:8px; line-height:1.5; font-weight:300; }
.contato-map { width:100%; aspect-ratio:1; overflow:hidden; border:1px solid rgba(181,104,48,.2); }
.contato-map iframe { width:100%; height:100%; border:none; filter:sepia(15%) contrast(88%); }

/* ── REDES SOCIAIS ── */
.redes-sociais { background: var(--bg-white); text-align: center; }
.redes-icons { display:flex; justify-content:center; gap:48px; margin-top:48px; flex-wrap:wrap; }
.rede-link {
  display:flex; flex-direction:column; align-items:center; gap:12px;
  text-decoration:none; color:var(--text-main); transition:var(--t);
}
.rede-link:hover { color: var(--copper); }
.rede-link svg { width:32px; height:32px; stroke:currentColor; }
.rede-link span { font-size:11px; letter-spacing:.2em; text-transform:uppercase; font-weight:400; }

/* ── FOOTER ── */
footer { background: var(--green); color: var(--bg-base); padding: 80px 48px 40px; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:60px; max-width:1400px; margin:0 auto 60px; }
.footer-brand-name { font-family:'Cormorant Garamond',serif; font-size:28px; font-weight:300; letter-spacing:.15em; text-transform:uppercase; margin-bottom:20px; color:var(--bg-base); }
.footer-brand p { font-size:14px; line-height:1.8; color:rgba(244,240,230,.6); max-width:300px; }
.footer-social { display:flex; gap:16px; margin-top:24px; }
.footer-social a { width:40px; height:40px; border:1px solid rgba(244,240,230,.2); display:flex; align-items:center; justify-content:center; transition:var(--t); }
.footer-social a:hover { border-color:var(--copper); background:var(--copper); }
.footer-social svg { width:18px; height:18px; stroke:var(--bg-base); fill:none; }
.footer-col h4 { font-family:'Montserrat',sans-serif; font-size:11px; letter-spacing:.2em; text-transform:uppercase; margin-bottom:24px; color:var(--bg-base); font-weight:500; }
.footer-col ul { list-style:none; }
.footer-col li { margin-bottom:12px; }
.footer-col a { font-size:14px; color:rgba(244,240,230,.6); text-decoration:none; transition:var(--t); }
.footer-col a:hover { color:var(--bg-base); }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; padding-top:40px; border-top:1px solid rgba(244,240,230,.1); max-width:1400px; margin:0 auto; flex-wrap:wrap; gap:20px; }
.footer-bottom p { font-size:12px; color:rgba(244,240,230,.4); }
.footer-legal { display:flex; gap:24px; }
.footer-legal span { font-size:12px; color:rgba(244,240,230,.4); }

/* ── LOGIN ── */
.login-wrap { min-height:100vh; display:flex; align-items:center; justify-content:center; background:var(--bg-base); padding:48px 24px; }
.login-box { width:100%; max-width:420px; }
.login-logo { font-family:'Cormorant Garamond',serif; font-size:28px; font-weight:300; letter-spacing:.15em; text-transform:uppercase; color:var(--text-main); text-decoration:none; display:block; text-align:center; margin-bottom:48px; }
.login-logo span { color:var(--copper); }
.login-title { font-size:32px; font-weight:300; color:var(--text-main); margin-bottom:8px; text-align:center; }
.login-sub { font-size:13px; color:rgba(42,35,24,.5); text-align:center; margin-bottom:48px; letter-spacing:.05em; }
.login-field { margin-bottom:32px; position:relative; }
.login-field label { font-size:10px; letter-spacing:.25em; text-transform:uppercase; color:var(--copper); display:block; margin-bottom:10px; font-weight:400; }
.login-field input { width:100%; padding:14px 0; border:none; border-bottom:1px solid var(--sand); background:transparent; font-family:'Montserrat',sans-serif; font-size:15px; font-weight:300; color:var(--text-main); outline:none; transition:border-color .3s ease; }
.login-field input:focus { border-bottom-color:var(--copper); }
.login-btn { width:100%; padding:18px; background:var(--green); color:var(--bg-white); border:none; font-family:'Montserrat',sans-serif; font-size:12px; letter-spacing:.2em; text-transform:uppercase; font-weight:400; cursor:pointer; transition:background .3s ease; margin-top:8px; }
.login-btn:hover { background:#3d6b40; }
.login-error { background:rgba(181,104,48,.08); border-left:2px solid var(--copper); padding:14px 16px; margin-bottom:32px; font-size:13px; color:var(--copper-dk); }
.login-back { display:block; text-align:center; margin-top:32px; font-size:12px; letter-spacing:.15em; text-transform:uppercase; color:rgba(42,35,24,.45); text-decoration:none; transition:color .3s ease; }
.login-back:hover { color:var(--text-main); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .tratamentos-grid { grid-template-columns: repeat(2,1fr); }
  .canetas-grid { grid-template-columns: 1fr 1fr; }
  .diferenciais-inner { grid-template-columns: 1fr; gap: 48px; }
  .clube-paths { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .tab-panel.active { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .nav, .nav.scrolled { padding: 20px 24px; }
  .nav-links, .nav-cta, .btn-entrar { display: none; }
  .mobile-toggle { display: flex; }
  .mobile-menu { display: flex; }
  .mobile-overlay { display: none; } /* começa oculto — JS adiciona .active */
  section { padding: 80px 24px; }
  .hero { padding: 120px 24px 80px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 300px; text-align: center; }
  .numeros { padding: 40px 24px; }
  .numeros-grid { gap: 0; }
  .numero-item { min-width: 140px; padding: 16px 20px; }
  .numero-val { font-size: 36px; }
  .numero-divider { height: 40px; }
  .tratamentos-grid { grid-template-columns: 1fr; }
  .canetas-grid { grid-template-columns: 1fr; }
  .canetas-bottom { padding: 28px 24px; }
  .diferenciais-inner { grid-template-columns: 1fr; }
  .faq-cols { grid-template-columns: 1fr; gap: 0; }
  .clube-paths { grid-template-columns: 1fr; }
  .contato-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cred-strip { gap: 40px; }
  .test-card { flex: 0 0 calc(100% - 0px); min-width: calc(100%); }
  .test-carousel-wrap { padding: 0; }
  .faq-bottom { flex-direction: column; align-items: flex-start; }
  .philosophy-features { grid-template-columns: 1fr; }
  .philosophy-content { padding: 0; }
  .philosophy-image::after { display: none; }
  .canetas-bottom { flex-direction: column; }
  .canetas-bottom .btn { max-width: 100%; }
  .nav-logo { font-size: 20px; gap: 8px; }
  .nav-logo-img { height: 32px; }
}