:root {
      --bg: #050505;
      --bg-elevated: #111111;
      --bg-card: #161616;
      --border: rgba(255, 255, 255, 0.08);
      --border-strong: rgba(255, 255, 255, 0.2);
      --text: #f5f5f5;
      --text-muted: #a3a3a3;
      --green: #9acd32;
      --green-bright: #b8e04a;
      --green-dim: rgba(154, 205, 50, 0.12);
      --green-glow: rgba(154, 205, 50, 0.35);
      --on-green: #ffffff;
      --header-bg: rgba(5, 5, 5, 0.9);
      --header-bg-solid: rgba(5, 5, 5, 0.98);
      --glow-top: rgba(154, 205, 50, 0.08);
      --glow-side: rgba(154, 205, 50, 0.04);
      --cta-band: rgba(154, 205, 50, 0.04);
      --error-bg: rgba(239, 68, 68, 0.1);
      --error-text: #fca5a5;
      --radius: 16px;
      --radius-sm: 10px;
      --max-width: 1120px;
      --font: 'Inter', system-ui, -apple-system, sans-serif;
      color-scheme: dark;
    }

    /* Bandas alternadas — impacto visual estilo landing de alta conversão */
    .section-band {
      background: var(--bg);
      color: var(--text);
    }

    .section-band--dark {
      --bg: #050505;
      --bg-elevated: #111111;
      --bg-card: #161616;
      --border: rgba(255, 255, 255, 0.08);
      --border-strong: rgba(255, 255, 255, 0.2);
      --text: #f5f5f5;
      --text-muted: #a3a3a3;
      --green: #9acd32;
      --green-bright: #b8e04a;
      --green-dim: rgba(154, 205, 50, 0.12);
      --green-glow: rgba(154, 205, 50, 0.35);
      --on-green: #ffffff;
      --cta-band: rgba(154, 205, 50, 0.06);
      color-scheme: dark;
    }

    .section-band--light {
      --bg: #f3f5ef;
      --bg-elevated: #ffffff;
      --bg-card: #ffffff;
      --border: rgba(18, 28, 12, 0.1);
      --border-strong: rgba(18, 28, 12, 0.18);
      --text: #141914;
      --text-muted: #5a6354;
      --green: #7aab1a;
      --green-bright: #5f8f10;
      --green-dim: rgba(122, 171, 26, 0.12);
      --green-glow: rgba(122, 171, 26, 0.28);
      --on-green: #ffffff;
      --cta-band: rgba(122, 171, 26, 0.08);
      color-scheme: light;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 5.5rem;
    }

    body {
      font-family: var(--font);
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      transition: background-color 0.25s ease, color 0.25s ease;
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 50% at 50% -20%, var(--glow-top), transparent),
        radial-gradient(ellipse 60% 40% at 100% 50%, var(--glow-side), transparent);
      pointer-events: none;
      z-index: 0;
    }

    .container {
      width: min(100% - 2rem, var(--max-width));
      margin-inline: auto;
      position: relative;
      z-index: 1;
    }

    /* Header */
    header {
      position: sticky;
      top: 0;
      z-index: 100;
      backdrop-filter: blur(12px);
      background: var(--header-bg);
      border-bottom: 1px solid var(--border);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 0;
    }

    .logo-link {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      text-decoration: none;
      color: inherit;
    }

    .logo-link img,
    .site-logo {
      height: 40px;
      width: auto;
    }

    /* Header permanece escuro — usa logo dark */
    .site-logo--light { display: none; }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.6rem 1.25rem;
      background: var(--green);
      color: var(--on-green);
      font-weight: 600;
      font-size: 0.875rem;
      border-radius: 999px;
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .nav-cta:hover {
      transform: translateY(-1px);
      box-shadow: 0 8px 24px var(--green-glow);
    }

    /* Hero */
    .hero {
      padding: 5rem 0 4rem;
      text-align: center;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.4rem 1rem;
      background: var(--green-dim);
      border: 1px solid rgba(154, 205, 50, 0.25);
      border-radius: 999px;
      font-size: 0.8125rem;
      font-weight: 600;
      color: var(--green-bright);
      margin-bottom: 1.5rem;
      animation: pulse 2.5s ease-in-out infinite;
    }

    .badge-dot {
      width: 8px;
      height: 8px;
      background: var(--green-bright);
      border-radius: 50%;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.7; }
    }

    .hero-logo {
      width: min(280px, 70vw);
      margin: 0 auto 2rem;
      display: block;
    }

    .hero h1 {
      font-size: clamp(1.75rem, 5vw, 2.75rem);
      font-weight: 700;
      line-height: 1.2;
      max-width: 720px;
      margin: 0 auto 1.25rem;
      letter-spacing: -0.02em;
    }

    .hero h1 span { color: var(--green-bright); }

    .hero-sub {
      font-size: clamp(1rem, 2.5vw, 1.2rem);
      color: var(--text-muted);
      max-width: 560px;
      margin: 0 auto 2.5rem;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: center;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.875rem 1.75rem;
      font-size: 1rem;
      font-weight: 600;
      border-radius: 999px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
      font-family: inherit;
    }

    .btn-primary {
      background: var(--green);
      color: var(--on-green);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 32px var(--green-glow);
    }

    .btn-secondary {
      background: transparent;
      color: var(--text);
      border: 1px solid var(--border);
    }

    .btn-secondary:hover {
      border-color: var(--border-strong);
      background: var(--bg-elevated);
    }

    /* Sections */
    section { padding: 4rem 0; }

    .section-label {
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--green);
      margin-bottom: 0.75rem;
    }

    .section-title {
      font-size: clamp(1.5rem, 4vw, 2rem);
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: 1rem;
    }

    .section-desc {
      color: var(--text-muted);
      max-width: 600px;
      margin-bottom: 2.5rem;
    }

    /* Features grid */
    .features-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.25rem;
    }

    @media (min-width: 640px) {
      .features-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 960px) {
      .features-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .feature-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.5rem;
      transition: border-color 0.2s, transform 0.2s;
    }

    .feature-card:hover {
      border-color: rgba(154, 205, 50, 0.2);
      transform: translateY(-2px);
    }

    .feature-icon {
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--green-dim);
      border-radius: var(--radius-sm);
      font-size: 1.25rem;
      margin-bottom: 1rem;
    }

    .feature-card h3 {
      font-size: 1.0625rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .feature-card p {
      font-size: 0.9375rem;
      color: var(--text-muted);
    }

    /* Agents */
    .agents-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1rem;
    }

    .agent-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.25rem;
      text-align: center;
    }

    .agent-card .emoji { font-size: 2rem; margin-bottom: 0.75rem; }

    .agent-card h3 {
      font-size: 0.9375rem;
      font-weight: 600;
      margin-bottom: 0.35rem;
    }

    .agent-card p {
      font-size: 0.8125rem;
      color: var(--text-muted);
    }

    /* Differentiators */
    .diff-list {
      display: grid;
      gap: 1rem;
      max-width: 720px;
    }

    .diff-item {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
      padding: 1.25rem;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
    }

    .diff-check {
      flex-shrink: 0;
      width: 24px;
      height: 24px;
      background: var(--green-dim);
      color: var(--green-bright);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      font-weight: 700;
    }

    .diff-item h3 {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 0.25rem;
    }

    .diff-item p {
      font-size: 0.9375rem;
      color: var(--text-muted);
    }

    /* Form section */
    .cta-section {
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .section-band.cta-section {
      background: var(--bg);
    }

    .cta-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: start;
    }

    @media (max-width: 768px) {
      .cta-wrapper { grid-template-columns: 1fr; }
    }

    .lead-form {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 2rem;
    }

    .form-group {
      margin-bottom: 1.25rem;
    }

    .form-group label {
      display: block;
      font-size: 0.875rem;
      font-weight: 500;
      margin-bottom: 0.4rem;
      color: var(--text-muted);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 0.75rem 1rem;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      color: var(--text);
      font-family: inherit;
      font-size: 1rem;
      transition: border-color 0.2s;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: rgba(154, 205, 50, 0.5);
    }

    .form-group textarea { resize: vertical; min-height: 80px; }

    .form-consent {
      display: flex;
      gap: 0.75rem;
      align-items: flex-start;
      font-size: 0.8125rem;
      color: var(--text-muted);
      margin-bottom: 1.5rem;
    }

    .form-consent input { margin-top: 0.2rem; accent-color: var(--green); }

    .form-submit { width: 100%; }

    .form-success {
      display: none;
      text-align: center;
      padding: 2rem;
    }

    .form-success.visible { display: block; }

    .form-success .icon {
      font-size: 3rem;
      margin-bottom: 1rem;
    }

    .form-success h3 {
      font-size: 1.25rem;
      margin-bottom: 0.5rem;
    }

    .form-success p { color: var(--text-muted); }

    .form-error {
      display: none;
      background: rgba(239, 68, 68, 0.1);
      border: 1px solid rgba(239, 68, 68, 0.3);
      color: var(--error-text);
      padding: 0.75rem 1rem;
      border-radius: var(--radius-sm);
      font-size: 0.875rem;
      margin-bottom: 1rem;
    }

    .form-error.visible { display: block; }

    /* Footer */
    footer {
      padding: 2.5rem 0;
      text-align: center;
    }

    footer p {
      font-size: 0.875rem;
      color: var(--text-muted);
    }

    footer a {
      color: var(--green-bright);
      text-decoration: none;
    }

    footer a:hover { text-decoration: underline; }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      justify-content: center;
      margin-bottom: 1rem;
    }

    .hero-trust {
      font-size: 0.9375rem;
      color: var(--text-muted);
      margin-top: -1.5rem;
      margin-bottom: 2rem;
    }

    .hero-trust strong { color: var(--green-bright); font-weight: 600; }

    .trust-bar {
      padding: 2rem 0;
      border-block: 1px solid var(--border);
    }

    .section-band.trust-bar {
      background: var(--bg);
    }

    .trust-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 1.5rem;
      text-align: center;
    }

    .trust-item strong {
      display: block;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--green-bright);
      margin-bottom: 0.25rem;
    }

    .trust-item span {
      font-size: 0.875rem;
      color: var(--text-muted);
    }

    .footer-social {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 1.25rem;
    }

    .footer-social a {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.5rem 1rem;
      border: 1px solid var(--border);
      border-radius: 999px;
      font-size: 0.875rem;
      color: var(--text);
      text-decoration: none;
      transition: border-color 0.2s, color 0.2s;
    }

    .footer-social a:hover {
      border-color: rgba(154, 205, 50, 0.3);
      color: var(--green-bright);
      text-decoration: none;
    }

    .footer-social a svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
      flex-shrink: 0;
    }

    .form-consent a {
      color: var(--green-bright);
      text-decoration: underline;
    }

    .form-consent a:hover { color: var(--green); }

    .footer-legal {
      font-size: 0.8125rem !important;
      margin-top: 0.75rem;
    }

    .hp-field {
      position: absolute;
      left: -9999px;
      width: 1px;
      height: 1px;
      overflow: hidden;
    }

    .whatsapp-float {
      position: fixed;
      right: 1.25rem;
      bottom: 1.25rem;
      z-index: 200;
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.75rem 1.25rem;
      background: #25d366;
      color: #fff;
      font-size: 0.9375rem;
      font-weight: 600;
      text-decoration: none;
      border-radius: 999px;
      box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .whatsapp-float:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
      color: #fff;
      text-decoration: none;
    }

    .whatsapp-float svg {
      width: 22px;
      height: 22px;
      fill: currentColor;
      flex-shrink: 0;
    }

    @media (max-width: 480px) {
      .whatsapp-float {
        right: 1rem;
        bottom: 1rem;
        padding: 0.7rem 1rem;
        font-size: 0.875rem;
      }
    }

    /* Utilities */
    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      border: 0;
    }

