:root {
    --bg: #151619;
    --bg2: #1a1d22;
    --bg3: #1f2228;
    --accent: #859fe1;
    --accent2: #3e4868;
    --accent-glow: rgba(133,159,225,0.18);
    --text: #e8eaf0;
    --text-muted: #7a8099;
    --text-dim: #4a5068;
    --border: rgba(133,159,225,0.12);
    --border-strong: rgba(133,159,225,0.25);
    --radius: 14px;
    --radius-sm: 8px;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  h1, h2, h3, h4, .nav-logo { font-family: 'Jost', sans-serif; }

  /* ---- NOISE OVERLAY ---- */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.6;
  }

  /* ---- NAV ---- */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 68px;
    background: rgba(21,22,25,0.85);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
  }

  .nav-logo {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .nav-logo img { width: 36px; height: 36px; object-fit: contain; }

  .nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
  }

  .nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: color .2s;
  }

  .nav-links a:hover { color: var(--text); }

  .nav-ctas {
    display: flex;
    gap: 10px;
    align-items: center;
  }

  /* ---- BUTTONS ---- */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    text-decoration: none;
    transition: all .22s;
    border: none;
  }

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

  .btn-ghost:hover {
    color: var(--text);
    border-color: var(--accent);
    background: var(--accent-glow);
  }

  .btn-primary {
    background: var(--accent);
    color: #0e1016;
    font-weight: 700;
  }

  .btn-primary:hover {
    background: #9db5f0;
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(133,159,225,0.3);
  }

  .btn-outline {
    background: transparent;
    color: var(--accent);
    border: 1.5px solid var(--accent);
  }

  .btn-outline:hover {
    background: var(--accent-glow);
    transform: translateY(-1px);
  }

  .btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: 10px;
  }

  /* ---- SECTIONS ---- */
  section { padding: 100px 5%; }

  .container { max-width: 1140px; margin: 0 auto; }

  .section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
  }

  .section-label::before {
    content: '';
    width: 18px;
    height: 1.5px;
    background: var(--accent);
  }

  .section-title {
    font-size: clamp(2rem, 4vw, 2.9rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text);
  }

  .section-title span { /* gradient applied below */ }

  .section-sub {
    margin-top: 14px;
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 540px;
    font-weight: 300;
  }

  /* ---- HERO ---- */
  #hero {
    padding-top: 160px;
    padding-bottom: 120px;
    position: relative;
    overflow: hidden;
  }

  .hero-glow {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(133,159,225,0.1) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-glow2 {
    position: absolute;
    bottom: -100px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(62,72,104,0.2) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-content {
    position: relative;
    max-width: 720px;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(133,159,225,0.1);
    border: 1px solid var(--border-strong);
    border-radius: 100px;
    font-size: 0.82rem;
    color: var(--accent);
    margin-bottom: 28px;
    font-weight: 500;
  }

  .hero-badge .badge-dot {
    width: 7px; height: 7px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
    display: inline-block;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
  }

  .hero-title {
    font-size: clamp(2.8rem, 6vw, 4.4rem);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.04em;
    color: var(--text);
    margin-bottom: 24px;
  }

  .hero-title em {
    font-style: normal;
    position: relative;
  }

  .hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 300;
    max-width: 540px;
    margin-bottom: 40px;
    line-height: 1.7;
  }

  .hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
  }

  .hero-ctas .trial-note {
    font-size: 0.82rem;
    color: var(--text-dim);
    margin-top: 4px;
    width: 100%;
  }

  .hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
  }

  .stat-item .num {
    font-family: 'Jost', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.03em;
  }

  .stat-item .num span { color: var(--accent); }

  .stat-item .lbl {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 2px;
  }

  /* ---- MOCKUP ---- */
  .hero-visual {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-48%);
    width: 52%;
    max-width: 620px;
  }

  .mockup-frame {
    background: #ffffff;
    border: 1px solid rgba(133,159,225,0.15);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(133,159,225,0.08);
  }

  .mockup-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    border-bottom: 1px solid #eef0f5;
    background: #f7f8fa;
    position: relative;
  }

  .mockup-bar .dot {
    width: 10px; height: 10px;
    border-radius: 50%;
  }

  .mockup-bar .dot:nth-child(1) { background: #ff5f57; }
  .mockup-bar .dot:nth-child(2) { background: #febc2e; }
  .mockup-bar .dot:nth-child(3) { background: #28c840; }

  .mockup-url {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    color: #94a0b8;
    background: #ffffff;
    border: 1px solid #e6e9f0;
    border-radius: 100px;
    padding: 3px 14px;
  }

  .mockup-body {
    display: grid;
    grid-template-columns: 144px 1fr;
    height: 380px;
    background: #ffffff;
  }

  .mock-sidebar {
    background: #fafbfc;
    border-right: 1px solid #eef0f5;
    padding: 10px 8px;
    display: flex;
    flex-direction: column;
    gap: 1px;
    overflow: hidden;
  }

  .mock-brand {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #859fe1;
    padding: 4px 8px 8px;
  }

  .mock-brand-logo { width: 14px; height: 14px; object-fit: contain; }

  .mock-org {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 6px 8px;
    margin-bottom: 6px;
    border-radius: 6px;
    background: #ffffff;
    border: 1px solid #eef0f5;
    font-size: 0.66rem;
    font-weight: 600;
    color: #2b3242;
  }

  .mock-org-avatar {
    width: 18px; height: 18px;
    border-radius: 5px;
    background: linear-gradient(135deg, #859fe1, #6478b8);
    color: #fff;
    font-size: 0.55rem;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }

  .mock-nav-item {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 5px 8px;
    border-radius: 6px;
    font-size: 0.66rem;
    color: #5c6477;
    cursor: pointer;
  }

  .mock-nav-item.active {
    background: rgba(133,159,225,0.14);
    color: #4d6dc2;
    font-weight: 600;
  }

  .mock-icon {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    color: inherit;
  }

  .mock-content {
    padding: 14px;
    overflow: hidden;
    background: #ffffff;
  }

  .mock-content-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
  }

  .mock-content-title {
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: #1f2433;
  }

  .mock-avatars {
    display: flex;
    align-items: center;
  }

  .mock-avatar {
    width: 18px; height: 18px;
    border-radius: 50%;
    color: #fff;
    font-size: 0.55rem;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    border: 1.5px solid #ffffff;
    margin-left: -4px;
  }

  .mock-avatar:first-child { margin-left: 0; }

  .mock-avatar-more {
    background: #e6e9f0;
    color: #5c6477;
  }

  .mock-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .mock-col-head {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6e7689;
    margin-bottom: 7px;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .mock-col-count {
    background: #eef0f5;
    color: #5c6477;
    font-size: 0.55rem;
    padding: 1px 5px;
    border-radius: 100px;
    font-weight: 700;
  }

  .mock-card {
    background: #ffffff;
    border: 1px solid #eef0f5;
    border-radius: 7px;
    padding: 8px 9px;
    margin-bottom: 6px;
    box-shadow: 0 1px 2px rgba(15,20,40,0.04);
  }

  .mock-card-done { opacity: 0.85; }

  .mock-card-tags {
    display: flex;
    gap: 4px;
    margin-bottom: 5px;
    flex-wrap: wrap;
  }

  .mock-tag {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 0.55rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 3px;
    line-height: 1;
  }

  .tag-blue   { background: rgba(133,159,225,0.18); color: #4d6dc2; }
  .tag-green  { background: rgba(34,197,94,0.16);   color: #16a34a; }
  .tag-orange { background: rgba(249,115,22,0.16);  color: #ea580c; }
  .tag-pink   { background: rgba(236,72,153,0.16);  color: #db2777; }
  .tag-amber  { background: rgba(245,158,11,0.18);  color: #c2820e; }

  .mock-card-text {
    font-size: 0.7rem;
    color: #1f2433;
    line-height: 1.35;
    font-weight: 500;
  }

  .mock-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    margin-top: 7px;
  }

  .mock-card-icon {
    width: 9px;
    height: 9px;
    flex-shrink: 0;
  }

  .mock-card-date {
    font-size: 0.56rem;
    color: #6e7689;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-weight: 500;
  }

  .mock-card-date-due { color: #c2410c; }

  .mock-card-pills {
    display: inline-flex;
    gap: 4px;
  }

  .mock-mini-pill {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 0.56rem;
    color: #6e7689;
    background: #f3f5f9;
    padding: 2px 5px;
    border-radius: 4px;
    font-weight: 500;
  }

  .mock-mini-avatars {
    display: flex;
  }

  .mock-mini-avatar {
    width: 12px; height: 12px;
    border-radius: 50%;
    border: 1.5px solid #fff;
    margin-left: -4px;
  }

  .mock-mini-avatar:first-child { margin-left: 0; }

  /* ---- FEATURES ---- */
  #features { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 60px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
  }

  .feature-card {
    padding: 36px 32px;
    background: var(--bg2);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transition: background .25s;
    position: relative;
    overflow: hidden;
  }

  .feature-card:nth-child(3n) { border-right: none; }
  .feature-card:nth-last-child(-n+3) { border-bottom: none; }

  .feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
    opacity: 0;
    transition: opacity .25s;
  }

  .feature-card:hover { background: var(--bg3); }
  .feature-card:hover::before { opacity: 1; }

  .feat-icon {
    width: 44px;
    height: 44px;
    background: rgba(133,159,225,0.1);
    border: 1px solid var(--border-strong);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--accent);
  }

  .feat-icon svg {
    width: 20px;
    height: 20px;
  }

  .feature-card:hover .feat-icon {
    background: rgba(133,159,225,0.18);
  }

  .feat-title {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
  }

  .feat-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
    font-weight: 300;
  }

  /* ---- HOW IT WORKS (subtle) ---- */
  .integrations-strip {
    margin-top: 80px;
    padding: 32px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .integrations-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .int-label {
    font-size: 0.78rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-right: 8px;
  }

  .int-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.82rem;
    color: var(--text-muted);
    transition: border-color .2s, color .2s;
  }

  .int-badge:hover {
    border-color: var(--accent);
    color: var(--text);
  }

  .int-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--text-muted);
    transition: color .2s;
  }

  .int-badge:hover .int-icon { color: var(--text); }
  .int-icon-meta { color: #e1306c; }
  .int-icon-fb   { color: #1877f2; }
  .int-icon-wpp  { color: #25d366; }

  /* ---- PLANS ---- */
  #planos { background: var(--bg); }

  .plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
  }

  .plan-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 32px;
    position: relative;
    transition: transform .25s, border-color .25s;
    display: flex;
    flex-direction: column;
  }

  .plan-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent2);
  }

  .plan-card.featured {
    border-color: var(--accent);
    background: linear-gradient(160deg, rgba(133,159,225,0.07) 0%, var(--bg2) 60%);
  }

  .plan-card.featured:hover {
    border-color: #9db5f0;
  }

  .plan-popular {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #0e1016;
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    white-space: nowrap;
  }

  .plan-name {
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
  }

  .plan-price {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    margin-bottom: 6px;
  }

  .plan-price .currency {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
    padding-bottom: 6px;
  }

  .plan-price .amount {
    font-family: 'Jost', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
    letter-spacing: -0.04em;
  }

  .plan-price .period {
    font-size: 0.82rem;
    color: var(--text-dim);
    padding-bottom: 8px;
  }

  .plan-tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    font-weight: 300;
    min-height: 36px;
  }

  .plan-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 24px;
  }

  .plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    margin-bottom: 32px;
  }

  .plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
  }

  .plan-features li .check {
    width: 18px;
    height: 18px;
    background: rgba(133,159,225,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
  }

  .plan-features li .check svg {
    width: 10px;
    height: 10px;
  }

  .plan-btn {
    display: block;
    text-align: center;
    padding: 13px;
    border-radius: var(--radius-sm);
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all .22s;
    border: 1.5px solid var(--border-strong);
    color: var(--text-muted);
    background: transparent;
  }

  .plan-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-glow);
  }

  .plan-btn.featured {
    background: var(--accent);
    border-color: var(--accent);
    color: #0e1016;
  }

  .plan-btn.featured:hover {
    background: #9db5f0;
    border-color: #9db5f0;
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(133,159,225,0.3);
  }

  /* EXTRAS */
  .extras-section {
    margin-top: 56px;
  }

  .extras-title {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .extras-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
  }

  .extras-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .extra-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: border-color .2s;
  }

  .extra-card:hover { border-color: var(--accent2); }

  .extra-label {
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 500;
  }

  .extra-sub {
    font-size: 0.78rem;
    color: var(--text-dim);
    margin-top: 2px;
  }

  .extra-price {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent);
  }

  /* ---- FAQ ---- */
  #faq { background: var(--bg2); border-top: 1px solid var(--border); }

  .faq-list {
    margin-top: 56px;
    max-width: 740px;
    margin-left: auto;
    margin-right: auto;
  }

  .faq-item {
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    overflow: hidden;
  }

  .faq-item:first-child { border-top: 1px solid var(--border); }

  .faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    user-select: none;
    padding: 24px 0;
  }

  .faq-q .arrow {
    width: 28px;
    height: 28px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .28s ease, background .2s;
    font-size: 0.75rem;
    color: var(--accent);
  }

  .faq-item.open .faq-q .arrow {
    transform: rotate(180deg);
    background: var(--accent-glow);
  }

  .faq-a {
    height: 0;
    overflow: hidden;
    transition: height .32s ease;
  }

  .faq-a-inner {
    padding: 0 0 22px 0;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
  }

