/* ── Tokens ─────────────────────────────────────────────────────────────────── */
:root {
  --bg:      #001810;
  --surface: #040f08;
  --green:   #004225;
  --accent:  #00a86b;
  --text:    #f2f2f0;
  --muted:   #6b7f74;
  --border:  rgba(255,255,255,.08);
  --font:    'Rajdhani', sans-serif;
  --max-w:   1080px;
}

/* ── Reset ──────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 125%; scroll-padding-top: 90px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.6;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Typography ─────────────────────────────────────────────────────────────── */
h1 { font-size: clamp(3rem, 8vw, 6rem);   font-weight: 700; line-height: 1.02; letter-spacing: -.03em; }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; line-height: 1.1;  letter-spacing: -.025em; }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; line-height: 1.2;  letter-spacing: -.02em; }

/* ── Layout ─────────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

/* ── Nav ────────────────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0;
  background: #000;
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__logo img { height: 48px; margin-block: -12px; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav__links a {
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .15s;
}
.nav__links a:hover,
.nav__links a.active { color: var(--text); }
.nav__cta a {
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: color .15s;
}
.nav__cta a:hover { color: var(--text); }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 26px;
  height: 22px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  transition: transform .2s, opacity .2s;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Buttons ─────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .7em 1.8em;
  border-radius: 4px;
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .15s, color .15s, border-color .15s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: var(--text);
  border-color: var(--green);
}
.btn-primary:hover { background: var(--accent); border-color: var(--accent); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(255,255,255,.25);
}
.btn-outline:hover { border-color: var(--text); }
.btn-sm { padding: .5em 1.2em; font-size: .82rem; }
.btn-lg { padding: .85em 2.4em; font-size: 1.05rem; }

/* ── Hero ────────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 65% 30%, rgba(0,66,37,.5) 0%, transparent 65%);
  pointer-events: none;
}

/* Hero background slideshow — crossfade entre 3 imagens, sem JS */
.hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: hero-slide-fade 36s infinite;
}
.hero__slide:nth-child(1) { animation-delay: 0s; }
.hero__slide:nth-child(2) { animation-delay: 6s; }
.hero__slide:nth-child(3) { animation-delay: 12s; }
.hero__slide:nth-child(4) { animation-delay: 18s; }
.hero__slide:nth-child(5) { animation-delay: 24s; }
.hero__slide:nth-child(6) { animation-delay: 30s; }
@keyframes hero-slide-fade {
  0%     { opacity: 0; }
  2.5%   { opacity: 1; }
  14%    { opacity: 1; }
  16.6%  { opacity: 0; }
  100%   { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__slide { animation: none; opacity: 0; }
  .hero__slide:first-child { opacity: 1; }
}
/* Variante com 2 imagens (páginas de produto) — timing independente do carrossel de 6 da home */
@keyframes hero-slide-fade-pair {
  0%   { opacity: 0; }
  8%   { opacity: 1; }
  42%  { opacity: 1; }
  50%  { opacity: 0; }
  100% { opacity: 0; }
}
.hero__slides--pair .hero__slide {
  animation-name: hero-slide-fade-pair;
  animation-duration: 12s;
}
.hero__slides--pair .hero__slide:nth-child(1) { animation-delay: 0s; }
.hero__slides--pair .hero__slide:nth-child(2) { animation-delay: 6s; }

/* Variante com 4 imagens (Uai Fit — fitness + comida) */
@keyframes hero-slide-fade-quad {
  0%   { opacity: 0; }
  4%   { opacity: 1; }
  21%  { opacity: 1; }
  25%  { opacity: 0; }
  100% { opacity: 0; }
}
.hero__slides--quad .hero__slide {
  animation-name: hero-slide-fade-quad;
  animation-duration: 24s;
}
.hero__slides--quad .hero__slide:nth-child(1) { animation-delay: 0s; }
.hero__slides--quad .hero__slide:nth-child(2) { animation-delay: 6s; }
.hero__slides--quad .hero__slide:nth-child(3) { animation-delay: 12s; }
.hero__slides--quad .hero__slide:nth-child(4) { animation-delay: 18s; }
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 80% 70% at 65% 30%, rgba(0,66,37,.55) 0%, transparent 65%),
    linear-gradient(100deg, rgba(0,24,16,.94) 0%, rgba(0,24,16,.8) 45%, rgba(0,24,16,.55) 100%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero__eyebrow {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}
.hero h1 { max-width: 14ch; margin-bottom: 2rem; }
.hero h1 em { font-style: italic; color: var(--accent); }
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
  max-width: 48ch;
  margin-bottom: 3rem;
  font-weight: 500;
  line-height: 1.65;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Divider ─────────────────────────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--border);
}

