:root {
  --orange: #F04E23;
  --orange-dark: #C93D1A;
  --orange-light: #FFF0EC;
  --green: #1CB85A;
  --green-light: #E8F9EF;
  --purple: #6C3FC5;
  --purple-light: #F0EBFF;
  --yellow: #FFB800;
  --yellow-light: #FFFBEC;
  --bg: #F5F5F5;
  --surface: #FFFFFF;
  --border: #E8E8E8;
  --text: #1A1A1A;
  --text-2: #555;
  --text-3: #888;
  --radius: 12px;
  --shadow: 0 4px 16px rgba(0, 0, 0, .08);
}

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

body {
  font-family: 'Nunito', system-ui, sans-serif;
  background: #fff;
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* UTILS - Mobile First */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media(min-width: 768px) {
  .container {
    padding: 0 32px;
  }
}

.text-center {
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .02em;
  cursor: pointer;
  border: none;
  transition: all .2s;
  text-decoration: none;
  width: 100%;
  white-space: nowrap;
}

@media(min-width: 576px) {
  .btn {
    width: auto;
    padding: 12px 24px;
  }
}

.btn-primary {
  background: var(--orange);
  color: #fff;
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(240, 78, 35, .3);
}

.btn-dark {
  background: #1A1A1A;
  color: #fff;
}

.btn-dark:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}

.btn-ghost:hover {
  border-color: #ccc;
  background: #fafafa;
}

.btn-lg {
  padding: 16px 24px;
  font-size: 16px;
}

@media(min-width: 576px) {
  .btn-lg {
    padding: 16px 32px;
  }
}

/* HEADER & NAV - Mobile First */
header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

@media(min-width: 992px) {
  .header-inner {
    height: 72px;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  position: relative;
  z-index: 1010;
  white-space: nowrap;
}

.logo-mark {
  width: 32px;
  height: 32px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  color: #fff;
  letter-spacing: -1px;
}

.logo-name {
  font-weight: 900;
  font-size: 16px;
  color: var(--text);
  letter-spacing: -.5px;
  white-space: nowrap;
}

@media(min-width: 992px) {
  .logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    font-size: 16px;
  }

  .logo-name {
    font-size: 18px;
  }
}

/* Menu Toggle (Hamburger) */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 28px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1010;
}

.menu-toggle span {
  width: 100%;
  height: 3px;
  background: var(--text);
  border-radius: 3px;
  transition: all 0.3s linear;
  transform-origin: 1px;
}

.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg);
}

@media(min-width: 992px) {
  .menu-toggle {
    display: none;
  }
}

/* Navi Overlay (Mobile First) */
.nav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: 1005;
  padding: 80px 20px 20px;
}

.nav-wrap.open {
  transform: translateY(0);
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  width: 100%;
}

.nav-link {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-2);
  text-decoration: none;
  transition: color .2s;
  cursor: pointer;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--orange);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-ctas {
  display: flex;
  flex-direction: row;
  gap: 6px;
  align-items: center;
}

.header-ctas .btn {
  padding: 6px 12px;
  font-size: 12px;
}

@media(min-width: 992px) {
  .nav-wrap {
    position: static;
    height: auto;
    transform: none;
    background: transparent;
    flex-direction: row;
    justify-content: center;
    padding: 0;
  }

  .nav {
    flex-direction: row;
    gap: 24px;
    width: auto;
  }

  .nav-link {
    font-size: 14px;
    font-weight: 700;
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--text);
  }

  .header-ctas {
    gap: 12px;
  }

  .header-ctas .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* NAVIGATION SYSTEM (Screens) */
.screen {
  display: none;
}

.screen.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* HERO - Mobile First */
.hero-wrap {
  padding: 40px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #fffbfc 100%);
}

@media(min-width: 768px) {
  .hero-wrap {
    padding: 80px 0 100px;
  }
}

.hero-wrap::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(240, 78, 35, .05) 0%, transparent 60%);
  pointer-events: none;
}

@media(min-width: 768px) {
  .hero-wrap::before {
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
  }
}

.hero-title {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: var(--text);
}

.hero-title span {
  color: var(--orange);
}

@media(min-width: 768px) {
  .hero-title {
    font-size: 48px;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
  }
}

@media(min-width: 992px) {
  .hero-title {
    font-size: 56px;
  }
}

.hero-sub {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 32px;
}

