/* =========================================================
   Dr. Fabrício Costa — Acupuntura | Sano Lab
   Design System: Vermelho #C41230 + Branco
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700;800;900&family=Noto+Sans:wght@300;400;500;600;700&display=swap');

/* ── Tokens ── */
:root {
  --red:        #C41230;
  --red-dark:   #9B0E26;
  --red-light:  #F5E6E9;
  --white:      #FFFFFF;
  --off-white:  #F8F8F8;
  --dark:       #111111;
  --gray-dark:  #333333;
  --gray:       #666666;
  --gray-light: #EBEBEB;
  --border:     #E0E0E0;

  --ff-head: 'Figtree', sans-serif;
  --ff-body: 'Noto Sans', sans-serif;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 4px 24px rgba(0,0,0,.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.16);
  --shadow-red: 0 4px 20px rgba(196,18,48,.25);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --transition: .25s ease;
  --max-w: 1200px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--ff-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--ff-head);
  line-height: 1.15;
  color: var(--dark);
}
h1 { font-size: clamp(2.8rem, 5.5vw, 4.4rem); font-weight: 900; line-height: 1.0; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { font-size: 1rem; color: var(--gray-dark); line-height: 1.75; }

/* ── Utilities ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 48px 0; }

.tag {
  display: inline-block;
  background: var(--red-light);
  color: var(--red);
  font-family: var(--ff-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-header        { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header h2     { margin-bottom: 12px; text-wrap: balance; max-width: 640px; }
.section-header.center h2 { margin-left: auto; margin-right: auto; }
.section-header p      { max-width: 560px; }
.section-header.center p { margin: 0 auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: .95rem;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  touch-action: manipulation;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(196,18,48,.35);
}
.btn-outline {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-outline:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--red);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
}
.btn-lg { padding: 13px 26px; font-size: .92rem; }
.btn-sm { padding: 10px 20px; font-size: .85rem; }

/* ── Header / Nav ── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  line-height: 1;
}
.nav-logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.footer-brand .nav-logo-img {
  filter: brightness(0) invert(1);
}
.nav-logo-icon {
  width: 40px; height: 40px;
  background: var(--red);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-icon svg { width: 22px; height: 22px; fill: var(--white); }
.nav-logo-text strong {
  display: block;
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--dark);
  line-height: 1;
  letter-spacing: -.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: .9rem;
  color: var(--gray-dark);
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--red); background: var(--red-light); }
.nav-cta { margin-left: 12px; padding: 9px 20px; font-size: .82rem; }

.nav-mobile { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Hero ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 48vh;
  padding-top: 72px; /* altura da nav fixa */
  box-sizing: border-box;
  overflow: hidden;
}

.hero-panel {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 40px 48px 24px;
  box-sizing: border-box;
  overflow: hidden;
}

.hero-panel-content {
  width: 100%;
  max-width: 480px;
  margin-left: 20px;
}

.hero-info-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  margin-bottom: 20px;
  font-family: var(--ff-head);
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray-dark);
}
.hero-info-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.hero-info-badge-item svg {
  width: 13px;
  height: 13px;
  stroke: var(--red);
  flex-shrink: 0;
}
.hero-info-badge-sep {
  width: 1px;
  height: 12px;
  background: var(--border);
  flex-shrink: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-light);
  color: var(--red);
  border-radius: 100px;
  padding: 7px 16px;
  font-family: var(--ff-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge span {
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.5); opacity: .6; }
}

.hero-title {
  font-size: clamp(2.8rem, 4vw, 4.4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--dark);
  letter-spacing: -.03em;
  margin-bottom: 18px;
  text-wrap: balance;
  max-width: 460px;
}
.hero-title em {
  display: block;
  color: var(--red);
  font-style: normal;
  font-size: 1.08em;
  margin-top: 6px;
  text-wrap: balance;
}

.hero-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray);
  margin-bottom: 32px;
  max-width: 400px;
  text-wrap: pretty;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  width: 100%;
}
.hero-cta-group .btn {
  flex: 1;
  justify-content: center;
  text-align: center;
}

