/* ============================================
   EDUTOOLS - STYLESHEET
   Universidade Corporativa para PMEs
   ============================================ */

/* ============================================
   VARIÁVEIS E RESET
   ============================================ */

:root {
  --brand-main: #47bfa5;
  --brand-alt: #008196;
  --ink: #0f172a;
  --muted: #6b7280;
  --bg-soft: #f5f7fb;
  --border-soft: #e5e7eb;
  --accent-soft: rgba(71, 191, 165, 0.08);
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

/* ============================================
   LAYOUT BASE
   ============================================ */

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================
   HEADER
   ============================================ */

header.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  height: 32px;
}

.brand-name {
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 1.05rem;
  color: var(--ink);
}

nav.main-nav {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  font-size: 0.9rem;
}

nav.main-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  transition: color 0.2s ease;
}

nav.main-nav a:hover {
  color: var(--brand-alt);
}

/* ============================================
   BOTÕES
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: none;
  padding: 0.7rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  gap: 0.35rem;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease, color 0.12s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-main), var(--brand-alt));
  color: white;
  box-shadow: 0 14px 30px rgba(0, 129, 150, 0.25);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 129, 150, 0.35);
}

.btn-outline {
  border: 1px solid rgba(148, 163, 184, 0.9);
  color: var(--ink);
  background: white;
  transition: all 0.2s ease;
}

.btn-outline:hover {
  border-color: var(--brand-alt);
  color: var(--brand-alt);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(148, 163, 184, 0.4);
}

/* ============================================
   CHIPS E BADGES
   ============================================ */

.chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-size: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: white;
  color: var(--muted);
  gap: 0.35rem;
}

.chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #facc15, #eab308);
}

.badge-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(248, 113, 113, 0.6);
  background: rgba(254, 226, 226, 0.7);
  color: #b91c1c;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #e5e7eb;
  background: linear-gradient(135deg, #1a7a6e 0%, #0f5a52 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(0.95);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(circle at top left, rgba(148, 163, 184, 0.25), transparent 55%),
    rgba(15, 23, 42, 0.68);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  align-items: center;
  gap: 2.5rem;
  padding: 3.25rem 0 3.5rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 500;
  margin-bottom: 0.9rem;
}

.hero-eyebrow span.badge-beta {
  border-radius: 999px;
  padding: 0.1rem 0.6rem;
  background: rgba(22, 163, 74, 0.08);
  color: #15803d;
  border: 1px solid rgba(74, 222, 128, 0.7);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-title {
  font-size: clamp(2rem, 3.1vw, 2.7rem);
  line-height: 1.07;
  letter-spacing: -0.03em;
  margin-bottom: 0.9rem;
  color: #ffffff;
}

.hero-title span.highlight {
  color: var(--brand-alt);
}

.hero-subtitle {
  font-size: 0.98rem;
  color: #d1d5db;
  max-width: 30rem;
  margin-bottom: 1.4rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.4rem;
}

.hero-note {
  font-size: 0.8rem;
  color: #d1d5db;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-note-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
}

.hero-right {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-xl);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(226, 232, 240, 0.9);
  max-width: 360px;
  width: 100%;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.hero-card-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}

.hero-pill {
  font-size: 0.7rem;
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  border: 1px solid rgba(37, 99, 235, 0.4);
  color: #1d4ed8;
  background: rgba(219, 234, 254, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.hero-metric-row {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
}

.metric {
  flex: 1;
  background: var(--accent-soft);
  border-radius: 0.9rem;
  padding: 0.6rem 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.metric-label {
  font-size: 0.7rem;
  color: var(--muted);
  margin-bottom: 0.1rem;
}

.metric-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-alt);
}

.hero-card-list {
  margin-bottom: 0.8rem;
  list-style: none;
  padding: 0;
}

.hero-card-list li {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.25rem;
  display: flex;
  gap: 0.4rem;
}

.hero-card-list li::before {
  content: "•";
  color: var(--brand-alt);
  font-weight: 700;
}

.hero-card-footnote {
  font-size: 0.7rem;
  color: var(--muted);
}

/* ============================================
   SEÇÕES GERAIS
   ============================================ */

section {
  padding: 3rem 0;
}

section.section-soft {
  background: var(--bg-soft);
}

.section-header {
  margin-bottom: 1.75rem;
  text-align: left;
}

.section-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--brand-alt);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.section-title {
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
  color: #020617;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 36rem;
}

/* ============================================
   CARDS E GRIDS
   ============================================ */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
}

.card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.2rem;
  border: 1px solid var(--border-soft);
  box-shadow: 0 10px 24px rgba(148, 163, 184, 0.16);
}

