/* ===== BREAKPOINTS (ver global.css) =====
   ≤320px | 321-577px | 578-767px | 768-991px | 992-1199px | ≥1200px
*/

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--card);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}
@media (max-width: 320px) {
  .header-inner {
    height: 4rem;
  }
}
.logo {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
  display: inline-block;
}
.logo span {
  color: var(--accent);
}
.logo .logo-img {
  display: block;
  max-width: 14rem;
  height: auto;
}
@media (min-width: 768px) {
  .logo .logo-img {
    max-width: 14rem;
    height: auto;
  }
}
.footer-logo {
  display: block;
  max-width: 10rem;
  height: auto;
  padding: 1rem 0;
}
.nav-desktop {
  display: none;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 992px) {
  .nav-desktop {
    display: flex;
  }
}
.nav-desktop a {
  font-size: 0.875rem;
  color: var(--muted-fg);
  font-weight: 500;
  transition: color 0.2s;
}
.nav-desktop a:hover {
  color: var(--primary);
}
.header-actions {
  display: none;
  gap: 0.75rem;
  align-items: center;
}
@media (min-width: 992px) {
  .header-actions {
    display: flex;
  }
}
.btn-ghost {
  color: var(--muted-fg);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
}
.btn-ghost:hover {
  color: var(--primary);
  background: var(--muted);
}
.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--fg);
}
@media (min-width: 992px) {
  .mobile-toggle {
    display: none;
  }
}
.mobile-toggle svg {
  width: 24px;
  height: 24px;
}
.mobile-nav {
  display: none;
  background: var(--navy);
  border-top: 1px solid rgba(243, 244, 246, 0.1);
  padding: 1rem;
}
.mobile-nav.open {
  display: block;
}
@media (min-width: 992px) {
  .mobile-nav {
    display: none !important;
  }
}
.mobile-nav a {
  display: block;
  padding: 0.625rem 0;
  font-size: 0.875rem;
  color: rgba(243, 244, 246, 0.7);
  font-weight: 500;
}
.mobile-nav .btn {
  width: 100%;
  margin-top: 0.5rem;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 7rem 1rem 4rem;
}
@media (max-width: 320px) {
  .hero {
    padding: 6rem 0.75rem 3rem;
  }
}
@media (min-width: 768px) {
  .hero {
    padding: 8rem 1rem 6rem;
  }
}
@media (min-width: 992px) {
  .hero {
    padding: 8.5rem 1rem 6rem;
  }
}
@media (min-width: 1200px) {
  .hero {
    padding: 9rem 1rem 6rem;
  }
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 50%,
    rgba(26, 95, 180, 0.08),
    transparent 50%
  );
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 80% 20%,
    rgba(38, 198, 218, 0.06),
    transparent 50%
  );
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}
.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--hero-fg);
  margin-bottom: 1.5rem;
}
@media (max-width: 320px) {
  .hero h1 {
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
}
@media (min-width: 992px) {
  .hero h1 {
    font-size: 3rem;
  }
}
.hero-sub {
  font-size: 1rem;
  color: var(--hero-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}
.hero-text {
  font-size: 0.875rem;
  color: rgba(156, 163, 175, 0.7);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.hero-micro {
  font-size: 0.75rem;
  color: rgba(156, 163, 175, 0.5);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.hero-visual {
  position: relative;
}
.hero-mockup {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(243, 244, 246, 0.1);
  position: relative;
}
.hero-mockup img {
  width: 100%;
  display: block;
}
.hero-mockup::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 26, 46, 0.4), transparent);
}

/* Floating cards */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: var(--radius);
}
.float-card .fc-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(243, 244, 246, 0.1);
  flex-shrink: 0;
}
.float-card .fc-icon svg {
  width: 18px;
  height: 18px;
}
.float-card .fc-label {
  font-size: 0.625rem;
  color: var(--hero-muted);
}
.float-card .fc-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--hero-fg);
}
.fc-1 {
  left: -1rem;
  top: 2rem;
}
.fc-2 {
  right: -1rem;
  top: 33%;
}
.fc-3 {
  left: -0.5rem;
  bottom: 4rem;
}
@media (min-width: 768px) {
  .fc-1 {
    left: -2rem;
  }
  .fc-2 {
    right: -1.5rem;
  }
  .fc-3 {
    left: -1.5rem;
  }
}