@media(min-width: 768px) {
  .hero-sub {
    font-size: 18px;
    margin: 0 auto 40px;
  }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media(min-width: 576px) {
  .hero-actions {
    flex-direction: row;
    justify-content: center;
  }
}

.hero-img-wrap {
  max-width: 900px;
  margin: 40px auto 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
  position: relative;
}

@media(min-width: 768px) {
  .hero-img-wrap {
    margin: 64px auto 0;
    border-radius: 24px;
    padding: 24px;
  }
}

.hero-app-mockup {
  width: 100%;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .1);
  border: 1px solid var(--border);
  position: relative;
  aspect-ratio: 16/10;
}

@media(max-width: 767px) {
  .hero-app-mockup {
    aspect-ratio: auto;
    height: 450px;
  }
}

/* DASHBOARD MOCKUP INTERNAL STYLES */
.dash-mockup {
  display: flex;
  height: 100%;
  width: 100%;
  font-family: 'Nunito', sans-serif;
  text-align: left;
  background: #fdfdfd;
}

.dash-sidebar {
  width: 60px;
  background: #fff;
  border-right: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  flex-shrink: 0;
}

@media(min-width: 992px) {
  .dash-sidebar {
    width: 200px;
    align-items: flex-start;
    padding: 20px;
  }
}

.dash-logo {
  width: 32px;
  height: 32px;
  background: var(--orange);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 30px;
}

.dash-nav {
  width: 100%;
}

.dash-nav-item {
  padding: 10px;
  margin-bottom: 4px;
  border-radius: 8px;
  color: #666;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.dash-nav-item span {
  display: none;
}

@media(min-width: 992px) {
  .dash-nav-item span {
    display: inline;
  }
}

.dash-nav-item.active {
  background: var(--orange-light);
  color: var(--orange);
}

.dash-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow-y: auto;
}

.dash-topbar {
  height: 60px;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  flex-shrink: 0;
}

.dash-search {
  color: #aaa;
  font-size: 13px;
  background: #f5f5f5;
  padding: 8px 16px;
  border-radius: 20px;
  width: 200px;
}

.dash-user-avatar {
  width: 32px;
  height: 32px;
  background: #eee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

.dash-body {
  padding: 20px;
  background: #fafafa;
  flex: 1;
}

.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
}

.dash-title small {
  display: block;
  font-size: 10px;
  font-weight: 800;
  color: #999;
  margin-bottom: 4px;
}

.dash-title h3 {
  font-size: 20px;
  font-weight: 900;
}

.dash-filters {
  display: flex;
  gap: 10px;
  font-size: 12px;
}

.dash-select {
  padding: 4px 12px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-weight: 700;
}

.dash-alert {
  background: linear-gradient(90deg, #fff7ed, #ffedd5);
  border: 1px solid #fed7aa;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dash-alert a {
  color: #9a3412;
  font-weight: 800;
  text-decoration: none;
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

@media(min-width: 992px) {
  .dash-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.dash-stat-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 16px;
  border-radius: 12px;
}

.dash-stat-label {
  font-size: 10px;
  font-weight: 800;
  color: #888;
  margin-bottom: 8px;
}

.dash-stat-value {
  font-size: 18px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 4px;
}

.dash-stat-path {
  font-size: 10px;
  color: #1cb85a;
  font-weight: 700;
}

.dash-finances {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

@media(min-width: 992px) {
  .dash-finances {
    grid-template-columns: repeat(3, 1fr);
  }
}

.dash-finance-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}

.dash-finance-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 800;
  color: #888;
  margin-bottom: 12px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #1cb85a;
  border-radius: 50%;
}

.dash-finance-value {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 16px;
}

.dash-btn-sm {
  background: #fff;
  border: 1px solid #ddd;
  padding: 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.dash-btn-sm.disabled {
  background: #f5f5f5;
  color: #ccc;
  cursor: not-allowed;
}

.dash-finance-card.wallet .dash-finance-value {
  color: #1cb85a;
}

.dash-lower {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media(min-width: 992px) {
  .dash-lower {
    grid-template-columns: 1fr 1fr;
  }
}

.dash-card-bottom {
  background: #fff;
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 12px;
}

.dash-card-bottom h4 {
  font-size: 12px;
  font-weight: 800;
  color: #888;
  margin-bottom: 16px;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  margin-bottom: 12px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot.green { background: #1cb85a; }
.dot.orange { background: var(--orange); }

.activity-item small {
  color: #aaa;
  margin-left: auto;
}

.graph-placeholder {
  height: 80px;
  width: 100%;
}

.graph-placeholder svg {
  width: 100%;
  height: 100%;
}

/* Micro-animations */
.dash-mockup * {
  transition: all 0.3s ease;
}

.dash-stat-card:hover, .dash-finance-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.dash-btn-sm:not(.disabled):hover {
  background: var(--bg);
}

/* SECTION COMMON - Mobile First */
.section {
  padding: 60px 0;
}

@media(min-width: 768px) {
  .section {
    padding: 100px 0;
  }
}

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

.sec-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--orange);
  margin-bottom: 12px;
  display: block;
}

@media(min-width: 768px) {
  .sec-label {
    font-size: 12px;
    margin-bottom: 16px;
  }
}

.sec-title {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 16px;
  color: var(--text);
}

@media(min-width: 768px) {
  .sec-title {
    font-size: 40px;
    margin-bottom: 24px;
  }
}

.sec-sub {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 40px;
}

@media(min-width: 768px) {
  .sec-sub {
    font-size: 18px;
    margin: 0 auto 64px;
  }
}

/* FEATURES B2B - Mobile First */
.feat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media(min-width: 768px) {
  .feat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media(min-width: 992px) {
  .feat-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.feat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: all .2s;
  text-align: left;
}

@media(min-width: 768px) {
  .feat-card {
    border-radius: 16px;
    padding: 32px;
  }
}

.feat-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.feat-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

@media(min-width: 768px) {
  .feat-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    font-size: 24px;
    margin-bottom: 20px;
  }
}

.feat-title {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text);
}

@media(min-width: 768px) {
  .feat-title {
    font-size: 18px;
    margin-bottom: 12px;
  }
}

.feat-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

@media(min-width: 768px) {
  .feat-desc {
    font-size: 15px;
  }
}

/* HOW IT WORKS - Mobile First */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  position: relative;
}

@media(min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media(min-width: 992px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .steps-grid::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: var(--border);
    z-index: 1;
  }
}

.step-item {
  position: relative;
  z-index: 2;
  text-align: center;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  color: var(--text);
  margin: 0 auto 16px;
  box-shadow: 0 0 0 6px var(--bg);
}

@media(min-width: 992px) {
  .step-num {
    width: 64px;
    height: 64px;
    border: 4px solid var(--orange);
    font-size: 24px;
    margin: 0 auto 24px;
    box-shadow: 0 0 0 8px var(--bg);
  }
}

.step-title {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text);
}

