/* ==========================================================================
   home.css — NTWeb 2026
   Estilos não críticos carregados somente na homepage.
   ========================================================================== */

.nt-cta-final.nt-cta-final--soft {
  border-top: 0;
  padding: var(--space-6) 0 6rem;
}

.nt-home-bg {
  isolation: isolate;
}

.nt-home-bg .nt-container {
  position: relative;
  z-index: 2;
}

.nt-page-home .nt-hero__eyebrow,
.nt-page-home .nt-hero__lead,
.nt-page-home .nt-hero__ctas,
.nt-page-home .nt-statusbar,
.nt-page-home .nt-hero__proof {
  animation: nt-home-hero-rise .72s var(--ease-out) both;
}

.nt-page-home .nt-hero__title {
  animation: nt-home-hero-rise-title .72s var(--ease-out) both;
}

@keyframes nt-home-hero-rise-title {
  from {
    opacity: 1;
    transform: translate3d(0, 14px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.nt-page-home .nt-hero__lead {
  animation-delay: .12s;
}

.nt-page-home .nt-hero__ctas {
  animation-delay: .18s;
}

.nt-page-home .nt-statusbar {
  animation-delay: .24s;
}

.nt-page-home .nt-hero__proof {
  animation-delay: .30s;
}

.nt-home-bg + .nt-section--soft {
  padding-top: var(--space-10) !important;
}

.nt-page-home .nt-footer {
  border-top: 0;
}

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

.nt-title--lg {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
  font-weight: 700;
  color: var(--text-1);
  margin-top: var(--space-2);
  line-height: var(--lh-tight);
}

.nt-title--md {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw + 0.8rem, 2.25rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-1);
  margin: 0;
  text-wrap: balance;
}

.nt-lead {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  color: var(--text-2);
  line-height: var(--lh-body);
  margin: 0;
  text-wrap: pretty;
  max-width: 60ch;
}

.nt-section--soft {
  background: var(--surface-translucent);
  padding: var(--space-16) 0;
}

.nt-container--sm {
  max-width: 760px;
  margin-inline: auto;
  padding: 0 var(--container-pad);
}

.nt-trust {
  padding: var(--space-20) 0;
  background: var(--surface-translucent);
}

.nt-trust__header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.nt-trust__title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
  font-weight: 700;
  color: var(--text-1);
  margin-top: var(--space-2);
  line-height: var(--lh-tight);
}

.nt-trust__title em {
  color: var(--accent);
  font-style: normal;
}

.nt-trust__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}

.nt-diferencial {
  background: var(--card-translucent);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  transition: transform var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out);
}

.nt-diferencial:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.nt-diferencial__icon {
  font-size: var(--text-xl);
  color: var(--accent);
  line-height: 1;
}

.nt-diferencial__title {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-1);
  margin: 0;
}

.nt-diferencial__desc {
  font-size: var(--text-xs);
  color: var(--text-2);
  line-height: var(--lh-loose);
  margin: 0;
}

.nt-diferencial--datacenter {
  grid-column: 1 / -1;
}

.nt-diferencial__dc-meta {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
}

.nt-diferencial__flag {
  font-size: var(--text-2xl);
  line-height: 1;
}

@media (max-width: 640px) {
  .nt-trust__grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nt-page-home .nt-hero__eyebrow,
  .nt-page-home .nt-hero__title,
  .nt-page-home .nt-hero__lead,
  .nt-page-home .nt-hero__ctas,
  .nt-page-home .nt-statusbar,
  .nt-page-home .nt-hero__proof {
    animation: none !important;
  }
}

@keyframes nt-home-hero-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