/* ===== CREDIBILITY ===== */
.credibility {
  background: var(--card);
  border-bottom: 1px solid var(--border);
}
.credibility h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .credibility h2 {
    font-size: 1.875rem;
  }
}
.cred-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .cred-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .cred-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.cred-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: var(--muted);
  border: 1px solid rgba(26, 95, 180, 0.15);
  transition: border-color 0.2s;
}
.cred-card:hover {
  border-color: rgba(26, 95, 180, 0.35);
}
.cred-card .icon-box {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.cred-card p {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg);
}

/* ===== PAIN POINTS ===== */
.pain {
  background: var(--section-alt);
}
.pain h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .pain h2 {
    font-size: 2rem;
  }
}
.pain-intro {
  color: var(--muted-fg);
  max-width: 48rem;
  margin: 0 auto 3rem;
  text-align: center;
}
.pain-grid {
  display: grid;
  gap: 1rem;
  max-width: 56rem;
  margin: 0 auto 2.5rem;
}
@media (min-width: 768px) {
  .pain-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.pain-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid rgba(239, 68, 68, 0.15);
  transition: border-color 0.2s;
}
.pain-card:hover {
  border-color: rgba(239, 68, 68, 0.3);
}
.pain-card svg {
  width: 18px;
  height: 18px;
  color: var(--destructive);
  flex-shrink: 0;
  margin-top: 2px;
}
.pain-card p {
  font-size: 0.875rem;
  color: rgba(21, 28, 43, 0.8);
}
.pain-grid-extra {
  text-align: center;
  margin-top: 1rem;
}
.btn-pain-more {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  background: none;
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  padding: 0.5rem 1.25rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-pain-more:hover {
  background: var(--primary);
  color: var(--card);
}
.pain-footer {
  text-align: center;
  color: var(--muted-fg);
  font-size: 0.875rem;
  max-width: 40rem;
  margin: 0 auto;
}

/* ===== VALUE PROPOSITION ===== */
.value {
  background: var(--card);
}
.value h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .value h2 {
    font-size: 2rem;
  }
}
.value-intro {
  color: var(--muted-fg);
  max-width: 48rem;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.value-grid {
  display: grid;
  gap: 2rem;
  max-width: 60rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .value-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.value-card {
  padding: 2rem;
  border-radius: 1rem;
  background: var(--section-alt);
  border: 1px solid var(--border);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.value-card:hover {
  border-color: rgba(26, 95, 180, 0.35);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}
.value-card .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: #fff;
  transition: transform 0.2s;
}
.value-card:hover .icon-box {
  transform: scale(1.1);
}
.value-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.value-card p {
  font-size: 0.875rem;
  color: var(--muted-fg);
  line-height: 1.7;
}

/* ===== FEATURES ===== */
.features {
  position: relative;
}
.features h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--hero-fg);
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .features h2 {
    font-size: 2rem;
  }
}
.features-intro {
  color: var(--hero-muted);
  max-width: 48rem;
  margin: 0 auto 3.5rem;
}
.feat-layout {
  display: grid;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .feat-layout {
    grid-template-columns: 280px 1fr;
  }
}
.feat-tabs {
  display: flex;
  gap: 0.35rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}
