
/* Variáveis do Sistema de Design */
:root {
  /* Cores */
  --bg-primary: #f2f2f2;
  /* Cinza claro para a moldura externa */
  --bg-secondary: #ffffff;
  /* Fundo dos cartões de seção */
  --bg-card: #f2f6f3;
  /* Cartões internos em tom herbal suave harmonizado */
  --color-heading: rgb(39, 61, 42);
  /* Verde botânico profundo para títulos */
  --color-text-main: #1a1a1a;
  --color-text-muted: #5d5d5d;
  --color-accent: rgb(39, 61, 42);
  --color-accent-hover: #1b2d1d;
  --border-color: #e0e7e1;

  /* Fontes */
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  /* Escala de Espaçamento das Seções (Padronizado e Otimizado) */
  --section-padding-top-mobile: 48px;
  --section-padding-bottom-mobile: 64px;
  --section-padding-top-desktop: 64px;
  --section-padding-bottom-desktop: 80px;
  --section-padding-y-mobile: 48px;
  --section-padding-y-desktop: 64px;
  --section-gap-mobile: 12px;
  --section-gap-desktop: 16px;
  --section-header-mb: 40px;

  /* Escala Tipográfica Padronizada */
  --font-size-h1: clamp(38px, 6vw, 68px);
  --font-size-h2: clamp(30px, 4.2vw, 46px);
  --font-size-h3: clamp(22px, 2.6vw, 28px);
  --font-size-h4: clamp(17px, 2vw, 20px);
  --font-size-lead: clamp(15.5px, 1.8vw, 17.5px);
  --font-size-body: 15px;
  --font-size-small: 13.5px;
  --font-size-tag: 11px;

  /* Grid e Layout */
  --max-width: 1100px;
  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --border-radius-pill: 999px;
  --border-radius-card: 24px;
  /* Cantos arredondados premium de Nura AI */
  --border-radius-inner: 16px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text-main);
  line-height: 1.6;
  padding: 0;
  overflow-x: hidden;
  max-width: 100%;
  /* Padding zerado para que o Hero preencha as bordas antes do scroll */
}

/* Tipografia Base Padronizada */
h1 {
  font-family: var(--font-serif);
  font-size: var(--font-size-h1);
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-heading);
}

h2,
.section-title {
  font-family: var(--font-serif);
  font-size: var(--font-size-h2);
  font-style: italic;
  font-weight: 400;
  line-height: 1.18;
  color: var(--color-heading);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

h3 {
  font-family: var(--font-serif);
  font-size: var(--font-size-h3);
  font-weight: 400;
  line-height: 1.25;
  color: var(--color-heading);
}

h4 {
  font-size: var(--font-size-h4);
  font-weight: 600;
  line-height: 1.35;
  color: var(--color-heading);
}

.section-header {
  text-align: center;
  margin-bottom: var(--section-header-mb);
}

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

p {
  color: var(--color-text-muted);
  font-size: var(--font-size-body);
  line-height: 1.68;
}

/* Badges e Tags Padronizadas */
.testimonial-therapy-tag,
.step-title {
  font-size: var(--font-size-tag);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--color-heading);
  background-color: rgba(39, 61, 42, 0.08);
  padding: 4px 12px;
  border-radius: var(--border-radius-pill);
}

/* Ícone de Símbolo Louise Trigo com animação elástica de crescimento */
.brand-symbol {
  display: block;
  width: 34px;
  height: auto;
  margin: 0 auto 12px auto;
  object-fit: contain;
  flex-shrink: 0;
  pointer-events: none;
  user-select: none;
  opacity: 0;
  transform: scale(0.15);
  transform-origin: center center;
  transition: opacity 0.75s cubic-bezier(0.34, 1.56, 0.64, 1),
    transform 0.75s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform, opacity;
}

.brand-symbol.visible {
  opacity: 1;
  transform: scale(1);
}

/* Ao rolar o scroll para cima, desativa transições para manter o ícone 100% estático e sem efeito */
html.is-scrolling-up .brand-symbol {
  transition: none !important;
}

/* Links & Elementos Interativos */
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  transition: var(--transition-smooth);
}

/* Container de Layout */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
}

/* Componente de Botão */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--border-radius-pill);
  transition: var(--transition-smooth);
  gap: 8px;
  max-width: 100%;
  box-sizing: border-box;
}

@media (max-width: 480px) {
  .btn {
    padding: 12px 20px;
    font-size: 14px;
  }
}

