/* ============================================================
   JANA PATRÍCIO — style.css
   Design elegante, feminino, focado em conversão
   ============================================================ */

/* ── 1. VARIÁVEIS & RESET ── */
:root {
  --color-primary:       #fa7c6e;
  --color-primary-dark:  #e86355;
  --color-primary-light: #fde8e5;
  --color-rose:          #f9ede9;
  --color-blush:         #fdf4f2;
  --color-dark:          #2a1f1d;
  --color-text:          #4a3b38;
  --color-muted:         #8a7370;
  --color-white:         #ffffff;
  --color-border:        #f0deda;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius-md:  14px;
  --radius-lg:  24px;
  --radius-xl:  40px;

  --shadow-sm:  0 2px 12px rgba(250,124,110,.10);
  --shadow-md:  0 8px 32px rgba(250,124,110,.15);
  --shadow-lg:  0 20px 60px rgba(42,31,29,.12);

  --max-width:  1160px;
  --section-py: 100px;
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ── 2. UTILITÁRIOS ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 24px;
}

.section__tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-primary-light);
  padding: 4px 14px;
  border-radius: 99px;
  margin-bottom: 16px;
}
.section__tag--light { color: var(--color-white); background: rgba(255,255,255,.22); }

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.25;
  margin-bottom: 24px;
}
.section__title em { font-style: italic; color: var(--color-primary); }
.section__title--light { color: var(--color-white); }

.section__header {
  text-align: center;
  max-width: 580px;
  margin-inline: auto;
  margin-bottom: 60px;
}

/* ── 3. BOTÕES ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(250,124,110,.35);
}
.btn--primary:hover {
  background: var(--color-primary-dark);
  box-shadow: 0 8px 28px rgba(250,124,110,.45);
}

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn--outline:hover { background: var(--color-primary-light); }

.btn--white {
  background: var(--color-white);
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}
.btn--white:hover { background: var(--color-primary-light); box-shadow: var(--shadow-md); }

.btn--large  { padding: 18px 36px; font-size: 1.05rem; }
.btn--map    { margin-top: 20px; font-size: .875rem; padding: 10px 20px; }

/* ── 4. FADE-IN ON SCROLL ── */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-in--delay  { transition-delay: .18s; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── 5. VIDEO WRAPPER ── */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #1a1a1a;
}
.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── 6. HEADER / NAV ── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 2px 24px rgba(42,31,29,.08);
}
.header.scrolled::before {
  content: '';
  position: absolute;
  inset: 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: -1;
  pointer-events: none;
}

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

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav__logo-img {
  height: 48px;
  width: auto;
  display: none; /* shown via JS when loaded */
  object-fit: contain;
}
.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav__logo-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-dark);
}
.nav__logo-role {
  font-size: .68rem;
  font-weight: 500;
  color: var(--color-primary);
  letter-spacing: .06em;
}

/* Menu */
.nav__menu {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: nowrap;
  height: auto;
}
.nav__link {
  font-size: .82rem;
  font-weight: 500;
  color: var(--color-text);
  padding: 7px 11px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav__link:hover,
.nav__link--active { color: var(--color-primary); background: var(--color-primary-light); }

.nav__link--cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-primary);
  color: var(--color-white) !important;
  border-radius: var(--radius-xl);
  padding: 9px 16px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  margin-left: 4px;
}
.nav__link--cta:hover { background: var(--color-primary-dark); }

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1100;
}
.nav__toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── 7. HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #fff5f3 0%, #fdeae6 50%, #f8ddd9 100%);
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(250,124,110,.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding-block: 80px;
  position: relative;
  z-index: 1;
}
.hero__tag {
  display: inline-block;
  font-size: .78rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-primary-light);
  padding: 5px 16px; border-radius: 99px;
  margin-bottom: 20px;
}
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.1;
  margin-bottom: 8px;
}
.hero__subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-style: italic;
  color: var(--color-primary);
  margin-bottom: 24px;
}
.hero__description {
  font-size: 1.05rem;
  color: var(--color-muted);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero__buttons { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__image { position: relative; }
.hero__photo-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--color-primary-light) 0%, var(--color-rose) 100%);
  min-height: 380px;
}
.hero__photo { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.hero__photo-placeholder {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 12px;
  color: var(--color-muted);
  padding: 40px;
  text-align: center;
}
.hero__photo-placeholder p { font-size: .85rem; font-weight: 500; }

.hero__badge {
  position: absolute;
  bottom: -20px; left: -20px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--color-border);
}
.hero__badge-number {
  font-family: var(--font-heading);
  font-size: 2rem; font-weight: 700;
  color: var(--color-primary); line-height: 1;
}
.hero__badge-text { font-size: .78rem; font-weight: 500; color: var(--color-muted); line-height: 1.4; }