@media(min-width: 768px) {
  .step-title {
    font-size: 16px;
  }
}

.step-desc {
  font-size: 14px;
  color: var(--text-2);
}

.steps-grid.nobg .step-num {
  box-shadow: 0 0 0 6px #fff;
}

/* PLANS - Mobile First */
.plans-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

@media(min-width: 768px) {
  .plans-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media(min-width: 992px) {
  .plans-wrap {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.plan-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  position: relative;
  transition: all .2s;
  display: flex;
  flex-direction: column;
}

@media(min-width: 768px) {
  .plan-card {
    border-radius: 20px;
    padding: 40px;
  }
}

.plan-card:hover {
  border-color: #ccc;
}

.plan-card.featured {
  border-color: var(--orange);
  box-shadow: 0 12px 32px rgba(240, 78, 35, .1);
  transform: scale(1.02);
  z-index: 2;
}

.plan-badge {
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 4px 12px;
  border-radius: 20px;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}

@media(min-width: 768px) {
  .plan-badge {
    font-size: 11px;
    padding: 6px 16px;
    top: -14px;
  }
}

.plan-name {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 8px;
}

@media(min-width: 768px) {
  .plan-name {
    font-size: 20px;
    margin-bottom: 12px;
  }
}

.plan-price {
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

@media(min-width: 768px) {
  .plan-price {
    font-size: 48px;
  }
}

.plan-currency {
  font-size: 18px;
  font-weight: 800;
}

@media(min-width: 768px) {
  .plan-currency {
    font-size: 20px;
  }
}

.plan-period {
  font-size: 14px;
  color: var(--text-3);
  font-weight: 700;
}

@media(min-width: 768px) {
  .plan-period {
    font-size: 15px;
  }
}

.plan-sub {
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 24px;
  min-height: auto;
}

@media(min-width: 992px) {
  .plan-sub {
    margin-bottom: 32px;
    min-height: 48px;
  }
}

.plan-list {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}

@media(min-width: 768px) {
  .plan-list {
    margin-bottom: 40px;
  }
}

.plan-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text-2);
}

@media(min-width: 768px) {
  .plan-list li {
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
  }
}

.plan-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 900;
  background: var(--green-light);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 2px;
}

@media(min-width: 768px) {
  .plan-list li::before {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }
}

.plan-list li.pro-li::before {
  background: var(--orange-light);
  color: var(--orange);
}

/* INDICA PRO - Timeline e Gráficos */
.timeline-wrap {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 20px 0;
}

.timeline-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 24px;
  width: 2px;
  background: var(--border);
}

@media(min-width: 768px) {
  .timeline-wrap::before {
    left: 40px;
  }
}