@media (min-width: 992px) {
  .feat-tabs {
    flex-direction: column;
    overflow-x: visible;
    padding-bottom: 0;
    gap: 0.25rem;
  }
}
.feat-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--hero-muted);
  border: 1px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
  text-align: left;
}
@media (min-width: 992px) {
  .feat-tab {
    white-space: normal;
  }
}
.feat-tab:hover {
  color: var(--hero-fg);
  background: rgba(243, 244, 246, 0.05);
}
.feat-tab.active {
  background: rgba(26, 95, 180, 0.2);
  color: var(--hero-fg);
  border-color: rgba(26, 95, 180, 0.4);
}
.feat-tab svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.feat-content {
  padding: 2rem 2.5rem;
  border-radius: 1rem;
}
.feat-content-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.feat-content-header .icon-box {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.feat-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--hero-fg);
}
.feat-content > p {
  color: var(--hero-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.feat-items {
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .feat-items {
    grid-template-columns: 1fr 1fr;
  }
}
.feat-items li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(243, 244, 246, 0.8);
}
.feat-items li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ===== DASHBOARDS ===== */
.dashboards {
  background: var(--card);
}
.dashboards h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .dashboards h2 {
    font-size: 2rem;
  }
}
.dash-intro {
  color: var(--muted-fg);
  max-width: 48rem;
  margin: 0 auto 3.5rem;
}
.dash-grid {
  display: grid;
  gap: 1.25rem;
  max-width: 72rem;
  margin: 0 auto 3rem;
}
@media (min-width: 768px) {
  .dash-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .dash-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1200px) {
  .dash-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.dash-card {
  background: var(--section-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: all 0.2s;
}
.dash-card:hover {
  border-color: rgba(26, 95, 180, 0.35);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}
.dash-card-top {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.dash-card .icon-sm {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(26, 95, 180, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: background 0.2s;
}
.dash-card:hover .icon-sm {
  background: rgba(26, 95, 180, 0.2);
}
.dash-card {
  text-align: center;
}
.dash-card .trend {
  font-size: 0.75rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 2px;
}
.trend-up {
  color: var(--primary);
}
.trend-down {
  color: var(--destructive);
}
.dash-card .label {
  font-size: 0.75rem;
  color: var(--muted-fg);
  margin-bottom: 0.25rem;
}
.dash-card .val {
  font-size: 1.125rem;
  font-weight: 700;
}
.dash-footer {
  text-align: center;
  color: var(--muted-fg);
  font-size: 0.875rem;
  max-width: 40rem;
  margin: 0 auto;
}

/* ===== REPORTS ===== */
.reports {
  background: var(--section-alt);
}
.reports h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .reports h2 {
    font-size: 2rem;
  }
}
.reports-intro {
  color: var(--muted-fg);
  max-width: 48rem;
  margin: 0 auto 3.5rem;
}
.reports-grid {
  display: grid;
  gap: 2rem;
  max-width: 60rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .reports-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.report-card {
  position: relative;
  padding: 2rem;
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.report-card:hover {
  border-color: rgba(38, 198, 218, 0.3);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}
.report-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 6rem;
  height: 6rem;
  background: rgba(38, 198, 218, 0.05);
  border-bottom-left-radius: 100%;
  transition: background 0.2s;
}
.report-card:hover::after {
  background: rgba(38, 198, 218, 0.1);
}
.report-card .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 12px rgba(38, 198, 218, 0.2);
  position: relative;
  z-index: 1;
}
.report-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}
.report-card p {
  font-size: 0.875rem;
  color: var(--muted-fg);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ===== CONSULTING ===== */
.consulting h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--hero-fg);
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .consulting h2 {
    font-size: 2rem;
  }
}
.consulting-intro {
  color: var(--hero-muted);
  max-width: 48rem;
  margin: 0 auto 3.5rem;
}
.consulting-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto 3rem;
}
@media (min-width: 768px) {
  .consulting-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .consulting-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.consult-card {
  padding: 1.5rem;
  border-radius: 1rem;
  transition: background 0.2s;
}
.consult-card:hover {
  background: rgba(243, 244, 246, 0.1);
}
.consult-card .icon-box {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(38, 198, 218, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--accent);
  transition: background 0.2s;
}
.consult-card:hover .icon-box {
  background: rgba(38, 198, 218, 0.3);
}
.consult-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--hero-fg);
  margin-bottom: 0.5rem;
}
.consult-card p {
  font-size: 0.875rem;
  color: var(--hero-muted);
  line-height: 1.7;
}
/* Consultoria: cards clicáveis que abrem modal */
.consult-card--modal {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: 1.25rem 1rem;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
  transition: background 0.2s;
}
.consult-card--modal:hover {
  background: rgba(243, 244, 246, 0.08);
}
.consult-card--modal .consult-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  min-width: 2.75rem;
  border-radius: 0.5rem;
  background: rgba(38, 198, 218, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.consult-card--modal .consult-card__icon svg {
  width: 20px;
  height: 20px;
}
.consult-card--modal .consult-card__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--hero-fg);
  line-height: 1.3;
}
.consulting-hint {
  font-size: 0.8125rem;
  color: var(--hero-muted);
  margin: 0.75rem auto 1rem;
  opacity: 0.9;
}
/* Modal padrão */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}
.modal--open {
  opacity: 1;
  visibility: visible;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.modal__box {
  position: relative;
  max-width: 28rem;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  background: var(--card);
  border-radius: 1rem;
  padding: 2rem 2rem 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}
.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  border: none;
  background: var(--muted);
  color: var(--fg);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s;
}
.modal__close:hover {
  background: var(--border);
}
.modal__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 1rem;
  padding-right: 2.5rem;
}
.modal__body {
  font-size: 0.9375rem;
  color: var(--muted-fg);
  line-height: 1.7;
}
.modal__body p {
  margin: 0;
}
.consulting-footer {
  text-align: center;
  color: var(--hero-muted);
  font-size: 0.875rem;
  max-width: 40rem;
  margin: 0 auto;
}

