/* ================================================================
   CHANA POETA — Design System v3.0
   Refactored with Editorial Principles (slide-creator inspired)
   Architecture: Tokens → Reset → Utilities → Components → Sections → Responsive
   ================================================================ */

/* ----------------------------------------------------------------
   1. DESIGN TOKENS
   ---------------------------------------------------------------- */
:root {
  /* Color Palette — Warm editorial tones */
  --bg:            #FDFAF6;
  --bg-alt:        #F5EFE3;
  --bg-dark:       #1C1208;
  --surface:       #FFFFFF;
  --border:        #E5D5C0;
  --border-light:  #EEE8DC;

  /* Brand */
  --accent:        #8B5E3C;
  --accent-hover:  #6D4830;
  --accent-light:  #C8826D;
  --gold:          #C8882E;
  --gold-light:    #FFF5E0;

  /* Semantic */
  --green:         #2A7A50;
  --green-bg:      #ECFDF5;
  --green-border:  #10B981;
  --orange:        #C45B1E;
  --orange-bg:     #FFF7ED;
  --orange-border: #F97316;
  --wa:            #25D366;
  --wa-hover:      #1EBE57;

  /* Text */
  --text:          #1C1208;
  --text-muted:    #6B5646;
  --text-light:    rgba(255,255,255,0.75);
  --text-on-dark:  #F8F4ED;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Montserrat', system-ui, -apple-system, sans-serif;

  /* Fluid Type Scale */
  --text-hero:   clamp(2.6rem, 5.5vw + 0.5rem, 4.25rem);
  --text-h2:     clamp(1.85rem, 3.5vw + 0.25rem, 2.75rem);
  --text-h3:     clamp(1.2rem, 2.5vw, 1.65rem);
  --text-lead:   clamp(1rem, 1.5vw + 0.15rem, 1.15rem);
  --text-body:   1rem;
  --text-sm:     0.875rem;
  --text-xs:     0.75rem;
  --text-label:  0.68rem;

  /* Spacing Scale (8px base) */
  --sp-1:  0.5rem;
  --sp-2:  1rem;
  --sp-3:  1.5rem;
  --sp-4:  2rem;
  --sp-5:  2.5rem;
  --sp-6:  3rem;
  --sp-8:  4rem;
  --sp-10: 5rem;
  --sp-12: 6rem;

  /* Layout */
  --container-max: 1200px;
  --container-pad: clamp(1.25rem, 4vw, 3rem);
  --section-pad:   clamp(4.5rem, 7vw, 7.5rem);

  /* Effects */
  --shadow-sm: 0 2px 10px rgba(28,18,8,.05);
  --shadow-md: 0 6px 24px rgba(28,18,8,.09);
  --shadow-lg: 0 16px 48px rgba(28,18,8,.14);
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-pill: 999px;
  --ease: cubic-bezier(.16,1,.3,1);
  --transition: .25s var(--ease);
}

