/* ============================================
   LUCIANA OMORI — Psicoterapia Online
   CSS Customizado
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Public+Sans:ital,wght@0,200;0,300;0,400;0,500;0,600;1,300;1,400&family=Literata:ital,wght@0,300;0,400;1,300;1,400&display=swap');

/* --- Variáveis de Cor --- */
:root {
  --lo-primary:    #4A7C6F;
  --lo-primary-light: #5a9585;
  --lo-primary-dark:  #3a6359;
  --lo-secondary:  #190D39;
  --lo-accent:     #C4956A;
  --lo-text:       #67656E;
  --lo-heading:    #190D39;
  --lo-bg:         #FFFFFF;
  --lo-bg-alt:     #FAFAF8;
  --lo-cream:      #F3E8DE;
  --lo-cream-light:#FAF5F0;
  --lo-border:     #E5E3E0;
  --lo-shadow:     rgba(25, 13, 57, 0.08);
  --lo-shadow-md:  rgba(25, 13, 57, 0.15);

  /* Tipografia */
  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'Public Sans', sans-serif;
  --font-heading:  'Literata', Georgia, serif;

  /* Espaçamentos */
  --section-pad-y: 100px;
  --section-pad-y-sm: 60px;
  --container-max: 1200px;
  --container-pad: 40px;

  /* Transições */
  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::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);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--lo-text);
  background: var(--lo-bg);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--lo-heading);
  line-height: 1.15;
  font-weight: 300;
}

h1 { font-size: clamp(1.8rem, 6vw, 3.8rem); letter-spacing: -1px; }
h2 { font-size: clamp(1.5rem, 5vw, 3.2rem); letter-spacing: -0.5px; }
h3 { font-size: clamp(1.2rem, 4vw, 2.4rem); }
h4 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h5 { font-size: 1.2rem; }
h6 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; font-family: var(--font-body); font-weight: 600; }

p { line-height: 1.7; }

a { color: var(--lo-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--lo-primary-dark); }

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

b, strong { font-weight: 600; }
em, i { font-style: italic; }

/* ============================================
   UTILITÁRIOS
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section { padding: var(--section-pad-y) 0; }
.section--alt { background: var(--lo-bg-alt); }
.section--cream { background: var(--lo-cream-light); }
.section--dark { background: var(--lo-secondary); color: #fff; }
.section--green { background: var(--lo-primary); color: #fff; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--lo-primary);
  margin-bottom: 16px;
  font-family: var(--font-body);
}

.section-title {
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--lo-text);
  max-width: 600px;
  margin-bottom: 48px;
  line-height: 1.65;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ============================================
   BOTÕES
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.btn-primary {
  background: var(--lo-primary);
  color: #fff;
  border-color: var(--lo-primary);
}
.btn-primary:hover {
  background: var(--lo-primary-dark);
  border-color: var(--lo-primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74, 124, 111, 0.3);
}

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

.btn-ghost {
  background: transparent;
  color: var(--lo-text);
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.btn-ghost:hover { color: var(--lo-primary); }

.btn-white {
  background: #fff;
  color: var(--lo-primary);
  border-color: #fff;
}
.btn-white:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-lg { padding: 18px 44px; font-size: 1.05rem; }
.btn-sm { padding: 10px 18px; font-size: 0.85rem; }

.btn .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 24px 0;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px var(--lo-shadow);
  padding: 14px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo__img {
  height: 60px;
  width: auto;
  display: block;
}

.footer-logo .site-logo__img {
  height: 48px;
}

.site-logo__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--lo-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.site-logo__sub {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--lo-accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 3px;
}

/* Navegação principal */
.main-nav { display: flex; align-items: center; gap: 0; }

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
}

.nav-menu > li { position: relative; }

.nav-menu > li > a {
  display: block;
  padding: 8px 10px;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--lo-heading);
  text-decoration: none;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}

.nav-menu > li > a:hover,
.nav-menu > li.active > a {
  color: var(--lo-primary);
  background: rgba(74, 124, 111, 0.06);
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 40px rgba(25, 13, 57, 0.12);
  min-width: 240px;
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  transform: translateX(-50%) translateY(-8px);
  list-style: none;
  z-index: 100;
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown li a {
  display: block;
  padding: 8px 14px;
  font-size: 0.88rem;
  color: var(--lo-text);
  border-radius: 6px;
  transition: all var(--transition);
}

.nav-dropdown li a:hover {
  color: var(--lo-primary);
  background: rgba(74, 124, 111, 0.06);
  padding-left: 18px;
}

/* Dropdown arrow indicator */
.has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 6px;
  vertical-align: middle;
  transition: transform var(--transition);
}
.has-dropdown:hover > a::after { transform: rotate(225deg) translateY(2px); }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 12px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: background var(--transition);
}
.hamburger:hover { background: rgba(74, 124, 111, 0.08); }
.hamburger span {
  display: block;
  height: 2px;
  background: var(--lo-heading);
  border-radius: 2px;
  transition: all 0.35s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(25, 13, 57, 0.5);
  backdrop-filter: blur(2px);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-slow), visibility var(--transition-slow);
}
.mobile-nav.open { opacity: 1; visibility: visible; }

.mobile-nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 100vw);
  background: #fff;
  padding: 24px 28px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-nav.open .mobile-nav__panel { transform: translateX(0); }

.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--lo-border);
}

.mobile-nav__title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--lo-text);
}

.mobile-nav__close {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--lo-border);
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lo-heading);
  transition: background var(--transition), border-color var(--transition);
  flex-shrink: 0;
}
.mobile-nav__close:hover { background: var(--lo-cream); border-color: var(--lo-primary); }

.mobile-menu { list-style: none; }
.mobile-menu li { border-bottom: 1px solid var(--lo-border); }
.mobile-menu li:last-child { border-bottom: none; }
.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 1rem;
  color: var(--lo-heading);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--lo-primary); }