.btn-hero {
  background-color: #ffffff;
  color: var(--color-text-main);
}

.btn-hero:hover {
  background-color: #f2f2f2;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.btn-secondary {
  border: 1px solid var(--border-color);
  background-color: #ffffff;
  color: var(--color-text-main);
}

.btn-secondary:hover {
  border-color: var(--color-text-main);
  transform: translateY(-2px);
}


/* Estrutura de Seções em Cards (Nura AI Style) */
section:not(.hero-section),
.site-footer {
  margin: 0 12px var(--section-gap-mobile) 12px;
  /* Margem lateral mobile */
  background-color: var(--bg-secondary);
  padding: var(--section-padding-top-mobile) 0 var(--section-padding-bottom-mobile) 0;
  border-radius: var(--border-radius-card);
  overflow: hidden;
  position: relative;
}

@media (min-width: 768px) {

  section:not(.hero-section),
  .site-footer {
    margin: 0 24px var(--section-gap-desktop) 24px;
    /* Margem lateral maior desktop */
    padding: var(--section-padding-top-desktop) 0 var(--section-padding-bottom-desktop) 0;
  }
}



/* Hero Section (Card com Vídeo de Fundo Completo e Moldura Dinâmica 60fps) */
.hero-section {
  position: relative;

  /* Variável de progresso dinâmico controlada por JS/Lenis (0 = full bleed, 1 = moldura completa) */
  --scroll-progress: 0;

  /* Cálculos padrão de moldura */
  --hero-margin: calc(var(--scroll-progress) * 20px);
  --hero-radius: calc(var(--scroll-progress) * var(--border-radius-card));
  --hero-height-reduction: calc(var(--scroll-progress) * 40px);

  margin: var(--hero-margin) var(--hero-margin) 16px var(--hero-margin);
  border-radius: var(--hero-radius);
  height: calc(100vh - var(--hero-height-reduction));
  border: 1px solid rgba(235, 235, 235, calc(var(--scroll-progress) * 0.8));

  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #ffffff;
  padding: 0 !important;
  background-color: #111111;
  overflow: hidden;
  isolation: isolate;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  will-change: border-radius, margin, height;

  /* Sem transição CSS aqui: o Lenis e o rAF já realizam a interpolação aveludada a 60-120fps sem atrito */
  transition: none !important;
}

@media (max-width: 767px) {
  .hero-section {
    --hero-margin: calc(var(--scroll-progress) * 10px);
    --hero-radius: calc(var(--scroll-progress) * 20px);
    --hero-height-reduction: calc(var(--scroll-progress) * 20px);

    height: calc(100svh - var(--hero-height-reduction));
    min-height: 520px;
    margin: var(--hero-margin) var(--hero-margin) 14px var(--hero-margin);
    border-radius: var(--hero-radius);
    border: 1px solid rgba(235, 235, 235, calc(var(--scroll-progress) * 0.8));
    transition: none !important;
  }
}

@media (min-width: 768px) {
  .hero-section {
    --hero-margin: calc(var(--scroll-progress) * 20px);
    --hero-radius: calc(var(--scroll-progress) * var(--border-radius-card));
    --hero-height-reduction: calc(var(--scroll-progress) * 40px);
    height: calc(100vh - var(--hero-height-reduction));
    min-height: 560px;
  }
}

.hero-background-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
  /* Efeito Zoom Out Inicial */
  transform: scale(1.15);
  animation: heroZoomOut 2.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes heroZoomOut {
  to {
    transform: scale(1);
  }
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.hero-video-poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 2;
  opacity: 1;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

@media (max-width: 767px) {
  .hero-video-bg {
    object-position: 72% center;
  }

  .hero-video-poster {
    background-position: 72% center;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.55) 30%, rgba(0, 0, 0, 0.35) 100%);
  z-index: 3;
  pointer-events: none;
}

/* Container com Centralização Vertical do Texto */
.hero-container {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  height: 100%;
  box-sizing: border-box;
}

.hero-content {
  max-width: 650px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-brand-picture {
  display: block;
  width: 100%;
  max-width: 210px;
  margin: 0;
  padding-bottom: 24px;
}

@media (min-width: 768px) {
  .hero-brand-picture {
    max-width: 320px;
    padding-bottom: 40px;
  }
}

.hero-brand-logo {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.45));
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: var(--font-size-h1);
  letter-spacing: -1.2px;
  margin-bottom: 16px;
  color: #ffffff;
  font-weight: 400;
  line-height: 1.08;
}