/* ----------------------------------------------------------------
   2. BASE RESET
   ---------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol { list-style: none; }

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--accent-hover); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

/* ----------------------------------------------------------------
   3. LAYOUT UTILITIES
   ---------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.container-narrow { max-width: 860px; }
.container-tight   { max-width: 700px; }

.section { padding: var(--section-pad) 0; }

.bg-alt  { background-color: var(--bg-alt); }
.bg-dark { background-color: var(--bg-dark); }

.text-center { text-align: center; }
.text-left   { text-align: left; }

.mt-1 { margin-top: var(--sp-1); }
.mt-2 { margin-top: var(--sp-2); }
.mt-3 { margin-top: var(--sp-3); }
.mt-4 { margin-top: var(--sp-4); }
.mt-5 { margin-top: var(--sp-5); }
.mt-6 { margin-top: var(--sp-6); }
.mt-8 { margin-top: var(--sp-8); }

.mb-4 { margin-bottom: var(--sp-4); }
.mb-6 { margin-bottom: var(--sp-6); }

/* ----------------------------------------------------------------
   4. TYPOGRAPHY COMPONENTS
   ---------------------------------------------------------------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-label);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-light);
  margin-bottom: var(--sp-2);
}

.section-title {
  font-size: var(--text-h2);
  color: var(--text);
  margin-bottom: var(--sp-3);
  line-height: 1.15;
}

.section-intro {
  font-size: var(--text-lead);
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ----------------------------------------------------------------
   5. BUTTON SYSTEM
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.875rem 1.875rem;
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  line-height: 1;
}

.btn--sm  { padding: 0.6rem 1.375rem; font-size: var(--text-sm); }
.btn--lg  { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn--xl  { padding: 1.2rem 2.5rem; font-size: 1.1rem; }

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139,94,60,.3);
}

.btn-whatsapp {
  background: var(--wa);
  color: #fff;
  box-shadow: 0 6px 18px rgba(37,211,102,.3);
}
.btn-whatsapp:hover {
  background: var(--wa-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37,211,102,.45);
}

.btn-outline {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-google {
  background: #fff;
  border-color: var(--border);
  color: var(--text);
  gap: 0.75rem;
}
.btn-google:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--pulse {
  animation: pulse-wa 2.5s infinite;
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,.5), 0 6px 18px rgba(37,211,102,.3); }
  60%       { box-shadow: 0 0 0 14px rgba(37,211,102,0), 0 6px 18px rgba(37,211,102,.3); }
}

.icon-wa { flex-shrink: 0; }

/* ----------------------------------------------------------------
   6. TOP BAR
   ---------------------------------------------------------------- */
.top-bar {
  background: var(--accent);
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 500;
  padding: 0.55rem var(--container-pad);
  text-align: center;
  line-height: 1.5;
}

.top-bar strong { font-weight: 700; }

.top-bar-link {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  margin-left: var(--sp-2);
  white-space: nowrap;
}
.top-bar-link:hover { color: var(--gold-light); }

/* ----------------------------------------------------------------
   7. HEADER & NAVIGATION
   ---------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(253,250,246,.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow var(--transition);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: var(--sp-4);
}

.brand-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px;
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.5px;
}

.brand-tagline {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--accent-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-menu-close {
  display: none;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: var(--sp-3);
  flex-wrap: wrap;
  justify-content: center;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: var(--sp-1) 0;
  position: relative;
  white-space: nowrap;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-light);
  border-radius: 1px;
  transition: width var(--transition);
}
.nav-link:hover        { color: var(--accent); }
.nav-link:hover::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-shrink: 0;
}

/* Hamburger */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  -webkit-tap-highlight-color: transparent;
}
.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transform-origin: center;
  transition: transform .3s var(--ease), opacity .2s ease;
}
.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Backdrop */
.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(28,18,8,.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.menu-backdrop.active { opacity: 1; visibility: visible; }

/* ----------------------------------------------------------------
   8. HERO SECTION  [H01 Big Claim Hero]
   ---------------------------------------------------------------- */
.hero {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
  background: linear-gradient(150deg, var(--bg) 55%, var(--bg-alt) 100%);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

/* Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  padding: 0.4rem 1.1rem;
  background: rgba(139,94,60,.1);
  border: 1px solid rgba(139,94,60,.2);
  color: var(--accent);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  margin-bottom: var(--sp-3);
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background: var(--accent-light);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(200,130,109,.7); }
  70%      { box-shadow: 0 0 0 7px rgba(200,130,109,0); }
}

/* Title */
.hero__title {
  font-size: var(--text-hero);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: var(--sp-4);
  color: var(--text);
}

/* Lead paragraph */
.hero__body {
  font-size: var(--text-lead);
  color: var(--text-muted);
  line-height: 1.78;
  margin-bottom: var(--sp-5);
}

/* Feature cards — 2-column modern grid */
.hero__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--border-light);
}