/* === Página legal (privacidade.php) === */
body.legal-page { line-height: 1.7; }

body.legal-page header {
  position: static;
  backdrop-filter: none;
  background: var(--bg);
}

.legal-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
}

.legal-back {
  font-size: 0.875rem;
  color: var(--green-bright);
  text-decoration: none;
}

.legal-back:hover { text-decoration: underline; }

.legal-main { padding: 3rem 0 4rem; }

.legal-main .container { max-width: 760px; }

.legal-content h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.legal-meta {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.legal-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.legal-card h2 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--green-bright);
  margin: 2rem 0 0.75rem;
}

.legal-card h2:first-child { margin-top: 0; }

.legal-card p,
.legal-card li {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.legal-card ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.legal-card a {
  color: var(--green-bright);
  text-decoration: underline;
}

.legal-card strong { color: var(--text); font-weight: 600; }

body.legal-page footer {
  border-top: 1px solid var(--border);
}

/* Form feedback (padrão Patty) */
.form-feedback { display: none; padding: 0.75rem 1rem; border-radius: var(--radius-sm); font-size: 0.875rem; margin-bottom: 1rem; }
.form-feedback.success { display: block; background: rgba(154, 205, 50, 0.12); border: 1px solid rgba(154, 205, 50, 0.3); color: var(--green-bright); }
.form-feedback.error { display: block; background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.3); color: var(--error-text); }