/* ---- CTA BANNER ---- */
  #cta-banner {
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
  }

  .cta-inner {
    max-width: 1140px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--accent2) 0%, rgba(62,72,104,0.4) 100%);
    border: 1px solid var(--border-strong);
    border-radius: 20px;
    padding: 72px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-inner::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(133,159,225,0.2) 0%, transparent 70%);
    pointer-events: none;
  }

  .cta-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text);
    margin-bottom: 16px;
  }

  .cta-sub {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 300;
    max-width: 480px;
    margin: 0 auto 36px;
  }

  .cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .cta-trial-note {
    margin-top: 14px;
    font-size: 0.8rem;
    color: var(--text-dim);
  }

  /* ---- FOOTER ---- */
  footer {
    background: var(--bg3);
    border-top: 1px solid var(--border);
    padding: 48px 5%;
  }

  .footer-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }

  .footer-logo {
    font-family: 'Jost', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .footer-links {
    display: flex;
    gap: 28px;
    list-style: none;
  }

  .footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color .2s;
  }

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

  .footer-social a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    border: 1px solid var(--border);
    padding: 7px 14px;
    border-radius: 100px;
    transition: all .2s;
  }

  .footer-social a:hover {
    border-color: #e1306c;
    color: #e1306c;
    background: rgba(225,48,108,0.08);
  }

  .footer-copy {
    width: 100%;
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-dim);
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
  }

  /* ---- SCROLL REVEAL ---- */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: none;
  }

  /* ---- RESPONSIVE (placeholder removido — regras reais estão nos @media abaixo) ---- */

  /* ---- PROMO NOTE ---- */
  .promo-note {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-bottom: 28px;
    font-size: 0.84rem;
    color: var(--text-muted);
    background: linear-gradient(90deg, transparent, rgba(133,159,225,0.07), transparent);
    border: 1px solid rgba(133,159,225,0.15);
    border-radius: 100px;
    padding: 10px 24px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .promo-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--accent);
  }

  /* ---- ILLUSTRATIVE NOTE ---- */
  .illustrative-note {
    font-size: 0.72rem;
    color: var(--text-dim);
    margin-top: 12px;
    text-align: right;
    font-style: italic;
    max-width: 620px;
    position: relative;
    right: 0;
  }

  /* ---- GRADIENT ACCENTS ---- */
  /* Hero section gradient bar */
  #hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent2) 30%, var(--accent) 50%, var(--accent2) 70%, transparent 100%);
    opacity: 0.4;
  }

  /* Section titles with gradient underline accent */
  .section-title span {
    background: linear-gradient(90deg, var(--accent), #a8c4f8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  /* Featured plan card gradient glow */
  .plan-card.featured::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 20%; right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.6;
  }

  /* CTA inner gradient enhancement */
  .cta-inner {
    background: linear-gradient(135deg, rgba(62,72,104,0.55) 0%, rgba(133,159,225,0.08) 60%, rgba(62,72,104,0.3) 100%) !important;
  }

  /* Features section subtle gradient top */
  #funcionalidades {
    background: linear-gradient(180deg, rgba(133,159,225,0.04) 0%, var(--bg2) 80px) !important;
    border-top: 1px solid var(--border) !important;
    border-bottom: 1px solid var(--border) !important;
  }

  /* Hero title gradient on em */
  .hero-title em {
    background: linear-gradient(90deg, var(--accent) 0%, #b0ccff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: normal;
  }


  /* =========================================
     RESPONSIVO
  ========================================= */

  /* Tablet largo */
  @media (max-width: 1100px) {
    .hero-visual { width: 46%; }
    .hero-title { font-size: clamp(2.2rem, 5vw, 3.6rem); }
  }

  /* Tablet */
  @media (max-width: 900px) {
    #hero { padding-top: 110px; padding-bottom: 80px; }
    .hero-visual { display: none; }
    .hero-content { max-width: 100%; }
    .hero-title { font-size: clamp(2rem, 6vw, 3rem); }
    .hero-desc { font-size: 1rem; }

    .features-grid { grid-template-columns: repeat(2, 1fr); }

    .plans-grid {
      grid-template-columns: 1fr;
      max-width: 440px;
      margin-left: auto;
      margin-right: auto;
    }
    .extras-grid { grid-template-columns: 1fr 1fr; }

    .nav-links { display: none; }
    .nav-ctas .btn-ghost { display: none; }

    .section-title { font-size: clamp(1.7rem, 4vw, 2.4rem); }

    .cta-inner { padding: 56px 40px; }
    .cta-title { font-size: clamp(1.6rem, 4vw, 2.4rem); }
  }

  /* Mobile */
  @media (max-width: 600px) {
    section { padding: 64px 5%; }

    nav {
      padding: 0 4%;
      height: 60px;
    }
    .nav-logo { font-size: 1.1rem; }
    .nav-logo img { width: 28px; height: 28px; }
    .nav-ctas .btn { padding: 8px 16px; font-size: 0.82rem; }

    #hero { padding-top: 96px; padding-bottom: 60px; }
    .hero-badge { font-size: 0.75rem; padding: 5px 12px; }
    .hero-title { font-size: clamp(1.8rem, 8vw, 2.6rem); line-height: 1.05; }
    .hero-desc { font-size: 0.95rem; }
    .hero-ctas { gap: 10px; }
    .hero-ctas .btn-lg { padding: 12px 22px; font-size: 0.92rem; }
    .hero-stats {
      gap: 20px;
      flex-wrap: wrap;
      padding-top: 28px;
      margin-top: 40px;
    }
    .hero-stats .stat-item { flex: 1; min-width: 80px; }
    .stat-item .num { font-size: 1.5rem; }

    .features-grid { grid-template-columns: 1fr; }
    .feature-card { padding: 28px 22px; }

    .integrations-row { gap: 8px; }
    .int-badge { font-size: 0.76rem; padding: 6px 10px; }
    .int-label { width: 100%; text-align: center; margin-bottom: 4px; margin-right: 0; }

    .plans-grid {
      grid-template-columns: 1fr;
      max-width: 100%;
    }
    .plan-card { padding: 28px 24px; }
    .plan-price .amount { font-size: 2.4rem; }

    .extras-grid { grid-template-columns: 1fr; }
    .extra-card { padding: 16px 18px; }

    .promo-note {
      font-size: 0.78rem;
      padding: 8px 16px;
      text-align: center;
    }

    .faq-list { margin-top: 36px; }
    .faq-q { font-size: 0.92rem; }

    .cta-inner { padding: 40px 22px; border-radius: 14px; }
    .cta-title { font-size: clamp(1.4rem, 6vw, 2rem); }
    .cta-sub { font-size: 0.92rem; }
    .cta-btns { flex-direction: column; align-items: center; }
    .cta-btns .btn-lg { width: 100%; justify-content: center; }

    .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
    .footer-links { gap: 18px; flex-wrap: wrap; }
    .footer-links a { font-size: 0.82rem; }

    .section-title { font-size: clamp(1.5rem, 6vw, 2rem); }
    .section-sub { font-size: 0.95rem; }
  }

  /* Mobile pequeno */
  @media (max-width: 380px) {
    .hero-title { font-size: 1.6rem; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn-lg { width: 100%; justify-content: center; }
    .hero-stats { gap: 14px; }
    .plan-price .amount { font-size: 2rem; }
  }