.hero-stats {
  display: flex;
  align-items: center;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.hero-stat {
  flex: 1;
  text-align: center;
}
.hero-stat:first-child { text-align: left; }
.hero-stat:last-child  { text-align: right; }
.hero-stat strong {
  display: block;
  font-family: var(--ff-head);
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 5px;
}
.hero-stat span {
  display: block;
  font-size: .76rem;
  line-height: 1.35;
  color: var(--gray);
}
.hero-stat-sep {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
  margin: 0 8px;
}

/* ── Hero mobile photo (hidden on desktop) ── */
.hero-mobile-photo { display: none; }

/* ── Hero visual ── */
.hero-visual {
  position: relative;
  overflow: hidden;
  background: var(--red-light);
  min-height: 0;
}
.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-visual-badge {
  position: absolute;
  bottom: 32px;
  left: 28px;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
}
.hero-visual-badge-icon {
  width: 38px; height: 38px;
  background: var(--red);
  border-radius: var(--radius-sm);
  position: relative;
  flex-shrink: 0;
}
.hero-visual-badge-icon svg { width: 18px; height: 18px; stroke: var(--white); fill: none; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.hero-visual-badge-icon img { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 36px; height: 36px !important; object-fit: contain; filter: brightness(0) invert(1); }
.hero-visual-badge strong {
  display: block;
  font-family: var(--ff-head);
  font-size: .82rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 3px;
}
.hero-visual-badge span {
  font-size: .72rem;
  color: var(--gray);
  line-height: 1.3;
}

/* ── O que é Acupuntura ── */
.about-acupuncture { background: var(--off-white); }
.about-acu-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-acu-image {
  position: relative;
}
.about-acu-img-wrap {
  width: 100%;
  aspect-ratio: 1;
  background: var(--red-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-acu-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-acu-card {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-red);
  font-family: var(--ff-head);
}
.about-acu-card strong { display: block; font-size: 1.8rem; font-weight: 800; }
.about-acu-card span  { font-size: .82rem; opacity: .85; }

.about-acu-content h2 { margin-bottom: 16px; }
.about-acu-content p  { margin-bottom: 16px; }
.about-acu-points     { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.about-acu-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.about-acu-point-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--red-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.about-acu-point-icon svg { width: 18px; height: 18px; stroke: var(--red); fill: none; }
.about-acu-point h4 { margin-bottom: 2px; }
.about-acu-point p  { font-size: .9rem; margin: 0; }

/* ── Serviços ── */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--red);
  border-radius: 4px 0 0 4px;
  transform: scaleY(0);
  transition: transform var(--transition);
  transform-origin: top;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--red-light);
}
.service-card:hover::before { transform: scaleY(1); }
.service-card-icon {
  width: 52px; height: 52px;
  background: var(--red-light);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.service-card-icon svg { width: 32px; height: 32px; stroke: var(--red); fill: none; }
.service-card-icon img { width: 32px; height: 32px; object-fit: contain; mix-blend-mode: multiply; }
.service-card-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--red);
  mix-blend-mode: lighten;
  pointer-events: none;
}
.service-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.service-card p  { font-size: .9rem; margin: 0; }
.services-cta-text { text-align: center; max-width: 600px; margin: 44px auto 0; font-size: 1rem; color: var(--gray-dark); line-height: 1.7; }
.services-cta-btns { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 32px; flex-wrap: wrap; }

/* ── Dr. Fabrício — Sobre resumido ── */
.about-doctor { background: var(--dark); color: var(--white); }
.about-doctor .section-header h2 { color: var(--white); }
.about-doctor .section-header p  { color: rgba(255,255,255,.7); }
.about-doctor .tag { background: rgba(196,18,48,.3); color: #FF6B82; }

.about-doc-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-doc-image {
  position: relative;
}
.about-doc-img-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  background: #1a1a1a;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.4);
}
.about-doc-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-doc-badge {
  position: absolute;
  top: 24px; right: -20px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  text-align: center;
  font-family: var(--ff-head);
  box-shadow: var(--shadow-red);
}
.about-doc-badge strong { display: block; font-size: 1.05rem; font-weight: 800; }
.about-doc-badge span   { font-size: .65rem; opacity: .9; }

.about-doc-content .credentials {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 28px 0;
}
.credential {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.credential-dot {
  width: 8px; height: 8px; flex-shrink: 0;
  background: var(--red);
  border-radius: 50%;
  margin-top: 8px;
}
.credential p { color: rgba(255,255,255,.8); font-size: .95rem; margin: 0; }
.about-doc-content h4 { color: var(--white); margin-bottom: 4px; }
.credential-link { color: var(--white); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(255,255,255,.4); transition: text-decoration-color var(--transition); }
.credential-link:hover { text-decoration-color: var(--white); }

/* ── Cursos & Mentoria ── */
.courses { background: var(--off-white); }
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 480px));
  gap: 32px;
  justify-content: center;
}
.course-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.course-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.course-card-top {
  background: var(--red);
  padding: 36px 32px 28px;
  position: relative;
  overflow: hidden;
}
.course-card-top::after {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 120px; height: 120px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
}
.course-card-top::before {
  content: '';
  position: absolute;
  top: -20px; left: -20px;
  width: 80px; height: 80px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
}
.course-tag {
  display: inline-block;
  background: rgba(255,255,255,.2);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.course-card-top h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 8px; }