/* === Site institucional === */

.site-header .header-inner {
  gap: 1rem;
}

.logo-tagline {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  display: none;
}

@media (min-width: 900px) {
  .logo-tagline { display: block; }
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

@media (min-width: 960px) {
  .nav-toggle { display: none; }
}

.main-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--header-bg-solid);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.main-nav.is-open { display: block; }

@media (min-width: 960px) {
  .main-nav {
    display: block;
    position: static;
    background: none;
    border: none;
    padding: 0;
    margin-left: auto;
  }
}

.nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0 1rem;
}

@media (min-width: 960px) {
  .nav-list {
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
    padding: 0;
  }
}

.nav-list a {
  display: block;
  padding: 0.6rem 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--text);
  background: var(--bg-elevated);
}

.nav-ia-link {
  display: inline-flex !important;
  align-items: center;
  gap: 0.4rem;
  color: var(--green-bright) !important;
  border: 1px solid rgba(154, 205, 50, 0.25);
}

.nav-ia-badge {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.15rem 0.4rem;
  background: var(--green);
  color: var(--on-green);
  border-radius: 4px;
}

@media (max-width: 959px) {
  .site-header .nav-cta { display: none; }
}

@media (min-width: 960px) {
  .site-header .header-inner {
    flex-wrap: nowrap;
  }
}

