/* =====================================================================
   DESIGN SYSTEM DA NORE
   Para mudar cores, fontes e sombras, altere apenas as variáveis abaixo.
   ===================================================================== */

:root {
  --radius: 0.75rem;

  /* Paleta da marca */
  --nore-blue: oklch(45% 0.22 255);
  --nore-blue-light: oklch(58% 0.18 255);
  --nore-blue-pale: oklch(82% 0.07 250);
  --nore-cream: oklch(99% 0.005 85);
  --nore-ink: oklch(12% 0.02 255);

  /* Tipografia */
  --font-display: "Archivo Black", "Bebas Neue", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  /* Sombras */
  --shadow-nore: 0 6px 24px -8px oklch(45% 0.22 255 / 0.28);
  --shadow-nore-lg: 0 24px 60px -20px oklch(45% 0.22 255 / 0.35);

  --background: var(--nore-cream);
  --foreground: var(--nore-ink);
  --card: #fff;
  --primary: var(--nore-blue);
  --primary-foreground: #fff;
  --secondary: var(--nore-blue-pale);
  --muted: oklch(96% 0.01 255);
  --muted-foreground: oklch(45% 0.04 255);
  --border: oklch(90% 0.01 255);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-weight: 400;
}

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

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

/* ---------- layout ---------- */
.container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
}

.section--alt {
  border-top: 1px solid var(--border);
  background: color-mix(in oklab, var(--card) 60%, transparent);
}

.section--muted {
  border-top: 1px solid var(--border);
  background: color-mix(in oklab, var(--muted) 60%, transparent);
}

.section--bordered {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: color-mix(in oklab, var(--card) 60%, transparent);
}

.center {
  text-align: center;
}

.narrow {
  max-width: 40rem;
  margin: 0 auto;
}

.text-brand {
  color: var(--nore-blue);
}

.muted {
  color: var(--muted-foreground);
}

/* ---------- header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
  background: color-mix(in oklab, var(--background) 85%, transparent);
  backdrop-filter: blur(10px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

.header__logo img {
  height: 1.75rem;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.nav a:hover {
  color: var(--nore-blue);
}

/* ---------- botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 0.9rem 1.6rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.btn--primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-nore);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-nore-lg);
}

.btn--ghost {
  border: 1px solid var(--border);
  background: var(--card);
}

.btn--ghost:hover {
  transform: translateY(-2px);
  border-color: var(--nore-blue);
}

.btn--sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

/* ---------- eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: var(--nore-blue-pale);
  color: var(--nore-blue);
  padding: 0.375rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ---------- cards ---------- */
.card {
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.75rem;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--nore-blue-pale);
  box-shadow: var(--shadow-nore);
}

.grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 3.5rem;
}

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

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

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 3rem;
  margin-top: 0;
}

.icon-box {
  display: inline-flex;
  height: 2.75rem;
  width: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: var(--secondary);
  color: var(--nore-blue);
  font-size: 1.25rem;
}

.card h3 {
  margin-top: 1.25rem;
  font-size: 1.25rem;
}

.card p {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--muted-foreground);
}

/* ---------- hero ---------- */
.hero {
  padding: 8rem 1.5rem;
  text-align: center;
}

.hero__logo {
  margin: 0 auto;
  height: 7rem;
  width: auto;
  border-radius: 1rem;
  background: var(--card);
  padding: 1rem;
  animation: float 6s ease-in-out infinite;
}

.hero h1 {
  margin-top: 2.5rem;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

.hero p {
  margin: 1.5rem auto 0;
  max-width: 34rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.hero__actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ---------- frase ---------- */
.quote p {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
}

.quote footer {
  margin-top: 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

/* ---------- lista de diferenciais ---------- */
.checklist {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid var(--border);
  background: var(--card);
  font-size: 0.9rem;
  font-weight: 500;
}

.checklist span {
  display: inline-flex;
  height: 1.25rem;
  width: 1.25rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.65rem;
  font-weight: 700;
  margin-top: 0.2rem;
}

/* ---------- números ---------- */
.stat p:first-child {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--nore-blue);
}

.stat p:nth-child(2) {
  margin-top: 0.75rem;
  font-weight: 600;
  color: var(--foreground);
}

/* ---------- CARTEIRA DE CLIENTES ---------- */
.clientes {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3.5rem;
}

.cliente {
  height: 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  padding: 1rem;
}

.cliente img {
  max-height: 3rem;
  width: auto;
  object-fit: contain;
}

.cliente__nome {
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.cliente__segmento {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

/* ---------- contato ---------- */
.contato-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  text-align: left;
}

.contato-grid .card {
  padding: 1.25rem 1.75rem;
}

.contato-grid .label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.contato-grid .value {
  margin-top: 0.25rem;
  font-weight: 600;
  word-break: break-all;
}

/* ---------- footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer img {
  height: 1.5rem;
  width: auto;
}

.footer a:hover {
  color: var(--nore-blue);
}

/* ---------- whatsapp flutuante ---------- */
.whats-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.25rem;
  z-index: 60;
  height: 3.5rem;
  width: 3.5rem;
  padding: 0;
  font-size: 1.5rem;
}

/* ---------- animações ---------- */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.rise {
  animation: rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* ---------- responsivo ---------- */
@media (max-width: 900px) {
  .grid--4,
  .clientes {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--3,
  .grid--2 {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 4rem 0;
  }
  .hero {
    padding: 4rem 1.5rem;
  }
  .nav a.nav__link {
    display: none;
  }
  .contato-grid {
    grid-template-columns: 1fr;
  }
}