/* ===== BENEFITS ===== */
.benefits {
  background: var(--card);
}
.benefits h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 3.5rem;
}
@media (min-width: 768px) {
  .benefits h2 {
    font-size: 2rem;
  }
}
.benefits-grid {
  display: grid;
  gap: 2rem;
  max-width: 60rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.benefit-card {
  text-align: center;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--section-alt);
  transition: all 0.2s;
}
.benefit-card:hover {
  border-color: rgba(26, 95, 180, 0.35);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}
.benefit-card .icon-box {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: #fff;
  box-shadow: 0 4px 14px rgba(26, 95, 180, 0.3);
  transition: transform 0.2s;
}
.benefit-card:hover .icon-box {
  transform: scale(1.1);
}
.benefit-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.benefit-card p {
  font-size: 0.875rem;
  color: var(--muted-fg);
  line-height: 1.7;
}

/* ===== HOW IT WORKS ===== */
.hiw {
  background: var(--section-alt);
}
.hiw h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 3.5rem;
}
@media (min-width: 768px) {
  .hiw h2 {
    font-size: 2rem;
  }
}
.hiw-grid {
  display: grid;
  gap: 2rem;
  max-width: 60rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .hiw-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .hiw-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.hiw-step {
  text-align: center;
  position: relative;
}
.hiw-num {
  font-size: 3rem;
  font-weight: 700;
  color: rgba(26, 95, 180, 0.15);
  font-family: "Space Grotesk", sans-serif;
}
.hiw-step h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0.5rem 0 0.75rem;
}
.hiw-step p {
  font-size: 0.875rem;
  color: var(--muted-fg);
  line-height: 1.7;
}

/* ===== ONBOARDING ===== */
.onboarding {
  background: var(--card);
}
.onboard-layout {
  display: grid;
  gap: 3rem;
  max-width: 56rem;
  margin: 0 auto;
  align-items: center;
}
@media (min-width: 768px) {
  .onboard-layout {
    grid-template-columns: 1fr 1fr;
  }
}
.onboarding h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .onboarding h2 {
    font-size: 1.75rem;
  }
}
.onboard-text {
  font-size: 0.875rem;
  color: var(--muted-fg);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.onboard-italic {
  font-size: 0.875rem;
  color: var(--muted-fg);
  font-style: italic;
}
.onboard-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.onboard-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--section-alt);
  border: 1px solid var(--border);
}
.onboard-item svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}
.onboard-item span {
  font-size: 0.875rem;
  font-weight: 500;
}

/* ===== PRICING ===== */
.pricing {
  background: var(--section-alt);
}
.pricing h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .pricing h2 {
    font-size: 2rem;
  }
}
.pricing-intro {
  color: var(--muted-fg);
  max-width: 40rem;
  margin: 0 auto 3.5rem;
}
.pricing-grid {
  display: grid;
  gap: 2rem;
  max-width: 66rem;
  margin: 0 auto 2rem;
}
@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.plan-card {
  position: relative;
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.plan-card.featured {
  background: var(--navy);
  border: 2px solid rgba(38, 198, 218, 0.4);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}
@media (min-width: 768px) {
  .plan-card.featured {
    transform: scale(1.03);
  }
}
.plan-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.375rem 1rem;
  border-radius: 2rem;
  box-shadow: 0 4px 12px rgba(38, 198, 218, 0.3);
}
.plan-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.plan-card.featured h3,
.plan-card.featured p,
.plan-card.featured .plan-desc {
  color: var(--hero-fg);
}
.plan-subtitle {
  font-size: 1rem;
  font-weight: 800;
  margin: 0.75rem 0 1rem;
  text-align: center;
  padding: 0.6rem 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(38, 198, 218, 0.25);
  background: rgba(38, 198, 218, 0.1);
}
.plan-card .plan-subtitle {
  color: var(--primary);
}
.plan-card.featured .plan-subtitle {
  color: var(--accent);
}
.plan-desc {
  font-size: 0.875rem;
  color: var(--muted-fg);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.plan-card.featured .plan-desc {
  color: var(--hero-muted);
}
.plan-items {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.plan-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
}
.plan-card .plan-item {
  color: rgba(21, 28, 43, 0.8);
}
.plan-card.featured .plan-item {
  color: rgba(243, 244, 246, 0.8);
}
.plan-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.plan-card .plan-item svg {
  color: var(--primary);
}
.plan-card.featured .plan-item svg {
  color: var(--accent);
}
.plan-card .btn {
  width: 100%;
}
.pricing-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted-fg);
}