.course-card-top p  { color: rgba(255,255,255,.8); font-size: .9rem; margin: 0; }

.course-card-body {
  padding: 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.course-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 20px;
}
.course-price del  { font-size: .9rem; color: var(--gray); text-decoration: line-through; }
.course-price strong {
  font-family: var(--ff-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--red);
}
.course-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  flex: 1;
}
.course-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--gray-dark);
}
.course-feature svg {
  width: 16px; height: 16px; flex-shrink: 0;
  stroke: var(--red); fill: none;
}
.course-card .btn { align-self: stretch; justify-content: center; }

/* ── CTA Banner ── */
.cta-banner {
  background: var(--red);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 400px; height: 400px;
  background: rgba(0,0,0,.06);
  border-radius: 50%;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p  { color: rgba(255,255,255,.85); font-size: 1.1rem; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-banner-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Depoimentos ── */
.testimonials { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-stars {
  display: flex; gap: 4px; margin-bottom: 16px;
}
.testimonial-stars svg { width: 16px; height: 16px; fill: #F59E0B; stroke: none; }
.testimonial-card p { font-size: .95rem; margin-bottom: 20px; font-style: italic; }
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto;
}
.testimonial-avatar {
  width: 40px; height: 40px;
  background: var(--red-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: .85rem;
  color: var(--red);
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: .88rem; font-weight: 700; }
.testimonial-author span   { font-size: .78rem; color: var(--gray); }

/* ── Google Reviews Widget ── */
.gr-widget { margin-top: 48px; }
.gr-summary {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  margin-bottom: 28px; gap: 10px;
}
.gr-summary-brand { display: flex; align-items: center; gap: 6px; }
.gr-google-wordmark { font-family: var(--ff-head); font-size: 1.15rem; font-weight: 700; letter-spacing: -.01em; line-height: 1; }
.gr-brand-text { font-size: .95rem; font-weight: 500; color: var(--gray); }
.gr-summary-score { display: flex; align-items: center; gap: 8px; }
.gr-rating-count { font-size: .9rem; color: var(--gray); font-weight: 500; }
.gr-rating-number { font-family: var(--ff-head); font-size: 1.5rem; font-weight: 800; color: var(--dark); line-height: 1; }
.gr-rating-stars { display: flex; gap: 3px; align-items: center; }
.gr-rating-stars svg { width: 16px; height: 16px; }
.gr-rating-label { font-size: .78rem; color: var(--gray); }
.gr-see-all { font-size: .85rem; font-weight: 600; color: #4285F4; text-decoration: none; white-space: nowrap; }
.gr-see-all:hover { text-decoration: underline; }
.gr-carousel { position: relative; }
.gr-carousel-viewport { overflow: hidden; }
.gr-carousel-track {
  display: flex; gap: 20px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  align-items: stretch;
}
.gr-card {
  flex-shrink: 0;
  background: var(--white); border: 1px solid #e8eaed;
  border-radius: 12px; padding: 20px;
  box-shadow: 0 1px 3px rgba(0,0,0,.08), 0 1px 8px rgba(0,0,0,.05);
  display: flex; flex-direction: column; gap: 10px;
}
.gr-card:hover { box-shadow: 0 2px 8px rgba(0,0,0,.12); }
.gr-card-header { display: flex; align-items: center; gap: 12px; }
.gr-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head); font-size: .85rem; font-weight: 700; color: #fff;
}
.gr-card-meta { flex: 1; }
.gr-card-meta strong { display: block; font-size: .88rem; font-weight: 700; color: var(--dark); }
.gr-card-meta span { font-size: .75rem; color: var(--gray); }
.gr-card-google { flex-shrink: 0; }
.gr-card-stars { display: flex; gap: 2px; }
.gr-card-stars svg { width: 14px; height: 14px; }
.gr-card-text { font-size: .88rem; color: var(--gray-dark); line-height: 1.65; margin: 0; }
.gr-carousel-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-top: 28px;
}
.gr-carousel-btn {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  border: 1px solid var(--border); background: var(--white); color: var(--dark);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.gr-carousel-btn:hover:not(:disabled) { background: var(--off-white); border-color: var(--gray); }
.gr-carousel-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.gr-carousel-dots { display: flex; gap: 8px; align-items: center; }
.gr-dot {
  width: 8px; height: 8px; border-radius: 4px;
  background: var(--border); border: none; cursor: pointer;
  transition: all 0.25s ease; padding: 0;
}
.gr-dot.active { background: var(--red); width: 20px; }

/* ── Footer ── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: .9rem; margin: 16px 0 24px; color: rgba(255,255,255,.6); }
.footer-social  { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--red); }
.footer-social a svg { width: 18px; height: 18px; fill: var(--white); }

.footer h4 {
  color: var(--white);
  font-size: .88rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--white); padding-left: 4px; }

.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item {
  display: flex; gap: 10px; align-items: flex-start;
}
.footer-contact-item svg {
  width: 16px; height: 16px; flex-shrink: 0;
  stroke: var(--red); fill: none; margin-top: 3px;
}
.footer-contact-item span { font-size: .88rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .82rem;
}
.footer-bottom a { color: var(--red); }

/* ── Footer accordion (mobile-only) ── */
.footer-col-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--white);
  font-family: var(--ff-head);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 0 0 20px;
  background: none;
  border: none;
  cursor: default;
  text-align: left;
}
.footer-chevron {
  display: none;
  width: 14px; height: 14px;
  stroke: rgba(255,255,255,.5);
  fill: none;
  flex-shrink: 0;
  transition: transform .3s ease;
}
.footer-links-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
}
@media (max-width: 768px) {
  .footer-col-toggle { cursor: pointer; touch-action: manipulation; }
  .footer-chevron { display: block; }
  .footer-col-toggle[aria-expanded="false"] .footer-chevron { transform: rotate(-90deg); }
  .footer-col-body { overflow: hidden; max-height: 0; transition: max-height .35s ease; }
  .footer-col-body.open { max-height: 500px; }
  .footer-links-2col { grid-template-columns: 1fr; }
}

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 999;
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.5);
}
.whatsapp-float svg { width: 28px; height: 28px; fill: var(--white); }

