/* ============================================================= */
/*  Proton CRM — Landing Page                                     */
/*  Estilos com CSS variables. Nada de cor hardcoded espalhada.   */
/* ============================================================= */

:root {
  /* ---- Cores da marca (azul Proton) ---- */
  --blue: #243EFF;           /* azul primário da marca (CTA/destaque)        */
  --blue-deep: #1D34D0;      /* azul profundo (gradiente / hovers)           */
  --blue-light: #6E86FF;     /* azul claro (acentos sobre fundos escuros)    */
  --dark: #0B0F14;           /* fundo escuro de seções/cards                 */
  --white: #FFFFFF;
  --light: #F6F8FA;          /* fundo claro alternado                        */
  --text: #0E1726;           /* texto escuro                                 */
  --text-soft: #5B6675;      /* texto secundário                            */
  --border: #E6E9EE;         /* borda suave                                  */
  --green: #16A34A;          /* verde de confirmação (checks de recursos)    */

  /* ---- Gradiente de marca ---- */
  --grad: linear-gradient(135deg, #2A45FF 0%, #1D34D0 100%);

  /* ---- Raios ---- */
  --radius-sm: 12px;
  --radius: 20px;
  --radius-pill: 999px;

  /* ---- Sombras ---- */
  --shadow-sm: 0 4px 16px rgba(14, 23, 38, 0.06);
  --shadow: 0 12px 40px rgba(14, 23, 38, 0.10);
  --shadow-glow: 0 20px 60px rgba(36, 62, 255, 0.30);

  /* ---- Layout ---- */
  --max: 1180px;
  --nav-h: 72px;

  /* ---- Tipografia ---- */
  --font: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Foco visível para acessibilidade */
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ============================================================= */
/*  UTILITÁRIOS                                                   */
/* ============================================================= */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 820px; }

.text-gradient {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--blue); /* fallback */
}

.section { padding: 88px 0; }
.section--alt { background: var(--light); }

.section__head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.section__title { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; }
.section__subtitle { margin-top: 14px; color: var(--text-soft); font-size: 1.08rem; }

/* ============================================================= */
/*  BOTÕES                                                        */
/* ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn--sm { padding: 10px 20px; font-size: 0.9rem; }
.btn--lg { padding: 16px 32px; font-size: 1.05rem; }

.btn--primary {
  background: var(--grad);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(36, 62, 255, 0.32);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(36, 62, 255, 0.45); }

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn--outline:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }

.btn--ghost {
  background: var(--white);
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover { border-color: var(--blue); transform: translateY(-2px); }

/* ============================================================= */
/*  NAVBAR                                                        */
/* ============================================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.navbar.is-scrolled { border-color: var(--border); box-shadow: var(--shadow-sm); }

.navbar__inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo { display: inline-flex; align-items: center; gap: 9px; font-weight: 800; font-size: 1.3rem; letter-spacing: -0.02em; }
.logo__img { width: 34px; height: 34px; object-fit: contain; }
.logo__accent { color: var(--blue); }
.logo--light { color: var(--white); }
.logo--light .logo__accent { color: var(--blue-light); }

.nav__list { display: flex; gap: 4px; }
.nav__link {
  display: inline-block;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-soft);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color .15s ease, background .15s ease;
}
.nav__link:hover { color: var(--text); background: var(--light); }

.navbar__actions { display: flex; align-items: center; }

/* Hambúrguer */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span {
  width: 24px; height: 2.5px; border-radius: 2px; background: var(--text);
  transition: transform .25s ease, opacity .25s ease;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Menu mobile */
.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--white);
  padding: 12px 24px 24px;
}
.mobile-menu.is-open { display: block; animation: slideDown .25s ease; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu__link {
  padding: 13px 12px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--text);
}
.mobile-menu__link:hover { background: var(--light); }
.mobile-menu__cta { margin-top: 10px; }

@keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================================= */
/*  HERO                                                          */
/* ============================================================= */
.hero {
  position: relative;
  padding: 72px 0 96px;
  background:
    radial-gradient(60% 50% at 80% 0%, rgba(36, 62, 255, 0.12), transparent 70%),
    radial-gradient(50% 45% at 5% 20%, rgba(36, 62, 255, 0.10), transparent 70%);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.badge-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.85rem; font-weight: 600; color: var(--text-soft);
  box-shadow: var(--shadow-sm);
  margin-bottom: 22px;
}
.badge-pill__dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--blue);
  box-shadow: 0 0 0 4px rgba(36, 62, 255, 0.2);
}

.hero__title { font-size: clamp(2.1rem, 5vw, 3.6rem); font-weight: 800; line-height: 1.08; letter-spacing: -0.03em; }
.hero__subtitle { margin-top: 22px; font-size: 1.15rem; color: var(--text-soft); max-width: 540px; }

.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero__trust {
  display: flex; flex-wrap: wrap; gap: 20px;
  margin-top: 34px;
}
.hero__trust li {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.9rem; font-weight: 600; color: var(--text-soft);
}
.hero__trust svg { color: var(--blue); }

/* ---- Mockup do telefone ---- */
.hero__visual { position: relative; display: flex; justify-content: center; }
.phone {
  width: 320px; max-width: 100%;
  background: var(--dark);
  border-radius: 32px;
  padding: 14px;
  box-shadow: var(--shadow-glow);
  border: 8px solid #11171f;
}
.phone__header {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px 14px;
}
.phone__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--grad); color: var(--white);
  font-weight: 800;
}
.phone__avatar img { width: 22px; height: 22px; object-fit: contain; }
.phone__contact { display: flex; flex-direction: column; line-height: 1.3; }
.phone__contact strong { color: var(--white); font-size: 0.92rem; }
.phone__contact span { color: var(--blue-light); font-size: 0.78rem; }