/* Hero institucional */
.hero--institutional {
  padding-top: 4rem;
  text-align: left;
}

.hero--institutional .container {
  max-width: 760px;
}

.hero--with-media .container,
.hero--with-media.hero--institutional .container {
  max-width: var(--max-width);
}

.hero-slogan {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 0.75rem;
}

.hero--institutional h1 {
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  text-align: left;
  margin: 0 0 0.5rem;
  max-width: none;
  letter-spacing: -0.03em;
}

.hero-lead {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.45;
  text-align: justify;
  text-justify: inter-word;
}

.hero--institutional .hero-sub {
  text-align: justify;
  text-justify: inter-word;
  margin-left: 0;
  margin-bottom: 0.75rem;
  font-size: clamp(0.875rem, 1.8vw, 0.975rem);
  line-height: 1.55;
  color: var(--text-muted);
}

.hero--institutional .hero-actions {
  justify-content: flex-start;
  margin-top: 1.5rem;
}

.hero--with-media {
  text-align: left;
  padding-top: 3rem;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.hero--with-media .container {
  max-width: var(--max-width);
}

.hero-media {
  position: relative;
  width: 100%;
}

.hero-video {
  width: 100%;
  max-height: 420px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #000;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.hero-media.is-fullscreen .hero-video {
  max-height: none;
  height: 100%;
  width: 100%;
  border-radius: 0;
  border: 0;
  object-fit: contain;
}

.hero-media-controls {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-sound-btn,
.hero-fs-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.72);
  color: #f5f5f5;
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.hero-sound-btn:hover,
.hero-fs-btn:hover {
  background: rgba(5, 5, 5, 0.9);
  border-color: rgba(154, 205, 50, 0.45);
  transform: translateY(-1px);
}

.hero-sound-btn.is-unmuted,
.hero-fs-btn.is-fullscreen {
  border-color: rgba(154, 205, 50, 0.55);
  background: rgba(18, 28, 8, 0.85);
}

.hero-sound-btn__icon,
.hero-fs-btn__icon {
  font-size: 0.9rem;
}

.ebook-cover-image {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: block;
  margin: 0 auto;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.partner-logo {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border-radius: var(--radius-sm);
  display: inline-block;
}

.partner-logo img {
  display: block;
  max-width: 180px;
  height: auto;
}

.about-hero-image {
  padding: 0 0 2rem;
}

.about-hero-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.blog-card-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.blog-card-category {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-bottom: 0.5rem;
}

.blog-post-cover {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 2rem;
  border: 1px solid var(--border);
}

.blog-post-date {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: -1rem;
  margin-bottom: 1.5rem;
}

.hero-back {
  margin-top: 2rem;
  font-size: 0.875rem;
}

.hero-back a {
  color: var(--text-muted);
  text-decoration: none;
}

.hero-back a:hover { color: var(--green-bright); }

/* Banner Upya IA */
.ia-banner {
  padding: 0;
  border-block: 1px solid rgba(154, 205, 50, 0.2);
  background: linear-gradient(135deg, rgba(154, 205, 50, 0.08) 0%, rgba(154, 205, 50, 0.02) 50%, transparent 100%);
}

.ia-banner-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  padding-block: 3rem;
}

@media (min-width: 768px) {
  .ia-banner-inner { grid-template-columns: 1.4fr 1fr; }
}

.ia-banner-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.75rem;
  background: var(--green);
  color: var(--on-green);
  border-radius: 999px;
  margin-bottom: 1rem;
}