/* ── Section ─────────────────────────────────────────────────────────────────── */
.section { padding: 7rem 0; }
.section + .section { border-top: 1px solid var(--border); }
.section--dark { background: #000; }

.section__label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

/* ── Manifesto ───────────────────────────────────────────────────────────────── */
.manifesto {
  padding: 8rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.manifesto__quote {
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -.025em;
  max-width: 22ch;
}
.manifesto__quote em {
  font-style: italic;
  color: var(--accent);
}

/* ── Products ────────────────────────────────────────────────────────────────── */
.products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.product-panel {
  background: var(--bg);
  padding: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: background .2s;
}
.product-panel:hover { background: rgba(0,66,37,.08); }
.product-panel__tag {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}
.product-panel h3 { font-style: italic; }
.product-panel__desc {
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.65;
  max-width: 38ch;
}
.product-panel__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  font-size: .92rem;
  color: var(--muted);
}
.product-panel__list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
}
.product-panel__list li::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: .55em;
  flex-shrink: 0;
}
.product-panel__footer { margin-top: auto; }

/* ── Numbers ─────────────────────────────────────────────────────────────────── */
.numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.number-item {
  background: var(--bg);
  padding: 3rem 2rem;
}
.number-item__value {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  color: var(--text);
  letter-spacing: -.04em;
}
.number-item__label {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .75rem;
}

/* ── Pricing ─────────────────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.pricing-plan {
  background: var(--bg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.pricing-plan.featured { background: rgba(0,66,37,.12); }
.pricing-plan__name {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}
.pricing-plan__price {
  font-size: 2.4rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -.04em;
  line-height: 1;
}
.pricing-plan__price sub {
  font-size: .9rem;
  font-weight: 400;
  font-style: normal;
  color: var(--muted);
  vertical-align: baseline;
}
.pricing-plan__note { font-size: .85rem; color: var(--muted); }
.pricing-plan__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  font-size: .88rem;
  color: var(--muted);
  flex: 1;
  margin-top: .5rem;
}
.pricing-plan__list li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
}
.pricing-plan__list li::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: .55em;
  flex-shrink: 0;
}
.pricing-plan a { margin-top: 1rem; }

/* ── CTA form ────────────────────────────────────────────────────────────────── */
.cta-section { padding: 8rem 0; }
.cta-section h2 { max-width: 20ch; margin-bottom: 3.5rem; }
.cta-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.cta-layout__left p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 36ch;
}

/* ── Form ────────────────────────────────────────────────────────────────────── */
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .3rem; }
.form-group label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-bottom-color: rgba(255,255,255,.18);
  border-radius: 0;
  padding: .75em 0;
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  width: 100%;
  transition: border-color .15s;
  outline: none;
  background: transparent;
  border-left: none;
  border-right: none;
  border-top: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-bottom-color: var(--accent); }