/* ── Fade-in on scroll ── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ── Page Hero (páginas internas) ── */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--dark) 0%, #1a0006 100%);
  text-align: center;
}
.page-hero h1   { color: var(--white); }
.page-hero p    { color: rgba(255,255,255,.75); font-size: 1.1rem; margin: 16px auto 0; max-width: 560px; }
.page-hero .tag { background: rgba(196,18,48,.3); color: #FF6B82; }

/* ── Sobre page ── */
.about-bio {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.about-bio-sticky { position: sticky; top: 96px; }
.about-bio-img {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--red-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-bio-img img { width: 100%; height: 100%; object-fit: cover; }
.about-bio-content h2 { margin-bottom: 20px; }
.about-bio-content p  { margin-bottom: 20px; }

.bio-blocks { display: flex; flex-direction: column; gap: 20px; margin: 28px 0; }
.bio-block {
  padding: 20px 24px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--red);
}
.bio-block-title {
  display: flex; align-items: center; gap: 8px;
  font-size: .7rem; font-weight: 700; color: var(--white);
  background: var(--red); border-radius: var(--radius-sm);
  padding: 5px 12px; margin-bottom: 16px;
  text-transform: uppercase; letter-spacing: .06em;
  width: fit-content;
}
.bio-block-title svg { width: 14px; height: 14px; stroke: var(--white); flex-shrink: 0; }
.bio-block-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0; }
.bio-block-list li {
  display: flex; gap: 12px; align-items: baseline;
  padding: 8px 0; border-bottom: 1px solid var(--border);
}
.bio-block-list li:last-child { border-bottom: none; }
.bio-item-year {
  font-size: .75rem; font-weight: 700; color: var(--red);
  min-width: 82px; flex-shrink: 0; white-space: nowrap;
}
.bio-item-text { font-size: .88rem; color: var(--gray-dark); line-height: 1.5; }

/* ── Método Balance ── */
.metodo-balance { background: var(--red); color: var(--white); }
.metodo-balance .section-header h2 { color: var(--white); }
.metodo-balance .section-header p  { color: rgba(255,255,255,.8); }
.metodo-balance .tag { background: rgba(255,255,255,.2); color: var(--white); }
.metodo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.metodo-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.metodo-card:hover {
  background: rgba(255,255,255,.18);
  transform: translateY(-4px);
}
.metodo-card-icon {
  width: 56px; height: 56px;
  background: rgba(255,255,255,.15);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.metodo-card-icon svg { width: 26px; height: 26px; stroke: var(--white); fill: none; }
.metodo-card h4 { color: var(--white); margin-bottom: 8px; font-size: 1rem; }
.metodo-card p  { color: rgba(255,255,255,.75); font-size: .88rem; margin: 0; }

/* ── Mercado de Trabalho ── */
.mercado-section { background: var(--dark); padding: 80px 0; }
.mercado-section .tag { background: rgba(255,255,255,.12); color: rgba(255,255,255,.65); margin-bottom: 20px; display: inline-block; }
.mercado-content { max-width: 760px; margin: 0 auto; }
.mercado-content h2 { color: var(--white); margin-bottom: 32px; }
.mercado-content p { color: rgba(255,255,255,.72); font-size: 1.05rem; line-height: 1.8; margin-bottom: 20px; }
.mercado-callout { color: var(--white) !important; font-weight: 700; font-size: 1.1rem !important; border-left: 3px solid var(--red); padding-left: 20px; margin-top: 36px !important; margin-bottom: 0 !important; }

.metodo-card--hero {
  grid-column: 1 / -1;
  background: var(--white);
  border-color: transparent;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 28px;
}
.metodo-card--hero .metodo-card-icon {
  background: var(--red);
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  margin: 0;
}
.metodo-card--hero .metodo-card-icon svg { width: 32px; height: 32px; }
.metodo-card--hero h4 { color: var(--red); font-size: 1.25rem; margin-bottom: 10px; }
.metodo-card--hero p  { color: var(--gray-dark); font-size: 1rem; line-height: 1.65; margin: 0; }
.metodo-card--hero:hover { background: var(--white); }

/* ── Card branco de destaque dentro de seção escura ── */
.metodo-card--white {
  background: var(--white);
  border-color: transparent;
  backdrop-filter: none;
}
.metodo-card--white .metodo-card-icon { background: var(--red); }
.metodo-card--white .metodo-card-icon svg { stroke: var(--white); }
.metodo-card--white h4 { color: var(--red); }
.metodo-card--white p  { color: var(--gray-dark); }
.metodo-card--white:hover { background: var(--off-white); }

/* ── Variante light para metodo-grid em fundo branco ── */
.metodo-grid--light .metodo-card {
  background: var(--off-white);
  border-color: var(--border);
}
.metodo-grid--light .metodo-card:hover { background: var(--gray-light); }
.metodo-grid--light .metodo-card-icon {
  background: var(--red-light);
}
.metodo-grid--light .metodo-card-icon svg { stroke: var(--red); }
.metodo-grid--light .metodo-card h4 { color: var(--dark); }
.metodo-grid--light .metodo-card p  { color: var(--gray); }
.metodo-grid--light .metodo-card--hero { background: var(--white); border-color: var(--border); }
.metodo-grid--light .metodo-card--hero .metodo-card-icon { background: var(--red); }
.metodo-grid--light .metodo-card--hero .metodo-card-icon svg { stroke: var(--white); }
.metodo-grid--light .metodo-card--hero h4 { color: var(--red); }
.metodo-grid--light .metodo-card--hero p  { color: var(--gray-dark); }

.metodo-check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.metodo-check-list li {
  font-size: .88rem;
  color: var(--gray);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.metodo-check-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: .8rem;
}

/* ── Competências IBRATO (fundo claro) ── */
.ibrato-competencias {
  background: var(--off-white);
  border-color: var(--border);
}
.ibrato-competencias .metodo-aprender-title {
  color: var(--dark);
}
.ibrato-comp-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ibrato-comp-list li {
  color: var(--gray-dark);
  font-size: .95rem;
  line-height: 1.6;
  padding-left: 28px;
  position: relative;
}
.ibrato-comp-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 3px;
  width: 18px; height: 18px;
  background: var(--red);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 11px 11px;
  background-position: center;
}
.ibrato-comp-list strong {
  color: var(--dark);
}

.ibrato-competencias .metodo-aprender-list {
  grid-template-columns: 1fr;
}
.ibrato-competencias .metodo-aprender-list li {
  color: var(--gray-dark);
}
.ibrato-competencias .metodo-aprender-list li::before {
  background: var(--red);
}

/* ── Seção Curso de Acupuntura ── */
.curso-subtitle {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: .02em;
  margin-top: -4px;
}

.curso-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 48px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.curso-stat {
  padding: 28px 16px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.curso-stat:last-child { border-right: none; }
.curso-stat-value {
  display: block;
  font-family: var(--ff-head);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}
.curso-stat-label {
  display: block;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--gray);
  margin-top: 6px;
}

.curso-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
  align-items: start;
}
.curso-block-title {
  font-family: var(--ff-head);
  font-size: .8rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 20px;
}