.card-soft {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.1rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.card-title-pill {
  font-size: 0.7rem;
  padding: 0.08rem 0.45rem;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.06);
  color: #15803d;
  border: 1px solid rgba(74, 222, 128, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.card-body {
  font-size: 0.9rem;
  color: var(--muted);
}

/* ============================================
   LISTAS
   ============================================ */

.list-check {
  list-style: none;
  padding: 0;
  margin: 0.6rem 0 0;
}

.list-check li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.list-check li::before {
  content: "✔";
  color: var(--brand-alt);
  font-size: 0.8rem;
  margin-top: 0.08rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.pill {
  font-size: 0.78rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  color: var(--muted);
  background: white;
}

.pill-strong {
  border-color: rgba(0, 129, 150, 0.8);
  color: var(--brand-alt);
  background: rgba(191, 219, 254, 0.2);
}

/* ============================================
   TIMELINE
   ============================================ */

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.timeline-item {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1rem;
  border: 1px solid var(--border-soft);
  position: relative;
  overflow: hidden;
}

.timeline-week {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--brand-alt);
  margin-bottom: 0.2rem;
}

.timeline-title {
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.timeline-body {
  font-size: 0.86rem;
  color: var(--muted);
}

/* ============================================
   LOGOS
   ============================================ */

.logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

.logos-row img {
  height: 40px;
  opacity: 0.94;
}

/* ============================================
   TABELA COMPARATIVA
   ============================================ */

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  margin-top: 0.75rem;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(148, 163, 184, 0.22);
}

.compare-table th,
.compare-table td {
  padding: 0.7rem 0.8rem;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
}

.compare-table thead {
  background: linear-gradient(120deg, #e0f7f2, #eff6ff);
}

.compare-table th {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #64748b;
}

.compare-table td strong {
  color: var(--ink);
}

.compare-yes {
  color: #16a34a;
  font-weight: 600;
}

.compare-no {
  color: #b91c1c;
  font-weight: 600;
}

/* ============================================
   PREÇOS
   ============================================ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.pricing-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.2rem 1.4rem;
  border: 1px solid var(--border-soft);
  box-shadow: 0 14px 32px rgba(148, 163, 184, 0.24);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.pricing-card.highlight {
  border-color: var(--brand-alt);
  box-shadow: 0 20px 46px rgba(0, 129, 150, 0.28);
  position: relative;
}

.pricing-label {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.15rem;
}

.pricing-name {
  font-size: 1.05rem;
  font-weight: 700;
}

.pricing-tagline {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.pricing-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brand-alt);
  margin: 0.15rem 0 0.2rem;
}

.pricing-note {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 0.7rem;
}

.pricing-features li {
  font-size: 0.83rem;
  color: var(--muted);
  margin-bottom: 0.28rem;
  display: flex;
  gap: 0.4rem;
}

.pricing-features li::before {
  content: "•";
  color: var(--brand-alt);
  font-weight: 700;
}

.pricing-ribbon {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  font-size: 0.7rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.12);
  color: #15803d;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

/* ============================================
   FAQ
   ============================================ */

.faq-list {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  overflow: hidden;
  background: white;
  box-shadow: 0 14px 32px rgba(148, 163, 184, 0.22);
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  padding: 0.9rem 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  background: white;
  transition: background 0.2s ease;
}

.faq-q-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: #020617;
}

.faq-icon {
  font-size: 1.1rem;
  color: var(--muted);
  flex-shrink: 0;
  transition: color 0.2s ease;
}

.faq-a {
  padding: 0 1rem 0.9rem;
  font-size: 0.86rem;
  color: var(--muted);
  display: none;
}

.faq-item.open .faq-a {
  display: block;
}

.faq-item.open .faq-icon {
  color: var(--brand-alt);
}

.faq-item.open .faq-q {
  background: #f9fafb;
}

/* ============================================
   LAYOUT
   ============================================ */

.layout-two {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.2rem;
  align-items: flex-start;
}

/* ============================================
   FORMULÁRIOS
   ============================================ */

.form-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 1.4rem 1.3rem;
  border: 1px solid var(--border-soft);
  box-shadow: 0 16px 40px rgba(148, 163, 184, 0.25);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #111827;
}

.field input,
.field select,
.field textarea {
  border-radius: 0.75rem;
  border: 1px solid #d1d5db;
  padding: 0.55rem 0.7rem;
  font-size: 0.85rem;
  outline: none;
  transition: border 0.1s ease, box-shadow 0.1s ease;
  font-family: inherit;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--brand-alt);
  box-shadow: 0 0 0 1px rgba(0, 129, 150, 0.4);
}

.field-help {
  font-size: 0.75rem;
  color: var(--muted);
}

