/*
  ============================================
  MENTORIA DOS ATIVOS DIGITAIS - LANDING PAGE
  Design System: Premium Dark + Gold
  ============================================
*/

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
  --bg-primary: #050505;
  --bg-secondary: #0d0d0d;
  --bg-card: #111111;
  --accent-gold: #c9a44a;
  --accent-gold-light: #e8c97a;
  --accent-gold-dark: #a07830;
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --text-muted: #666666;
  --border-subtle: #1e1e1e;
  --border-gold: rgba(201, 164, 74, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 2rem);
}

.text-gold {
  color: var(--accent-gold);
}

.text-secondary {
  color: var(--text-secondary);
}

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

/* =============================================
   LAYOUT
   ============================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container--narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 60px 20px;
}

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

.section--secondary {
  background-color: var(--bg-secondary);
}

.section--offer {
  background: linear-gradient(180deg, var(--bg-primary) 0%, #0a0800 50%, var(--bg-primary) 100%);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}

.section--cta-final {
  background: linear-gradient(135deg, #050505 0%, #0d0a00 50%, #050505 100%);
  position: relative;
  overflow: hidden;
}

.section--cta-final::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201,164,74,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* =============================================
   COMPONENTS
   ============================================= */

/* -- Section Divider -- */
.section-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  margin: 20px auto;
}

/* -- Badge -- */
.badge {
  display: inline-block;
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* -- Button Primary -- */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
  color: #050505;
  padding: 18px 48px;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(201,164,74,0.3);
  text-align: center;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,164,74,0.5);
}

.btn-primary--small {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.btn-primary--large {
  padding: 22px 56px;
  font-size: 1.1rem;
}

.btn-primary--full {
  display: block;
  width: 100%;
  padding: 16px;
  font-size: 0.95rem;
}

/* -- Animation on Scroll -- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   HEADER
   ============================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(5,5,5,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: rgba(5,5,5,0.95);
  border-bottom: 1px solid var(--border-gold);
  padding: 12px 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo-img {
  height: 40px;
  width: auto;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #050505 0%, #0d0d0d 50%, #111111 100%);
  position: relative;
  overflow: hidden;
  padding-top: 76px;
  padding-bottom: 60px;
}

.hero__bg-glow {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,164,74,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.hero__content {
  text-align: center;
}

.hero__title {
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #e8c97a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-style: italic;
}

.hero__body {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 4px;
  margin-top: 32px;
}

.hero__stat-item {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent-gold-light);
}

.hero__stat-sep {
  color: var(--accent-gold);
  opacity: 0.5;
  font-size: 1.1rem;
  padding: 0 4px;
}

.hero__image {
  display: flex;
  justify-content: center;
}

.hero__photo {
  width: 100%;
  border-radius: 12px;
  border: 2px solid var(--border-gold);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(201,164,74,0.1);
}

/* =============================================
   SECTION 2 - PROBLEMA
   ============================================= */
.section__title {
  margin-bottom: 16px;
}

.section__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.section__highlight {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--accent-gold);
  margin-top: 40px;
  padding: 24px;
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  background: rgba(201,164,74,0.05);
}

.section__body-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.section__body-text p {
  margin-bottom: 20px;
}

/* =============================================
   SECTION 3 - DIFERENCIAL
   ============================================= */
.grid-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.diferencial-card {
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 40px;
  background: var(--bg-card);
  transition: border-color 0.3s, transform 0.3s;
}

.diferencial-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-4px);
}

.diferencial-card__icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 16px;
}

.diferencial-card__title {
  color: var(--accent-gold);
  margin-bottom: 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.diferencial-card__text {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* =============================================
   SECTION 4 - PARA QUEM E
   ============================================= */
.check-list {
  list-style: none;
  margin-top: 32px;
}

.check-list__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 1.05rem;
  color: var(--text-secondary);
  transition: background 0.3s;
}

.check-list__item:hover {
  background: rgba(201,164,74,0.03);
}

.check-list__item:last-child {
  border-bottom: none;
}

.check-list__icon {
  color: var(--accent-gold);
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* =============================================
   SECTION 5 - ATIVOS DIGITAIS
   ============================================= */
.grid-ativos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 40px;
}

.ativo-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  transition: border-color 0.3s, transform 0.3s;
}

.ativo-card:hover {
  border-color: var(--border-gold);
  transform: translateX(4px);
}

.ativo-card__number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--accent-gold);
  opacity: 0.6;
  min-width: 36px;
}

.ativo-card__name {
  font-size: 1rem;
  color: var(--text-primary);
}

/* -- Resultados Gallery -- */
.resultados-section {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border-subtle);
}

.resultados-section__title {
  text-align: center;
  color: var(--accent-gold);
  margin-bottom: 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.resultados-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.resultado-item {
  border: 2px solid var(--border-gold);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.resultado-item:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 30px rgba(201,164,74,0.2);
}

.resultado-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
}

/* -- Lightbox -- */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.95);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.lightbox.active {
  display: flex;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2.5rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10001;
  line-height: 1;
}

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #fff;
  background: rgba(201,164,74,0.2);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}

.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(201,164,74,0.4);
}

.lightbox__prev {
  left: 20px;
}

.lightbox__next {
  right: 20px;
}

/* =============================================
   SECTION 6 - TIMELINE ENCONTROS
   ============================================= */
.timeline {
  position: relative;
  margin-top: 40px;
  padding-left: 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-gold) 0%, var(--accent-gold-dark) 50%, transparent 100%);
}

.timeline__item {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  position: relative;
}

.timeline__item:last-child {
  margin-bottom: 0;
}

.timeline__number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--accent-gold);
  background: var(--bg-primary);
  border: 2px solid var(--accent-gold);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}