.phone__chat {
  background:
    linear-gradient(rgba(11,15,20,0.92), rgba(11,15,20,0.92)),
    repeating-linear-gradient(45deg, #131a22 0 10px, #11171f 10px 20px);
  border-radius: 18px;
  padding: 16px 12px;
  display: flex; flex-direction: column; gap: 10px;
  min-height: 320px;
}
.bubble {
  max-width: 80%;
  padding: 9px 13px;
  border-radius: 14px;
  font-size: 0.86rem;
  line-height: 1.4;
  animation: bubbleIn .4s ease both;
}
.bubble--in { align-self: flex-start; background: #1e2731; color: #e9eef3; border-bottom-left-radius: 4px; }
.bubble--out { align-self: flex-end; background: var(--grad); color: var(--white); font-weight: 500; border-bottom-right-radius: 4px; }
.bubble--typing { align-self: flex-end; background: var(--grad); display: inline-flex; gap: 4px; padding: 12px 14px; }
.bubble--typing span {
  width: 6px; height: 6px; border-radius: 50%; background: var(--white); opacity: .7;
  animation: typing 1.2s infinite ease-in-out;
}
.bubble--typing span:nth-child(2) { animation-delay: .2s; }
.bubble--typing span:nth-child(3) { animation-delay: .4s; }

@keyframes bubbleIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes typing { 0%,60%,100% { transform: translateY(0); opacity: .4; } 30% { transform: translateY(-4px); opacity: 1; } }

/* Cartões flutuantes */
.hero__floating {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  background: var(--white);
  padding: 12px 16px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.hero__floating svg { color: var(--blue); }
.hero__floating strong { display: block; font-size: 1.1rem; font-weight: 800; }
.hero__floating span { font-size: 0.78rem; color: var(--text-soft); }
.hero__floating--1 { top: 18%; left: -8px; animation: float 4s ease-in-out infinite; }
.hero__floating--2 { bottom: 14%; right: -10px; animation: float 4s ease-in-out infinite .8s; }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ============================================================= */
/*  PROVA SOCIAL                                                  */
/* ============================================================= */
.social-proof { padding: 48px 0; border-bottom: 1px solid var(--border); }
.social-proof__title { text-align: center; color: var(--text-soft); font-weight: 600; font-size: 0.95rem; margin-bottom: 28px; }
.social-proof__logos {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 24px 48px;
}
.logo-placeholder {
  width: 130px; height: 44px;
  display: grid; place-items: center;
  background: var(--light);
  border: 1px dashed var(--border);
  border-radius: 10px;
  color: var(--text-soft);
  font-weight: 700; letter-spacing: 0.1em; font-size: 0.8rem;
  filter: grayscale(1);
  opacity: .7;
  transition: opacity .2s ease;
}
.logo-placeholder:hover { opacity: 1; }

/* Clientes (perfis do Instagram) */
.client-logo {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  width: 120px; text-align: center;
  color: var(--text-soft); text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}
.client-logo img {
  width: 64px; height: 64px; border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
  filter: grayscale(1);
  opacity: .8;
  transition: filter .2s ease, opacity .2s ease, border-color .2s ease;
}
.client-logo span { font-size: 0.82rem; font-weight: 600; line-height: 1.25; }
.client-logo:hover { color: var(--text); transform: translateY(-3px); }
.client-logo:hover img { filter: grayscale(0); opacity: 1; border-color: var(--blue); }

.social-proof__action { text-align: center; margin-top: 32px; }

/* ============================================================= */
/*  RECURSOS                                                      */
/* ============================================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.feature-card__icon {
  display: grid; place-items: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(36,62,255,0.12), rgba(29,52,208,0.12));
  color: var(--blue);
  margin-bottom: 18px;
}
.feature-card h3 { font-size: 1.18rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p { color: var(--text-soft); font-size: 0.98rem; }

/* ---- Seção CRM e ChatBot (dois cards lado a lado) ---- */
.duo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
/* Lista de recursos com check (mesmo estilo dos checks do site) */
.feature-list {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 18px;
}
.feature-list li { display: flex; align-items: center; gap: 10px; font-size: 0.98rem; color: var(--text); }
.feature-list svg, .feature-list [data-lucide] { color: var(--blue); width: 18px; height: 18px; flex-shrink: 0; }
.duo-cta { text-align: center; margin-top: 44px; }

@media (max-width: 860px) {
  .duo-grid { grid-template-columns: 1fr; }
}

/* ============================================================= */
/*  COMO FUNCIONA                                                 */
/* ============================================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
}
.step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  position: relative;
}
.step__number {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--grad);
  color: var(--white);
  font-weight: 800; font-size: 1.15rem;
  margin-bottom: 18px;
}
.step h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--text-soft); font-size: 0.95rem; }

/* ============================================================= */
/*  MÉTRICAS                                                      */
/* ============================================================= */
.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  text-align: center;
  background: var(--dark);
  border-radius: var(--radius);
  padding: 56px 32px;
  background-image: radial-gradient(50% 100% at 50% 0%, rgba(36,62,255,0.22), transparent 70%);
}
.metric__value {
  display: block;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1;
  /* gradiente mais claro para ter contraste sobre o fundo escuro */
  background: linear-gradient(135deg, #8DA0FF 0%, #3A54FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--blue-light);
}
.metric__label { color: #aeb8c4; font-size: 1rem; margin-top: 10px; display: block; }

/* ============================================================= */
/*  PLANOS                                                        */
/* ============================================================= */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.plan {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

/* Card destacado (Mais Popular) */
.plan--featured {
  background: var(--dark);
  color: var(--white);
  border: 1px solid rgba(110, 134, 255, 0.6);
  box-shadow: var(--shadow-glow);
  transform: scale(1.03);
}
.plan--featured:hover { transform: scale(1.03) translateY(-4px); }
.plan--featured .plan__from { color: #aeb8c4; }
.plan--featured .plan__features li { color: #e3e9ef; }
.plan--featured .plan__icon { color: var(--blue-light); }
.plan--featured .plan__onboarding { color: var(--blue-light); }
.plan--featured .plan__features svg,
.plan--featured .plan__features [data-lucide] { color: var(--blue-light); }

.plan__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--grad);
  color: var(--white);
  font-weight: 800; font-size: 0.78rem; letter-spacing: 0.03em;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.plan__icon {
  display: grid; place-items: center;
  width: 50px; height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(36,62,255,0.14), rgba(29,52,208,0.14));
  color: var(--blue);
  margin-bottom: 18px;
}
.plan__name { font-size: 1.3rem; font-weight: 800; }
.plan__from { color: var(--text-soft); font-size: 0.9rem; margin-top: 12px; }
.plan__price { font-size: 2.6rem; font-weight: 800; line-height: 1; margin-top: 4px; letter-spacing: -0.02em; }
.plan__period { font-size: 1rem; font-weight: 600; color: var(--text-soft); }
.plan--featured .plan__period { color: #aeb8c4; }
.plan__onboarding { color: var(--blue); font-weight: 700; font-size: 0.95rem; margin-top: 8px; }

.plan__features {
  display: flex; flex-direction: column; gap: 12px;
  margin: 26px 0 30px;
  flex-grow: 1;
}
.plan__features li { display: flex; align-items: center; gap: 10px; font-size: 0.98rem; color: var(--text); }
.plan__features svg, .plan__features [data-lucide] { color: var(--blue); width: 18px; height: 18px; flex-shrink: 0; }

/* Item de feature com título + descrição */
.plan__features li.plan__feature--detail { align-items: flex-start; }
.plan__feature--detail > div { display: flex; flex-direction: column; gap: 3px; }
.plan__feature--detail strong { font-weight: 700; line-height: 1.3; }
.plan__feature--detail span { font-size: 0.84rem; color: var(--text-soft); line-height: 1.45; }
.plan--featured .plan__feature--detail span { color: #aeb8c4; }

.plan__cta { width: 100%; }

/* ============================================================= */
/*  DEPOIMENTOS                                                   */
/* ============================================================= */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  display: flex; flex-direction: column; gap: 16px;
}
.testimonial__stars { color: var(--blue); letter-spacing: 2px; font-size: 1.05rem; }
.testimonial blockquote { font-size: 1.02rem; color: var(--text); flex-grow: 1; }
.testimonial figcaption { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--grad); color: var(--white);
  font-weight: 800; font-size: 0.9rem;
}
.testimonial figcaption strong { display: block; font-size: 0.95rem; }
.testimonial figcaption small { color: var(--text-soft); font-size: 0.85rem; }

/* ============================================================= */
/*  FAQ / ACORDEÃO                                                */
/* ============================================================= */
.accordion { display: flex; flex-direction: column; gap: 12px; }
.accordion__item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.accordion__item.is-open { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.accordion__trigger {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 22px;
  font-size: 1.05rem; font-weight: 700; text-align: left;
  color: var(--text);
}
.accordion__chevron { color: var(--blue); transition: transform .25s ease; flex-shrink: 0; }
.accordion__item.is-open .accordion__chevron { transform: rotate(180deg); }
.accordion__panel { padding: 0 22px 20px; color: var(--text-soft); }

/* ============================================================= */
/*  CTA FINAL                                                     */
/* ============================================================= */
.final-cta { padding: 80px 0; }
.final-cta__box {
  text-align: center;
  background: var(--dark);
  border-radius: 28px;
  padding: 64px 32px;
  background-image:
    radial-gradient(60% 120% at 50% 0%, rgba(36,62,255,0.30), transparent 60%),
    radial-gradient(50% 120% at 80% 100%, rgba(29,52,208,0.28), transparent 60%);
  border: 1px solid rgba(110, 134, 255, 0.3);
}
.final-cta__box h2 { color: var(--white); font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 800; letter-spacing: -0.02em; }
.final-cta__box p { color: #c4ccd6; font-size: 1.1rem; margin: 14px 0 30px; }

/* ============================================================= */
/*  FOOTER                                                        */
/* ============================================================= */
.footer { background: var(--dark); color: #c4ccd6; padding: 64px 0 28px; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__desc { margin: 16px 0 20px; font-size: 0.95rem; max-width: 280px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  color: var(--white);
  transition: background .2s ease, color .2s ease;
}
.footer__social a:hover { background: var(--grad); color: var(--white); }

.footer__col h4 { color: var(--white); font-size: 1rem; margin-bottom: 16px; }
.footer__col a { display: block; padding: 6px 0; font-size: 0.95rem; transition: color .15s ease; }
.footer__col a:hover { color: var(--blue-light); }

.footer__bottom { padding-top: 24px; }
.footer__bottom p { font-size: 0.88rem; color: #8995a3; text-align: center; }

/* ============================================================= */
/*  ANIMAÇÃO DE REVEAL (IntersectionObserver)                     */
/* ============================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================= */
/*  RESPONSIVO                                                    */
/* ============================================================= */
@media (max-width: 1024px) {
  .hero__grid { gap: 36px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  /* Navbar -> menu mobile */
  .nav, .navbar__actions { display: none; }
  .hamburger { display: flex; }

  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__content { order: 1; }
  .hero__visual { order: 2; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__ctas, .hero__trust { justify-content: center; }
  .hero__floating--1 { left: 0; }
  .hero__floating--2 { right: 0; }

  .plans { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .plan--featured { transform: none; }
  .plan--featured:hover { transform: translateY(-4px); }
}

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .metrics { grid-template-columns: 1fr; gap: 32px; padding: 40px 24px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .container { padding: 0 18px; }
}

@media (max-width: 380px) {
  .hero__title { font-size: 1.9rem; }
  .btn--lg { width: 100%; }
  .hero__ctas { flex-direction: column; }
}

/* ============================================================= */
/*  PÁGINA DE INTEGRAÇÕES                                         */
/*  (componentes específicos — mesmas variáveis/tokens da marca)  */
/* ============================================================= */

/* Item de menu ativo (página atual) */
.nav__link.is-active { color: var(--blue); background: var(--light); }
.mobile-menu__link.is-active { color: var(--blue); background: var(--light); }

/* ---- Hero da página (variação centralizada do hero) ---- */
.page-hero {
  position: relative;
  padding: 72px 0 64px;
  text-align: center;
  background:
    radial-gradient(60% 50% at 80% 0%, rgba(36, 62, 255, 0.12), transparent 70%),
    radial-gradient(50% 45% at 5% 20%, rgba(36, 62, 255, 0.10), transparent 70%);
  overflow: hidden;
}
.page-hero__inner { max-width: 760px; margin: 0 auto; }
.page-hero__title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-top: 4px;
}
.page-hero__subtitle {
  margin: 22px auto 0;
  max-width: 600px;
  font-size: 1.15rem;
  color: var(--text-soft);
}
.page-hero__ctas {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 14px; margin-top: 34px;
}

/* ---- Barra de busca + filtros ---- */
.integrations-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
}

.integrations-search {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1 1 280px;
  max-width: 380px;
}
.integrations-search [data-lucide] {
  position: absolute;
  left: 16px;
  width: 18px; height: 18px;
  color: var(--text-soft);
  pointer-events: none;
}
.integrations-search__input {
  width: 100%;
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--text);
  padding: 13px 18px 13px 44px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.integrations-search__input::placeholder { color: var(--text-soft); }
.integrations-search__input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(36, 62, 255, 0.12);
}

.filter-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-chip {
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--text-soft);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color .15s ease, background .15s ease, border-color .15s ease, transform .15s ease;
}
.filter-chip:hover { color: var(--blue); border-color: var(--blue); transform: translateY(-1px); }
.filter-chip.is-active {
  background: var(--grad);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(36, 62, 255, 0.28);
}

/* ---- Grade de cards de integração ---- */
.integrations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.integration-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.integration-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.integration-card[hidden] { display: none; }

.integration-card__logo {
  display: grid; place-items: center;
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(36,62,255,0.12), rgba(29,52,208,0.12));
  color: var(--blue);
  margin-bottom: 18px;
  overflow: hidden;
}
.integration-card__logo img { width: 32px; height: 32px; object-fit: contain; }

/* Selo "Popular" — mesmo estilo gradiente dos selos da home (.plan__badge) */
.integration-card__badge {
  position: absolute;
  top: 22px; right: 22px;
  background: var(--grad);
  color: var(--white);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  padding: 5px 13px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.integration-card__name { font-size: 1.18rem; font-weight: 700; margin-bottom: 2px; }
.integration-card__category {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.integration-card__desc { color: var(--text-soft); font-size: 0.96rem; }

/* Lista de recursos com check verde */
.integration-card__features {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 18px;
}
.integration-card__features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.92rem; color: var(--text);
}
.integration-card__features svg,
.integration-card__features [data-lucide] {
  color: var(--green); width: 18px; height: 18px; flex-shrink: 0;
}

/* Estado vazio da busca/filtro */
.integrations-empty {
  text-align: center;
  color: var(--text-soft);
  font-size: 1.05rem;
  margin-top: 16px;
}
.integrations-empty a { color: var(--blue); font-weight: 700; }
.integrations-empty a:hover { text-decoration: underline; }

/* ---- Responsivo da página de integrações ---- */
@media (max-width: 1024px) {
  .integrations-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .integrations-toolbar { flex-direction: column; align-items: stretch; }
  .integrations-search { max-width: none; }
  .filter-chips { justify-content: center; }
}
@media (max-width: 600px) {
  .integrations-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 56px 0 48px; }
}

/* ============================================================= */
/*  PÁGINA DE PARCEIROS                                           */
/* ============================================================= */

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.partner-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.partner-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }

.partner-card__header {
  display: flex;
  align-items: center;
  gap: 18px;
}

.partner-card__logo-wrap {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 18px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  background: var(--light);
}
.partner-card__logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-card__identity {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.partner-card__segment {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
}

.partner-card__name {
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.partner-card__desc {
  color: var(--text-soft);
  font-size: 0.97rem;
  line-height: 1.7;
}

.partner-card__highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}
.partner-card__highlights li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.partner-card__highlight-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(36,62,255,0.10), rgba(29,52,208,0.10));
  color: var(--blue);
  margin-top: 1px;
}
.partner-card__highlight-icon [data-lucide],
.partner-card__highlight-icon svg { width: 17px; height: 17px; }

.partner-card__highlights strong {
  display: block;
  font-size: 0.97rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.partner-card__highlights span {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.5;
}

.partner-card__instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  background: var(--light);
  border: 1.5px solid var(--border);
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 700;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.partner-card__instagram:hover {
  background: var(--grad);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-1px);
}
.partner-card__instagram svg { flex-shrink: 0; }

/* ---- Responsivo parceiros ---- */
@media (max-width: 900px) {
  .partners-grid { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
}
@media (max-width: 600px) {
  .partner-card { padding: 26px 22px; }
}

/* ============================================================= */
/*  PÁGINA DE CONTATO                                             */
/* ============================================================= */

/* Trust pills abaixo do subtitle do hero */
.contact-hero__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}
.contact-hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-soft);
}
.contact-hero__trust svg { color: var(--blue); flex-shrink: 0; }

/* ---- Grade de canais de contato ---- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }

/* Card destaque (WhatsApp) */
.contact-card--featured {
  background: var(--dark);
  border-color: rgba(110, 134, 255, 0.4);
  box-shadow: var(--shadow-glow);
}
.contact-card--featured:hover { transform: translateY(-4px); box-shadow: 0 24px 64px rgba(36,62,255,0.40); border-color: transparent; }
.contact-card--featured .contact-card__label { color: var(--blue-light); }
.contact-card--featured .contact-card__title { color: var(--white); }
.contact-card--featured .contact-card__desc { color: #aeb8c4; }
.contact-card--featured .contact-card__info li { color: #aeb8c4; }
.contact-card--featured .contact-card__info [data-lucide],
.contact-card--featured .contact-card__info svg { color: var(--blue-light); }

.contact-card__icon {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(36,62,255,0.12), rgba(29,52,208,0.12));
  color: var(--blue);
  margin-bottom: 22px;
}
.contact-card__icon [data-lucide],
.contact-card__icon svg { width: 28px; height: 28px; }

.contact-card__icon--whatsapp {
  background: linear-gradient(135deg, rgba(37,211,102,0.18), rgba(18,140,68,0.18));
  color: #16a34a;
}
.contact-card--featured .contact-card__icon--whatsapp {
  background: linear-gradient(135deg, rgba(37,211,102,0.28), rgba(18,140,68,0.28));
}

.contact-card__icon--instagram {
  background: linear-gradient(135deg, rgba(225,48,108,0.14), rgba(193,53,132,0.14));
  color: #e1306c;
}

.contact-card__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}

.contact-card__title {
  font-size: 1.22rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.contact-card__desc {
  font-size: 0.97rem;
  color: var(--text-soft);
  line-height: 1.65;
  margin-bottom: 22px;
  flex-grow: 1;
}

.contact-card__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.contact-card__info li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-soft);
}
.contact-card__info [data-lucide],
.contact-card__info svg { width: 16px; height: 16px; color: var(--blue); flex-shrink: 0; }

.contact-card__btn { width: 100%; justify-content: center; margin-top: auto; }

.contact-card__btn--instagram:hover {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--white);
  border-color: transparent;
}