.hero__scroll-indicator { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 1; }
.hero__scroll-indicator span {
  display: block; width: 2px; height: 48px;
  background: linear-gradient(to bottom, var(--color-primary), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  50%       { opacity: 1;  transform: scaleY(1.1); }
}

/* ── 8. ABOUT ── */
.about { padding-block: var(--section-py); background: var(--color-white); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about__img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  min-height: 360px;
  background: linear-gradient(160deg, var(--color-rose) 0%, var(--color-primary-light) 100%);
}
.about__img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.about__img-placeholder {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 12px;
  color: var(--color-muted);
  padding: 40px;
  text-align: center;
}
.about__img-placeholder p { font-size: .85rem; font-weight: 500; }
.about__quote {
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  text-align: center;
}
.about__text-col p { color: var(--color-muted); margin-bottom: 18px; }
.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 36px;
}
.about__feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--color-blush);
  border-radius: var(--radius-md);
  padding: 16px;
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.about__feature:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.about__feature-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.about__feature strong { display: block; font-size: .875rem; font-weight: 700; color: var(--color-dark); margin-bottom: 2px; }
.about__feature span  { font-size: .78rem; color: var(--color-muted); }

/* ── 9. SERVICE SECTIONS ── */
.service { padding-block: var(--section-py); }
.service--coral { background: linear-gradient(135deg, #fa7c6e 0%, #f05e50 100%); }
.service--rose  { background: var(--color-blush); }
.service--light { background: var(--color-white); }

.service__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.service__grid--reverse { direction: rtl; }
.service__grid--reverse > * { direction: ltr; }

.service__lead { font-size: 1.05rem; line-height: 1.75; margin-bottom: 20px; }

.service--coral .section__title,
.service--coral .service__lead { color: var(--color-white); }
.service--coral p     { color: rgba(255,255,255,.82); }
.service--coral strong { color: var(--color-white); }

.service--rose p,
.service--light p { color: var(--color-muted); margin-bottom: 16px; }

.service__tags-list { display: flex; flex-wrap: wrap; gap: 10px; margin-block: 20px; }
.service__tags-list li {
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  border-radius: 99px;
  padding: 6px 16px;
  font-size: .85rem;
  font-weight: 600;
}

.service__media-multi { display: flex; flex-direction: column; gap: 20px; }

/* Sessões — imagem em vez de illustration card */
.service__img-col { display: flex; align-items: stretch; }
.service__img-wrapper {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(145deg, var(--color-primary-light), var(--color-rose));
  min-height: 360px;
}
.service__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.service__img-placeholder {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 360px;
  gap: 12px;
  color: var(--color-muted);
  text-align: center;
  padding: 40px;
}
.service__img-placeholder p { font-size: .85rem; font-weight: 500; }

/* ── 10. LIVRO ── */
.book { padding-block: var(--section-py); background: var(--color-rose); }
.book__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.book__media { display: flex; flex-direction: column; gap: 20px; }

.book__video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #1a1a1a;
}
.book__video-wrapper iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

.book__mockup {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--color-primary-light);
  min-height: 180px;
}
.book__mockup img { width: 100%; height: auto; display: block; }
.book__mockup-placeholder {
  flex-direction: column; align-items: center; justify-content: center;
  min-height: 180px; gap: 10px; color: var(--color-muted); padding: 20px; text-align: center;
}
.book__mockup-placeholder p { font-size: .8rem; font-weight: 500; }