/* ===== AUTHORITY ===== */
.authority h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--hero-fg);
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .authority h2 {
    font-size: 2rem;
  }
}
.authority-intro {
  color: var(--hero-muted);
  max-width: 48rem;
  margin: 0 auto 3rem;
}
.authority-badge {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 14px rgba(38, 198, 218, 0.3);
}
.auth-grid {
  display: grid;
  gap: 1rem;
  max-width: 48rem;
  margin: 0 auto 2.5rem;
}
@media (min-width: 768px) {
  .auth-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.auth-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: var(--radius);
}
.auth-item svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}
.auth-item span {
  font-size: 0.875rem;
  color: rgba(243, 244, 246, 0.9);
  font-weight: 500;
}
.authority-footer {
  text-align: center;
  color: var(--hero-muted);
  font-size: 0.875rem;
  font-style: italic;
  max-width: 40rem;
  margin: 0 auto;
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--card);
}
.faq-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .faq-section h2 {
    font-size: 2rem;
  }
}
.faq-list {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--section-alt);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open {
  border-color: rgba(26, 95, 180, 0.35);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fg);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}
.faq-q svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
  flex-shrink: 0;
  color: var(--muted-fg);
}
.faq-item.open .faq-q svg {
  transform: rotate(180deg);
}
.faq-a {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s,
    padding 0.3s;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 1.5rem 1.25rem;
}
.faq-a p {
  font-size: 0.875rem;
  color: var(--muted-fg);
  line-height: 1.7;
}

/* ===== FINAL CTA ===== */
.final-cta {
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(38, 198, 218, 0.08),
    transparent 60%
  );
}
.final-cta .container {
  position: relative;
  z-index: 1;
}
.final-cta h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--hero-fg);
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .final-cta h2 {
    font-size: 2rem;
  }
}
.final-cta > div > div > p:first-of-type {
  font-size: 1.125rem;
  color: var(--hero-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
.final-cta .hero-buttons {
  justify-content: center;
}
.final-cta .micro {
  font-size: 0.75rem;
  color: rgba(156, 163, 175, 0.5);
  margin-top: 1.5rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  padding: 4rem 1rem 2rem;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}
.footer h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--hero-fg);
  margin-bottom: 1rem;
}
.footer h3 span {
  color: var(--accent);
}
.footer .foot-desc {
  font-size: 0.875rem;
  color: var(--hero-muted);
  line-height: 1.7;
}
.footer h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--hero-fg);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.footer ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer ul li,
.footer ul li a {
  font-size: 0.875rem;
  color: var(--hero-muted);
  transition: color 0.2s;
}
.footer ul li a:hover {
  color: var(--hero-fg);
}
.footer-scope-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin: 1rem 0 0.5rem;
}
.footer-scope-title:first-of-type {
  margin-top: 0;
}
ul.footer-scope-admin {
  margin-bottom: 0.75rem;
}
.footer-scope-note {
  font-size: 0.75rem;
  line-height: 1.55;
  color: var(--hero-muted);
  margin: 0.75rem 0 0;
  max-width: 22rem;
}
.footer-bottom {
  border-top: 1px solid rgba(243, 244, 246, 0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--hero-muted);
}
.footer-bottom-links {
  display: flex;
  gap: 1rem;
}
.footer-bottom-links a {
  color: var(--hero-muted);
  transition: color 0.2s;
}
.footer-bottom-links a:hover {
  color: var(--hero-fg);
}
.footer-credits {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
  text-align: right;
}
@media (max-width: 767px) {
  .footer-credits {
    align-items: flex-start;
    text-align: left;
  }
}
.footer-dev a {
  color: var(--hero-muted);
  transition: color 0.2s;
}
.footer-dev a:hover {
  color: var(--accent);
}

/* ===== SVG ICON HELPERS ===== */
.icon-box,
.icon-sm,
.consult-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  text-align: center;
}

.icon-box svg,
.icon-sm svg {
  display: block;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  overflow: visible;
  color: var(--navy);
  stroke: currentColor;
}
.icon-box.lg svg {
  width: 28px;
  height: 28px;
}
.icon-box.xl svg {
  width: 30px;
  height: 30px;
}
.icon-box.xxl svg {
  width: 32px;
  height: 32px;
}