@media (min-width: 768px) {
  .hero-headline {
    margin-bottom: 18px;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: clamp(28px, 8.2vw, 36px);
    letter-spacing: -0.6px;
    word-break: break-word;
  }
}

.hero-headline span {
  font-style: italic;
}

.hero-subheadline {
  font-size: var(--font-size-lead);
  font-weight: 400;
  max-width: 500px;
  margin: 0 0 28px 0;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
  .hero-subheadline {
    margin: 0 0 32px 0;
  }
}

@media (max-width: 480px) {
  .hero-subheadline {
    font-size: 14.5px;
    margin-bottom: 24px;
  }
}

/* Seção 2 — Como Funciona (Fluxo nativo vertical no mobile, Stacking Cards Pin no desktop) */
.how-it-works-section {
  position: relative;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: var(--section-padding-top-mobile) 0 var(--section-padding-bottom-mobile) 0 !important;
  background-color: var(--bg-secondary);
  overflow: visible;
}

.how-it-works-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: auto;
  box-sizing: border-box;
}

.how-it-works-section .section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 32px auto;
  flex-shrink: 0;
  position: relative;
  z-index: 10;
}

.how-it-works-section .brand-symbol {
  display: block;
  width: 34px;
  height: auto;
  margin: 0 auto 14px auto;
  object-fit: contain;
  flex-shrink: 0;
  pointer-events: none;
  user-select: none;
  opacity: 1;
  transform: none;
}

.how-it-works-section .section-title {
  font-family: var(--font-serif);
  font-size: var(--font-size-h2);
  font-style: italic;
  font-weight: 400;
  line-height: 1.18;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
  color: var(--color-heading);
  opacity: 1;
  transform: none;
}

.how-it-works-section .section-subtitle {
  font-size: var(--font-size-lead);
  color: var(--color-text-muted);
  line-height: 1.55;
  opacity: 1;
  transform: none;
}

.therapy-cards-stack {
  position: relative;
  width: 100%;
  max-width: 710px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: stretch;
  justify-items: center;
  margin: 0 auto;
  perspective: none;
}

.therapy-card {
  width: 100%;
  background-color: #f1f6f2;
  border: 1px solid rgba(39, 61, 42, 0.12);
  border-radius: var(--border-radius-card);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 8px 24px -4px rgba(39, 61, 42, 0.08), 0 2px 6px rgba(0, 0, 0, 0.03);
  align-self: stretch;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .how-it-works-section {
    min-height: 100vh;
    min-height: 100svh;
    padding: 0 !important;
    overflow: hidden;
  }

  .how-it-works-container {
    padding: 40px 24px 28px;
    min-height: 100vh;
    min-height: 100svh;
  }

  .how-it-works-section .section-header {
    margin: 0 auto clamp(68px, 9.5vh, 115px);
    will-change: transform;
  }

  .how-it-works-section .brand-symbol {
    opacity: 0;
    transform: scale(0.15);
    transform-origin: center center;
    transition: opacity 0.75s cubic-bezier(0.34, 1.56, 0.64, 1),
      transform 0.75s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform, opacity;
  }

  .how-it-works-section .brand-symbol.visible {
    opacity: 1;
    transform: scale(1);
  }

  .how-it-works-section .section-title {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .how-it-works-section .section-title.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .how-it-works-section .section-subtitle {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .how-it-works-section .section-subtitle.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .therapy-cards-stack {
    display: grid;
    grid-template-columns: 1fr;
    perspective: 1000px;
    gap: 0;
  }

  .therapy-card {
    grid-area: 1 / 1;
    padding: clamp(16px, 2vh, 24px) clamp(16px, 3vw, 30px);
    box-shadow: 0 16px 36px -8px rgba(39, 61, 42, 0.08), 0 2px 6px rgba(0, 0, 0, 0.03);
    will-change: transform, opacity;
    transform-origin: 50% 0%;
  }
}

.therapy-card-top {
  margin-bottom: clamp(8px, 1.2vh, 12px);
}

.therapy-badge {
  display: inline-flex;
  align-items: center;
  font-size: 10.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--color-heading);
  background-color: rgba(39, 61, 42, 0.04);
  border: 1px solid rgba(39, 61, 42, 0.12);
  padding: 3px 10px;
  border-radius: var(--border-radius-pill);
  margin-bottom: clamp(6px, 1vh, 10px);
  line-height: 1.4;
}

.therapy-title {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 1.8vw, 1.55rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 3px;
  color: var(--color-heading);
}

.therapy-subtitle {
  font-style: italic;
  font-size: clamp(0.82rem, 1vw, 0.9rem);
  color: var(--color-text-muted);
  margin-bottom: clamp(6px, 1vh, 10px);
}

.therapy-desc {
  font-size: clamp(0.88rem, 1.05vw, 0.96rem);
  color: var(--color-text-muted);
  line-height: 1.55;
}

.therapy-card-footer {
  margin-top: auto;
  padding-top: clamp(10px, 1.4vh, 14px);
  border-top: 1px dashed rgba(39, 61, 42, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.therapy-card-footer .therapy-bottom {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  flex: 1;
  font-size: clamp(0.78rem, 0.95vw, 0.85rem);
  font-weight: 500;
  color: var(--color-text-muted);
  line-height: 1.45;
}

.therapy-card-footer .therapy-bottom strong {
  font-weight: 600;
  color: var(--color-heading);
}

.therapy-action-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--color-heading);
  background: rgba(39, 61, 42, 0.04);
  border: 1px solid rgba(39, 61, 42, 0.16);
  padding: 6px 14px;
  border-radius: var(--border-radius-pill);
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.25s ease;
  text-decoration: none;
}

.therapy-action-link:hover {
  background: rgba(39, 61, 42, 0.09);
  border-color: rgba(39, 61, 42, 0.35);
  color: var(--color-heading);
}

.therapy-action-link .therapy-arrow-icon {
  width: 12px;
  height: 12px;
  transition: transform 0.2s ease;
}

.therapy-action-link:hover .therapy-arrow-icon {
  transform: translateX(3px);
}

@media (max-width: 640px) {
  .therapy-card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .therapy-action-link {
    align-self: flex-start;
  }
}

/* Componente de CTA Sutil e Elegante (Alta Conversão & Não Invasivo) */
.section-cta-hint {
  font-size: var(--font-size-small);
  color: var(--color-text-muted);
  margin-bottom: 12px;
  font-style: italic;
  letter-spacing: -0.2px;
}

.btn-subtle-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 22px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--color-heading);
  background-color: rgba(39, 61, 42, 0.05);
  border: 1px solid rgba(39, 61, 42, 0.2);
  border-radius: var(--border-radius-pill);
  transition: all 0.25s ease;
  text-decoration: none;
  box-shadow: none;
}

