/*
  Neo20 — Design System Base
  Compartilhado entre todos os nichos.
  Para criar um novo nicho: só escreva um novo index.html.
  Para ajustar tokens do nicho: sobrescreva variáveis em :root no <style> do HTML.
*/

/* =============================================
   DESIGN TOKENS
============================================= */
:root {
  --azul-escuro: #051d34;
  --verde-teal: #1BAF8A;
  --branco: #FFFFFF;
  --cinza-fundo: #F5F6F8;
  --cinza-texto: #4A5568;
  --preto-texto: #1A1A2E;
  --whatsapp-verde: #25D366;

  --font-family: 'Plus Jakarta Sans', sans-serif;
  --radius-card: 12px;
  --shadow-card: 0 2px 16px rgba(13, 33, 55, 0.08);
  --transition: 0.2s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-family);
  color: var(--preto-texto);
  background: var(--branco);
  -webkit-font-smoothing: antialiased;
}

img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
ol   { list-style: none; }
blockquote { font-style: inherit; }

/* =============================================
   LAYOUT
============================================= */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 72px 0; }
.section--dark { background: var(--azul-escuro); color: var(--branco); }
.section--gray { background: var(--cinza-fundo); }

/* =============================================
   TIPOGRAFIA UTILITÁRIA
============================================= */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--verde-teal);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  text-align: center;
}

/* =============================================
   BOTÃO WHATSAPP
============================================= */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--whatsapp-verde);
  color: var(--branco);
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: filter var(--transition), transform var(--transition);
  white-space: nowrap;
}

.btn-whatsapp:hover  { filter: brightness(1.08); transform: translateY(-2px); }
.btn-whatsapp:active { transform: translateY(0); }

.btn-whatsapp--large {
  font-size: 18px;
  padding: 18px 40px;
}

/* =============================================
   HEADER
============================================= */
.header {
  background: var(--azul-escuro);
  padding: 20px 0;
}

.header__logo { height: 36px; width: auto; }

/* =============================================
   HERO
============================================= */
.hero {
  background: var(--azul-escuro);
  padding: 64px 0 80px;
  text-align: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(27, 175, 138, 0.15);
  color: var(--verde-teal);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
  border: 1px solid rgba(27, 175, 138, 0.3);
}

.hero__title {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--branco);
  margin-bottom: 24px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.hero__title span { color: var(--verde-teal); }

.hero__subtitle {
  font-size: clamp(15px, 2.2vw, 18px);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  max-width: 620px;
  margin: 0 auto 36px;
}

.hero__cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.hero__trust {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__trust span { display: flex; align-items: center; gap: 4px; }
.hero__trust span::before { content: "·"; margin-right: 4px; }
.hero__trust span:first-child::before { content: ""; margin: 0; }

/* =============================================
   PILARES DE VALOR
============================================= */
.pilares__header { text-align: center; margin-bottom: 48px; }

.pilares__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pilar-card {
  background: var(--branco);
  border: 1px solid rgba(13, 33, 55, 0.08);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.pilar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(13, 33, 55, 0.12);
}

.pilar-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(27, 175, 138, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.pilar-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--verde-teal);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pilar-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--preto-texto);
  margin-bottom: 10px;
}

.pilar-card__text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--cinza-texto);
}

/* =============================================
   COMO FUNCIONA
============================================= */
.como-funciona__header { text-align: center; margin-bottom: 56px; }

.passos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.passos::before {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(16.66% + 16px);
  right: calc(16.66% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--verde-teal), rgba(27, 175, 138, 0.2));
  pointer-events: none;
}

.passo { text-align: center; position: relative; }

.passo__numero {
  width: 56px;
  height: 56px;
  background: var(--verde-teal);
  color: var(--branco);
  font-size: 22px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.passo__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--preto-texto);
  margin-bottom: 10px;
}

.passo__text { font-size: 15px; line-height: 1.65; color: var(--cinza-texto); }

/* =============================================
   CASO REAL
============================================= */
.caso-real { padding: 80px 0; }

.caso-real__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.caso-real__aspas {
  font-size: 120px;
  line-height: 0.5;
  color: var(--verde-teal);
  font-family: Georgia, serif;
  margin-bottom: 24px;
  opacity: 0.6;
  display: block;
}

.caso-real__texto {
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}

.caso-real__texto strong { color: var(--verde-teal); font-weight: 700; }

.caso-real__atribuicao {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  font-style: italic;
}

.caso-real__destaque {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(27, 175, 138, 0.15);
  border: 1px solid rgba(27, 175, 138, 0.3);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 28px;
  font-size: 13px;
  font-weight: 600;
  color: var(--verde-teal);
}

/* =============================================
   QUEBRA DE OBJEÇÕES
============================================= */
.objecoes__header { text-align: center; margin-bottom: 48px; }

.objecoes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.objecao-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  border-radius: var(--radius-card);
  border: 1px solid rgba(13, 33, 55, 0.07);
  background: var(--cinza-fundo);
}

.objecao-item__check {
  width: 36px;
  height: 36px;
  background: rgba(27, 175, 138, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.objecao-item__check svg {
  width: 18px;
  height: 18px;
  stroke: var(--verde-teal);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.objecao-item__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--preto-texto);
}

.objecao-item__text { font-size: 14px; line-height: 1.65; color: var(--cinza-texto); }

/* =============================================
   CTA FINAL
============================================= */
.cta-final { text-align: center; }

.cta-final__escassez {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(27, 175, 138, 0.1);
  border: 1px solid rgba(27, 175, 138, 0.25);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 28px;
  font-size: 13px;
  font-weight: 600;
  color: var(--verde-teal);
}

.cta-final__title {
  font-size: clamp(20px, 3.5vw, 32px);
  font-weight: 800;
  color: var(--preto-texto);
  max-width: 640px;
  margin: 0 auto 16px;
  line-height: 1.25;
}

.cta-final__sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--cinza-texto);
  max-width: 520px;
  margin: 0 auto 36px;
}

/* =============================================
   FOOTER
============================================= */
.footer {
  background: var(--azul-escuro);
  padding: 40px 0;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer__logo { height: 32px; width: auto; opacity: 0.85; }

.footer__copy { font-size: 13px; color: rgba(255, 255, 255, 0.4); }

/* =============================================
   BOTÃO FIXO MOBILE
============================================= */
.whatsapp-fixed {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--whatsapp-verde);
  color: var(--branco);
  text-align: center;
  padding: 16px 24px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  box-shadow: 0 -4px 16px rgba(37, 211, 102, 0.3);
  transition: filter var(--transition);
}

.whatsapp-fixed:hover { filter: brightness(1.06); }

/* =============================================
   RESPONSIVO
============================================= */
@media (max-width: 900px) {
  .pilares__grid,
  .objecoes__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .passos {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .passos::before { display: none; }

  .passo {
    display: grid;
    grid-template-columns: 56px 1fr;
    grid-template-rows: auto auto;
    text-align: left;
    gap: 0 16px;
  }

  .passo__numero { grid-row: 1 / 3; margin: 0; align-self: start; }
  .passo__title  { align-self: end; margin-bottom: 6px; }
  .passo__text   { grid-column: 2; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .hero { padding: 48px 0 80px; }
  body { padding-bottom: 60px; }
  .whatsapp-fixed { display: block; }
}

@media (max-width: 480px) {
  .btn-whatsapp--large {
    font-size: 16px;
    padding: 16px 28px;
    width: 100%;
    justify-content: center;
  }
}