.mobile-submenu {
  list-style: none;
  padding: 0 0 12px 16px;
  display: none;
}
.mobile-submenu.open { display: block; }
.mobile-submenu a {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--lo-text);
}

.mobile-nav__cta { margin-top: 24px; }
.mobile-nav__cta .btn { width: 100%; justify-content: center; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  /*min-height: 100vh;*/
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--lo-cream-light) 0%, #fff 60%);
  padding-top: 100px;
}

.hero__bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__bg-svg {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 55%;
  max-width: 700px;
  opacity: 0.12;
}

.hero__line-1 {
  position: absolute;
  left: 5%;
  top: 20%;
  width: 120px;
  opacity: 0.3;
}

.hero__line-2 {
  position: absolute;
  right: 8%;
  bottom: 15%;
  width: 80px;
  opacity: 0.25;
  transform: rotate(45deg);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
}

.hero__content { max-width: 580px; }

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(74, 124, 111, 0.08);
  color: var(--lo-primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 28px;
}
.hero__label-dot {
  width: 6px;
  height: 6px;
  background: var(--lo-primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero__title {
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--lo-text);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero__tags {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--lo-border);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 0.82rem;
  color: var(--lo-text);
  font-weight: 400;
  box-shadow: 0 2px 8px var(--lo-shadow);
  transition: all var(--transition);
}
.hero__tag:hover {
  border-color: var(--lo-primary);
  color: var(--lo-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(74, 124, 111, 0.15);
}
.hero__tag-icon { font-size: 1rem; }

.hero__image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px var(--lo-shadow-md);
}

.hero__image-frame img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: 100% top;
}

.hero__image-badge {
  position: absolute;
  bottom: 24px;
  left: -24px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: 0 8px 32px var(--lo-shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 200px;
}
.hero__image-badge-icon {
  width: 44px;
  height: 44px;
  background: rgba(74, 124, 111, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.hero__image-badge-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--lo-heading);
  font-weight: 600;
}
.hero__image-badge-text span {
  font-size: 0.75rem;
  color: var(--lo-text);
}

/* ============================================
   SEÇÃO "COMECE A SE SENTIR MELHOR"
   ============================================ */
.about-section {
  padding: var(--section-pad-y) 0;
  background: var(--lo-bg);
  position: relative;
  overflow: hidden;
}

.about-section__decor {
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  opacity: 0.15;
  pointer-events: none;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image__frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px var(--lo-shadow);
}

.about-image__frame img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.about-image__accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: rgba(74, 124, 111, 0.08);
  border-radius: 50%;
  z-index: -1;
}

.about-content {}

.about-blocks {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-block {
  border-top: 1px solid var(--lo-border);
  padding: 28px 0;
  cursor: pointer;
}
.about-block:last-child { border-bottom: 1px solid var(--lo-border); }

.about-block__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.about-block__num {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--lo-primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: var(--font-body);
}

.about-block__title {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--lo-heading);
  font-family: var(--font-heading);
  flex: 1;
  transition: color var(--transition);
}

.about-block:hover .about-block__title { color: var(--lo-primary); }

.about-block__toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--lo-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  position: relative;
  color: var(--lo-text);
}

.about-block__toggle::before,
.about-block__toggle::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.about-block__toggle::before { width: 12px; height: 1.5px; }
.about-block__toggle::after { width: 1.5px; height: 12px; }

.about-block.open .about-block__toggle {
  background: var(--lo-primary);
  border-color: var(--lo-primary);
  color: #fff;
}
.about-block.open .about-block__toggle::after { transform: rotate(90deg); opacity: 0; }

.about-block__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}
.about-block.open .about-block__body { max-height: 300px; }

.about-block__body-inner {
  padding-top: 16px;
}

.about-block__text {
  font-size: 0.95rem;
  color: var(--lo-text);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ============================================
   ESPECIALIDADES
   ============================================ */
.specialties {
  padding: var(--section-pad-y) 0;
  background: var(--lo-bg-alt);
  position: relative;
  overflow: hidden;
}

.specialties__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.specialties-swiper {
  overflow: visible !important;
  padding: 16px 0 40px !important;
}

.specialty-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 12px var(--lo-shadow);
  transition: all var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.specialty-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px var(--lo-shadow-md);
  border-color: rgba(74, 124, 111, 0.15);
}

.specialty-card__img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 50%;
  padding: 10px;
  background: rgba(74, 124, 111, 0.06);
  transition: background var(--transition);
}
.specialty-card:hover .specialty-card__img { background: rgba(74, 124, 111, 0.12); }

.specialty-card__title {
  font-size: 1rem;
  font-weight: 400;
  color: var(--lo-heading);
  font-family: var(--font-heading);
  line-height: 1.3;
}

.specialty-card__link {
  font-size: 0.82rem;
  color: var(--lo-primary);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}
.specialty-card__link:hover { gap: 8px; }

.specialties__footer {
  text-align: center;
  margin-top: 16px;
}

/* Swiper navigation */
.swiper-navigation {
  display: flex;
  align-items: center;
  gap: 8px;
}

.swiper-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--lo-border);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--lo-heading);
}
.swiper-btn:hover {
  background: var(--lo-primary);
  border-color: var(--lo-primary);
  color: #fff;
}
.swiper-btn svg { width: 16px; height: 16px; }

/* ============================================
   COMO FUNCIONA
   ============================================ */
.how-it-works {
  padding: var(--section-pad-y) 0;
  background: var(--lo-bg);
  position: relative;
}

.how-it-works__decor {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  opacity: 0.15;
  pointer-events: none;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 60px 0 48px;
  position: relative;
}

.how-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(16.666% + 16px);
  right: calc(16.666% + 16px);
  height: 1.5px;
  background: linear-gradient(90deg, var(--lo-primary) 0%, var(--lo-accent) 100%);
  opacity: 0.3;
}