.book__text p { color: var(--color-muted); margin-bottom: 16px; }
.book__role { font-family: var(--font-heading); font-style: italic; color: var(--color-primary) !important; font-size: 1rem; }
.book__available strong { color: var(--color-dark); }

/* ── 11. ESCRITA TERAPÊUTICA ── */
.writing { padding-block: var(--section-py); background: var(--color-white); }
.writing__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.writing__text p { color: var(--color-muted); margin-bottom: 18px; }

.writing__steps { margin-block: 24px; display: flex; flex-direction: column; gap: 12px; }
.writing__steps li { display: flex; align-items: center; gap: 14px; font-weight: 500; color: var(--color-dark); font-size: .95rem; }
.writing__step-num {
  display: flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--color-primary); color: var(--color-white);
  font-size: .72rem; font-weight: 700; flex-shrink: 0;
}

/* ── 12. IMAGE SLIDER (Escrita) ── */
.img-slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--color-primary-light);
  aspect-ratio: 4/5;
  min-height: 360px;
}
.img-slider__track { width: 100%; height: 100%; position: relative; }
.img-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .55s ease;
  pointer-events: none;
}
.img-slider__slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}
.img-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.img-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  color: var(--color-primary);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  z-index: 2;
}
.img-slider__btn:hover { background: var(--color-white); box-shadow: var(--shadow-md); transform: translateY(-50%) scale(1.08); }
.img-slider__btn--prev { left: 12px; }
.img-slider__btn--next { right: 12px; }

.img-slider__dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 7px;
  z-index: 2;
}
.img-slider__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  border: none; cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  padding: 0;
}
.img-slider__dot.active { background: var(--color-white); transform: scale(1.25); }

/* ── 13. DIFERENCIAIS ── */
.differentials { padding-block: var(--section-py); background: var(--color-blush); }
.differentials__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.differentials__item {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 36px 20px;
  text-align: center;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.differentials__item:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.differentials__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.differentials__item h3 { font-family: var(--font-heading); font-size: .95rem; font-weight: 700; color: var(--color-dark); margin-bottom: 10px; }
.differentials__item p  { font-size: .8rem; color: var(--color-muted); line-height: 1.6; }

/* ── 14. DEPOIMENTOS + CARROSSEL ── */
.testimonial { padding-block: var(--section-py); background: linear-gradient(135deg, #fa7c6e 0%, #f05e50 100%); }
.testimonial__inner { text-align: center; }

/* Carrossel */
.t-carousel { max-width: 820px; margin: 40px auto 0; }
.t-carousel__track { position: relative; }

.t-carousel__slide {
  display: none;
  animation: fadeSlide .5s ease forwards;
}
.t-carousel__slide.active { display: block; }

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.testimonial__card {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 52px 48px 40px;
  position: relative;
  text-align: left;
}
.testimonial__quote-icon {
  font-family: var(--font-heading);
  font-size: 7rem; line-height: .6;
  color: rgba(255,255,255,.2);
  position: absolute;
  top: 24px; left: 40px;
  pointer-events: none; user-select: none;
}
blockquote { position: relative; z-index: 1; }
blockquote p {
  font-family: var(--font-heading);
  font-size: clamp(.92rem, 1.6vw, 1.05rem);
  font-style: italic;
  color: var(--color-white);
  line-height: 1.9;
  margin-bottom: 14px;
}
blockquote p:last-child { margin-bottom: 28px; }

.testimonial__author {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.testimonial__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  color: var(--color-white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testimonial__author strong { display: block; font-size: .95rem; font-weight: 700; color: var(--color-white); }
.testimonial__author span  { font-size: .78rem; color: rgba(255,255,255,.72); }

/* Controles do carrossel */
.t-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}
.t-carousel__btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,.35);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), transform var(--transition);
}
.t-carousel__btn:hover { background: rgba(255,255,255,.35); transform: scale(1.08); }

.t-carousel__dots { display: flex; gap: 8px; }
.t-carousel__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  border: none; cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  padding: 0;
}
.t-carousel__dot.active { background: var(--color-white); transform: scale(1.3); }