.btn-subtle-cta:hover {
  background-color: rgba(39, 61, 42, 0.1);
  border-color: rgba(39, 61, 42, 0.4);
  color: var(--color-heading);
  transform: translateY(-1px);
}

.btn-subtle-cta .btn-arrow-icon {
  width: 13px;
  height: 13px;
  transition: transform 0.2s ease;
}

.btn-subtle-cta:hover .btn-arrow-icon {
  transform: translateX(3px);
}

.testimonials-cta-container {
  margin-top: clamp(28px, 4vh, 40px);
  margin-bottom: 6px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 5;
}

/* Prova Social Section (Depoimentos Animados) */
.social-proof-section {
  background-color: var(--bg-secondary);
  overflow: hidden;
}

.social-proof-section .section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--section-header-mb);
}

/* Marquee Infinito de Depoimentos & Carrossel Mobile */
.testimonials-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 32px 0 54px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.testimonials-marquee-track {
  display: flex;
  align-items: flex-start;
  width: max-content;
  gap: 24px;
  padding: 16px 0 32px;
  animation: marqueeContinuous 125s linear infinite;
  will-change: transform;
}

.testimonials-marquee-track:has(.testimonial-card:hover),
.testimonials-marquee-track.is-card-hovered,
.testimonials-marquee-track.is-paused {
  animation-play-state: paused !important;
}