.curso-curriculum-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.curso-curriculum-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.curso-curriculum-list li {
  font-size: .9rem;
  color: var(--gray-dark);
  padding-left: 26px;
  position: relative;
  line-height: 1.5;
}
.curso-curriculum-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 3px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--red);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 10px;
  background-position: center;
}

.curso-info-sidebar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.curso-info-dl { margin: 0; }
.curso-info-row {
  padding: 18px 28px;
  border-bottom: 1px solid var(--border);
}
.curso-info-row:last-child { border-bottom: none; }
.curso-info-row dt {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 4px;
}
.curso-info-row dd {
  font-size: .88rem;
  color: var(--gray-dark);
  line-height: 1.6;
  margin: 0;
}
.curso-info-row--bonus {
  background: var(--red-light);
}
.curso-info-row--bonus dt { color: var(--red-dark, var(--red)); }
.curso-info-row--bonus dd { color: var(--dark); font-weight: 500; }

.curso-resultado {
  margin-top: 24px;
  background: var(--red);
  border-radius: var(--radius-lg);
  padding: 22px 32px;
  text-align: center;
}
.curso-resultado p {
  color: var(--white);
  font-size: .95rem;
  margin: 0;
  line-height: 1.6;
}
.curso-resultado strong { font-weight: 700; }