/* ── 15. CONTATO ── */
.contact { padding-block: var(--section-py); background: var(--color-white); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact__info > p { color: var(--color-muted); margin-bottom: 36px; }

.contact__list { display: flex; flex-direction: column; gap: 24px; }
.contact__list li { display: flex; align-items: flex-start; gap: 16px; }
.contact__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact__list strong { display: block; font-size: .85rem; font-weight: 700; color: var(--color-dark); margin-bottom: 2px; }
.contact__list a,
.contact__list address { font-size: .95rem; color: var(--color-muted); transition: color var(--transition); }
.contact__list a:hover  { color: var(--color-primary); }

/* CTA Card */
.contact__cta-card {
  background: linear-gradient(145deg, var(--color-primary-light), var(--color-rose));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 52px 40px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.contact__cta-deco {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(250,124,110,.12);
  color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.contact__cta-card h3 { font-family: var(--font-heading); font-size: 1.4rem; color: var(--color-dark); margin-bottom: 14px; }
.contact__cta-card p  { font-size: .95rem; color: var(--color-muted); margin-bottom: 32px; line-height: 1.7; }

/* ── 16. FOOTER ── */
.footer { background: var(--color-dark); color: rgba(255,255,255,.7); }
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-block: 60px;
}

/* Logo footer */
.footer__logo-link {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
}
.footer__logo-img {
  height: 40px; width: auto;
  display: none; /* shown via JS when loaded */
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.footer__logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem; font-weight: 700;
  color: var(--color-white);
}

.footer__brand p { font-size: .875rem; line-height: 1.7; margin-bottom: 24px; color: rgba(255,255,255,.5); }

.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.65);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), color var(--transition);
}
.footer__social a:hover { background: var(--color-primary); color: var(--color-white); }

.footer__nav h4,
.footer__address h4 {
  font-size: .75rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 18px;
}
.footer__nav ul { display: flex; flex-direction: column; gap: 9px; }
.footer__nav a { font-size: .85rem; color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer__nav a:hover { color: var(--color-primary); }

.footer__address address { font-size: .85rem; line-height: 1.8; color: rgba(255,255,255,.5); margin-bottom: 14px; }
.footer__map-link { font-size: .8rem; font-weight: 600; color: var(--color-primary); transition: opacity var(--transition); }
.footer__map-link:hover { opacity: .75; }

.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); }
.footer__bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding-block: 20px;
  font-size: .78rem; color: rgba(255,255,255,.3);
  gap: 16px; flex-wrap: wrap;
}
.footer__bottom svg { vertical-align: middle; margin-inline: 2px; }
.footer__bottom a { color: var(--color-primary); font-weight: 600; transition: opacity var(--transition); }
.footer__bottom a:hover { opacity: .75; }

/* ── 17. WHATSAPP FLUTUANTE ── */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366; color: var(--color-white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1) translateY(-3px); box-shadow: 0 8px 28px rgba(37,211,102,.5); }
.whatsapp-float__tooltip {
  position: absolute; right: 70px;
  background: var(--color-dark); color: var(--color-white);
  padding: 6px 12px; border-radius: var(--radius-sm);
  font-size: .78rem; font-weight: 600;
  white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.whatsapp-float__tooltip::after {
  content: ''; position: absolute;
  left: 100%; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--color-dark);
}
.whatsapp-float:hover .whatsapp-float__tooltip { opacity: 1; }
.whatsapp-float::before {
  content: ''; position: absolute; inset: -4px;
  border-radius: 50%;
  background: rgba(37,211,102,.25);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: .5; }
  50%       { transform: scale(1.3); opacity: 0; }
}

/* ── 18. GALERIA (usada no orçamento) ── */
.gallery { padding-block: 60px; }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-primary-light);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.gallery__item:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .4s ease;
}
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item-placeholder {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  height: 100%; gap: 8px;
  color: var(--color-muted); font-size: .8rem;
}