/* ---- Clientes na página de contato ---- */
.contact-clients {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 32px;
  margin-bottom: 32px;
}

.contact-client {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 130px;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease;
}
.contact-client:hover { transform: translateY(-4px); }

.contact-client__avatar {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--border);
  background: var(--light);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-client:hover .contact-client__avatar {
  border-color: var(--blue);
  box-shadow: 0 8px 24px rgba(36,62,255,0.18);
}
.contact-client__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.3);
  transition: filter .2s ease;
}
.contact-client:hover .contact-client__avatar img { filter: grayscale(0); }

.contact-client__name {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.contact-client__segment {
  font-size: 0.78rem;
  color: var(--text-soft);
  font-weight: 600;
}

.contact-clients__cta {
  text-align: center;
  font-size: 0.97rem;
  color: var(--text-soft);
}
.contact-clients__cta a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-clients__cta a:hover { color: var(--blue-deep); }

/* Botões duplos no CTA final */
.contact-final-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 4px;
}
.contact-final-btns__email {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.20);
}
.contact-final-btns__email:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.40);
  transform: translateY(-2px);
}

/* ============================================================= */
/*  PÁGINA DE INDICAÇÕES                                          */
/* ============================================================= */

/* ---- Recompensas ---- */
.ind-rewards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 820px;
  margin: 0 auto 28px;
}