.form-group select option { background: #001810; }
.form-group textarea { resize: none; min-height: 80px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }
.form-error { font-size: .78rem; color: #f87171; }
.honeypot { display: none !important; }
.form-feedback {
  padding: .9rem;
  font-weight: 600;
  font-size: .9rem;
  display: none;
}
.form-feedback.success { color: var(--accent); display: block; }
.form-feedback.error   { color: #f87171; display: block; }

/* ── Footer ──────────────────────────────────────────────────────────────────── */
.footer {
  padding: 4rem 0 3rem;
  border-top: 1px solid var(--border);
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer__brand p {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.65;
  max-width: 30ch;
  margin-top: 1rem;
}
.footer__col strong {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 1rem;
}
.footer__col a {
  display: block;
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: .5rem;
  transition: color .15s;
}
.footer__col a:hover { color: var(--text); }
.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: .8rem;
  color: var(--muted);
}

/* ── Admin ───────────────────────────────────────────────────────────────────── */
.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.admin-login__box {
  width: 100%;
  max-width: 340px;
}
.admin-login__box h1 { font-size: 1.4rem; margin-bottom: 2rem; }
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 200px;
  border-right: 1px solid var(--border);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex-shrink: 0;
}
.admin-sidebar a {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: .4rem 0;
  border-bottom: 1px solid transparent;
  transition: color .15s;
}
.admin-sidebar a:hover, .admin-sidebar a.active { color: var(--text); }
.admin-main { flex: 1; padding: 2.5rem; overflow-x: auto; }
.admin-main h1 { font-size: 1.4rem; margin-bottom: 2rem; }
.filters-bar { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; align-items: center; }
.filters-bar select,
.filters-bar input[type="date"] {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 0;
  padding: .4em .8em;
  color: var(--text);
  font-family: var(--font);
  font-size: .82rem;
}
.leads-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.leads-table th {
  text-align: left;
  padding: .5rem 1rem;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
.leads-table td { padding: .75rem 1rem; border-bottom: 1px solid rgba(255,255,255,.04); }
.status-badge {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .2em .6em;
}
.status-novo        { color: var(--accent); }
.status-contatado   { color: #60a5fa; }
.status-qualificado { color: #facc15; }
.status-descartado  { color: var(--muted); }
.pagination { display: flex; gap: 4px; margin-top: 1.5rem; flex-wrap: wrap; }
.pagination a, .pagination span {
  padding: .4em .8em;
  border: 1px solid var(--border);
  font-size: .8rem;
  color: var(--muted);
  transition: color .15s;
}
.pagination a:hover { color: var(--text); }
.pagination span.current { border-color: var(--accent); color: var(--accent); }
.chart-wrap {
  border: 1px solid var(--border);
  padding: 1.5rem;
  margin-bottom: 2rem;
  max-height: 280px;
}

/* ── Utilities ───────────────────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .5rem;
}
.text-center  { text-align: center; }
.text-muted   { color: var(--muted); }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.section-title { margin-bottom: .5rem; }
.section-sub   { color: var(--muted); font-size: 1rem; max-width: 52ch; }

/* Section backgrounds (legado) */
section.dark,   .section.dark   { background: var(--surface); }
section.darker, .section.darker { background: var(--bg); }

/* ── Feature cards (subpáginas) ──────────────────────────────────────────────── */
.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 2rem;
}
.product-card {
  background: var(--bg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.product-card__icon { display: none; }
.product-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -.01em;
}
.product-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  font-size: .9rem;
  color: var(--muted);
}
.product-card__list li { display: flex; align-items: flex-start; gap: .5rem; }
.product-card__list li::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: .55em;
  flex-shrink: 0;
}

/* ── Pricing cards (subpáginas) ──────────────────────────────────────────────── */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 2rem;
}
.pricing-card {
  background: var(--bg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.pricing-card.featured { background: rgba(0,66,37,.12); }
.pricing-card__name {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.pricing-card__price {
  font-size: 2.2rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -.04em;
  line-height: 1;
}
.pricing-card__price span { font-size: .85rem; font-weight: 400; font-style: normal; color: var(--muted); }
.pricing-card__desc { font-size: .85rem; color: var(--muted); }
.pricing-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  font-size: .88rem;
  color: var(--muted);
  flex: 1;
  margin-top: .5rem;
}
.pricing-card__list li { display: flex; align-items: flex-start; gap: .5rem; }
.pricing-card__list li::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: .55em;
  flex-shrink: 0;
}

/* CTA section simples */
.cta-section { padding: 6rem 0; text-align: center; }
.cta-section h2 { margin-bottom: 1rem; }
.cta-section p  { color: var(--muted); margin-bottom: 2rem; }

/* ── Responsive ──────────────────────────────────────────────────────────────── */
@media (max-width: 800px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #000;
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height .25s ease, opacity .2s ease;
  }
  .nav__links.is-open {
    max-height: 70vh;
    opacity: 1;
    visibility: visible;
    overflow-y: auto;
  }
  .nav__links li { width: 100%; }
  .nav__links a {
    display: block;
    width: 100%;
    padding: 1rem clamp(1.25rem, 4vw, 2.5rem);
    border-top: 1px solid var(--border);
  }
  .products    { grid-template-columns: 1fr; }
  .numbers     { grid-template-columns: 1fr 1fr; }
  .cta-layout  { grid-template-columns: 1fr; gap: 3rem; }
  .footer__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row    { grid-template-columns: 1fr; }
  .admin-layout { flex-direction: column; }
  .admin-sidebar { width: 100%; flex-direction: row; flex-wrap: wrap; }
  .hero { padding: 6rem 0 4rem; min-height: auto; }
  .manifesto   { padding: 5rem 0; }
}
@media (max-width: 500px) {
  .numbers { grid-template-columns: 1fr; }
}