/* ── 19. PÁGINA ORÇAMENTO — HERO ── */
.page-hero {
  padding-block: 100px 60px;
  background: linear-gradient(135deg, #fff5f3 0%, #fdeae6 50%, #f8ddd9 100%);
  text-align: center;
  margin-top: 72px;
}
.page-hero__tag  { margin-bottom: 12px; }
.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700; color: var(--color-dark);
  line-height: 1.2; margin-bottom: 16px;
}
.page-hero__subtitle {
  font-size: 1.1rem; color: var(--color-muted);
  max-width: 560px; margin-inline: auto;
  line-height: 1.7;
}

/* Tabs de navegação (página orçamento) */
.orcamento-tabs {
  background: var(--color-white);
  border-bottom: 2px solid var(--color-border);
  position: sticky; top: 72px; z-index: 900;
}
.orcamento-tabs__inner {
  display: flex;
  justify-content: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.orcamento-tabs__inner::-webkit-scrollbar { display: none; }
.orcamento-tab {
  padding: 18px 28px;
  font-weight: 600; font-size: .9rem;
  color: var(--color-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color var(--transition), border-color var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.orcamento-tab:hover,
.orcamento-tab.active { color: var(--color-primary); border-bottom-color: var(--color-primary); }

/* Seção de cada ensaio */
.ensaio-section { padding-block: var(--section-py); }
.ensaio-section:nth-child(odd) { background: var(--color-white); }
.ensaio-section:nth-child(even) { background: var(--color-blush); }

.ensaio-section__header { margin-bottom: 48px; }
.ensaio-section__header .section__title { margin-bottom: 12px; }
.ensaio-section__header p { color: var(--color-muted); font-size: 1.05rem; max-width: 640px; }

/* Pricing grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-block: 48px;
}
.pricing-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex; flex-direction: column;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--color-primary); }
.pricing-card--featured {
  border-color: var(--color-primary);
  background: linear-gradient(160deg, #fff, var(--color-primary-light));
}
.pricing-card__tag {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 10px; display: block;
}
.pricing-card__title { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--color-dark); margin-bottom: 20px; }
.pricing-card__features { flex: 1; }
.pricing-card__features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .9rem; color: var(--color-text);
  padding-block: 7px;
  border-bottom: 1px solid var(--color-border);
}
.pricing-card__features li:last-child { border-bottom: none; }
.pricing-card__check {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--color-primary-light); color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.pricing-card__price {
  margin-top: 24px; padding-top: 20px;
  border-top: 2px solid var(--color-border);
}
.pricing-card__pix {
  font-family: var(--font-heading);
  font-size: 1.8rem; font-weight: 700;
  color: var(--color-dark); display: block;
}
.pricing-card__pix span { font-size: 1rem; color: var(--color-muted); }
.pricing-card__installment { font-size: .85rem; color: var(--color-muted); margin-top: 4px; display: block; }
.pricing-card .btn { margin-top: 20px; width: 100%; justify-content: center; }

/* Tabela de fotos extras */
.extras-table {
  width: 100%; border-collapse: collapse;
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-block: 32px;
}
.extras-table th {
  background: var(--color-primary); color: var(--color-white);
  padding: 12px 20px; text-align: left; font-size: .85rem; font-weight: 600;
}
.extras-table td {
  padding: 12px 20px; font-size: .9rem;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-white);
}
.extras-table tr:last-child td { border-bottom: none; }
.extras-table tr:nth-child(even) td { background: var(--color-blush); }

/* Observações */
.obs-box {
  background: var(--color-primary-light);
  border-left: 4px solid var(--color-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px;
  margin-block: 24px;
}
.obs-box p, .obs-box li { font-size: .9rem; color: var(--color-text); line-height: 1.7; }
.obs-box ul { padding-left: 18px; list-style: disc; }

/* CTA final de ensaio */
.ensaio-cta {
  background: linear-gradient(135deg, #fa7c6e 0%, #f05e50 100%);
  border-radius: var(--radius-lg);
  padding: 52px 48px;
  text-align: center;
  margin-top: 60px;
}
.ensaio-cta h3 { font-family: var(--font-heading); font-size: clamp(1.4rem, 3vw, 2rem); color: var(--color-white); margin-bottom: 12px; }
.ensaio-cta p  { color: rgba(255,255,255,.85); font-size: 1rem; margin-bottom: 28px; max-width: 540px; margin-inline: auto; }

/* Garante que .nav__menu nunca tenha altura estranha no desktop */
@media (min-width: 641px) {
  .nav__menu { height: auto !important; }
}

/* ── 20. RESPONSIVO ── */
@media (max-width: 1080px) {
  :root { --section-py: 80px; }
  .differentials__list { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero__content,
  .about__grid,
  .service__grid,
  .book__grid,
  .writing__grid,
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }

  .service__grid--reverse { direction: ltr; }
  .hero__content { padding-block: 60px; }
  .hero__image { order: -1; }

  /* Imagens verticais em mobile — proporção adequada para fotos de pessoas */
  .hero__photo-wrapper { aspect-ratio: unset; height: 420px; }
  .about__img-wrapper  { aspect-ratio: unset; height: 400px; }
  .img-slider          { aspect-ratio: unset; height: 380px; }
  .service__img-wrapper { height: 340px; }

  .about__features { grid-template-columns: 1fr; }
  .differentials__list { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .testimonial__card { padding: 40px 28px; }
  .pricing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --section-py: 60px; }

  /* Mobile nav */
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed; inset: 0;
    background: rgba(255,255,255,.98);
    flex-direction: column;
    justify-content: center; align-items: center;
    gap: 4px;
    transform: translateX(100%);
    transition: transform var(--transition), visibility 0s var(--transition);
    visibility: hidden;
    z-index: 1050;
    overflow-y: auto;
    padding-block: 32px;
  }
  .nav__menu.open {
    transform: translateX(0);
    visibility: visible;
    transition: transform var(--transition), visibility 0s 0s;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  .nav__link { font-size: 1.05rem; padding: 12px 24px; }
  .nav__link--cta { margin-top: 12px; }

  .hero__buttons { flex-direction: column; }
  .hero__buttons .btn { width: 100%; justify-content: center; }

  .hero__photo-wrapper { height: 360px; }
  .about__img-wrapper  { height: 340px; }
  .service__img-wrapper { height: 300px; }
  .img-slider          { height: 320px; }

  .hero__badge { bottom: -12px; left: 12px; }

  .differentials__list { grid-template-columns: 1fr; }
  .testimonial__card { padding: 32px 18px; }
  .testimonial__quote-icon { font-size: 4rem; top: 12px; left: 20px; }

  .contact__grid { gap: 32px; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }

  .whatsapp-float { width: 52px; height: 52px; bottom: 20px; right: 20px; }

  .gallery__grid { grid-template-columns: repeat(2, 1fr); }

  .ensaio-cta { padding: 36px 24px; }
  .orcamento-tab { padding: 14px 18px; font-size: .82rem; }

  /* Tabs: switch to flex-start so overflow-x scroll works correctly */
  .orcamento-tabs__inner { justify-content: flex-start; }

  /* Hero: espaço para o scroll indicator não sobrepor os botões */
  .hero { padding-bottom: 80px; }

  /* Desafio: vídeo aparece primeiro, botão com mais espaço */
  .service--coral .vid-carousel { order: -1; }
  .service--coral .service__text .btn { margin-top: 32px; }

  /* Terapia individual: imagem aparece primeiro */
  .service--light .service__img-col { order: -1; }
  .service__img-wrapper { height: 380px; }

  /* Escrita (PDF): slider aparece primeiro */
  .writing__grid .img-slider { order: -1; }
}

@media (max-width: 400px) {
  .differentials__list { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; }
}

/* ── 21. IMG-CAROUSEL (página orçamento) ── */
.img-carousel {
  position: relative;
  max-width: 580px;
  margin-inline: auto;
  margin-bottom: 48px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--color-blush);
}

.img-carousel__track { position: relative; }

.img-carousel__slide { display: none; cursor: zoom-in; }
.img-carousel__slide.active {
  display: block;
  animation: fadeSlide .4s ease;
}

/* Imagem ocupa toda a largura, altura natural — sem cortes */
.img-carousel__slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: top center;
}

/* Botões prev/next */
.img-carousel__btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: var(--color-primary);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  z-index: 3;
}
.img-carousel__btn:hover {
  background: var(--color-white);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(250,124,110,.3);
}
.img-carousel__btn--prev { left: 12px; }
.img-carousel__btn--next { right: 12px; }

/* Barra inferior: dots + contador */
.img-carousel__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 12px 16px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.img-carousel__dots { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; }
.img-carousel__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--color-border);
  border: none; cursor: pointer; padding: 0;
  transition: background var(--transition), transform var(--transition);
}
.img-carousel__dot.active { background: var(--color-primary); transform: scale(1.4); }

