/* =========================================================
   Priorize Ser — Design tokens & base
   Troque os HEX em :root quando tiver a paleta exata do cliente.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,500;1,600&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* ====== PALETA DA MARCA (teal / verde-água) ====== */
  --teal:      #4F938E;   /* primária (logo + paredes) */
  --teal-dark: #356E6A;   /* hover / rodapé */
  --teal-soft: #EAF3F1;   /* fundos de seção alternados */
  --accent:    #E9C46A;   /* amarelo (acento moderado) */
  --white:     #FFFFFF;
  --text:      #1F2937;
  --text-muted:#6B7280;
  --whatsapp:  #25D366;

  /* ---- Aliases semânticos (usados no layout) ---- */
  --bg:        var(--white);
  --bg-soft:   var(--teal-soft);   /* blocos alternados */
  --surface:   var(--white);       /* cartões */
  --ink:       var(--text);
  --ink-soft:  var(--text-muted);
  --ink-mute:  #9AA1AB;            /* legendas, meta */

  --sage:      var(--teal);        /* primária */
  --sage-deep: var(--teal-dark);   /* profunda */
  --sage-tint: var(--teal-soft);   /* fundo teal leve */
  --clay:      var(--accent);      /* acento amarelo */
  --clay-soft: #F6E7BE;

  --line:      #E6EBEA;            /* bordas sutis */
  --line-soft: #EFF3F2;

  /* ---- Tipografia ---- */
  --serif: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; /* títulos */
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;   /* corpo */

  /* ---- Escala / ritmo ---- */
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 40px);
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --shadow: 0 1px 2px rgba(44,53,46,.04), 0 12px 32px -16px rgba(44,53,46,.18);
  --shadow-soft: 0 1px 2px rgba(44,53,46,.03), 0 18px 40px -24px rgba(44,53,46,.16);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------------- Reset ---------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ---------------- Layout helpers ---------------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 9vw, 104px); }
.eyebrow {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sage-deep);
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1.5px;
  background: var(--clay);
  display: inline-block;
}

/* ---------------- Type ---------------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.14; letter-spacing: -.02em; color: var(--ink); }
h1 { font-size: clamp(2.3rem, 6.2vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4.4vw, 2.9rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.55rem); font-weight: 600; }
.lead { font-size: clamp(1.05rem, 2.2vw, 1.28rem); color: var(--ink-soft); line-height: 1.55; }
em.ital { font-style: italic; font-family: var(--serif); color: var(--sage-deep); }
.text-balance { text-wrap: balance; }
.text-pretty { text-wrap: pretty; }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.4rem;
  border-radius: var(--radius-pill);
  font-weight: 600; font-size: .96rem;
  border: 1.5px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--sage-deep); color: #fff; }
.btn-primary:hover { background: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--sage-deep); color: var(--sage-deep); }
.btn-clay { background: var(--clay); color: #fff; }
.btn-clay:hover { filter: brightness(.95); }
.btn .ico { width: 18px; height: 18px; }

/* link with arrow */
.arrow-link {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 600; color: var(--sage-deep); font-size: .98rem;
}
.arrow-link .ico { width: 17px; height: 17px; transition: transform .25s var(--ease); }
.arrow-link:hover .ico { transform: translateX(4px); }

/* ---------------- Image placeholder ---------------- */
.ph {
  position: relative;
  background-color: var(--bg-soft);
  background-image: repeating-linear-gradient(135deg, transparent 0 14px, rgba(124,152,133,.10) 14px 15px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid; place-content: center;
  overflow: hidden;
}
.ph span {
  font-family: ui-monospace, 'SFMono-Regular', Menlo, monospace;
  font-size: .72rem; letter-spacing: .04em;
  color: var(--ink-mute);
  background: var(--surface);
  padding: .35rem .7rem; border-radius: var(--radius-pill);
  border: 1px solid var(--line);
}

/* ---------------- Cards ---------------- */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}

/* ---------------- Reveal on scroll ---------------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
  .reveal.in { opacity: 1; transform: none; }
}
