/* ==========================================================================
   Big Solu Landing — style.css
   Portado do Blazor Site (landing.css + componentes CSS)
   ========================================================================== */

/* --- VARIÁVEIS --- */
:root {
  --bg-color: #0f172a;
  --card-bg: #1e293b;
  --primary-color: #3b82f6;
  --accent-color: #06b6d4;
  --vip-color: #8b5cf6;
  --ai-color: #d946ef;
  --success-color: #10b981;
  --text-color: #f8fafc;
  --text-muted: #94a3b8;
  --border-color: #334155;
  --gradient: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  --ai-gradient: linear-gradient(135deg, #8b5cf6 0%, #d946ef 100%);
}

/* --- RESET / BASE --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

*  { -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; }

body,
button,
input,
select,
textarea,
h1, h2, h3, h4,
span, p, a {
  font-family: 'Inter', sans-serif;
  outline: none !important;
  box-shadow: none !important;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; }

img { display: block; max-width: 100%; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- NAVBAR --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  padding: 15px 0;
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  text-decoration: none;
  letter-spacing: -0.5px;
}

.logo span { color: var(--primary-color); }

/* Desktop Nav Links */
.nav-links-desktop {
  display: flex;
  gap: 32px;
}

.nav-links-desktop a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links-desktop a:hover { color: white; }

@media (max-width: 992px) {
  .nav-links-desktop { display: none; }
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 2001;
}

@media (max-width: 992px) {
  .hamburger { display: flex; }
}

.hamburger span {
  width: 100%;
  height: 2px;
  background: white;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(15px);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 40px;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
  width: 100%;
  max-width: 300px;
}

.mobile-menu-content a {
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  transition: color 0.3s ease;
}

.mobile-menu-content a:hover { color: var(--primary-color); }

.mobile-menu-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 10px;
}

/* --- HERO --- */
.hero {
  padding: 160px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(180deg,
      rgba(15,23,42,0.80) 0%,
      rgba(15,23,42,0.85) 50%,
      rgba(15,23,42,0.95) 92%,
      rgba(15,23,42,1.00) 99%),
    url('../assets/banner.png') center 35% / cover no-repeat;
  z-index: -1;
}

.hero-content { position: relative; z-index: 1; }

.badge {
  background: rgba(59, 130, 246, 0.2);
  color: white;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 20px;
  border: 1px solid rgba(59, 130, 246, 0.4);
  backdrop-filter: blur(8px);
  letter-spacing: 0.5px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.highlight { color: var(--primary-color); }

.hero p {
  font-size: 1.25rem;
  color: #e2e8f0;
  max-width: 800px;
  margin: 0 auto 40px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  font-weight: 400;
}

.hero-btns {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* --- BUTTONS --- */
.btn-primary,
.btn-hero-common,
.btn-hero-secondary {
  background: var(--gradient);
  color: white;
  height: 60px;
  min-width: 320px;
  padding: 0 36px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.2);
  border: none;
  cursor: pointer;
}

.btn-signup-hero {
  background: linear-gradient(135deg, #2563eb 0%, #0891b2 100%);
}

.btn-hero-secondary {
  background: linear-gradient(135deg, #2563eb 0%, #1e3a8a 100%);
  border: none;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover,
.btn-hero-common:hover,
.btn-hero-secondary:hover {
  filter: brightness(1.1);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3);
  transform: translateY(-1px) !important;
  color: white;
}

.btn-primary:hover > *,
.btn-hero-common:hover > *,
.btn-hero-secondary:hover > * {
  transform: translateX(4px);
  transition: transform 0.3s ease;
}

.btn-primary > *,
.btn-hero-common > *,
.btn-hero-secondary > * {
  transition: transform 0.3s ease;
}

.btn-primary:active,
.btn-hero-common:active,
.btn-hero-secondary:active {
  transform: scale(0.98);
}

/* Cookie banner buttons */
.btn-ghost-sm {
  background: transparent;
  border: 1px solid rgba(148, 163, 184, 0.3);
  color: white;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}

.btn-ghost-sm:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(148,163,184,0.5);
}

.btn-primary-sm {
  background: var(--gradient);
  color: white;
  border: none;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}

.btn-primary-sm:hover { filter: brightness(1.1); }

/* --- VISUAL BREAK (subbanner) --- */
.visual-break {
  position: relative;
  height: 450px;
  width: 100%;
  margin: -20px auto 30px;
  max-width: 1100px;
  border-radius: 24px;
  overflow: hidden;
  z-index: 10;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #0b1120;
}

.visual-break img.main-visual {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
  transition: opacity 0.6s ease;
  display: block;
  transform: scale(1.02);
}

@media (max-width: 992px) {
  .visual-break { height: 350px; }
  .visual-break img.main-visual { transform: scale(1.6); }
}

/* --- FEATURES --- */
.features { padding: 100px 0; }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-header h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: rgba(30, 41, 59, 0.4);
  padding: 40px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.03), transparent 60%);
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-12px) rotateX(4deg) rotateY(-2deg);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.feature-card .icon-box {
  width: 70px;
  height: 70px;
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 25px;
  position: relative;
  transition: all 0.4s ease;
  animation: icon-float 4s ease-in-out infinite;
}