.metodo-aprender {
  margin-top: 48px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
}
.metodo-aprender-title {
  color: var(--white);
  font-family: var(--ff-head);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.metodo-aprender-list {
  list-style: none;
  padding: 0; margin: 0;
  columns: 2;
  column-gap: 32px;
}
.metodo-aprender-list li {
  color: rgba(255,255,255,.9);
  font-size: .95rem;
  line-height: 1.5;
  padding-left: 28px;
  position: relative;
  break-inside: avoid;
  margin-bottom: 14px;
}
.metodo-aprender-list li:last-child { margin-bottom: 0; }
.metodo-aprender-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 3px;
  transform: none;
  width: 18px; height: 18px;
  background: var(--red-dark);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 640px) {
  .metodo-aprender { padding: 28px 20px; }
  .metodo-aprender-list { grid-template-columns: 1fr; }
}

/* ── Serviços page — lista detalhada ── */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-detail-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--red-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.service-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.service-detail-content .tag { display: inline-block; }
.service-detail-content h2 { margin-bottom: 16px; }
.service-detail-content p  { margin-bottom: 16px; }
.service-detail-bullets { margin: 20px 0 28px; display: flex; flex-direction: column; gap: 10px; }
.service-bullet {
  display: flex; gap: 10px; align-items: flex-start;
}
.service-bullet svg { width: 16px; height: 16px; flex-shrink: 0; stroke: var(--red); fill: none; margin-top: 3px; }
.service-bullet span { font-size: .92rem; color: var(--gray-dark); }