.step {
  text-align: center;
  position: relative;
}

.step__num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(74, 124, 111, 0.08);
  border: 2px solid rgba(74, 124, 111, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--lo-primary);
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  background: #fff;
  transition: all var(--transition);
}

.step:hover .step__num {
  background: var(--lo-primary);
  color: #fff;
  border-color: var(--lo-primary);
  box-shadow: 0 8px 24px rgba(74, 124, 111, 0.3);
}

.step__title {
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 12px;
  font-family: var(--font-heading);
}

.step__text {
  font-size: 0.92rem;
  color: var(--lo-text);
  line-height: 1.65;
}

.how-it-works__cta { text-align: center; }

/* ============================================
   DEPOIMENTOS
   ============================================ */
.testimonials {
  padding: var(--section-pad-y) 0;
  background: var(--lo-bg-alt);
  overflow: hidden;
}

.testimonials__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.testimonials-swiper { overflow: visible !important; }

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: 0 2px 16px var(--lo-shadow);
  border: 1px solid var(--lo-border);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow var(--transition);
}
.testimonial-card:hover { box-shadow: 0 8px 32px var(--lo-shadow-md); }

.testimonial-stars {
  display: flex;
  gap: 3px;
  color: #F4C430;
  font-size: 1rem;
}

.testimonial-text {
  font-size: 0.97rem;
  line-height: 1.75;
  color: var(--lo-text);
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-author__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(74, 124, 111, 0.15);
  flex-shrink: 0;
}

.testimonial-author__name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--lo-heading);
}

.testimonial-author__label {
  font-size: 0.8rem;
  color: var(--lo-text);
}

/* Swiper dots */
.swiper-pagination-bullet {
  background: var(--lo-border);
  opacity: 1;
  width: 8px;
  height: 8px;
  transition: all var(--transition);
}
.swiper-pagination-bullet-active {
  background: var(--lo-primary);
  width: 24px;
  border-radius: 4px;
}

/* ============================================
   CONTADORES + CTA INTERMEDIÁRIO
   ============================================ */
.counters-section {
  padding: var(--section-pad-y) 0;
  background: var(--lo-primary);
  position: relative;
  overflow: hidden;
}

.counters-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../Main_files/home-1-svg-2.svg') center/cover no-repeat;
  opacity: 0.05;
}

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

.counters-inner .section-label { color: rgba(255,255,255,0.7); }
.counters-inner h2 { color: #fff; margin-bottom: 16px; }
.counters-inner .section-subtitle { color: rgba(255,255,255,0.8); margin: 0 auto 56px; }

.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 56px;
}

.counter-item { text-align: center; }

.counter-item__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.counter-item__value .counter-suffix {
  font-size: 0.7em;
  vertical-align: super;
}

.counter-item__label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 400;
}

.counters-cta { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ============================================
   BLOG
   ============================================ */
.blog-section {
  padding: var(--section-pad-y) 0;
  background: var(--lo-bg);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 48px 0;
}

.blog-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--lo-border);
  transition: all var(--transition);
  background: #fff;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--lo-shadow-md);
}

.blog-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--lo-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lo-accent);
  font-size: 2.5rem;
}

.blog-card__img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card__body { padding: 28px; }

.blog-card__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--lo-primary);
  margin-bottom: 10px;
}

.blog-card__title {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--lo-heading);
  font-family: var(--font-heading);
  line-height: 1.4;
  margin-bottom: 12px;
  transition: color var(--transition);
}
.blog-card:hover .blog-card__title { color: var(--lo-primary); }

.blog-card__excerpt {
  font-size: 0.9rem;
  color: var(--lo-text);
  line-height: 1.65;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__link {
  font-size: 0.85rem;
  color: var(--lo-primary);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.blog-card__link:hover { gap: 10px; }

.blog-section__footer { text-align: center; }

/* Blog placeholder image */
.blog-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--lo-cream-light), var(--lo-cream));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

/* Blog card como link (Substack) */
.blog-card { display: block; text-decoration: none; color: inherit; }
.blog-card__img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--lo-cream-light), var(--lo-cream));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.blog-card__img-wrap { width: 100%; height: 200px; overflow: hidden; }
.blog-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-card__date {
  display: block;
  font-size: 0.78rem;
  color: var(--lo-text);
  margin-bottom: 8px;
  opacity: 0.75;
}

/* Skeleton loading */
.blog-card--skeleton {
  background: var(--lo-bg-alt);
  border-radius: var(--radius-md);
  height: 320px;
  border: 1px solid var(--lo-border);
  animation: skeleton-pulse 1.5s ease-in-out infinite;
}
@keyframes skeleton-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Fallback */
.blog-fallback {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--lo-text);
  padding: 40px 0;
}
.blog-fallback a { color: var(--lo-primary); }

/* CTA Substack banner (artigos.html) */
.substack-cta-banner {
  background: var(--lo-secondary);
  color: #fff;
  padding: 64px 0;
  text-align: center;
}
.substack-cta-banner h2 { color: #fff; margin-bottom: 16px; }
.substack-cta-banner p { color: rgba(255,255,255,0.8); margin-bottom: 28px; font-size: 1.05rem; }
.substack-cta-banner .btn-primary {
  background: var(--lo-accent);
  border-color: var(--lo-accent);
  color: #fff;
}
.substack-cta-banner .btn-primary:hover { opacity: 0.9; }

/* ============================================
   FAQ
   ============================================ */
.faq-section {
  padding: var(--section-pad-y) 0;
  background: var(--lo-bg-alt);
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.faq-side {}

.faq-side__image {
  margin-top: 40px;
  position: relative;
}

.faq-side__svg {
  width: 100%;
  max-width: 300px;
  opacity: 0.7;
}

.faq-list { margin-top: 40px; }

.faq-item {
  border-top: 1px solid var(--lo-border);
  padding: 24px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--lo-border); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 400;
  color: var(--lo-heading);
  font-family: var(--font-heading);
  transition: color var(--transition);
  list-style: none;
  user-select: none;
}
.faq-question:hover { color: var(--lo-primary); }

.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--lo-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  color: var(--lo-text);
  position: relative;
}
.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.faq-toggle::before { width: 12px; height: 1.5px; }
.faq-toggle::after { width: 1.5px; height: 12px; }