.hero__feature-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--accent-light);
  border-radius: var(--radius-md);
  padding: var(--sp-4) var(--sp-4) var(--sp-5);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  overflow: hidden;
}
.hero__feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 60%, rgba(139,94,60,.04));
  pointer-events: none;
}
.hero__feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--accent);
}

.hero__feature-icon {
  font-size: 2.25rem;
  display: block;
  line-height: 1;
  margin-bottom: var(--sp-1);
}

.hero__feature-title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.2;
}

.hero__feature-body {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.75;
  font-weight: 500;
}

/* Sub-divider between grid and feature cards */
.hero__sub-divider {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin: var(--sp-7) 0 var(--sp-5);
}
.hero__sub-line {
  flex: 1;
  height: 1px;
  background: var(--border-light);
}
.hero__sub-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

/* Photo */
.hero__image-wrap { position: relative; }

.hero__image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--surface);
}

.hero__img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: top center;
  transition: transform .6s var(--ease);
}
.hero__image-frame:hover .hero__img { transform: scale(1.03); }

/* Floating rating badge */
.hero__rating {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.85rem 1.2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.rating-stars-gold {
  color: #F59E0B;
  font-size: 1rem;
  letter-spacing: 2px;
  flex-shrink: 0;
}

.hero__rating p {
  font-size: var(--text-sm);
  color: var(--text);
  margin: 0;
  font-weight: 600;
  line-height: 1.35;
}

/* ----------------------------------------------------------------
   9. QUEM SOU EU  [P17 Credibility Bridge]
   ---------------------------------------------------------------- */
.quem-sou { background: var(--bg); }

.quem-sou__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2.5rem, 5vw, 5.5rem);
  align-items: start;
}

.quem-sou__photo-wrap {
  position: relative;
  padding-bottom: var(--sp-6);
  width: 100%;
}

.quem-sou__stacked-container {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

/* Background layers giving the 3D stacked photo effect */
.quem-sou__stack-layer {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 4px solid #ffffff;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
  pointer-events: none;
}

.quem-sou__stack-layer--1 {
  transform: rotate(-3.5deg) scale(0.98) translate(-6px, 6px);
  background: #f7f3ed;
  z-index: 1;
  border-color: #f0eae1;
}

.quem-sou__stack-layer--2 {
  transform: rotate(3deg) scale(0.99) translate(6px, -4px);
  background: #ffffff;
  z-index: 2;
  border-color: #fdfbf7;
}

/* Main carousel frame (top stack layer) */
.quem-sou__carousel-frame {
  position: relative;
  z-index: 3;
  width: 100%;
  aspect-ratio: 3 / 4;
  min-height: 460px;
  background: #fdfbf7;
  border: 6px solid #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.quem-sou__carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.quem-sou__carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.quem-sou__carousel-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-sizing: border-box;
  background: #fdfbf7;
}

.quem-sou__carousel-slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

/* Carousel Navigation Controls */
.quem-sou__carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border-light);
  color: var(--accent);
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  transition: all 0.25s ease;
}

.quem-sou__carousel-nav:hover {
  background: var(--accent);
  color: #ffffff;
  transform: translateY(-50%) scale(1.08);
}

.quem-sou__carousel-nav--prev { left: 10px; }
.quem-sou__carousel-nav--next { right: 10px; }

/* Dots indicators */
.quem-sou__carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 5px;
  padding: 5px 10px;
  background: rgba(30, 41, 59, 0.4);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  max-width: 90%;
  overflow-x: auto;
}

.quem-sou__carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.quem-sou__carousel-dot.active {
  background: #ffffff;
  width: 16px;
  border-radius: 4px;
}