/* Card color themes */
.card-agenda .icon-box { color: #60a5fa; background: rgba(96, 165, 250, 0.1); }
.card-agenda:hover .icon-box { background: #60a5fa; color: white; box-shadow: 0 0 30px rgba(96, 165, 250, 0.4); }

.card-sales .icon-box { color: #f472b6; background: rgba(244, 114, 182, 0.1); }
.card-sales:hover .icon-box { background: #f472b6; color: white; box-shadow: 0 0 30px rgba(244, 114, 182, 0.4); }

.card-control .icon-box { color: #34d399; background: rgba(52, 211, 153, 0.1); }
.card-control:hover .icon-box { background: #34d399; color: white; box-shadow: 0 0 30px rgba(52, 211, 153, 0.4); }

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 18px;
  color: white;
  font-weight: 700;
  line-height: 1.3;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

@keyframes icon-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* --- FREE SERVICE HIGHLIGHT --- */
.free-service-highlight {
  margin-top: 100px;
  background: linear-gradient(135deg, rgba(30,41,59,0.4) 0%, rgba(15,23,42,0.6) 100%);
  border-radius: 32px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.free-service-highlight::before {
  content: "";
  position: absolute;
  top: -50%; left: -20%;
  width: 100%; height: 100%;
  background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, transparent 70%);
  z-index: -1;
}

.free-badge {
  background: var(--success-color);
  color: white;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 20px;
  display: inline-block;
}

.free-content h3 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.free-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  line-height: 1.8;
}

.free-cta { margin-bottom: 30px; }

.free-disclaimer {
  font-size: 0.65rem;
  color: #475569;
  font-style: italic;
  opacity: 0.8;
}

/* Browser Mockup */
.free-visual { perspective: 1000px; }

.browser-mockup {
  background: #1e293b;
  border-radius: 12px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: rotateY(-15deg) rotateX(10deg);
  transition: transform 0.5s ease;
  animation: float-mockup 6s ease-in-out infinite;
}

.browser-mockup:hover {
  transform: rotateY(0) rotateX(0) scale(1.05);
}

.mockup-header {
  background: #0f172a;
  padding: 12px 16px;
  display: flex;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot.red    { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green  { background: #27c93f; }

.mockup-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.skeleton-rect {
  background: linear-gradient(90deg,
    rgba(255,255,255,0.05) 25%,
    rgba(255,255,255,0.10) 50%,
    rgba(255,255,255,0.05) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 2s infinite linear;
  border-radius: 6px;
}
.skeleton-rect.title   { height: 28px; width: 60%; }
.skeleton-rect.body    { height: 80px; width: 100%; }
.skeleton-rect.button1 { height: 48px; width: 180px; }
.skeleton-rect.button2 { height: 40px; width: 40%; border: 1px solid rgba(255,255,255,0.1); background: transparent; animation: none; }

@keyframes skeleton-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@keyframes float-mockup {
  0%, 100% { transform: rotateY(-15deg) rotateX(10deg) translateY(0); }
  50%       { transform: rotateY(-15deg) rotateX(10deg) translateY(-20px); }
}

/* Segunda seção grátis (Página de Links) — layout espelhado */
.free-service-highlight + .free-service-highlight { margin-top: 40px; }
.free-service-highlight--reverse .free-content { order: 2; }
.free-service-highlight--reverse .free-visual  { order: 1; }

/* Mockup "link na bio" */
.linkbio-mockup {
  background: #1e293b;
  border-radius: 28px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px 26px;
  max-width: 300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transform: rotateY(15deg) rotateX(10deg);
  transition: transform 0.5s ease;
  animation: float-mockup-bio 6s ease-in-out infinite;
}
.linkbio-mockup:hover { transform: rotateY(0) rotateX(0) scale(1.05); }

.linkbio-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(59,130,246,0.45), rgba(6,182,212,0.45));
  border: 2px solid rgba(255,255,255,0.12);
}
.linkbio-name { height: 18px; width: 55%; border-radius: 6px; background: rgba(255,255,255,0.12); }
.linkbio-bio  { height: 12px; width: 75%; border-radius: 6px; background: rgba(255,255,255,0.06); margin-bottom: 4px; }
.linkbio-link {
  height: 44px; width: 100%; border-radius: 12px;
  background: linear-gradient(90deg,
    rgba(255,255,255,0.05) 25%,
    rgba(255,255,255,0.10) 50%,
    rgba(255,255,255,0.05) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 2s infinite linear;
}
.linkbio-link.ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  animation: none;
}

@keyframes float-mockup-bio {
  0%, 100% { transform: rotateY(15deg) rotateX(10deg) translateY(0); }
  50%       { transform: rotateY(15deg) rotateX(10deg) translateY(-20px); }
}

@media (max-width: 992px) {
  .free-service-highlight {
    grid-template-columns: 1fr;
    padding: 40px;
    gap: 40px;
    text-align: center;
  }
  .free-visual { order: -1; }
  /* No mobile ambas as seções empilham com o visual no topo */
  .free-service-highlight--reverse .free-content { order: 0; }
  .free-service-highlight--reverse .free-visual  { order: -1; }
  .browser-mockup {
    transform: none;
    animation: float-mockup-mobile 6s ease-in-out infinite;
    max-width: 500px;
    margin: 0 auto;
  }
  .linkbio-mockup {
    transform: none;
    animation: float-mockup-mobile 6s ease-in-out infinite;
  }
  @keyframes float-mockup-mobile {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-15px); }
  }
  .free-content h3 { font-size: 2rem; }
}

/* --- CALCULATOR SECTION --- */
.calculator-section {
  padding: 60px 0 100px;
  background-color: #020617;
}

/* Credit Flow Panel */
.credit-flow {
  margin: 0 auto 40px;
  max-width: 1200px;
}

.credit-flow-panel {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 26px;
  border: 1px solid rgba(74, 222, 128, 0.14);
  background:
    radial-gradient(circle at top left, rgba(16,185,129,0.22), transparent 34%),
    radial-gradient(circle at bottom right, rgba(59,130,246,0.18), transparent 30%),
    linear-gradient(135deg, rgba(15,23,42,0.98), rgba(17,24,39,0.94));
  box-shadow: 0 24px 50px rgba(2, 6, 23, 0.35);
}

.credit-flow-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 10%, rgba(255,255,255,0.05) 45%, transparent 75%);
  transform: translateX(-100%);
  animation: credit-sheen 5s ease-in-out infinite;
}

.credit-flow-copy {
  max-width: 720px;
  margin-bottom: 22px;
}

.credit-flow-kicker {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.14);
  color: #6ee7b7;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 800;
}

.credit-flow-copy h4 {
  margin: 14px 0 10px;
  color: white;
  font-size: 1.8rem;
  line-height: 1.15;
}

.credit-flow-copy p {
  margin: 0;
  color: #94a3b8;
  font-size: 1rem;
  line-height: 1.8;
  max-width: 760px;
}

.credit-flow-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.credit-step {
  position: relative;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(15, 23, 42, 0.62);
  backdrop-filter: blur(6px);
}

.credit-step strong {
  display: block;
  color: white;
  margin-bottom: 8px;
  font-size: 1rem;
}

.credit-step small {
  display: block;
  color: #94a3b8;
  line-height: 1.6;
  font-size: 0.88rem;
}

.credit-step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(59,130,246,0.24), rgba(16,185,129,0.24));
  color: #f8fafc;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

@keyframes credit-sheen {
  0%   { transform: translateX(-100%); }
  55%  { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

/* Calc Wrapper */
.calc-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.calc-col-left {
  flex: 2;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.calc-col-right {
  flex: 1;
  min-width: 300px;
  position: sticky;
  top: 100px;
}

/* Summary Box */
.summary-box {
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  border: 1px solid #3b82f6;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.price-display {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin: 10px 0;
}

.calc-summary-list {
  list-style: none;
  text-align: left;
  margin-bottom: 20px;
}

.calc-summary-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.calc-summary-empty {
  color: #475569;
  font-size: 0.85rem;
  text-align: center;
  padding: 20px 0;
  border: none !important;
}

/* Calculator module items (generated by calculator.js) */
.calc__module {
  display: flex;
  gap: 15px;
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.calc__module:hover {
  border-color: #94a3b8;
  transform: translateY(-2px);
}

.calc__module.active {
  background: rgba(59, 130, 246, 0.08);
  border-color: #3b82f6;
  box-shadow: 0 0 0 1px #3b82f6;
}

.calc__module-check {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid #334155;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: transparent;
  transition: all 0.2s;
  margin-top: 2px;
}

.calc__module.active .calc__module-check {
  background: #3b82f6;
  border-color: #3b82f6;
  color: white;
}

.calc__module-info { flex: 1; }
.calc__module-info h4 { color: white; font-size: 0.95rem; margin-bottom: 4px; }
.calc__module-info p  { color: var(--text-muted); font-size: 0.85rem; line-height: 1.5; }

.calc__module-price {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 0.9rem;
  color: #60a5fa;
  white-space: nowrap;
}

.calc__module-price.free { color: var(--success-color); }
.calc__module-price small { font-size: 0.7rem; color: var(--text-muted); }

.dep-note {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.75rem;
  color: #64748b;
}
.dep-note i { margin-right: 4px; }

/* --- ROADMAP --- */
.roadmap-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #0d0f17 0%, #0a0c13 100%);
  position: relative;
  overflow: hidden;
}

.roadmap-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99,102,241,0.4), transparent);
}

.roadmap-header {
  text-align: center;
  margin-bottom: 56px;
}

.roadmap-kicker { margin-bottom: 16px; }

.roadmap-kicker-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.4);
  color: #818cf8;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
}