.faq-item.open .faq-toggle {
  background: var(--lo-primary);
  border-color: var(--lo-primary);
  color: #fff;
}
.faq-item.open .faq-toggle::after { transform: rotate(90deg); opacity: 0; }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer p {
  padding: 16px 0 4px;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--lo-text);
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
  padding: var(--section-pad-y) 0;
  background: var(--lo-cream-light);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-final::before,
.cta-final::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(74, 124, 111, 0.06);
}
.cta-final::before { top: -80px; left: -80px; }
.cta-final::after { bottom: -80px; right: -80px; }

.cta-final__inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }

.cta-final__title { margin-bottom: 16px; }

.cta-final__text {
  font-size: 1.05rem;
  color: var(--lo-text);
  margin-bottom: 40px;
}

.cta-final__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta-final__links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.9rem;
}
.cta-final__links a {
  color: var(--lo-text);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}
.cta-final__links a:hover { color: var(--lo-primary); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--lo-secondary);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {}

.footer-logo .site-logo__name { color: #fff; }
.footer-logo .site-logo__sub { color: rgba(255,255,255,0.5); }

.footer-specialties-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 12px;
}
.footer-specialties-grid ul { list-style: none; margin: 0; padding: 0; }

.footer-tagline {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 260px;
}

.footer-newsletter { margin-top: 28px; }
.footer-newsletter p { font-size: 0.85rem; margin-bottom: 12px; }

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-input {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 10px 18px;
  color: #fff;
  font-size: 0.88rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-input:focus { border-color: rgba(74, 124, 111, 0.5); }

.newsletter-btn {
  background: var(--lo-primary);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
  font-family: var(--font-body);
}
.newsletter-btn:hover { background: var(--lo-primary-dark); }

.footer-col {}

.footer-col__title {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 20px;
  font-family: var(--font-body);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul a:hover { color: #fff; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}
.footer-contact-item a { color: rgba(255,255,255,0.6); }
.footer-contact-item a:hover { color: #fff; }
.footer-contact-icon { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
}

.footer-copyright { font-size: 0.82rem; }

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: all var(--transition);
  text-decoration: none;
}
.social-link:hover {
  background: var(--lo-primary);
  border-color: var(--lo-primary);
  color: #fff;
}

/* ============================================
   ANIMAÇÕES DE ENTRADA
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}
.fade-in.visible { opacity: 1; }

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ============================================
   BOTÃO FLUTUANTE WHATSAPP
   ============================================ */
.whats-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.whats-fab__btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  flex-shrink: 0;
}

.whats-fab__btn svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

.whats-fab:hover .whats-fab__btn {
  transform: scale(1.08);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
}

/* Anel pulsante */
.whats-fab__btn::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: whats-pulse 2.2s ease-out infinite;
}

@keyframes whats-pulse {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Tooltip de texto */
.whats-fab__label {
  background: #fff;
  color: #1a1a1a;
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.whats-fab:hover .whats-fab__label {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 640px) {
  .whats-fab { bottom: 20px; right: 20px; }
  .whats-fab__btn { width: 52px; height: 52px; }
  .whats-fab__label { display: none; }
}

/* ============================================
   FERRAMENTAS — Hub de cards
   ============================================ */
.tools-section { 
  /*padding: var(--section-pad-y) 0; */
  }

.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.tool-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--lo-border);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.tool-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74,124,111,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.tool-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px var(--lo-shadow-md);
  border-color: rgba(74,124,111,0.25);
}
.tool-card:hover::before { opacity: 1; }

.tool-card__badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tool-card__badge {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 50px;
  font-family: var(--font-body);
}
.tool-card__badge--free {
  background: rgba(74,124,111,0.1);
  color: var(--lo-primary);
}
.tool-card__badge--clinical {
  background: rgba(196,149,106,0.12);
  color: var(--lo-accent);
}

.tool-card__icon {
  font-size: 2.8rem;
  line-height: 1;
}
.tool-card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--lo-heading);
  line-height: 1.3;
}
.tool-card__desc {
  font-size: 0.93rem;
  color: var(--lo-text);
  line-height: 1.7;
  flex: 1;
}
.tool-card__meta {
  font-size: 0.8rem;
  color: var(--lo-text);
  display: flex;
  align-items: center;
  gap: 12px;
}
.tool-card__meta span { display: flex; align-items: center; gap: 4px; }
.tool-card__btn {
  margin-top: 8px;
  align-self: flex-start;
}

/* ============================================
   QUIZ ENGINE — Modal overlay
   ============================================ */
.quiz-overlay {
  position: fixed;
  inset: 0;
  background: rgba(25, 13, 57, 0.55);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.quiz-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.quiz-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  box-shadow: 0 32px 80px rgba(25,13,57,0.25);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.3s ease;
  position: relative;
}
.quiz-overlay.open .quiz-modal {
  transform: translateY(0) scale(1);
}

/* Barra de progresso */
.quiz-progress {
  height: 4px;
  background: var(--lo-border);
  border-radius: 4px 4px 0 0;
  overflow: hidden;
  flex-shrink: 0;
}
.quiz-progress__fill {
  height: 100%;
  background: var(--lo-primary);
  border-radius: 4px;
  transition: width 0.4s ease;
  width: 0%;
}