.field-inline {
  display: flex;
  align-items: flex-start;
  gap: 0.35rem;
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.field-inline input[type="checkbox"] {
  margin-top: 0.1rem;
}

.form-footer {
  margin-top: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-msg {
  font-size: 0.8rem;
  min-height: 1.2em;
  color: var(--muted);
}

.footnote {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ============================================
   FOOTER
   ============================================ */

footer.site-footer {
  border-top: 1px solid #e5e7eb;
  padding: 1.2rem 0;
  font-size: 0.8rem;
  color: var(--muted);
  background: #f9fafb;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 0.9rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--brand-alt);
}

/* ============================================
   MEDIA QUERIES
   ============================================ */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 2.5rem;
  }

  .hero-right {
    order: -1;
  }

  nav.main-nav {
    display: none;
  }

  .layout-two {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 600px) {
  .hero-inner {
    padding-bottom: 2.4rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .header-inner {
    padding: 0.6rem 0;
  }

  section {
    padding: 2.2rem 0;
  }

  .compare-table {
    font-size: 0.8rem;
  }

  .pricing-grid {
    gap: 0.8rem;
  }
}

/* ============================================
   CENÁRIO / SOLUÇÃO – layout com imagem + cards interativos
   ============================================ */

.section-split .section-header {
  margin-bottom: 0;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: center;
}

.split-grid-reverse .split-media {
  order: 2;
}

.split-grid-reverse .split-content {
  order: 1;
}

.split-media {
  position: relative;
}

.split-media img {
  display: block;
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: var(--shadow-soft);
  margin: 0 auto;
}

.split-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  background: #ffffff;
}

.split-tag-negative {
  background: rgba(248, 113, 113, 0.16);
  color: #b91c1c;
}

.split-tag-positive {
  background: rgba(22, 163, 74, 0.18);
  color: #166534;
}

.split-content .section-title {
  margin-bottom: 0.7rem;
}

.split-content .section-subtitle {
  margin-bottom: 0.75rem;
}

.split-helper-text {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 0.9rem;
}

/* Cards interativos */

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}

.info-card {
  position: relative;
  padding: 1rem 1rem 1.1rem;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid var(--border-soft);
  box-shadow: 0 10px 24px rgba(148, 163, 184, 0.12);
  overflow: hidden;
  cursor: default;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.info-card-negative {
  border-left: 4px solid #f97316;
}

.info-card-positive {
  border-left: 4px solid var(--brand-main);
}

.info-card-title {
  font-size: 0.95rem;
  font-weight: 600;
}

.info-card-body {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 0.45rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.22s ease, opacity 0.22s ease;
}

.info-card:hover,
.info-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16);
}

.info-card:hover .info-card-body,
.info-card:focus-within .info-card-body {
  max-height: 260px;
  opacity: 1;
}

/* Mobile: mostra sempre o texto, simplifica o grid */

@media (max-width: 900px) {
  .split-grid,
  .split-grid-reverse {
    grid-template-columns: 1fr;
  }

  .split-grid-reverse .split-media,
  .split-grid-reverse .split-content {
    order: initial;
  }

  .split-media img {
    max-width: 420px;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 768px) {
  .info-card-body {
    max-height: none;
    opacity: 1;
  }

  .split-helper-text {
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.8rem;
  }
}

/* ============================================
   CENÁRIO / SOLUÇÃO – layout com imagem + texto leve
   ============================================ */

.section-split {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: center;
}

.section-split .section-visual {
  flex: 1 1 320px;
  min-width: 260px;
  text-align: center;
}

.section-split .section-visual img {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-xl);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.3);
  object-fit: cover;
}

.section-split .section-content {
  flex: 1 1 380px;
  min-width: 300px;
}

.section-split.section-split-reverse {
  flex-direction: row-reverse;
}

.grid-collapsible {
  margin-top: 1.2rem;
}

.card-compact {
  padding: 0.9rem 0.9rem;
}

/* Detalhes dobráveis */

.card-details {
  margin: 0;
  padding: 0;
  border: none;
}

.card-details summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  cursor: pointer;
}

.card-details summary::-webkit-details-marker {
  display: none;
}

.card-summary-title {
  font-size: 0.96rem;
  font-weight: 600;
}

.card-summary-title .card-title-pill {
  margin-left: 0.35rem;
}

.card-summary-pill {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-main);
  white-space: nowrap;
}

.card-details .card-body {
  margin-top: 0.5rem;
}

.card-details[open] .card-summary-pill::after {
  content: ' ↑';
  font-size: 0.7rem;
}

/* Responsivo */

@media (max-width: 900px) {
  .section-split {
    gap: 1.8rem;
  }

  .section-split.section-split-reverse {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .section-split {
    flex-direction: column;
  }

  .card-summary-pill {
    font-size: 0.7rem;
  }
}

/* ============================================
   ABAS INTERATIVAS
   ============================================ */

.tabs-container {
  margin-top: 2rem;
}

.tabs-nav {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid #e5e7eb;
}

.tab-btn {
  background: none;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: -2px;
}

.tab-btn:hover {
  color: var(--brand-alt);
}

.tab-btn.active {
  color: var(--brand-alt);
  border-bottom-color: var(--brand-alt);
}

.tab-icon {
  font-size: 1.2rem;
}

.tab-content {
  display: none;
  animation: fadeIn 0.3s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.tab-text h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: #020617;
}

.tab-text > p {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.challenges-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.challenge-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
}

.challenge-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.challenge-item strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #020617;
}

