/* ============================================================
   landing-4.css — updates: hero title, trust logos, new
   diferenciadores grid, testimonial stats, video modal
   ============================================================ */

/* Hero title forced white (hero isn't .section--navy) */
.hero h1, .hero .hero__title { color: #FFFFFF; }

/* ---------- Trust bar: real brand wordmarks ---------- */
.trust__row { gap: 36px; }
.brand-logo {
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(1);
  opacity: 0.62;
  transition: opacity .2s ease, filter .2s ease;
}
.brand-logo:hover { opacity: 1; filter: grayscale(0); }
.brand-logo svg { height: 100%; width: auto; display: block; }
.brand-wordmark {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  opacity: 0.5;
  white-space: nowrap;
  transition: opacity .2s ease;
  font-family: var(--font-sans);
}
.brand-wordmark:hover { opacity: 0.85; }
.brand-wordmark b { font-weight: 800; }

/* ---------- Diferenciadores — clean card grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  padding: 32px 28px;
  border-radius: var(--r-xl);
  background: var(--paper);
  border: 1px solid var(--line);
  transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-lg);
  border-color: rgba(0,232,193,0.5);
}
.feature-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--turquoise-soft);
  color: #027361;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-card__icon svg { width: 26px; height: 26px; }
.feature-card h3 { font-size: 19px; font-weight: 600; letter-spacing: -0.015em; }
.feature-card p {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 10px 0 0;
}

/* ---------- Testimonials: add stat block + photo ---------- */
.testimonial__avatar-img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--paper-3);
}
.testimonials .testimonial__person {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  order: 2;
}
.testimonial__stat {
  order: 3;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
}
.testimonial__stat-num {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #00A488;
  line-height: 1;
}
.testimonial__stat-label {
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 6px;
  line-height: 1.4;
}

/* Final CTA microcopy → pure white, stacked & centered */
.final-cta__microcopy {
  flex-direction: column;
  gap: 10px;
  color: #FFFFFF;
  margin-top: 28px;
  font-size: 15px;
  font-weight: 500;
}
.final-cta__microcopy span { color: #FFFFFF; }
.final-cta__microcopy span::before {
  width: 6px; height: 6px;
  background: var(--turquoise);
}

/* ---------- Video modal ---------- */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(5, 13, 38, 0.82);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}
.video-modal.is-open { opacity: 1; pointer-events: auto; }
body.no-scroll { overflow: hidden; }
.video-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  transform: scale(0.96);
  transition: transform .22s ease;
}
.video-modal.is-open .video-modal__dialog { transform: scale(1); }
.video-modal__dialog iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-modal__close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease;
}
.video-modal__close:hover { background: rgba(255,255,255,0.24); }

@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .feature-grid { grid-template-columns: 1fr; gap: 14px; }
  .feature-card { padding: 26px 22px; }
  .trust__row { gap: 22px 28px; }
  .brand-logo { height: 24px; }
  .video-modal__close { top: -44px; }
  .video-modal { padding: 16px; }
}