.timeline__content {
  padding-top: 8px;
}

.timeline__title {
  color: var(--text-primary);
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.timeline__desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* =============================================
   SECTION 7 - INCLUSO
   ============================================= */
.grid-incluso {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

.incluso-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  transition: border-color 0.3s, transform 0.3s;
}

.incluso-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}

.incluso-card__icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 16px;
}

.incluso-card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 12px;
}

.incluso-card__desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* =============================================
   SECTION 8 - AUTORIDADE
   ============================================= */
.autoridade-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 32px;
}

.autoridade__photo img {
  width: 100%;
  border-radius: 12px;
  border: 2px solid var(--border-gold);
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.autoridade__content {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
}

.autoridade__content p {
  margin-bottom: 16px;
}

.autoridade__quote {
  margin-top: 24px;
  padding: 24px 32px;
  border-left: 3px solid var(--accent-gold);
  background: rgba(201,164,74,0.05);
  border-radius: 0 8px 8px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--accent-gold-light);
  line-height: 1.5;
}

.autoridade-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.autoridade-stat {
  text-align: center;
  padding: 24px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  transition: border-color 0.3s;
}

.autoridade-stat:hover {
  border-color: var(--border-gold);
}

.autoridade-stat__number {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--accent-gold);
  margin-bottom: 4px;
}

.autoridade-stat__label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* =============================================
   SECTION 9 - DEPOIMENTOS
   ============================================= */
.depoimentos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--border-gold);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* =============================================
   SECTION 10 - OFERTA
   ============================================= */
.oferta-box {
  padding: 48px 32px;
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  background: var(--bg-card);
  text-align: center;
}

.oferta-box p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.oferta-box .btn-primary {
  margin-top: 16px;
  margin-bottom: 24px;
}

.oferta-note {
  font-size: 0.85rem !important;
  color: var(--text-muted) !important;
  font-style: italic;
  margin-bottom: 0 !important;
}

/* =============================================
   SECTION 11 - GARANTIA
   ============================================= */
.garantia-box {
  text-align: center;
  padding: 48px 32px;
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  background: var(--bg-card);
}

.garantia-box__icon {
  margin-bottom: 24px;
}

.garantia-box p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
  text-align: left;
}

/* =============================================
   SECTION 12 - FAQ
   ============================================= */
.faq-list {
  margin-top: 40px;
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--accent-gold);
}

.faq-question__arrow {
  color: var(--accent-gold);
  font-size: 1rem;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-question.active .faq-question__arrow {
  transform: rotate(90deg);
}

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

.faq-answer p {
  padding-bottom: 24px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* =============================================
   SECTION 13 - CTA FINAL
   ============================================= */
.cta-final__body {
  margin-bottom: 32px;
}

.cta-final__body p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
  padding: 40px 20px;
}

.footer__inner {
  text-align: center;
}

.footer__logo-img {
  height: 36px;
  width: auto;
  margin: 0 auto 16px;
}

.footer__copy {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.footer__links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color 0.3s;
}

.footer__links a:hover {
  color: var(--accent-gold);
}

/* =============================================
   STICKY CTA MOBILE
   ============================================= */
.sticky-cta-mobile {
  display: none;
}

/* =============================================
   RESPONSIVE - TABLET (768px+)
   ============================================= */
@media (min-width: 768px) {
  .section {
    padding: 80px 40px;
  }

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

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

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

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

  .autoridade-grid {
    grid-template-columns: 320px 1fr;
    align-items: start;
  }

  .autoridade-stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .resultados-gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .resultado-item:last-child {
    grid-column: span 1;
  }

  .hero__grid {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }

  .hero__content {
    text-align: left;
  }

  .hero__stats {
    justify-content: flex-start;
  }

  .hero__body {
    margin-left: 0;
  }
}

/* =============================================
   RESPONSIVE - DESKTOP (1024px+)
   ============================================= */
@media (min-width: 1024px) {
  .section {
    padding: 100px 80px;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .grid-ativos {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-incluso {
    grid-template-columns: repeat(3, 1fr);
  }

  .autoridade-stats {
    grid-template-columns: repeat(7, 1fr);
  }

  .autoridade-grid {
    grid-template-columns: 420px 1fr;
    gap: 60px;
  }
}

/* =============================================
   RESPONSIVE - LARGE (1200px+)
   ============================================= */
@media (min-width: 1200px) {
  .grid-ativos {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* =============================================
   RESPONSIVE - MOBILE (<768px)
   ============================================= */
@media (max-width: 767px) {
  .sticky-cta-mobile {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 20px;
    background: rgba(5,5,5,0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-gold);
    z-index: 1000;
  }

  .header {
    padding: 10px 0;
  }

  .header .btn-primary--small {
    display: none;
  }

  .header__logo-img {
    height: 32px;
  }

  .footer {
    padding-bottom: 90px;
  }

  .hero {
    padding-top: 64px;
  }

  .hero__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero__stats {
    gap: 12px;
  }

  .hero__stat {
    padding: 8px 14px;
    font-size: 0.8rem;
  }

  .hero__stat-text {
    font-size: 0.75rem;
  }

  .autoridade__photo img {
    max-width: 250px;
  }

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

  .oferta-box {
    padding: 32px 20px;
  }

  .garantia-box {
    padding: 32px 20px;
  }

  .btn-primary--large {
    padding: 18px 32px;
    font-size: 0.95rem;
  }

  .timeline__number {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  .timeline::before {
    left: 22px;
  }

  .lightbox__prev,
  .lightbox__next {
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
  }

  .depoimentos-grid {
    gap: 16px;
  }

  .section__title {
    font-size: clamp(1.6rem, 6vw, 2.5rem);
  }
}