/* ── Contato page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}
.contact-form-wrap .contact-form { display: flex; flex-direction: column; flex: 1; }
.contact-form-wrap .contact-form .form-group:last-of-type { flex: 1; display: flex; flex-direction: column; }
.contact-form-wrap .contact-form .form-group:last-of-type textarea { flex: 1; min-height: 120px; }
.contact-form-wrap h3 { margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: .88rem;
  margin-bottom: 6px;
  color: var(--dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-size: .95rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(196,18,48,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px;
  background: var(--off-white);
  border-radius: var(--radius-md);
}
.contact-info-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--red-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.contact-info-icon svg { width: 20px; height: 20px; stroke: var(--red); fill: none; }
.contact-info-item h4 { margin-bottom: 4px; }
.contact-info-item p  { font-size: .88rem; margin: 0; }
.contact-info-item a  { color: var(--red); font-weight: 600; }
.contact-map-full { margin-top: 40px; }
.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 320px;
  border: 1px solid var(--border);
  margin-top: 8px;
}
.contact-map iframe { width: 100%; height: 100%; border: none; }
.hours-list  { display: flex; flex-direction: column; gap: 8px; margin-top: 6px; }
.hours-item  { display: flex; justify-content: space-between; gap: 24px; font-size: .88rem; }
.hours-item  .day { color: var(--gray-dark); }
.hours-item  .time { font-weight: 600; }

/* ── Cursos page ── */
.courses-hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 64px;
}
.course-card-featured {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.course-card-featured:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--red);
  transform: translateY(-4px);
}
.course-card-featured.highlight {
  border-color: var(--red);
  position: relative;
}
.course-best-tag {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--red);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}
.course-card-featured-top {
  background: linear-gradient(135deg, var(--dark), #2a0008);
  padding: 36px;
}
.course-card-featured-top h2 { color: var(--white); margin-bottom: 8px; }
.course-card-featured-top p  { color: rgba(255,255,255,.7); }
.course-card-featured-body { padding: 32px; display: flex; flex-direction: column; flex: 1; }
.course-card-featured-body .course-modules { flex: 1; }
.course-card-featured-price {
  display: flex; flex-direction: column; gap: 4px; margin-bottom: 24px;
}
.promo-banner {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  background: #fff8ee; border: 1px solid #f5a623; border-radius: 6px;
  padding: 8px 12px; margin-bottom: 16px;
}
.promo-banner-label { font-size: .78rem; font-weight: 600; color: #7a4800; }
.promo-countdown { font-family: monospace; font-size: .9rem; font-weight: 800; color: #c84b00; letter-spacing: .04em; }
.price-from { font-size: .78rem; color: var(--gray); text-transform: uppercase; letter-spacing: .06em; margin: 0; }
.price-hero { display: flex; align-items: baseline; gap: 6px; line-height: 1; }
.price-installments { font-family: var(--ff-head); font-size: 1.3rem; font-weight: 700; color: var(--red); }
.price-hero strong { font-family: var(--ff-head); font-size: 2.6rem; font-weight: 900; color: var(--red); }
.price-daily { font-size: .82rem; color: var(--gray-dark); margin: 2px 0 0; }
.price-daily strong { font-weight: 700; color: var(--gray-dark); }
.price-alt { font-size: .82rem; color: var(--gray); margin: 0; }
.course-modules { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.course-module {
  display: flex; gap: 10px; align-items: center;
}
.course-module svg { width: 16px; height: 16px; flex-shrink: 0; stroke: var(--red); fill: none; }
.course-module span { font-size: .9rem; color: var(--gray-dark); }
.course-card-featured .btn { width: 100%; justify-content: center; }

/* ── Grid de Serviços (página serviços) ── */
.srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.srv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.srv-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.srv-card-wide { grid-column: span 3; flex-direction: row; align-items: flex-start; gap: 20px; }
.srv-card-wide h3 { margin-bottom: 4px; }
.srv-card-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--red-light);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.srv-card-icon svg { width: 22px; height: 22px; stroke: var(--red); }
.srv-card-icon img {
  width: 28px; height: 28px; object-fit: contain;
  filter: brightness(0) saturate(100%) invert(14%) sepia(94%) saturate(4500%) hue-rotate(340deg) brightness(89%);
}
.srv-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin: 0; }
.srv-card p  { font-size: .88rem; color: var(--gray); line-height: 1.65; margin: 0; }
@media (max-width: 1024px) {
  .srv-grid { grid-template-columns: repeat(2, 1fr); }
  .srv-card-wide { grid-column: span 2; }
}
@media (max-width: 640px) {
  .srv-grid { grid-template-columns: 1fr; }
  .srv-card-wide { grid-column: span 1; flex-direction: column; }
}

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: .95rem;
  color: var(--dark);
  transition: var(--transition);
}
.faq-question:hover { color: var(--red); }
.faq-question svg {
  width: 18px; height: 18px; flex-shrink: 0;
  stroke: var(--red); fill: none;
  transition: transform var(--transition);
}
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: .92rem;
  color: var(--gray-dark);
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .metodo-grid { grid-template-columns: 1fr 1fr; }
  .about-bio { grid-template-columns: 1fr; }
  .about-bio-sticky { position: static; }
  .about-bio-img { max-width: 440px; margin: 0 auto; }
  .courses-hero-cards { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .curso-stats-bar { grid-template-columns: repeat(2, 1fr); }
  .curso-main { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section    { padding: 56px 0; }
  .section-sm { padding: 32px 0; }

  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .nav-mobile {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 16px 24px 24px;
    flex-direction: column;
    gap: 4px;
    box-shadow: var(--shadow-md);
  }
  .nav-mobile.open { display: flex; }
  .nav-mobile a {
    display: block;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-family: var(--ff-head);
    font-weight: 600;
    font-size: .95rem;
    color: var(--gray-dark);
    transition: var(--transition);
  }
  .nav-mobile a:hover,
  .nav-mobile a.active { color: var(--red); background: var(--red-light); }
  .nav-mobile .btn   { margin-top: 8px; justify-content: center; width: 100%; color: var(--white); }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 72px;
    position: static;
  }
  .hero-visual { display: none; }
  .hero-visual::after { display: none; }
  .hero-mobile-photo {
    display: block;
    width: clamp(180px, 72vw, 300px);
    height: clamp(180px, 72vw, 300px);
    margin: 0 auto 24px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
  }
  .hero-mobile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
  }
  .hero-panel {
    background: var(--white);
    padding: 40px 24px 56px;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    position: static;
    min-height: auto;
  }
  .hero-panel-content { max-width: 100%; width: 100%; margin-top: 0; text-align: center; }
  .hero-badge { margin-left: auto; margin-right: auto; }
  .hero-title {
    color: var(--dark);
    text-shadow: none;
    font-size: clamp(3.4rem, 14vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    max-width: 100%;
  }
  .hero-title em { color: var(--red); }
  .hero-desc {
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 24px;
  }
  .hero-stats {
    margin-top: 32px;
    padding-top: 24px;
    border-color: var(--border);
  }
  .hero-stat strong { color: var(--red); }
  .hero-stat span { color: var(--gray); }
  .hero-stat-sep { background: var(--border); }
  .hero-visual-badge { display: none; }
  .hero-cta-group {
    flex-direction: column;
    gap: 10px;
  }
  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }
  .hero-cta-group .btn-outline {
    border-color: var(--red);
    color: var(--red);
  }

  .about-acupuncture .about-acu-inner,
  .about-doctor .about-doc-inner,
  .contact-grid,
  .service-detail,
  .service-detail.reverse { grid-template-columns: 1fr; direction: ltr; }
  .about-doc-badge { top: auto; bottom: 16px; right: 16px; }
  .about-acu-card  { bottom: -12px; right: -8px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .metodo-grid { grid-template-columns: 1fr; }
  .metodo-card--hero { flex-direction: column; align-items: flex-start; }
  .metodo-card--hero .metodo-card-icon { margin: 0 0 8px; }
  .form-grid-2 { grid-template-columns: 1fr; }


}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .btn-lg { padding: 14px 24px; font-size: 1rem; }
  .services-grid,
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-cta-group .btn { width: 100%; justify-content: center; min-height: 48px; }
}