/* ===== UTILITIES ===== */
.btn-small {
  font-size: 0.8125rem;
  padding: 0.5rem 1rem;
}
.mobile-nav__area-cliente {
  display: block;
  margin-top: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  text-align: center;
  border-top: 1px solid rgba(243, 244, 246, 0.12);
}
.mobile-nav__area-cliente:hover {
  color: var(--hero-fg);
}
.mobile-nav__cta {
  margin-top: 1rem;
  display: block;
  text-align: center;
}
.header-area-cliente {
  white-space: nowrap;
}
.hero-visual--delayed {
  transition-delay: 0.3s;
}

/* ===== HERO MOCKUP ===== */
.hero-mockup-disclaimer {
  font-size: 0.65rem;
  color: var(--hero-muted);
  margin: 0 0 0.25rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.hero-mockup__panel {
  background: var(--navy-light);
  padding: 2rem;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: var(--radius);
}
.hero-mockup__kpis {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.hero-kpi-card {
  flex: 1;
  min-width: 120px;
  padding: 1rem;
  border-radius: 0.5rem;
  background: rgba(243, 244, 246, 0.05);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.hero-kpi-card__label {
  font-size: 0.625rem;
  color: var(--hero-muted);
}
.hero-kpi-card__value {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--hero-fg);
}
.hero-kpi-card__trend {
  font-size: 0.625rem;
}
.hero-kpi-card__trend--positive {
  color: var(--accent);
}
.hero-kpi-card__trend--negative {
  color: var(--destructive);
}
.hero-kpi-card--primary {
  background: rgba(26, 95, 180, 0.15);
}
.hero-kpi-card--amber {
  background: rgba(38, 198, 218, 0.12);
}
.hero-kpi-card--muted {
  background: rgba(243, 244, 246, 0.08);
}
.hero-mockup__grid {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.hero-chart-panel {
  flex: 2;
  min-width: 200px;
  background: rgba(243, 244, 246, 0.05);
  border-radius: 0.5rem;
  padding: 1rem;
  min-height: 120px;
}
.hero-chart-panel__label {
  font-size: 0.625rem;
  color: var(--hero-muted);
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}
.hero-chart {
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
  height: 120px;
}
.hero-chart__bars {
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
  height: 100%;
  width: 100%;
}
.hero-chart__bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: var(--primary);
}
.hero-chart__bar--h45 {
  height: 45%;
}
.hero-chart__bar--h55 {
  height: 55%;
}
.hero-chart__bar--h50 {
  height: 50%;
}
.hero-chart__bar--h65 {
  height: 65%;
}
.hero-chart__bar--h60 {
  height: 60%;
}
.hero-chart__bar--h70 {
  height: 70%;
}
.hero-chart__bar--h75 {
  height: 75%;
}
.hero-chart__bar--h80 {
  height: 80%;
}
.hero-chart__bar--h72 {
  height: 72%;
}
.hero-chart__bar--h85 {
  height: 85%;
}
.hero-chart__bar--h90 {
  height: 90%;
}
.hero-chart__bar--h95 {
  height: 95%;
}
.hero-balance-card {
  flex: 1;
  min-width: 140px;
  background: rgba(243, 244, 246, 0.05);
  border-radius: 0.5rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.hero-balance-card__label {
  font-size: 0.625rem;
  color: var(--hero-muted);
}
.hero-balance-card__value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
}
.hero-balance-card__status {
  font-size: 0.625rem;
  color: var(--accent);
}
.hero-balance-card__meta {
  font-size: 0.625rem;
  color: var(--hero-muted);
}
.hero-balance-card__client {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--hero-fg);
}
.fc-icon--primary {
  color: var(--primary);
}
.fc-icon--gold {
  color: var(--accent);
}
.fc-icon--teal {
  color: var(--accent);
}

/* ===== AUTHORITY & CTA HELPERS ===== */
.authority__wrapper {
  max-width: 48rem;
  margin: 0 auto;
}
.authority__inner {
  max-width: 48rem;
  margin: 0 auto 1rem;
}
.final-cta__wrapper {
  max-width: 48rem;
  margin: 0 auto;
}
.final-cta__description {
  font-size: 1.125rem;
  color: var(--hero-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-buttons--centered {
  justify-content: center;
}
.final-cta__note {
  font-size: 0.75rem;
  color: rgba(156, 163, 175, 0.5);
  margin-top: 1.5rem;
}

/* ===== WHATSAPP FLUTUANTE ===== */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
  color: #fff;
}
@media (min-width: 992px) {
  .whatsapp-float {
    bottom: 5rem;
  }
}
@media (max-width: 320px) {
  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
  }
  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}