/* Cabeçalho do modal */
.quiz-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px 0;
  flex-shrink: 0;
}
.quiz-header__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--lo-primary);
  font-family: var(--font-body);
}
.quiz-header__counter {
  font-size: 0.8rem;
  color: var(--lo-text);
  font-family: var(--font-body);
}
.quiz-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--lo-border);
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--lo-text);
  transition: all var(--transition);
  z-index: 2;
}
.quiz-close:hover {
  background: var(--lo-bg-alt);
  color: var(--lo-heading);
}

/* Conteúdo do passo */
.quiz-body {
  padding: 24px 36px 36px;
  flex: 1;
}

.quiz-step { display: none; }
.quiz-step.active { display: block; }

/* Intro */
.quiz-intro__icon { font-size: 3rem; margin-bottom: 16px; }
.quiz-intro__title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--lo-heading);
  margin-bottom: 12px;
  line-height: 1.3;
}
.quiz-intro__desc {
  font-size: 0.95rem;
  color: var(--lo-text);
  line-height: 1.75;
  margin-bottom: 12px;
}
.quiz-intro__list {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.quiz-intro__list li {
  font-size: 0.9rem;
  color: var(--lo-text);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.quiz-intro__list li::before {
  content: '✓';
  color: var(--lo-primary);
  font-weight: 600;
  flex-shrink: 0;
}

.quiz-intro__disclaimer {
  margin-top: 16px;
  font-size: 0.74rem;
  color: var(--lo-text);
  opacity: 0.72;
  line-height: 1.55;
  text-align: center;
  padding: 0 4px;
}

/* Pergunta */
.quiz-question {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--lo-heading);
  line-height: 1.4;
  margin-bottom: 8px;
}
.quiz-question-sub {
  font-size: 0.85rem;
  color: var(--lo-text);
  margin-bottom: 24px;
}
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.quiz-option {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--lo-border);
  border-radius: var(--radius-md);
  background: #fff;
  text-align: left;
  font-size: 0.93rem;
  color: var(--lo-heading);
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
  line-height: 1.4;
}
.quiz-option:hover {
  border-color: var(--lo-primary);
  background: rgba(74,124,111,0.04);
  color: var(--lo-primary);
}
.quiz-option.selected {
  border-color: var(--lo-primary);
  background: rgba(74,124,111,0.08);
  color: var(--lo-primary);
  font-weight: 500;
}

/* Checklist (checkbox) */
.quiz-checklist {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  max-height: 340px;
  overflow-y: auto;
  padding-right: 4px;
}
.quiz-check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border: 1.5px solid var(--lo-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
}
.quiz-check-item:hover {
  border-color: rgba(74,124,111,0.3);
  background: rgba(74,124,111,0.02);
}
.quiz-check-item input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--lo-primary);
  flex-shrink: 0;
  margin-top: 1px;
  cursor: pointer;
}
.quiz-check-item__text {
  font-size: 0.9rem;
  color: var(--lo-text);
  line-height: 1.5;
}

/* Nav de perguntas */
.quiz-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  gap: 12px;
}
.quiz-back {
  background: none;
  border: none;
  font-size: 0.85rem;
  color: var(--lo-text);
  cursor: pointer;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  transition: color var(--transition);
}
.quiz-back:hover { color: var(--lo-primary); }

/* Gate */
.quiz-gate__icon { font-size: 2.5rem; margin-bottom: 16px; }
.quiz-gate__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--lo-heading);
  margin-bottom: 8px;
}
.quiz-gate__desc {
  font-size: 0.9rem;
  color: var(--lo-text);
  margin-bottom: 24px;
  line-height: 1.65;
}
.quiz-gate__form { display: flex; flex-direction: column; gap: 12px; }
.quiz-gate__input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--lo-border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--lo-heading);
  background: var(--lo-bg-alt);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.quiz-gate__input:focus {
  border-color: var(--lo-primary);
  box-shadow: 0 0 0 3px rgba(74,124,111,0.1);
  background: #fff;
}
.quiz-gate__input::placeholder { color: var(--lo-border); }
.quiz-gate__privacy {
  font-size: 0.78rem;
  color: var(--lo-text);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Resultado */
.quiz-result__header { margin-bottom: 24px; }
.result-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 16px;
  font-family: var(--font-body);
}
.result-badge--low    { background: rgba(74,124,111,0.12);  color: #2d6b5e; }
.result-badge--mid    { background: rgba(196,149,106,0.15); color: #a07040; }
.result-badge--high   { background: rgba(192,57,43,0.1);   color: #c0392b; }

.result-score-wrap { margin-bottom: 24px; }
.result-score-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--lo-text);
  margin-bottom: 8px;
  font-family: var(--font-body);
}
.result-bar-wrap {
  height: 12px;
  background: var(--lo-border);
  border-radius: 6px;
  overflow: hidden;
}
.result-bar-fill {
  height: 100%;
  border-radius: 6px;
  width: 0%;
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.result-bar-fill--low  { background: var(--lo-primary); }
.result-bar-fill--mid  { background: var(--lo-accent); }
.result-bar-fill--high { background: #c0392b; }

/* ---- Gauge circular 270° (GAD-7) ---- */
.result-gauge-wrap {
  position: relative;
  width: 180px;
  margin: 0 auto 16px;
}
.result-gauge {
  width: 100%;
  /* Rotaciona para que o arco comece às 7h30 (abertura embaixo):
     círculo SVG começa às 3h (0°) → rotacionar -225° coloca início às 7h30 */
  transform: rotate(-225deg);
  transform-origin: center;
}
/* Trilha cinza: exibe 270° do círculo */
.gauge-track {
  fill: none;
  stroke: #e8e5e0;
  stroke-width: 16;
  stroke-linecap: round;
  /* perímetro=502.65, 270°=376.99, 90°=125.66 (gap aberto embaixo) */
  stroke-dasharray: 376.99 125.66;
}
/* Arco colorido: começa em 0 e anima até o valor */
.gauge-fill {
  fill: none;
  stroke-width: 16;
  stroke-linecap: round;
  stroke-dasharray: 0 502.65;
  transition: stroke-dasharray 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.gauge-fill--low  { stroke: var(--lo-primary); }
.gauge-fill--mid  { stroke: var(--lo-accent); }
.gauge-fill--high { stroke: #c0392b; }

/* Texto centralizado — sobe um pouco acima do centro geométrico */
.gauge-center {
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 110px;          /* força quebra de linha no label */
}
.gauge-number-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  line-height: 1;
}
.gauge-score {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--lo-secondary);
  font-family: var(--font-display);
  line-height: 1;
}
.gauge-max {
  font-size: 1rem;
  color: var(--lo-text);
  line-height: 1;
}
.gauge-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--lo-text);
  margin-top: 6px;
  line-height: 1.35;
  white-space: normal;   /* permite quebra de linha */
}
.gauge-profile-icon {
  display: block;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 4px;
}

/* ---- Botão compartilhar ---- */
.quiz-share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 12px auto 24px;
  background: none;
  border: 1.5px solid var(--lo-border);
  border-radius: 50px;
  padding: 9px 20px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--lo-text);
  font-family: var(--font-body);
  transition: border-color 0.2s, color 0.2s;
  width: auto;
}
.quiz-share-btn:hover {
  border-color: var(--lo-primary);
  color: var(--lo-primary);
}