.ia-banner h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.ia-banner h2 span { color: var(--green-bright); }

.ia-banner p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 540px;
}

.ia-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.ia-banner-card {
  background: var(--bg-card);
  border: 1px solid rgba(154, 205, 50, 0.25);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 0 40px rgba(154, 205, 50, 0.08);
}

.ia-banner-card-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.ia-banner-card strong {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.ia-banner-card span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Nichos */
.niches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.niche-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  min-height: 180px;
}

.niche-card h3 {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-bright);
  margin-bottom: 0.75rem;
}

.niche-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* Quote */
.quote-section {
  border-block: 1px solid var(--border);
}

.section-band.quote-section {
  background: var(--bg);
}

.quote-block {
  max-width: 720px;
  margin: 0 auto;
  padding: 1rem 0;
}

.quote-block h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--green-bright);
  margin-bottom: 1.25rem;
}

.quote-block p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 1.0625rem;
}

.quote-block footer p {
  font-style: italic;
  border-left: 3px solid var(--green);
  padding-left: 1.25rem;
  color: var(--text);
}

/* Serviços */
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.2s, transform 0.2s;
}

.service-card:hover {
  border-color: rgba(154, 205, 50, 0.2);
  transform: translateY(-2px);
}

.service-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--green-bright);
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.section-cta {
  margin-top: 2.5rem;
  text-align: center;
}

/* E-book */
.ebook-section {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.ebook-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .ebook-grid { grid-template-columns: 1fr 1.2fr; }
}

.ebook-cover {
  background: linear-gradient(160deg, var(--bg-card), var(--bg-elevated));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 320px;
  margin: 0 auto;
}