.img-carousel__counter {
  font-size: .78rem; font-weight: 600;
  color: var(--color-muted);
  min-width: 38px; text-align: right;
  flex-shrink: 0;
}

/* CTA simples abaixo do carrossel */
.ensaio-cta-btn {
  text-align: center;
  margin-top: 48px;
  padding-bottom: 12px;
}

/* ── 22. LIGHTBOX ── */
.lightbox {
  position: fixed; inset: 0;
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }

.lightbox__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.93);
  cursor: pointer;
}

.lightbox__content {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  max-width: min(92vw, 680px);
  max-height: 90vh;
  padding: 8px;
}

/* Imagem vertical: cabe toda na tela, sem corte */
.lightbox__img {
  max-width: 100%;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 80px rgba(0,0,0,.7);
  display: block;
  user-select: none;
}

.lightbox__close {
  position: fixed; top: 18px; right: 18px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,.25);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
  z-index: 2;
}
.lightbox__close:hover { background: rgba(255,255,255,.22); }

.lightbox__btn {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,.25);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), transform var(--transition);
  z-index: 2;
}
.lightbox__btn:hover { background: rgba(255,255,255,.22); transform: translateY(-50%) scale(1.08); }
.lightbox__btn--prev { left: 14px; }
.lightbox__btn--next { right: 14px; }