/* Quote card overlapping photo stack */
.quem-sou__quote-card {
  position: absolute;
  bottom: -15px;
  left: var(--sp-3);
  right: calc(var(--sp-3) * -1);
  z-index: 10;
  background: var(--accent);
  color: #fff;
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.quem-sou__quote-card em {
  display: block;
  font-style: italic;
  font-size: var(--text-sm);
  line-height: 1.6;
  margin-bottom: var(--sp-1);
  color: rgba(255,255,255,.9);
}

.quem-sou__quote-author {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
}

.quem-sou__content { padding-top: var(--sp-2); }

.quem-sou__content .section-title { margin-bottom: var(--sp-4); }

.quem-sou__body {
  font-size: var(--text-body);
  color: var(--text-muted);
  margin-bottom: var(--sp-3);
  line-height: 1.78;
}

.quem-sou__body--lead {
  font-size: var(--text-lead);
  color: var(--accent);
  font-weight: 500;
}

.quem-sou__body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
  transition: color var(--transition);
}
.quem-sou__body a:hover {
  color: var(--accent-light);
}

.quem-sou__divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  border-radius: 2px;
  margin: var(--sp-4) 0;
}

/* ----------------------------------------------------------------
   10. MOMENTO AVALIAR  [D01 Symptom vs Root Cause]
       — NO card wall. 2-col numbered list.
   ---------------------------------------------------------------- */
.momento-avaliar { background: var(--bg-alt); }

/* 2-column grid of clean symptom items */
.symptom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-1);
  margin-top: var(--sp-6);
}

.symptom-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-3);
  background: var(--surface);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--accent-light);
  transition: all var(--transition);
}
.symptom-item:hover {
  transform: translateX(4px);
  border-left-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.symptom-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.symptom-text {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.55;
}

/* Post-it teal pull quote */
.postit {
  margin-top: var(--sp-6);
  background: linear-gradient(135deg, #E0F7FA 0%, #B2EBF2 100%);
  border-left: 5px solid #00838F;
  border-radius: var(--radius-lg);
  padding: var(--sp-5) var(--sp-6);
  text-align: center;
}

.postit blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-style: italic;
  color: #004D40;
  line-height: 1.65;
}

/* ----------------------------------------------------------------
   11. PRIMEIRO PASSO  [M01 3-step Process]
   ---------------------------------------------------------------- */
.primeiro-passo { background: var(--bg); }

/* 2-step process flow */
.process-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--sp-3);
  align-items: center;
  margin-top: var(--sp-6);
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.process-step {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--sp-5) var(--sp-4);
  text-align: center;
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
}

.process-step--highlight {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(139,94,60,.25);
}

.process-step__icon { font-size: 2rem; }

.process-step__title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}
.process-step--highlight .process-step__title { color: #fff; }

.process-step__tag {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background: var(--bg-alt);
  border-radius: var(--radius-pill);
}
.process-step--highlight .process-step__tag {
  background: rgba(255,255,255,.2);
  color: rgba(255,255,255,.85);
}

.process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--border);
  user-select: none;
}

/* Description text box */
.passo-desc-box {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--sp-5) var(--sp-6);
  max-width: 860px;
  margin: var(--sp-5) auto 0;
  box-shadow: var(--shadow-sm);
  text-align: left;
}

.passo-desc-box p {
  font-size: var(--text-body);
  color: var(--text-muted);
  line-height: 1.78;
  margin-bottom: var(--sp-3);
}
.passo-desc-box p:last-child { margin-bottom: 0; }
.passo-desc-box strong { color: var(--text); }

/* ----------------------------------------------------------------
   12. TRANSFORMAÇÃO REAL  [H04 Before/After + V01 Full Quote + C01 Contrast]
   ---------------------------------------------------------------- */
.transformacao { background: var(--bg-alt); }

/* Full-bleed storytelling quote */
.storytelling {
  position: relative;
  max-width: 900px;
  margin: var(--sp-5) auto var(--sp-8);
  padding: var(--sp-6) var(--sp-8);
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(0.975rem, 1.75vw, 1.1rem);
  color: var(--accent);
  text-align: center;
  line-height: 1.85;
}