.ebook-author {
  display: block;
  font-size: 0.75rem;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.ebook-series {
  display: block;
  font-size: 0.6875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.ebook-cover strong {
  display: block;
  font-size: 1.125rem;
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.ebook-sub {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Automação */
.automation-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .automation-grid { grid-template-columns: 1fr 1fr; }
}

.automation-highlight {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.automation-highlight p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.automation-highlight p:last-child { margin-bottom: 0; }

.text-link {
  color: var(--green-bright);
  text-decoration: none;
  font-weight: 600;
}

.text-link:hover { text-decoration: underline; }

/* Páginas internas */
.page-hero {
  padding: 3.5rem 0 2rem;
  border-bottom: 1px solid var(--border);
}

.page-hero-desc { margin-bottom: 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1.6fr 1fr; }
}

.about-text h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 2rem 0 0.75rem;
  color: var(--green-bright);
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.about-highlight {
  font-size: 1.125rem;
  color: var(--text) !important;
  margin-top: 1.5rem !important;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.about-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.about-card strong {
  display: block;
  font-size: 1.5rem;
  color: var(--green-bright);
  margin-bottom: 0.25rem;
}

.about-card span,
.about-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.about-card--ia {
  border-color: rgba(154, 205, 50, 0.25);
}

.about-card--ia .btn-sm {
  margin-top: 1rem;
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
}

.btn-sm { width: auto; }

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  padding-bottom: 2rem;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.blog-card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.blog-card h2 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.blog-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.blog-card-link {
  color: var(--green-bright);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
}

.blog-card-link:hover { text-decoration: underline; }

.blog-card-soon {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Blog post */
.blog-post { padding: 2rem 0 4rem; }

.blog-post-inner { max-width: 720px; }

.blog-back {
  display: inline-block;
  color: var(--green-bright);
  text-decoration: none;
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.blog-back:hover { text-decoration: underline; }

.blog-post-header h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.blog-post-body h2 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--green-bright);
  margin: 2rem 0 0.75rem;
}

.blog-post-body p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.blog-post-conclusion {
  font-size: 1.0625rem;
  color: var(--text) !important;
  border-left: 3px solid var(--green);
  padding-left: 1.25rem;
  margin-top: 2rem !important;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem !important;
}

.blog-tags span {
  font-size: 0.8125rem;
  color: var(--green);
  background: var(--green-dim);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}

.blog-post-footer {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

/* Agendamento */
.scheduling-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 720px;
}

.scheduling-icon {
  font-size: 3rem;
}

.scheduling-content h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.scheduling-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.scheduling-meta {
  list-style: none;
  margin-bottom: 1rem;
}

.scheduling-meta li {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.scheduling-team {
  font-size: 0.875rem !important;
  margin-bottom: 1.5rem !important;
}

.scheduling-note {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 720px;
}

@media (max-width: 560px) {
  .scheduling-card { grid-template-columns: 1fr; }
}

/* Landing — hero sem mídia */
.hero--landing .container {
  max-width: 800px;
}

.hero--landing .hero-lead {
  max-width: 42rem;
}

/* Pricing — banda escura, hierarquia forte (refs SaaS) */
.pricing-section .section-desc {
  margin-bottom: 1rem;
  max-width: none;
  text-align: justify;
  text-justify: inter-word;
}

.pricing-headline {
  font-size: clamp(1.75rem, 4.5vw, 2.75rem) !important;
  max-width: none;
  margin-bottom: 1.25rem !important;
  text-align: left;
}

.pricing-perk {
  color: var(--green-bright);
  font-weight: 600;
  margin: 1.5rem 0 2rem;
  max-width: none;
  font-size: 0.9375rem;
  text-align: left;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 1rem;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  background: #0c0c0c;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 1.75rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
}

.pricing-card--featured {
  border-color: rgba(154, 205, 50, 0.55);
  box-shadow: 0 0 0 1px rgba(154, 205, 50, 0.2), 0 18px 48px rgba(0, 0, 0, 0.45);
  background: linear-gradient(180deg, #12180c 0%, #0c0c0c 48%);
}

.pricing-badge {
  position: absolute;
  top: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.75rem;
  background: var(--green);
  color: var(--on-green);
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0.35rem 0 0;
  letter-spacing: -0.02em;
}

.pricing-blurb {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.pricing-amount {
  margin: 0.35rem 0 0;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.2rem 0.35rem;
}

.pricing-currency {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
}

.pricing-value {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
}

.pricing-period {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-total {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  margin: 0.5rem 0 0.75rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.8125rem;
  color: var(--text);
  line-height: 1.4;
}

.pricing-check {
  color: var(--green-bright);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.pricing-card .btn {
  margin-top: auto;
  text-align: center;
  width: 100%;
}

.pricing-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0.75rem 0 2rem;
}

.pricing-cta {
  padding: 1.75rem 0 0;
  border-top: 1px solid var(--border);
}

.pricing-cta p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  max-width: none;
  text-align: justify;
}

.text-accent {
  color: var(--green-bright);
}

.prose-justify,
.section-desc,
.quote-block p,
.service-card p,
.feature-card p,
.diff-item p,
.about-text p,
.automation-highlight p {
  text-align: justify;
  text-justify: inter-word;
}

.niche-card-body p {
  text-align: left;
}

.quote-lead {
  font-size: clamp(1.05rem, 2.4vw, 1.25rem) !important;
  font-weight: 600;
  color: var(--text) !important;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cta-whatsapp-only {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-whatsapp-only .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.cta-whatsapp-only .hero-actions {
  justify-content: center;
}

.btn-sm {
  display: inline-flex;
  padding: 0.5rem 0.9rem;
  font-size: 0.8125rem;
}

/* Imagens por seção */
.media-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .media-split {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }

  .media-split--reverse {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .media-split--reverse > :first-child { order: 2; }
  .media-split--reverse > :last-child { order: 1; }
}

.media-figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.media-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 7 / 5;
  object-fit: cover;
}

.section-intro-media {
  margin-bottom: 2.5rem;
}

.section-intro-media .section-desc {
  margin-bottom: 0.75rem;
  text-align: justify;
  text-justify: inter-word;
}

.section-intro-media .section-desc:last-of-type {
  margin-bottom: 0;
}

.niche-card--media {
  overflow: hidden;
  padding: 0;
}

.niche-card-image {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.niche-card-body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.about-media {
  margin-bottom: 1rem;
}

.about-media img {
  aspect-ratio: 4 / 3;
}

.cta-section .cta-whatsapp-only {
  text-align: left;
  max-width: none;
  margin: 0;
}

.cta-section .cta-whatsapp-only .section-desc {
  margin-left: 0;
  margin-right: 0;
}

.cta-section .cta-whatsapp-only .hero-actions {
  justify-content: flex-start;
}

.automation-highlight {
  margin-top: 2rem;
}



@media (max-width: 959px) {
  .site-header .nav-cta {
    display: none;
  }
}