.ind-reward-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform .2s ease, box-shadow .2s ease;
}
.ind-reward-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.ind-reward-card--featured {
  background: var(--dark);
  border-color: rgba(110, 134, 255, 0.5);
  box-shadow: var(--shadow-glow);
}
.ind-reward-card--featured:hover { transform: translateY(-4px); box-shadow: 0 24px 64px rgba(36,62,255,0.40); }

.ind-reward-card__badge {
  position: absolute;
  top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--grad);
  color: var(--white);
  font-weight: 800; font-size: 0.78rem; letter-spacing: 0.03em;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.ind-reward-card__icon {
  display: grid; place-items: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(36,62,255,0.12), rgba(29,52,208,0.12));
  color: var(--blue);
  margin-bottom: 18px;
}
.ind-reward-card--featured .ind-reward-card__icon {
  background: linear-gradient(135deg, rgba(110,134,255,0.22), rgba(36,62,255,0.22));
  color: var(--blue-light);
}
.ind-reward-card__icon [data-lucide] { width: 24px; height: 24px; }

.ind-reward-card__level {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.ind-reward-card--featured .ind-reward-card__level { color: var(--blue-light); }

.ind-reward-card__amount {
  font-size: clamp(3rem, 7vw, 4.4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--blue);
  margin-bottom: 18px;
}
.ind-reward-card--featured .ind-reward-card__amount {
  background: linear-gradient(135deg, #8DA0FF 0%, #3A54FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.ind-reward-card__pct {
  font-size: 2.2rem;
}

.ind-reward-card__desc {
  font-size: 0.97rem;
  color: var(--text-soft);
  line-height: 1.65;
  margin-bottom: 24px;
  flex-grow: 1;
}
.ind-reward-card--featured .ind-reward-card__desc { color: #aeb8c4; }
.ind-reward-card__desc strong { color: var(--text); font-weight: 700; }
.ind-reward-card--featured .ind-reward-card__desc strong { color: var(--white); }

.ind-reward-card__items {
  display: flex; flex-direction: column; gap: 10px;
}
.ind-reward-card__items li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.93rem; font-weight: 600;
  color: var(--text);
}
.ind-reward-card--featured .ind-reward-card__items li { color: #c4ccd6; }
.ind-reward-card__items [data-lucide] { color: var(--blue); width: 17px; height: 17px; flex-shrink: 0; }
.ind-reward-card--featured .ind-reward-card__items [data-lucide] { color: var(--blue-light); }

.ind-rewards__note {
  display: flex; align-items: flex-start; gap: 10px;
  max-width: 820px; margin: 0 auto;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.55;
}
.ind-rewards__note [data-lucide] { color: var(--blue); flex-shrink: 0; width: 18px; height: 18px; margin-top: 2px; }

/* ---- Steps ---- */
.ind-steps { grid-template-columns: repeat(4, 1fr); }

/* ---- Formulário ---- */
.ind-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.ind-form__fieldset {
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ind-form__legend {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  padding: 0;
  letter-spacing: -0.01em;
}

.ind-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ind-form__group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.ind-form__label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}
.ind-form__label span { color: var(--blue); }

.ind-form__input {
  font-family: var(--font);
  font-size: 0.97rem;
  color: var(--text);
  background: var(--light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
  width: 100%;
}
.ind-form__input::placeholder { color: var(--text-soft); }
.ind-form__input:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(36, 62, 255, 0.10);
}

.ind-form__textarea { resize: vertical; min-height: 110px; }

.ind-form__submit {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  padding: 16px;
}

.ind-form__note {
  text-align: center;
  font-size: 0.84rem;
  color: var(--text-soft);
  margin-top: -12px;
}
.ind-form__note span { color: var(--blue); }

/* ---- Responsivo indicações ---- */
@media (max-width: 860px) {
  .ind-rewards { grid-template-columns: 1fr; max-width: 480px; }
  .ind-steps { grid-template-columns: repeat(2, 1fr); }
  .ind-form { padding: 32px 24px; }
  .ind-form__row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .ind-steps { grid-template-columns: 1fr; }
  .ind-form { padding: 24px 18px; }
}

/* ---- Responsivo contato ---- */
@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
@media (max-width: 600px) {
  .contact-card { padding: 28px 22px; }
  .contact-clients { gap: 16px 20px; }
  .contact-client { width: 110px; }
  .contact-hero__trust { flex-direction: column; align-items: center; gap: 12px; }
}