.result-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--lo-heading);
  margin-bottom: 12px;
}
.result-text {
  font-size: 0.93rem;
  color: var(--lo-text);
  line-height: 1.75;
  margin-bottom: 20px;
}
.result-specialties {
  margin-bottom: 28px;
}
.result-specialties__label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--lo-primary);
  margin-bottom: 10px;
  font-family: var(--font-body);
}
.result-specialties__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.result-specialties__tag {
  padding: 6px 14px;
  border: 1px solid rgba(74,124,111,0.25);
  border-radius: 50px;
  font-size: 0.82rem;
  color: var(--lo-primary);
  text-decoration: none;
  transition: all var(--transition);
  background: rgba(74,124,111,0.04);
}
.result-specialties__tag:hover {
  background: var(--lo-primary);
  color: #fff;
  border-color: var(--lo-primary);
}
.result-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.quiz-retry {
  background: none;
  border: none;
  font-size: 0.85rem;
  color: var(--lo-text);
  cursor: pointer;
  text-decoration: underline;
  font-family: var(--font-body);
  transition: color var(--transition);
}
.quiz-retry:hover { color: var(--lo-primary); }

/* Disclaimer clínico */
.quiz-disclaimer {
  margin-top: 20px;
  padding: 14px 16px;
  background: rgba(196,149,106,0.08);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--lo-accent);
  font-size: 0.78rem;
  color: var(--lo-text);
  line-height: 1.55;
}

/* Responsivo quiz */
@media (max-width: 768px) {
  .tools-grid { grid-template-columns: 1fr; }
  .quiz-modal { max-height: 100vh; border-radius: var(--radius-md) var(--radius-md) 0 0; }
  .quiz-overlay { align-items: flex-end; padding: 0; }
  .quiz-body { padding: 20px 24px 32px; }
}

/* ============================================
   RESPONSIVO
   ============================================ */