.challenge-item p {
  font-size: 0.85rem;
  color: var(--muted);
}

.solution-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
}

.feature-check {
  font-size: 1.5rem;
  color: var(--brand-main);
  font-weight: 700;
  flex-shrink: 0;
}

.feature-item strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #020617;
}

.feature-item p {
  font-size: 0.85rem;
  color: var(--muted);
}

.tab-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
  background: linear-gradient(135deg, rgba(71, 191, 165, 0.08), rgba(0, 129, 150, 0.08));
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.tab-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.btn-tab-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.arrow {
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.btn-tab-nav:hover .arrow {
  transform: translateX(4px);
}

/* Responsivo */
@media (max-width: 900px) {
  .tab-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .tab-image {
    height: 300px;
  }

  .tabs-nav {
    flex-wrap: wrap;
  }

  .tab-btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 600px) {
  .tab-inner {
    gap: 1.5rem;
  }

  .tab-text h3 {
    font-size: 1.2rem;
  }

  .tab-image {
    height: 250px;
  }

  .challenge-item,
  .feature-item {
    padding: 0.75rem;
  }
}

/* ============================================
   SEÇÃO DE PREÇOS
   ============================================ */

.pricing-section {
  padding: 4rem 0;
  background: white;
}

.pricing-toggle-wrapper {
  display: flex;
  justify-content: center;
  margin: 2rem 0 3rem;
}

.pricing-toggle {
  display: inline-flex;
  background: #f3f4f6;
  border-radius: 999px;
  padding: 0.4rem;
  gap: 0.4rem;
}

.toggle-btn {
  background: white;
  border: none;
  padding: 0.65rem 1.8rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted );
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.toggle-btn:hover {
  color: var(--brand-alt);
}

.toggle-btn.active {
  background: linear-gradient(135deg, var(--brand-main), var(--brand-alt));
  color: white;
  box-shadow: 0 4px 12px rgba(0, 129, 150, 0.3);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.pricing-card {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  border-color: var(--brand-alt);
  box-shadow: 0 20px 50px rgba(0, 129, 150, 0.15);
  transform: translateY(-4px);
}

.pricing-card.highlight {
  border-color: var(--brand-alt);
  box-shadow: 0 20px 50px rgba(0, 129, 150, 0.2);
  transform: scale(1.02);
}

.pricing-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--brand-main), var(--brand-alt));
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-header {
  margin-bottom: 1.5rem;
}

.pricing-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #020617;
  margin-bottom: 0.25rem;
}

.pricing-subtitle {
  font-size: 0.85rem;
  color: var(--muted);
}

.pricing-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pricing-price-wrapper {
  margin-bottom: 0.5rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.currency {
  font-size: 0.9rem;
  color: var(--muted);
}

.amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-alt);
  transition: all 0.3s ease;
}

.period {
  font-size: 0.9rem;
  color: var(--muted);
}

.pricing-annual-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
}

.original-price {
  color: var(--muted);
  text-decoration: line-through;
}

.discount-badge {
  background: rgba(22, 163, 74, 0.1);
  color: #15803d;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.7rem;
}

.pricing-users {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.pricing-description {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex: 1;
}

.pricing-features li {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.6rem;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.pricing-features li::before {
  content: "✓";
  color: var(--brand-main);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.pricing-card .btn {
  align-self: flex-start;
  width: 100%;
  text-align: center;
}

.pricing-card.highlight .btn {
  width: 100%;
}

/* SEÇÃO ENTERPRISE */

.enterprise-section {
  background: linear-gradient(135deg, #0f3a5a 0%, #1a7a6e 100%);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  color: white;
}

.enterprise-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.enterprise-content p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.enterprise-features {
  font-size: 0.9rem;
  opacity: 0.85;
}

.enterprise-section .btn {
  flex-shrink: 0;
}

/* RESPONSIVO */

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

  .pricing-card.highlight {
    transform: scale(1);
  }

  .enterprise-section {
    flex-direction: column;
    text-align: center;
  }

  .enterprise-section .btn {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .pricing-toggle {
    width: 100%;
  }

  .toggle-btn {
    flex: 1;
    padding: 0.55rem 1rem;
    font-size: 0.8rem;
  }

  .pricing-card {
    padding: 1.5rem;
  }

  .amount {
    font-size: 2rem;
  }

  .enterprise-section {
    padding: 1.5rem;
  }
}