.lightbox__counter {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.6);
  font-size: .82rem; font-weight: 500;
  background: rgba(0,0,0,.35);
  padding: 4px 14px; border-radius: 99px;
  z-index: 2; white-space: nowrap;
}

/* Mobile: botões laterais do lightbox mais compactos */
@media (max-width: 640px) {
  .lightbox__btn--prev { left: 6px; }
  .lightbox__btn--next { right: 6px; }
  .lightbox__btn { width: 40px; height: 40px; }
  .lightbox__content { max-width: 96vw; }
  .lightbox__img { max-height: 82vh; }
  .img-carousel { max-width: 100%; }
  .img-carousel__btn { width: 36px; height: 36px; }
}

/* ── 23. VID-CAROUSEL (vídeos + livro) ── */
.vid-carousel { position: relative; }
.vid-carousel__slide { display: none; }
.vid-carousel__slide.active { display: block; animation: fadeSlide .4s ease; }

.vid-carousel__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}

.vid-carousel__btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,.35);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), transform var(--transition);
}
.vid-carousel__btn:hover { background: rgba(255,255,255,.32); transform: scale(1.08); }

/* Botões para fundos claros (livro) */
.book .vid-carousel__btn {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}
.book .vid-carousel__btn:hover { background: var(--color-primary-light); }

.vid-carousel__dots { display: flex; gap: 8px; }
.vid-carousel__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  border: none; cursor: pointer; padding: 0;
  transition: background var(--transition), transform var(--transition);
}
.vid-carousel__dot.active { background: var(--color-white); transform: scale(1.3); }

.book .vid-carousel__dot { background: var(--color-border); }
.book .vid-carousel__dot.active { background: var(--color-primary); }