.roadmap-header h2 {
  color: #f1f5f9;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  margin: 0 0 14px;
  line-height: 1.2;
}

.roadmap-header p {
  color: #64748b;
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.roadmap-category-card {
  background: rgba(15, 18, 30, 0.8);
  border: 1px solid rgba(99, 102, 241, 0.15);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(4px);
  transition: border-color 0.2s ease;
}

.roadmap-category-card:hover {
  border-color: rgba(99, 102, 241, 0.35);
}

.roadmap-category-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.roadmap-category-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #818cf8;
  font-size: 1rem;
  flex-shrink: 0;
}

.roadmap-category-title {
  color: #e2e8f0;
  font-weight: 700;
  font-size: 0.95rem;
}

.roadmap-category-count {
  color: #475569;
  font-size: 0.75rem;
  margin-top: 2px;
}

.roadmap-module-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.roadmap-module-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.roadmap-module-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.5);
  border: 1px solid rgba(99, 102, 241, 0.7);
  flex-shrink: 0;
  margin-top: 5px;
}

.roadmap-module-info { flex: 1; min-width: 0; }

.roadmap-module-title {
  color: #94a3b8;
  font-size: 0.85rem;
  font-weight: 600;
}

.roadmap-module-desc {
  color: #475569;
  font-size: 0.75rem;
  margin-top: 2px;
  line-height: 1.4;
}