@keyframes marqueeContinuous {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Modo Mobile: Carrossel Deslizável com Touch/Swipe Nativo e Scroll-Snap */
@media (max-width: 767px) {
  .testimonials-marquee-wrapper {
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y;
    padding: 12px 16px 24px;
    -webkit-mask-image: none;
    mask-image: none;
    scrollbar-width: none;
  }

  .testimonials-marquee-wrapper::-webkit-scrollbar {
    display: none;
  }

  .testimonials-marquee-track {
    animation: none !important;
    gap: 14px;
    padding: 8px 0 16px;
    width: max-content;
  }

  .testimonial-card {
    width: calc(100vw - 56px) !important;
    min-width: calc(100vw - 56px) !important;
    max-width: calc(100vw - 56px) !important;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  /* No mobile, oculta os cards duplicados do marquee */
  .testimonial-card.is-marquee-clone {
    display: none !important;
  }
}

/* Paginação por Bolinhas no Mobile */
.testimonials-dots-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 340px;
  gap: 6px;
  margin: 12px auto 20px auto;
  padding: 0 16px;
  user-select: none;
}

@media (min-width: 768px) {
  .testimonials-dots-pagination {
    display: none;
    /* No Desktop, o marquee contínuo automático segue ativo */
  }
}

.testimonial-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(39, 61, 42, 0.22);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-dot.active {
  width: 18px;
  border-radius: var(--border-radius-pill);
  background: var(--color-heading);
  box-shadow: 0 2px 8px rgba(39, 61, 42, 0.25);
}

.testimonial-card {
  width: 350px;
  min-width: 350px;
  max-width: 350px;
  height: 400px;
  min-height: 400px;
  box-sizing: border-box;
  background: linear-gradient(155deg, #f8faf8 0%, var(--bg-card) 100%);
  border: 1px solid rgba(39, 61, 42, 0.12);
  border-radius: var(--border-radius-card);
  padding: 26px 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 28px -8px rgba(39, 61, 42, 0.07), 0 2px 6px rgba(0, 0, 0, 0.02);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease,
    background-color 0.3s ease;
  user-select: none;
  position: relative;
  will-change: transform;
}

@media (min-width: 768px) {
  .testimonial-card {
    width: 380px;
    min-width: 380px;
    max-width: 380px;
    padding: 28px 26px 24px;
  }
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px -10px rgba(39, 61, 42, 0.18), 0 6px 16px rgba(0, 0, 0, 0.04);
  border-color: rgba(39, 61, 42, 0.35);
  background: #ffffff;
}

.testimonial-card.is-expanded {
  transform: none !important;
}

.testimonial-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  flex-shrink: 0;
}

.testimonial-stars {
  color: #c9933b;
  font-size: 13px;
  letter-spacing: 2px;
}

.testimonial-therapy-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-heading);
  background-color: rgba(39, 61, 42, 0.08);
  padding: 3px 10px;
  border-radius: var(--border-radius-pill);
}

.testimonial-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  margin: 6px 0 10px 0;
  gap: 8px;
}

.testimonial-quote {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.62;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.3s ease;
}

.testimonial-expand-btn {
  display: none;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  color: var(--color-heading);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 0 0 0;
  cursor: pointer;
  align-self: flex-start;
  transition: color 0.2s ease, transform 0.2s ease;
}

.testimonial-expand-btn.is-visible,
.testimonial-card.is-expanded .testimonial-expand-btn {
  display: inline-flex;
}

.testimonial-expand-btn svg {
  transition: transform 0.25s ease;
}

.testimonial-expand-btn:hover {
  color: var(--color-accent-hover);
}

.testimonial-expand-btn:hover svg {
  transform: translateY(2px);
}

/* Card Expandido */
.testimonial-card.is-expanded {
  height: auto;
  min-height: 400px;
  z-index: 30;
  background: #ffffff;
  border-color: var(--color-heading);
  box-shadow: 0 24px 60px -10px rgba(39, 61, 42, 0.22), 0 8px 24px rgba(0, 0, 0, 0.06);
}