.storytelling::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 7rem;
  color: var(--border-light);
  position: absolute;
  top: -30px;
  left: 24px;
  line-height: 1;
  pointer-events: none;
}

/* Two-column contrast cards */
.contrast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  max-width: 1000px;
  margin: 0 auto;
}

.card-benefit,
.card-consequence {
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
}

.card-benefit   { background: var(--green-bg);  border: 2px solid var(--green-border); }
.card-consequence { background: var(--orange-bg); border: 2px solid var(--orange-border); }

.card-benefit h3   { color: var(--green); }
.card-consequence h3 { color: var(--orange); }

.card-benefit h3,
.card-consequence h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: var(--sp-3);
}

.contrast-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.contrast-list li {
  display: flex;
  gap: var(--sp-2);
  align-items: flex-start;
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
}

.contrast-list .icon-benefit,
.contrast-list .icon-consequence {
  flex-shrink: 0;
  font-size: 0.9rem;
  margin-top: 2px;
}

/* CTA block */
.cta-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-8);
  text-align: center;
}

/* Comparison section */
.comparison-section {
  margin-top: var(--sp-10);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--border-light);
}

.comparison-section h3 {
  font-size: var(--text-h3);
  text-align: center;
  margin-bottom: var(--sp-5);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  max-width: 900px;
  margin: 0 auto;
}

.comparison-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.comparison-badge {
  display: block;
  padding: var(--sp-2) var(--sp-3);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
}

.comparison-card--sem .comparison-badge {
  background: var(--orange-bg);
  color: var(--orange);
  border-bottom: 2px solid var(--orange-border);
}
.comparison-card--com .comparison-badge {
  background: var(--green-bg);
  color: var(--green);
  border-bottom: 2px solid var(--green-border);
}

.comparison-card img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  background: #FAF7F2;
  padding: var(--sp-2);
  display: block;
}

.comparison-card__body {
  padding: var(--sp-3) var(--sp-4);
}
.comparison-card__body p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.65;
}

/* ----------------------------------------------------------------
   13. DEPOIMENTOS CAROUSEL  [P14 Customer Quote Map]
   ---------------------------------------------------------------- */
.depoimentos { background: var(--bg); }

/* Google rating header */
.google-rating-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}

.google-g-icon, .google-g-sm { flex-shrink: 0; }

.rating-info { text-align: left; line-height: 1.2; }

.rating-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.stars { color: #F59E0B; font-size: 0.95rem; letter-spacing: 3px; display: block; }

.reviews-count {
  font-size: var(--text-xs);
  color: var(--text-muted);
  display: block;
}

/* Infinite carousel */
.carousel-wrap {
  overflow: hidden;
  margin: var(--sp-6) 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.carousel-track {
  display: flex;
  gap: var(--sp-4);
  width: max-content;
  animation: carousel-scroll 60s linear infinite;
}
.carousel-track:hover { animation-play-state: paused; }

@keyframes carousel-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Testimonial card */
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--sp-5) var(--sp-4);
  width: 340px;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 0.9;
  color: var(--border);
  margin-bottom: var(--sp-2);
}

.testimonial-card__text {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--sp-4);
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--border-light);
}

.author-name {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
  display: block;
}

.author-role {
  font-size: var(--text-xs);
  color: var(--text-muted);
  display: block;
}