.roadmap-module-badge {
  flex-shrink: 0;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.25);
  color: #6366f1;
  padding: 2px 8px;
  border-radius: 100px;
  white-space: nowrap;
  margin-top: 3px;
}

.roadmap-cta-block { margin-top: 16px; }

.roadmap-cta-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, rgba(99,102,241,0.12), rgba(139,92,246,0.08));
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 20px;
  padding: 28px 32px;
  flex-wrap: wrap;
}

.roadmap-cta-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(99, 102, 241, 0.2);
  border: 1px solid rgba(99, 102, 241, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #818cf8;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.roadmap-cta-copy {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.roadmap-cta-copy strong {
  color: #e2e8f0;
  font-size: 1rem;
  font-weight: 700;
}

.roadmap-cta-copy span {
  color: #64748b;
  font-size: 0.88rem;
}

.roadmap-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease, transform 0.2s ease;
  border: none;
}

.roadmap-cta-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  color: white;
}

/* --- FOOTER --- */
footer {
  background: var(--bg-color);
  padding: 60px 0 30px;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

/* --- COOKIE BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 680px;
  width: calc(100% - 48px);
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 16px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 9999;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  flex-wrap: wrap;
}

.cookie-banner[hidden] { display: none; }

.cookie-banner__icon { font-size: 1.5rem; flex-shrink: 0; }

.cookie-banner__text { flex: 1; min-width: 200px; }
.cookie-banner__text strong { display: block; font-size: 0.9rem; margin-bottom: 4px; }
.cookie-banner__text p { font-size: 0.8rem; color: var(--text-muted); margin: 0; }
.cookie-banner__text a { color: #60a5fa; text-decoration: underline; }

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
  .hero { padding: 120px 0 60px; }
  .hero h1 { font-size: 2.8rem; }
  .credit-flow-steps { grid-template-columns: 1fr; }
  .credit-flow-copy h4 { font-size: 1.45rem; }
  .credit-flow-panel { padding: 22px; }
}

@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .hero { padding: 100px 0 50px; }
  .badge { font-size: 0.8rem; padding: 6px 14px; margin-bottom: 15px; }
  .hero h1 { font-size: 2rem; margin-bottom: 15px; }
  .hero p  { font-size: 1rem; margin-bottom: 30px; padding: 0 10px; }
  .btn-primary,
  .btn-hero-common,
  .btn-hero-secondary {
    height: 52px;
    min-width: unset;
    width: 100%;
    font-size: 1rem;
    border-radius: 10px;
  }
  .section-header h2 { font-size: 1.9rem; }
  .section-header h3 { font-size: 1.6rem; }
  .calc-wrapper { flex-direction: column; }
  .calc-col-right {
    width: 100%;
    position: relative;
    top: 0;
  }
  .summary-box { position: relative; top: 0; }
}

@media (max-width: 640px) {
  .roadmap-section { padding: 56px 16px; }
  .roadmap-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }
  .roadmap-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* --- ANIMAÇÃO DE ENTRADA (via IntersectionObserver) --- */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}