/* ── Mobile refinements ── */

@media (max-width: 1024px) {
  .about-acu-inner,
  .about-doc-inner { gap: 48px; }
  .about-bio       { gap: 48px; }
}

@media (max-width: 768px) {
  /* Hero — corrige margin-left que causava overflow horizontal */
  .hero-panel-content { margin-left: 0; }
  .hero-title         { font-size: clamp(2rem, 8vw, 2.8rem); line-height: 1.15; }
  .hero-info-badge    { flex-wrap: wrap; justify-content: center; gap: 8px; font-size: .76rem; }
  .hero-desc          { max-width: 100%; }

  /* Seções */
  .section-header { margin-bottom: 40px; }

  /* Seções two-col empilhadas */
  .about-acu-inner,
  .about-doc-inner { gap: 40px; }
  .about-bio       { gap: 40px; }
  .about-doc-img-wrap { max-width: 340px; margin: 0 auto; }

  /* Service detail */
  .service-detail { padding: 40px 0; gap: 32px; }

  /* Contato */
  .contact-form-wrap { padding: 24px; border-radius: var(--radius-lg); }

  /* Cursos */
  .courses-hero-cards        { margin-bottom: 40px; }
  .course-card-featured-top  { padding: 28px 24px; }
  .course-card-featured-body { padding: 24px; }

  /* Footer */
  .footer-grid { gap: 24px; }

  /* Page hero */
  .page-hero   { padding: 104px 0 56px; }
  .page-hero p { font-size: 1rem; }

  /* CTA banner */
  .cta-banner   { padding: 56px 0; }
  .cta-banner p { font-size: 1rem; }

  /* Logo no nav */
  .nav-logo-img { height: 44px; }

  /* Botão WhatsApp flutuante */
  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
}

@media (max-width: 480px) {
  .hero-title      { font-size: clamp(1.8rem, 9vw, 2.4rem); }
  .hero-info-badge { font-size: .7rem; padding: 6px 12px; }
  .hero-stats      { gap: 4px; }

  .section-header { margin-bottom: 28px; }

  .page-hero { padding: 96px 0 40px; }

  .footer { padding: 48px 0 24px; }

  .contact-form-wrap { padding: 20px 16px; }

  .service-detail { padding: 28px 0; gap: 20px; }

  /* Card flutuante da seção acupuntura — esconde para evitar overflow */
  .about-acu-card { display: none; }

  .cta-banner { padding: 48px 0; }

  /* Cursos */
  .course-card-featured-top  { padding: 24px 20px; }
  .course-card-featured-body { padding: 20px; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .fade-in { opacity: 1; transform: none; }
}