.tl-item {
  position: relative;
  padding-left: 64px;
  margin-bottom: 40px;
}

@media(min-width: 768px) {
  .tl-item {
    padding-left: 96px;
    margin-bottom: 56px;
  }
}

.tl-item:last-child {
  margin-bottom: 0;
}

.tl-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--border);
  position: absolute;
  left: 1px;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  color: var(--text-3);
  box-shadow: 0 0 0 4px #fff;
  z-index: 2;
}

@media(min-width: 768px) {
  .tl-icon {
    width: 64px;
    height: 64px;
    left: 9px;
    font-size: 18px;
    border-width: 5px;
  }
}

.tl-item.active .tl-icon {
  border-color: var(--orange);
  color: var(--orange);
}

.tl-item.green .tl-icon {
  border-color: var(--green);
  color: var(--green);
}

.tl-item.purple .tl-icon {
  border-color: var(--purple);
  color: var(--purple);
}

.tl-content {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}

@media(min-width: 768px) {
  .tl-content {
    padding: 32px;
  }
}

.tl-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

@media(min-width: 768px) {
  .tl-title {
    font-size: 20px;
    margin-bottom: 12px;
  }
}

.tl-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

@media(min-width: 768px) {
  .tl-desc {
    font-size: 15px;
  }
}

.chart-box {
  max-width: 800px;
  margin: 60px auto 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow);
  text-align: center;
}

@media(min-width: 768px) {
  .chart-box {
    padding: 48px;
  }
}

.chart-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 24px;
}

.chart-flow {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

@media(min-width: 768px) {
  .chart-flow {
    flex-direction: row;
    gap: 24px;
  }
}

.cf-node {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  width: 100%;
  max-width: 200px;
}

.cf-arrow {
  font-size: 20px;
  color: var(--text-3);
  transform: rotate(90deg);
}

@media(min-width: 768px) {
  .cf-arrow {
    transform: rotate(0);
  }
}

.cf-result {
  background: var(--green-light);
  border: 1px solid rgba(28, 184, 90, .2);
  color: #0b6830;
  padding: 16px 24px;
  border-radius: 12px;
  font-weight: 900;
  width: 100%;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cf-result span {
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
}

/* BLOG SECTION */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}

@media(min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media(min-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all .2s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  box-shadow: var(--shadow);
  border-color: #ccc;
  transform: translateY(-4px);
}

.blog-thumb {
  width: 100%;
  height: 200px;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--text-3);
  font-weight: 700;
}

.blog-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-cat {
  font-size: 11px;
  font-weight: 800;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 8px;
}

.blog-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 24px;
}

.blog-footer {
  margin-top: auto;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-3);
}

.blog-categories {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.bcat {
  padding: 6px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-2);
  text-decoration: none;
  transition: all .2s;
  cursor: pointer;
}

.bcat:hover,
.bcat.active {
  border-color: var(--orange);
  color: var(--orange);
}

/* MODALS FOR FORMS */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: #fff;
  width: 100%;
  max-width: 480px;
  border-radius: 20px;
  padding: 32px;
  position: relative;
  transform: translateY(20px);
  transition: transform .3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .2);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  background: var(--bg);
  border: none;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 900;
  color: var(--text-3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}

.modal-close:hover {
  background: var(--border);
  color: var(--text);
}

.form-field {
  margin-bottom: 16px;
  text-align: left;
}

.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.form-field input,
.form-field select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  transition: border .2s;
  outline: none;
}

.form-field input:focus,
.form-field select:focus {
  border-color: var(--orange);
}

/* FOOTER - Mobile First */
footer {
  background: #111;
  color: rgba(255, 255, 255, .6);
  padding: 60px 0 30px;
}

@media(min-width: 768px) {
  footer {
    padding: 80px 0 40px;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media(min-width: 576px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media(min-width: 992px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 64px;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  text-decoration: none;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  max-width: 100%;
}

@media(min-width: 992px) {
  .footer-desc {
    max-width: 320px;
  }
}

.footer-title {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

@media(min-width: 992px) {
  .footer-title {
    margin-bottom: 24px;
  }
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
  margin-bottom: 12px;
  font-size: 14px;
  transition: color .2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  text-align: center;
}

@media(min-width: 768px) {
  .footer-bottom {
    padding-top: 32px;
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    font-size: 13px;
  }
}

/* TRUST SHIELD (Quero Indicar Page) */
.trust-shield {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-light);
  color: #0b6830;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 20px;
  border: 1px solid rgba(28, 184, 90, .2);
}

@media(min-width: 768px) {
  .trust-shield {
    padding: 8px 16px;
    font-size: 12px;
    margin-bottom: 24px;
  }
}