.card-stars { color: #F59E0B; font-size: var(--text-xs); letter-spacing: 2px; display: block; }

.google-button-wrapper { margin-top: var(--sp-5); }

/* ----------------------------------------------------------------
   14. ENDEREÇOS  [Artifact Reveal — tabbed locations]
   ---------------------------------------------------------------- */
.enderecos { background: var(--bg-alt); }

.location-tabs {
  display: flex;
  gap: var(--sp-2);
  margin: var(--sp-5) 0;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.7rem var(--sp-4);
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
  -webkit-tap-highlight-color: transparent;
}
.tab-btn:hover       { border-color: var(--accent); color: var(--accent); }
.tab-btn.active      { background: var(--accent); border-color: var(--accent); color: #fff; }

.tab-contents { position: relative; }
.tab-pane     { display: none; }
.tab-pane.active { display: block; }

.location-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.location-info { padding: var(--sp-6) var(--sp-6); }

.loc-badge {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  background: rgba(139,94,60,.1);
  color: var(--accent);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  margin-bottom: var(--sp-3);
}

.location-info h3 {
  font-size: var(--text-h3);
  margin-bottom: var(--sp-3);
}

.loc-address {
  display: flex;
  gap: var(--sp-2);
  color: var(--text-muted);
  font-size: var(--text-sm);
  line-height: 1.65;
  margin-bottom: var(--sp-3);
  align-items: flex-start;
}
.loc-address svg { flex-shrink: 0; color: var(--accent-light); margin-top: 2px; }

.loc-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: var(--sp-4);
}

.loc-actions {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
}

.location-map { background: var(--bg-alt); min-height: 340px; }
.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  display: block;
}

/* ----------------------------------------------------------------
   15. FINAL CTA BANNER  [O08 CTA Hero]
   ---------------------------------------------------------------- */
.final-cta {
  background: var(--accent);
  padding: var(--sp-10) 0;
  text-align: center;
}

.final-cta h2 {
  color: #fff;
  font-size: var(--text-h2);
  max-width: 680px;
  margin: 0 auto var(--sp-3);
  line-height: 1.2;
}

.final-cta p {
  color: rgba(255,255,255,.8);
  font-size: var(--text-lead);
  max-width: 540px;
  margin: 0 auto var(--sp-6);
  line-height: 1.7;
}

.btn-whatsapp--dark {
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
}

/* ----------------------------------------------------------------
   16. FOOTER
   ---------------------------------------------------------------- */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.6);
  padding: var(--sp-10) 0 var(--sp-5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--sp-8);
  padding-bottom: var(--sp-8);
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand .brand-name     { color: #fff; }
.footer-brand .brand-tagline  { color: rgba(255,255,255,.4); }

.footer-desc {
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-top: var(--sp-3);
  color: rgba(255,255,255,.55);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,.4);
  margin-bottom: var(--sp-3);
}

.footer-col ul { display: flex; flex-direction: column; gap: var(--sp-2); }
.footer-col ul li a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: #fff; }