/* Animação suave de revelação do texto */
@keyframes quoteReveal {
  0% {
    opacity: 0.35;
    transform: translateY(6px);
    filter: blur(1.5px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes quoteCollapse {
  0% {
    opacity: 0.5;
    transform: translateY(-4px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-card.is-expanded .testimonial-quote {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
  animation: quoteReveal 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.testimonial-card.is-collapsing .testimonial-quote {
  animation: quoteCollapse 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.testimonial-card.is-expanded .testimonial-expand-btn:hover svg {
  transform: translateY(-2px);
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px dashed rgba(39, 61, 42, 0.14);
  flex-shrink: 0;
}

.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--color-heading);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(39, 61, 42, 0.2);
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
}

.testimonial-author {
  font-weight: 600;
  font-size: 14px;
  color: var(--color-heading);
  line-height: 1.2;
}

.testimonial-meta span:not(.testimonial-author),
.testimonial-location {
  font-weight: 400;
  font-size: 11.5px;
  color: var(--color-text-muted);
  margin-top: 3px;
  line-height: 1.2;
  opacity: 0.85;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

/* Eu Sou Section (Experiência Editorial & Storytelling Imersivo) */
.about-section {
  background-color: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.about-editorial-header {
  max-width: 820px;
  margin: 0 auto var(--section-header-mb);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-editorial-header .section-title {
  text-align: center;
  margin: 0 auto;
  font-family: var(--font-serif);
  font-size: var(--font-size-h2);
  font-weight: 400;
  color: var(--color-heading);
  line-height: 1.18;
}



.media-collage-container {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  perspective: 1000px;
}

/* Moldura Principal com Formato Escultural de Arco */
.main-portrait-frame {
  position: relative;
  width: 100%;
  border-radius: 200px 200px 28px 28px;
  overflow: hidden;
  border: 2px solid rgba(39, 61, 42, 0.16);
  box-shadow: 0 28px 60px -15px rgba(39, 61, 42, 0.22), 0 6px 16px rgba(0, 0, 0, 0.04);
  background: var(--bg-card);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.main-portrait-img {
  width: 100%;
  aspect-ratio: 4 / 5.2;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.main-portrait-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 34px 70px -15px rgba(39, 61, 42, 0.26);
}

.main-portrait-frame:hover .main-portrait-img {
  transform: scale(1.03);
}

/* Polaroid Secundária Flutuante */
.floating-polaroid {
  position: absolute;
  bottom: 30px;
  right: -24px;
  width: 155px;
  background: #ffffff;
  padding: 8px 8px 14px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16), 0 2px 6px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(39, 61, 42, 0.12);
  transform: rotate(5deg);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
  z-index: 4;
}

@media (max-width: 640px) {
  .floating-polaroid {
    width: 125px;
    right: -6px;
    bottom: 24px;
    padding: 6px 6px 12px;
  }
}

@media (min-width: 768px) {
  .floating-polaroid {
    width: 175px;
    right: -36px;
    bottom: 40px;
    padding: 10px 10px 16px;
  }
}

.floating-polaroid:hover {
  transform: rotate(0deg) scale(1.08) translateY(-6px);
  box-shadow: 0 26px 50px rgba(39, 61, 42, 0.25);
  z-index: 10;
}

.polaroid-img {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.polaroid-caption {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  text-align: center;
  color: var(--color-heading);
  margin-top: 8px;
  line-height: 1.1;
}

/* Selo Circular com Texto Rotativo (Posicionado à Esquerda) */
.floating-seal-badge {
  position: absolute;
  top: -22px;
  left: -16px;
  right: auto;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(39, 61, 42, 0.16);
  border: 1px solid rgba(39, 61, 42, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: transform 0.3s ease;
}

@media (max-width: 640px) {
  .floating-seal-badge {
    width: 82px;
    height: 82px;
    left: -6px;
    top: -14px;
  }

  .seal-center-icon {
    font-size: 18px;
  }
}

@media (min-width: 768px) {
  .floating-seal-badge {
    width: 110px;
    height: 110px;
    top: 45px;
    left: -24px;
    right: auto;
  }
}

.floating-seal-badge:hover {
  transform: scale(1.08);
}

.seal-rotating-text {
  position: absolute;
  width: 100%;
  height: 100%;
  fill: var(--color-heading);
  animation: rotateSeal 24s linear infinite;
  transform-origin: center;
}

@keyframes rotateSeal {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.seal-center-icon {
  font-size: 22px;
  z-index: 2;
}

/* Badge de Atendimento Online (Centralizado com a Foto) */
.floating-status-pill {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(39, 61, 42, 0.16);
  border-radius: var(--border-radius-pill);
  padding: 8px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--color-heading);
  box-shadow: 0 10px 24px rgba(39, 61, 42, 0.14);
  z-index: 6;
  white-space: nowrap;
  width: max-content;
  max-width: 90%;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.floating-status-pill:hover {
  transform: translateX(-50%) translateY(-3px);
  box-shadow: 0 14px 28px rgba(39, 61, 42, 0.18);
}

.status-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #27ae60;
  box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.7);
  animation: pulseStatus 2s infinite;
  flex-shrink: 0;
}

@keyframes pulseStatus {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(39, 174, 96, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(39, 174, 96, 0);
  }
}


/* Seletor de Capítulos da História (Stage Nav) — Oculto no Mobile, Visível no Desktop */
.story-stage-nav {
  display: none;
}

.stage-nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: var(--border-radius-pill);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--color-text-muted);
  background: transparent;
  border: 1px solid rgba(39, 61, 42, 0.12);
  cursor: pointer;
  transition: all 0.25s ease;
}

.stage-nav-pill .pill-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13.5px;
  opacity: 0.55;
}

.stage-nav-pill:hover {
  background: rgba(39, 61, 42, 0.04);
  color: var(--color-heading);
  border-color: rgba(39, 61, 42, 0.25);
}

.stage-nav-pill.active {
  background: rgba(39, 61, 42, 0.08);
  color: var(--color-heading);
  border-color: rgba(39, 61, 42, 0.35);
  font-weight: 600;
  box-shadow: none;
}

.stage-nav-pill.active .pill-num {
  opacity: 1;
  color: var(--color-heading);
}

/* Palco de Storytelling: Imagem na Esquerda, Texto na Direita */
.about-cinematic-stage {
  position: relative;
  width: 100%;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 52px;
  align-items: center;
}

@media (min-width: 992px) {
  .about-cinematic-stage {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    grid-template-areas:
      "nav nav"
      "visual narrative";
    gap: 40px 64px;
    align-items: center;
    margin-top: 0;
  }

  .about-stage-visual {
    grid-area: visual;
    margin-bottom: 0;
  }

  .story-stage-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    grid-area: nav;
    justify-self: center;
    margin: 0 0 12px 0;
  }

  .about-stage-narrative {
    grid-area: narrative;
  }
}

/* Coluna 1: Elemento Visual da Foto (Esquerda) */
.about-stage-visual {
  width: 100%;
  max-width: 440px;
  position: relative;
  margin: 0 auto 34px auto;
  z-index: 5;
}

@media (min-width: 992px) {
  .about-stage-visual {
    margin: 0 auto 16px auto;
  }
}

/* Coluna 2: Textos da Narrativa (Direita) */
.about-stage-narrative {
  width: 100%;
  position: relative;
}

.narrative-step-panel {
  display: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.narrative-step-panel.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.step-panel-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2px;
}

.step-badge {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--color-heading);
  opacity: 0.7;
}

.step-title {
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--color-heading);
  background: rgba(39, 61, 42, 0.08);
  padding: 4px 12px;
  border-radius: var(--border-radius-pill);
}

/* Frase de abertura de alta legibilidade */
.chapter-lead-text {
  font-family: var(--font-sans);
  font-size: clamp(17px, 1.9vw, 19.5px);
  font-weight: 600;
  color: var(--color-heading);
  line-height: 1.45;
  margin: 2px 0 6px 0 !important;
  letter-spacing: -0.2px;
}

.narrative-step-panel p {
  font-size: var(--font-size-body);
  line-height: 1.7;
  color: var(--color-text-muted);
  margin: 0;
}

.narrative-step-panel p strong {
  color: var(--color-heading);
  font-weight: 600;
}

/* Frase de virada com destaque limpo e integrado */
.chapter-highlight-line {
  font-size: 16.5px !important;
  line-height: 1.6 !important;
  color: var(--color-heading) !important;
  margin: 4px 0 6px 0 !important;
}

.chapter-highlight-line strong {
  color: var(--color-heading) !important;
  font-weight: 600 !important;
}

.story-online-statement {
  font-weight: 600 !important;
  color: var(--color-heading) !important;
  font-size: var(--font-size-small) !important;
  margin-top: 6px !important;
}

.step-action-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.stage-nav-trigger-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-heading);
  background: transparent;
  padding: 8px 18px;
  border-radius: var(--border-radius-pill);
  border: 1px solid rgba(39, 61, 42, 0.25);
  cursor: pointer;
  box-shadow: none;
  transition: all 0.25s ease;
}

.stage-nav-trigger-btn:hover {
  background: rgba(39, 61, 42, 0.06);
  border-color: var(--color-heading);
  box-shadow: none;
  transform: none;
}

.stage-nav-trigger-btn.btn-secondary {
  background: transparent;
  color: var(--color-text-muted);
  border-color: transparent;
  padding: 8px 12px;
  box-shadow: none;
}

.stage-nav-trigger-btn.btn-secondary:hover {
  background: rgba(39, 61, 42, 0.04);
  color: var(--color-heading);
  border-color: transparent;
}

/* Ícone de Seta Feminina & Delicada para Botões */
.btn-arrow-icon {
  width: 15px;
  height: 15px;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn:hover .btn-arrow-icon:not(.btn-arrow-icon--back),
.stage-nav-trigger-btn:hover .btn-arrow-icon:not(.btn-arrow-icon--back) {
  transform: translateX(4px);
}

.btn:hover .btn-arrow-icon--back,
.stage-nav-trigger-btn:hover .btn-arrow-icon--back {
  transform: translateX(-4px);
}

/* FAQ Section */
.faq-section .faq-container {
  max-width: 750px;
  margin: 0 auto;
}

.faq-section .section-header {
  text-align: center;
  margin-bottom: var(--section-header-mb);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-question-btn {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--color-heading);
  text-align: left;
}

.faq-icon-svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-heading);
  flex-shrink: 0;
  display: block;
}

.faq-line-v {
  transform-origin: 8px 8px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
}

.faq-line-h {
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-answer-content {
  padding: 0 24px 20px;
  font-size: var(--font-size-body);
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* FAQ Active State */
.faq-item.active {
  border-color: var(--color-heading);
  background-color: #ffffff;
}

.faq-item.active .faq-line-v {
  transform: rotate(90deg) scale(0);
  opacity: 0;
}

@media (max-width: 640px) {
  .faq-question-btn {
    padding: 16px 18px;
    font-size: 14.5px;
    gap: 12px;
  }

  .faq-answer-content {
    padding: 0 18px 18px;
    font-size: 14px;
  }
}

/* CTA Final Section (Background em Vídeo Imersivo) */
.cta-final-section {
  position: relative;
  text-align: center;
  padding: var(--section-padding-y-mobile) 16px;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #142117;
  overflow: hidden;
  color: #ffffff;
  border-radius: var(--border-radius-card);
}

@media (min-width: 768px) {
  .cta-final-section {
    padding: var(--section-padding-y-desktop) 24px;
    min-height: 520px;
  }
}

.cta-final-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.cta-final-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.cta-final-video-poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 2;
  opacity: 1;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.cta-final-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(16, 28, 19, 0.35) 0%, rgba(9, 16, 11, 0.52) 100%);
  z-index: 3;
  pointer-events: none;
}

.cta-final-container {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.cta-final-content {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta-final-title {
  font-family: var(--font-serif);
  font-size: var(--font-size-h2);
  line-height: 1.18;
  margin-bottom: 20px;
  font-weight: 400;
  font-style: italic;
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.cta-final-subtitle {
  font-size: var(--font-size-lead);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 34px;
  line-height: 1.55;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.btn-cta-glow {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: var(--transition-smooth);
}

.btn-cta-glow:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 26px rgba(0, 0, 0, 0.38), 0 0 28px rgba(255, 255, 255, 0.25);
}

@media (prefers-reduced-motion: reduce) {
  .cta-final-video-poster {
    transition: none;
  }
}

/* Footer */
.site-footer {
  padding: 32px 0 !important;
  font-size: 12px;
  color: #b3b0b0;
  margin-bottom: 0;
  background-color: var(--bg-secondary);
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

/* Lado Esquerdo / Bloco Principal */
.footer-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #b3b0b0;
  font-size: 12px;
  text-align: center;
  width: 100%;
}

.footer-brand-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  transition: opacity 0.2s ease;
}

.footer-brand-link:hover {
  opacity: 0.8;
}

.footer-brand-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-divider {
  display: none;
}

.footer-link {
  color: #b3b0b0;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--color-heading);
}

.footer-copyright {
  color: #b3b0b0;
  line-height: 1.4;
}

/* Linha Divisória Mobile com 25px de espaçamento acima e abaixo (quase imperceptível) */
.footer-divider-line {
  width: 100%;
  max-width: 100%;
  height: 1px;
  background-color: rgba(39, 61, 42, 0.04);
  margin: 25px 0;
}

/* Lado Direito */
.footer-right {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 100%;
}

@media (min-width: 992px) {
  .site-footer {
    padding: 28px 0 !important;
  }

  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    gap: 24px;
  }

  .footer-left {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: auto;
    text-align: left;
  }

  .footer-brand-link {
    margin-bottom: 0;
  }

  .footer-divider {
    display: inline;
    color: #b3b0b0;
    opacity: 0.6;
    font-weight: bold;
  }

  .footer-copyright {
    white-space: nowrap;
  }

  .footer-divider-line {
    display: none;
  }

  .footer-right {
    width: auto;
    justify-content: flex-end;
  }
}

.footer-dev-credit {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 8px;
  letter-spacing: 0.4px;
  color: #b3b0b0;
  user-select: none;
}

.footer-nexo-logo {
  height: 15px;
  width: auto;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter 0.2s ease, opacity 0.2s ease;
}

.footer-dev-credit:hover .footer-nexo-logo {
  filter: none;
  opacity: 1;
}