/* Tablet (≤ 1024px) */
@media (max-width: 1024px) {
  :root {
    --section-pad-y: 70px;
    --container-pad: 28px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 40px 0;
  }

  .hero__image { order: -1; }
  .hero__image-frame img { height: 380px; }
  .hero__image-badge { left: 0; min-width: unset; }

  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-image__frame img { height: 400px; }

  .how-steps { grid-template-columns: 1fr; }
  .how-steps::before { display: none; }

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

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

  .faq-inner { grid-template-columns: 1fr; }
  .faq-side { display: none; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }

  .specialties__header { flex-direction: column; align-items: flex-start; }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
  :root {
    --section-pad-y: 56px;
    --container-pad: 20px;
  }

  /* Base — prevent all horizontal overflow */
  html, body { overflow-x: hidden; }
  .container { width: 100%; box-sizing: border-box; }

  /* Font size menor em mobile */
  body { font-size: 16px; }

  /* Header mobile */
  .main-nav { display: none; }
  .header-actions .btn { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { overflow: hidden; }
  .hero__bg-svg { display: none; }
  .hero__line-1, .hero__line-2 { display: none; }
  .hero-inner { padding: 32px 0; }
  .hero__content { max-width: 100%; width: 100%; }
  .hero__subtitle { max-width: 100%; font-size: 1rem; }
  .hero__free-note { font-size: 0.85rem; margin-bottom: 20px; }
  .hero__actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero__actions .btn { width: 100%; justify-content: center; text-align: center; }
  .btn-lg { padding: 16px 24px; font-size: 1rem; }
  .hero__tags { gap: 8px; }
  .hero__image-badge { display: none; }

  /* About section */
  .about-section { overflow: hidden; }
  .about-section__decor { display: none; }
  .about-image__accent { display: none; }

  /* Swiper — evitar overflow lateral */
  .swiper { overflow: hidden !important; }
  .testimonials-swiper { overflow: hidden !important; }
  .specialties-swiper { overflow: hidden !important; }

  /* Testimonial card */
  .testimonial-card { padding: 24px 20px; }
  .testimonial-text { font-size: 0.9rem; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; }

  /* How it works */
  .how-step { padding: 28px 20px; }

  /* FAQ */
  .faq-question { font-size: 0.95rem; padding-right: 8px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .footer-legal-links { display: block; margin-top: 4px; }
  .footer-social { justify-content: center; }
  .footer-bottom { font-size: 0.8rem; }

  /* Testemunhos header */
  .testimonials__header { flex-direction: column; align-items: flex-start; }

  /* CTA final */
  .cta-final { overflow: hidden; }
  .cta-final__links { flex-direction: column; gap: 12px; }
  .cta-final__inner { max-width: 100%; }

  /* Specialties */
  .specialties__header { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* Section titles */
  .section-title { word-break: break-word; }
  .section-subtitle { max-width: 100% !important; }
}

/* Small mobile (≤ 480px) */
@media (max-width: 480px) {
  :root { --container-pad: 16px; }

  .hero__image-frame img { height: 260px; }
  .about-image__frame img { height: 280px; }

  .newsletter-form { flex-direction: column; }
  .newsletter-input { border-radius: var(--radius-sm); }
  .newsletter-btn { border-radius: var(--radius-sm); width: 100%; }

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

/* ============================================
   COOKIE BANNER & MODAL
   ============================================ */

/* Banner discreto na base */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: rgba(25, 13, 57, 0.96);
  backdrop-filter: blur(8px);
  padding: 10px 0;
  animation: cookieSlideUp 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes cookieSlideUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner__text {
  flex: 1;
  min-width: 200px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
  margin: 0;
}
.cookie-details-link {
  background: none;
  border: none;
  padding: 0;
  font-size: 0.78rem;
  font-family: var(--font-body);
  color: rgba(255,255,255,0.5);
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.2s;
}
.cookie-details-link:hover { color: #fff; }
.cookie-banner__actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

/* Botões do banner */
.cookie-btn {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 50px;
  padding: 7px 16px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
  line-height: 1;
}
.cookie-btn--primary {
  background: var(--lo-primary);
  color: #fff;
  border-color: var(--lo-primary);
}
.cookie-btn--primary:hover {
  background: #3d6b5e;
  border-color: #3d6b5e;
}
.cookie-btn--outline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border-color: rgba(255,255,255,0.2);
}
.cookie-btn--outline:hover {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

/* Modal overlay */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(25,13,57,0.45);
  z-index: 9100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(2px);
}
/* Garante que [hidden] funciona mesmo com display:flex acima */
.cookie-modal-overlay[hidden],
.cookie-banner[hidden] { display: none !important; }
.cookie-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 520px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.cookie-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.1rem;
  color: var(--lo-text);
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.cookie-modal__close:hover { background: var(--lo-bg-alt); }
.cookie-modal__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--lo-heading);
  margin-bottom: 8px;
}
.cookie-modal__desc {
  font-size: 0.87rem;
  color: var(--lo-text);
  line-height: 1.6;
  margin-bottom: 28px;
}

/* Itens de toggle */
.cookie-toggle-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--lo-border);
}
.cookie-toggle-item__info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cookie-toggle-item__info strong {
  font-size: 0.9rem;
  color: var(--lo-heading);
  font-weight: 600;
}
.cookie-toggle-item__info span {
  font-size: 0.78rem;
  color: var(--lo-text);
  line-height: 1.4;
}

/* Toggle switch */
.cookie-toggle {
  width: 44px;
  height: 24px;
  border-radius: 50px;
  background: #d0cdd6;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
  outline: none;
}
.cookie-toggle:focus-visible {
  box-shadow: 0 0 0 3px rgba(74,124,111,0.3);
}
.cookie-toggle--on {
  background: var(--lo-primary);
}
.cookie-toggle--locked {
  background: var(--lo-primary);
  opacity: 0.6;
  cursor: not-allowed;
}
.cookie-toggle__knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.cookie-toggle--on .cookie-toggle__knob,
.cookie-toggle--locked .cookie-toggle__knob {
  transform: translateX(20px);
}

/* Rodapé do modal */
.cookie-modal__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--lo-border);
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-policy-link {
  font-size: 0.8rem;
  color: var(--lo-text);
  text-decoration: underline;
}
.cookie-policy-link:hover { color: var(--lo-primary); }