.contact-info-list { display: flex; flex-direction: column; gap: var(--sp-3); }
.contact-info-list li { display: flex; flex-direction: column; gap: 2px; }
.contact-info-list li > span { font-size: var(--text-xs); color: rgba(255,255,255,.4); }
.contact-info-list li a { font-size: var(--text-sm); color: rgba(255,255,255,.65); }
.contact-info-list li a:hover { color: #fff; }

.footer-bottom {
  padding-top: var(--sp-5);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  color: rgba(255,255,255,.3);
}

/* ----------------------------------------------------------------
   17. RESPONSIVE BREAKPOINTS
   ---------------------------------------------------------------- */

/* Tablet landscape / small desktop */
@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .hero__image-wrap {
    max-width: 440px;
    margin: 0 auto;
  }

  .quem-sou__grid {
    grid-template-columns: 1fr;
  }
  .quem-sou__photo-wrap {
    max-width: 400px;
    margin: 0 auto;
  }
  .quem-sou__quote-card {
    right: 0;
    left: var(--sp-4);
    max-width: 100%;
    box-sizing: border-box;
  }

  .contrast-grid   { grid-template-columns: 1fr; }
  .comparison-grid { grid-template-columns: 1fr; }

  .location-card { grid-template-columns: 1fr; }

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

/* Tablet portrait & Mobile Navigation (up to 991px - fixes Redmi Note 8 Pro & Galaxy Tab S6 Lite) */
@media (max-width: 991px) {
  :root {
    --section-pad: clamp(3rem, 6vw, 4.5rem);
    --container-pad: 1.25rem;
  }

  .brand-logo {
    flex-shrink: 1;
    min-width: 0;
  }

  .brand-name {
    font-size: clamp(1.3rem, 4.5vw, 1.55rem);
  }

  .brand-tagline {
    font-size: clamp(0.48rem, 1.6vw, 0.56rem);
    letter-spacing: 0.8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-actions {
    flex-shrink: 0;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    width: 42px;
    height: 42px;
  }

  /* Slide-in nav with strict offscreen translate & opacity */
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    width: min(310px, 85vw);
    height: 100vh;
    height: 100dvh;
    background: var(--bg);
    box-shadow: -8px 0 40px rgba(28,18,8,.18);
    z-index: 999;
    padding: 5.5rem var(--sp-6) var(--sp-6);
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease), visibility 0.35s;
    overflow-y: auto;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

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

  .nav-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--accent);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    -webkit-tap-highlight-color: transparent;
  }
  .nav-menu-close:hover {
    background: var(--accent);
    color: #ffffff;
    border-color: var(--accent);
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .nav-link {
    font-size: 1.05rem;
    padding: var(--sp-2) 0;
    display: block;
    border-bottom: 1px solid var(--border-light);
    width: 100%;
    color: var(--text-muted);
  }

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

  /* Hero */
  .hero__title    { font-size: clamp(2rem, 6.5vw, 2.75rem); letter-spacing: -1px; }
  .hero__img      { height: 380px; }
  .hero__features { grid-template-columns: 1fr; }

  /* Process */
  .process-flow {
    grid-template-columns: 1fr;
    max-width: 440px;
    gap: var(--sp-2);
  }
  .process-arrow { transform: rotate(90deg); font-size: 1.25rem; padding: var(--sp-1) 0; }

  /* Symptom grid */
  .symptom-grid { grid-template-columns: 1fr; }

  /* Postit */
  .postit { padding: var(--sp-4); }
  .postit blockquote { font-size: 1rem; }

  /* Storytelling */
  .storytelling { padding: var(--sp-5) var(--sp-4); margin-left: 0; margin-right: 0; }
  .storytelling::before { font-size: 5rem; }

  /* Comparison */
  .comparison-card img { height: 260px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-5); }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* Mobile Small Devices (up to 480px - Redmi Note 8 Pro & iPhones) */
@media (max-width: 480px) {
  .top-bar { font-size: 0.75rem; text-align: center; }
  .top-bar-link { display: block; margin: var(--sp-1) 0 0; }

  .btn {
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    text-align: center;
    line-height: 1.35;
    word-break: break-word;
  }

  .btn--xl {
    padding: 0.85rem 1rem;
    font-size: 0.92rem;
    width: 100%;
    box-sizing: border-box;
    gap: 0.4rem;
  }

  .btn--xl svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }

  .hero__badge {
    font-size: 0.58rem;
    white-space: normal;
    text-align: center;
    max-width: 100%;
  }

  .hero__img { height: 320px; }

  .quem-sou__quote-card {
    position: static;
    margin-top: var(--sp-3);
    left: 0;
    right: 0;
    width: 100%;
    box-sizing: border-box;
  }
  .quem-sou__photo-wrap { padding-bottom: 0; }

  .postit { border-radius: var(--radius-md); }

  .passo-desc-box { padding: var(--sp-4); }

  .storytelling { font-size: 0.9rem; border-radius: var(--radius-md); }

  .contrast-grid    { gap: var(--sp-3); }
  .comparison-grid  { gap: var(--sp-3); }

  .tab-btn { font-size: var(--text-xs); padding: 0.55rem var(--sp-2); }

  .location-info { padding: var(--sp-4); }
  .loc-actions   { flex-direction: column; }

  .footer-grid { gap: var(--sp-4); }
}