/* Links legais no footer */
.footer-legal-links {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-legal-links a,
.footer-legal-links .cookie-prefs-btn {
  color: rgba(255,255,255,0.55);
  background: none;
  border: none;
  font-size: 0.8rem;
  font-family: var(--font-body);
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  transition: color 0.2s;
}
.footer-legal-links a:hover,
.footer-legal-links .cookie-prefs-btn:hover {
  color: #fff;
}

/* Responsivo banner */
@media (max-width: 640px) {
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .cookie-banner__actions { width: 100%; justify-content: flex-end; }
  .cookie-modal { padding: 28px 20px; }
}

/* ============================================
   ARTIGO DETALHE (artigo.html)
   ============================================ */

/* --- Loading skeleton --- */
.artigo-loading { padding: 160px 0 80px; }
.artigo-skeleton {
  background: linear-gradient(90deg, var(--lo-bg-alt) 25%, var(--lo-border) 50%, var(--lo-bg-alt) 75%);
  background-size: 200% 100%;
  animation: artigo-shimmer 1.4s infinite;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
}
.artigo-skeleton--hero  { height: 320px; border-radius: var(--radius-md); }
.artigo-skeleton--title { height: 48px; max-width: 640px; }
.artigo-skeleton--body  { height: 200px; }
@keyframes artigo-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* --- Cabeçalho do artigo (full-width, acima do grid) --- */
.artigo-header {
  padding: 120px 0 40px;
  background: linear-gradient(160deg, var(--lo-cream-light) 0%, #fff 65%);
}
.artigo-breadcrumb {
  font-size: 0.82rem;
  color: var(--lo-text);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.artigo-breadcrumb a { color: var(--lo-primary); text-decoration: none; }
.artigo-breadcrumb a:hover { text-decoration: underline; }
.artigo-breadcrumb span[aria-hidden] { color: var(--lo-border); }
.artigo-header__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.artigo-header__date {
  font-size: 0.85rem;
  color: var(--lo-text);
}
.artigo-header__title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.15;
  color: var(--lo-heading);
  margin-bottom: 20px;
  max-width: 820px;
}
.artigo-header__subtitle {
  font-size: 1.12rem;
  color: var(--lo-text);
  line-height: 1.75;
  max-width: 680px;
  margin: 0;
}

/* --- Layout 2 colunas --- */
.artigo-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  padding: 48px 0 80px;
  align-items: start;
}
@media (max-width: 960px) {
  .artigo-layout {
    grid-template-columns: 1fr;
  }
  .artigo-sidebar { display: none; }
}

/* --- Tipografia do artigo --- */
.artigo-body {
  font-size: 1.08rem;
  line-height: 1.9;
  color: var(--lo-text);
  max-width: 720px;
}
.artigo-body h2 {
  color: var(--lo-heading);
  margin: 2.8em 0 1em;
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  line-height: 1.25;
}
.artigo-body h3 {
  color: var(--lo-heading);
  margin: 2.2em 0 0.8em;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.3;
}
.artigo-body p { margin-bottom: 1.6em; }
.artigo-body ul,
.artigo-body ol { margin: 0 0 1.4em 1.6em; }
.artigo-body li { margin-bottom: 0.5em; }
.artigo-body blockquote {
  border-left: 4px solid var(--lo-primary);
  padding: 12px 24px;
  margin: 2em 0;
  background: var(--lo-cream-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--lo-heading);
}
.artigo-body img {
  max-width: 100%;
  border-radius: var(--radius-sm);
  margin: 1.5em 0;
}
.artigo-body figcaption {
  font-size: 0.82rem;
  color: var(--lo-text);
  text-align: center;
  margin-top: -0.8em;
  margin-bottom: 1.4em;
}
.artigo-body a {
  color: var(--lo-primary);
  text-decoration: underline;
}
.artigo-body a:hover { color: var(--lo-primary-dark); }
.artigo-body hr {
  border: none;
  border-top: 2px solid var(--lo-border);
  margin: 2.5em 0;
}
/* Oculta elementos do Substack que possam vazar */
.artigo-body .paywall,
.artigo-body .subscribe-widget,
.artigo-body .subscription-widget { display: none !important; }

/* --- CTA inline (inserido por JS após §3) --- */
.artigo-cta-inline { margin: 2.5em 0; }
.artigo-cta-inline__inner {
  background: var(--lo-cream-light);
  border: 1px solid var(--lo-cream);
  border-left: 4px solid var(--lo-primary);
  border-radius: var(--radius-md);
  padding: 28px 32px;
}
.artigo-cta-inline__label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--lo-primary);
  margin-bottom: 8px;
}
.artigo-cta-inline__title {
  font-size: 1.25rem;
  color: var(--lo-heading);
  margin-bottom: 8px;
}
.artigo-cta-inline__text {
  font-size: 0.95rem;
  color: var(--lo-text);
  margin-bottom: 20px;
}
.artigo-cta-inline__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* --- CTA final --- */
.artigo-cta-end {
  margin-top: 3em;
  padding-top: 2em;
  border-top: 2px solid var(--lo-border);
}
.artigo-cta-end__inner {
  background: var(--lo-secondary);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  margin-bottom: 28px;
}
.artigo-cta-end__title {
  color: #fff;
  margin-bottom: 16px;
  font-size: clamp(1.4rem, 3vw, 2rem);
}
.artigo-cta-end__inner p {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  margin-bottom: 28px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}
.artigo-cta-end__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.artigo-cta-end__inner .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.artigo-cta-end__inner .btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}
.artigo-cta-end__back { text-align: center; }

/* --- Sidebar --- */
.artigo-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.artigo-sidebar__card {
  background: #fff;
  border: 1px solid var(--lo-border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: 0 2px 12px var(--lo-shadow);
}
.artigo-sidebar__card--cta { border-top: 4px solid var(--lo-primary); }
.artigo-sidebar__label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--lo-primary);
  margin-bottom: 8px;
  display: block;
}
.artigo-sidebar__title {
  font-size: 1.1rem;
  color: var(--lo-heading);
  margin-bottom: 8px;
}
.artigo-sidebar__text {
  font-size: 0.88rem;
  color: var(--lo-text);
  line-height: 1.6;
  margin-bottom: 16px;
}
.artigo-sidebar__card .btn { display: block; text-align: center; margin-top: 10px; }

/* --- Sticky bottom bar --- */
.artigo-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--lo-secondary);
  transform: translateY(100%);
  transition: transform 0.35s ease;
  box-shadow: 0 -4px 24px rgba(25, 13, 57, 0.28);
}
.artigo-sticky-bar.visible { transform: translateY(0); }
.artigo-sticky-bar__inner {
  max-width: var(--container-max, 1200px);
  margin: 0 auto;
  padding: 12px var(--container-pad, 24px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.artigo-sticky-bar__text {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  margin: 0;
}
.artigo-sticky-bar__actions { display: flex; gap: 10px; flex-shrink: 0; }
.artigo-sticky-bar .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.artigo-sticky-bar .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

/* Sobe FAB do WhatsApp para não sobrepor sticky bar */
body.artigo-sticky-visible .whats-fab { bottom: 80px; }

/* --- Estado de erro --- */
.artigo-error {
  padding: 160px 0 80px;
  text-align: center;
}
.artigo-error h2 { margin-bottom: 16px; }
.artigo-error p  { color: var(--lo-text); margin-bottom: 28px; }

/* --- Responsivo mobile --- */
@media (max-width: 640px) {
  .artigo-header { padding: 90px 0 28px; }
  .artigo-cta-end__inner { padding: 32px 20px; }
  .artigo-cta-inline__inner { padding: 20px; }
  .artigo-sticky-bar__text { display: none; }
  .artigo-sticky-bar__actions { width: 100%; justify-content: center; }
}
