/* ============================================================
   HART — index.css
   Estilos específicos da página principal
   ============================================================ */

   :root {
    --dark: #192318;
    --green: #2D5A27;
    --green-light: #4A8C42;
    --green-muted: #8FB887;
    --gold: #C8A96E;
    --text: #2C2C2C;
    --text-muted: #7A7A72;
    --white: #FFFFFF;
    --border: #E2DDD5;
  }

  html { scroll-behavior: smooth; }
  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    font-family: 'DM Sans', sans-serif;
    /* fundo branco em toda a página */
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
  }

  /* ===== COMO FUNCIONA ===== */
  .section-como-funciona {
    background: var(--white);
    padding: 120px 60px;
  }
  .como-inner {
    max-width: 1100px;
    margin: 0 auto;
  }
  .como-header {
    text-align: center;
    margin-bottom: 80px;
  }
  .como-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: var(--dark);
    margin: 16px 0 18px;
  }
  .como-title em { font-style: italic; color: var(--green); }
  .como-sub {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.65;
  }
  .como-steps { display: flex; flex-direction: column; gap: 0; }
  .como-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 24px 0;
  }
  .como-step.reverse { direction: rtl; }
  .como-step.reverse > * { direction: ltr; }
  .step-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 0;
    gap: 4px;
    opacity: 0.3;
  }
  .connector-line { width: 1px; height: 32px; background: var(--green); }
  .connector-arrow { width: 18px; height: 18px; color: var(--green); }
  .step-visual { position: relative; }
  .step-screen {
    background: #fff;
    border: none;
    border-radius: 16px;
    box-shadow:
      0 0 0 0.5px rgba(0,0,0,0.08),
      0 2px 8px rgba(0,0,0,0.06),
      0 8px 24px rgba(0,0,0,0.08),
      0 24px 64px rgba(0,0,0,0.12);
    overflow: hidden;
  }
  .step-screen-bar {
    background: linear-gradient(180deg, #EBEBEB 0%, #E3E3E3 100%);
    padding: 0 14px;
    height: 40px;
    border-bottom: 1px solid #C8C8C8;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .step-screen-dots { display: flex; gap: 6px; }
  .step-screen-dots span { width: 12px; height: 12px; border-radius: 50%; }
  .step-screen-dots span:nth-child(1) { background: #FF5F57; box-shadow: 0 0 0 0.5px rgba(0,0,0,0.12); }
  .step-screen-dots span:nth-child(2) { background: #FEBC2E; box-shadow: 0 0 0 0.5px rgba(0,0,0,0.10); }
  .step-screen-dots span:nth-child(3) { background: #28C840; box-shadow: 0 0 0 0.5px rgba(0,0,0,0.10); }
  /* mini url bar inside step screens */
  .step-screen-url {
    flex: 1;
    max-width: 200px;
    margin: 0 auto;
    background: rgba(255,255,255,0.85);
    border: 1px solid rgba(0,0,0,0.14);
    border-radius: 6px;
    padding: 3px 10px;
    font-size: 10.5px;
    color: #666;
    font-family: 'DM Sans', sans-serif;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .step-screen-body {
    padding: 28px;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F5F5F7;
  }
  .step-number-badge {
    position: absolute;
    top: -14px; right: -14px;
    width: 36px; height: 36px;
    background: #192318;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    border: 3px solid var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.20);
    font-family: 'DM Sans', sans-serif;
  }
  .step-info { display: flex; flex-direction: column; gap: 12px; }
  .step-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    background: #EEF5ED;
    color: var(--green);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    width: fit-content;
  }
  .step-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.5px;
    line-height: 1.2;
  }
  .step-desc { font-size: 15px; color: var(--text-muted); line-height: 1.7; }
  .step-checklist { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
  .step-checklist li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text); font-weight: 500; }
  .step-checklist li svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; }
  /* Mock Step 1 — Apple forms */
  .screen-form-mock { width: 100%; display: flex; flex-direction: column; gap: 10px; }
  .mock-label { font-size: 10.5px; font-weight: 600; color: #8E8E93; text-transform: uppercase; letter-spacing: 0.06em; font-family: 'DM Sans', sans-serif; }
  .mock-input { padding: 9px 12px; border: 0.5px solid rgba(0,0,0,0.15); border-radius: 9px; font-size: 13px; color: #1C1C1E; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.06) inset; font-family: 'DM Sans', sans-serif; }
  .mock-input.filled { color: #1C1C1E; font-weight: 500; }
  .mock-row { display: flex; gap: 6px; flex-wrap: wrap; }
  .mock-chip { padding: 5px 12px; border: 0.5px solid rgba(0,0,0,0.15); border-radius: 100px; font-size: 11.5px; color: #6B6B70; background: #fff; font-family: 'DM Sans', sans-serif; }
  .mock-chip.active { background: #192318; color: #fff; border-color: #192318; font-weight: 600; }
  .mock-cta-btn { margin-top: 6px; padding: 10px 16px; background: #192318; color: #fff; border-radius: 10px; font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 6px; font-family: 'DM Sans', sans-serif; }
  .mock-cta-btn svg { width: 14px; height: 14px; }
  /* Mock Step 2 — Apple progress */
  .progress-mock { width: 100%; display: flex; flex-direction: column; gap: 14px; }
  .progress-header { display: flex; justify-content: space-between; align-items: center; }
  .progress-title { font-size: 13px; font-weight: 600; color: #1C1C1E; font-family: 'DM Sans', sans-serif; }
  .progress-pct { font-size: 13px; font-weight: 700; color: #30A46C; font-family: 'DM Sans', sans-serif; }
  .progress-bar-track { height: 5px; background: rgba(0,0,0,0.08); border-radius: 100px; overflow: hidden; }
  .progress-bar-fill { height: 100%; background: linear-gradient(90deg, #192318, #2D5A27); border-radius: 100px; }
  .progress-items { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
  .progress-item { display: flex; align-items: center; gap: 10px; font-size: 12px; font-family: 'DM Sans', sans-serif; }
  .progress-item svg { width: 14px; height: 14px; flex-shrink: 0; }
  .progress-item.done svg { color: #30A46C; }
  .progress-item.done span:first-of-type { color: #3a3a3a; }
  .progress-item.active span:first-of-type { color: #1C1C1E; font-weight: 600; }
  .progress-item.pending span:first-of-type { color: #8E8E93; }
  .item-date { margin-left: auto; font-size: 11px; color: #8E8E93; flex-shrink: 0; }
  .item-spinner { width: 14px; height: 14px; border: 2px solid rgba(0,0,0,0.10); border-top-color: #2D5A27; border-radius: 50%; flex-shrink: 0; animation: spin 1s linear infinite; }
  .item-dot { width: 14px; height: 14px; border: 1.5px solid rgba(0,0,0,0.15); border-radius: 50%; flex-shrink: 0; }
  @keyframes spin { to { transform: rotate(360deg); } }
  /* Mock Step 3 — Apple delivery */
  .delivery-mock { width: 100%; display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
  .delivery-icon-wrap { width: 52px; height: 52px; background: rgba(44,90,39,0.10); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: #2D5A27; }
  .delivery-icon-wrap svg { width: 26px; height: 26px; }
  .delivery-text { font-size: 17px; font-weight: 700; color: #1C1C1E; letter-spacing: -0.3px; font-family: 'DM Sans', sans-serif; }
  .delivery-sub { font-size: 12px; color: #8E8E93; margin-top: -4px; font-family: 'DM Sans', sans-serif; }
  .delivery-stats { display: flex; align-items: center; gap: 16px; padding: 12px 0; border-top: 0.5px solid rgba(0,0,0,0.10); border-bottom: 0.5px solid rgba(0,0,0,0.10); width: 100%; justify-content: center; margin: 4px 0; }
  .dstat { text-align: center; }
  .dstat-value { font-size: 20px; font-weight: 700; color: #1C1C1E; letter-spacing: -0.5px; font-family: 'DM Sans', sans-serif; }
  .dstat-label { font-size: 10px; color: #8E8E93; text-transform: uppercase; letter-spacing: 0.04em; margin-top: 2px; font-family: 'DM Sans', sans-serif; }
  .dstat-divider { width: 0.5px; height: 32px; background: rgba(0,0,0,0.12); }
  .delivery-badge { display: flex; align-items: center; gap: 6px; padding: 7px 14px; background: rgba(44,90,39,0.10); color: #2D5A27; border-radius: 100px; font-size: 12px; font-weight: 600; font-family: 'DM Sans', sans-serif; }
  .delivery-badge svg { width: 13px; height: 13px; }

  .nav-wrapper {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0;
    pointer-events: none;
  }

  /* Estado inicial — barra full width */
  .nav-pill {
    pointer-events: all;
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 16px 48px;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    background-color: #192318;
    box-shadow:
      0 2px 12px rgba(0,0,0,0.20),
      0 8px 32px rgba(0,0,0,0.10);
    transition:
      background-color 0.45s ease,
      border-color 0.45s ease,
      box-shadow 0.45s ease,
      border-radius 0.45s ease,
      max-width 0.45s ease,
      padding 0.45s ease,
      margin-top 0.45s ease;
  }

  /* Estado scrollado — pílula flutuante */
  .nav-pill.scrolled {
    max-width: 880px;
    padding: 12px 12px 12px 24px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.10);
    background-color: rgba(22, 32, 20, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    margin-top: 12px;
    box-shadow:
      0 1px 0 rgba(255,255,255,0.06) inset,
      0 4px 20px rgba(0,0,0,0.28),
      0 16px 48px rgba(0,0,0,0.18);
  }

  /* LOGO */
  .logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
  }
  .logo img {
    height: 28px;
    width: auto;
    display: block;
  }
  .logo span { display: none; }

  /* LINKS — always centered regardless of logo/cta width */
  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s, opacity 0.2s;
    opacity: 0.9;
  }
  .nav-links a:hover { opacity: 1; }

  /* CTA */
  .nav-cta {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
  }

  /* Botão ghost — "Entrar" */
  .btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    background: transparent;
    color: rgba(255,255,255,0.80);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
  }
  .btn-ghost:hover {
    background: rgba(255,255,255,0.10);
    color: #fff;
    border-color: rgba(255,255,255,0.45);
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    background: #fff;
    color: #192318;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, opacity 0.2s;
  }
  .btn-primary:hover { background: #F0EFEC; opacity: 1; }

  /* HERO - fundo verde escuro com fade para branco */
  .hero {
    min-height: 100vh;
    padding: 0 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background: var(--dark);
    position: relative;
  }


  .hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28vh 0 48px;
    min-height: 0;
    position: relative;
    z-index: 1;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    color: var(--green-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 32px;
  }
  .hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--green-muted);
    border-radius: 50%;
  }

  .hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 6vw, 76px);
    font-weight: 700;
    line-height: 1.08;
    color: #ffffff;
    text-align: center;
    max-width: 820px;
    letter-spacing: -2px;
    margin-bottom: 24px;
  }
  .hero-headline em {
    font-style: italic;
    color: #dcd68d;
  }

  .hero-sub {
    font-size: 17px;
    line-height: 1.65;
    color: rgba(255,255,255,0.55);
    text-align: center;
    max-width: 520px;
    margin-bottom: 44px;
  }

  .hero-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: center;
    margin-bottom: 64px;
  }

  .btn-cta {
    padding: 14px 28px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    background: #ffffff;
    color: var(--dark);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s;
    letter-spacing: -0.2px;
    text-decoration: none;
  }
  .btn-cta:hover { background: #F0EFEC; transform: translateY(-1px); text-decoration: none; }

  .btn-secondary {
    padding: 14px 28px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    background: transparent;
    color: rgba(255,255,255,0.65);
    border: 1px solid rgba(255,255,255,0.20);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
  }
  .btn-secondary:hover { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.40); }

  /* Dashboard mais para cima (mais visível) */
  .hero-dashboard-area {
    width: 100%;
    max-width: 1100px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    margin-top: 1vh;
    padding-bottom: 80px;
  }

  /* Fosco fixo na parte de baixo da tela – mais sutil */
  .fosco-viewport {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 56px;
    background: transparent;
    /* blur leve */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* fade in do blur: começa 100% transparente no topo
       e vai ficando visível até embaixo */
    mask-image: linear-gradient(to bottom,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,0.2) 25%,
      rgba(0,0,0,0.6) 60%,
      rgba(0,0,0,1) 100%);
    -webkit-mask-image: linear-gradient(to bottom,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,0.2) 25%,
      rgba(0,0,0,0.6) 60%,
      rgba(0,0,0,1) 100%);
    pointer-events: none;
    z-index: 50;
  }
  .browser-wrap {
    width: 100%;
    max-width: 1100px;
    border-radius: 18px;
    box-shadow:
      0 0 0 1px rgba(0,0,0,0.06),
      0 2px 4px rgba(0,0,0,0.04),
      0 8px 24px rgba(0,0,0,0.08),
      0 32px 80px rgba(0,0,0,0.16),
      0 64px 120px rgba(0,0,0,0.10);
    overflow: hidden;
    background: #fff;
  }

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

  /* macOS titlebar — refined aluminum look */
  .browser-bar {
    background: linear-gradient(180deg, #EBEBEB 0%, #E3E3E3 100%);
    padding: 0 16px;
    height: 44px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #C8C8C8;
    position: relative;
  }

  .browser-dots {
    display: flex;
    gap: 7px;
    flex-shrink: 0;
  }
  .dot {
    width: 13px; height: 13px;
    border-radius: 50%;
  }
  .dot-red   { background: #FF5F57; box-shadow: 0 0 0 0.5px rgba(0,0,0,0.12); }
  .dot-yellow{ background: #FEBC2E; box-shadow: 0 0 0 0.5px rgba(0,0,0,0.10); }
  .dot-green { background: #28C840; box-shadow: 0 0 0 0.5px rgba(0,0,0,0.10); }

  /* Centered URL bar — macOS Safari style */
  .browser-url {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 340px;
    background: rgba(255,255,255,0.90);
    border: 1px solid rgba(0,0,0,0.14);
    border-radius: 8px;
    padding: 5px 12px;
    font-size: 12px;
    font-family: 'DM Sans', sans-serif;
    color: #3a3a3a;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.06) inset;
  }
  .browser-url .url-lock {
    flex-shrink: 0;
    color: #888;
    opacity: 0.9;
  }
  .browser-url .url-text {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #555;
    font-size: 11.5px;
  }

  .browser-nav-arrows {
    display: flex;
    gap: 2px;
    align-items: center;
    flex-shrink: 0;
  }
  .browser-toolbar-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
    margin-left: 4px;
  }

  /* Main dashboard area */
  .dashboard {
    display: grid;
    grid-template-columns: 216px 1fr;
    min-height: 680px;
    background: #F5F5F7;
  }

  /* SIDEBAR — dark green matching nav */
  .sidebar {
    background: #192318;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255,255,255,0.06);
  }

  .sidebar-logo {
    padding: 4px 18px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
  }
  .sidebar-logo img {
    height: 18px;
    width: auto;
  }
  .sidebar-logo span { display: none; }

  .sidebar-section {
    padding: 18px 14px 6px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    font-family: 'DM Sans', sans-serif;
  }

  .sidebar-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 14px;
    margin: 1px 8px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.50);
    cursor: pointer;
    transition: all 0.15s;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
  }
  .sidebar-item:hover {
    color: rgba(255,255,255,0.85);
    background: rgba(255,255,255,0.06);
  }
  .sidebar-item.active {
    color: #fff;
    background: rgba(255,255,255,0.10);
  }

  .sidebar-icon {
    width: 16px; height: 16px;
    flex-shrink: 0;
    opacity: 0.70;
    display: flex; align-items: center; justify-content: center;
  }
  .sidebar-icon svg { width: 100%; height: 100%; }
  .sidebar-item.active .sidebar-icon { opacity: 1; }

  .sidebar-avatar {
    margin-top: auto;
    padding: 14px 14px;
    border-top: 1px solid rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
    gap: 9px;
  }
  .avatar-circle {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2D5A27 0%, #4A8C42 100%);
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    font-family: 'DM Sans', sans-serif;
  }
  .avatar-info { flex: 1; overflow: hidden; }
  .avatar-name { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.9); font-family: 'DM Sans', sans-serif; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .avatar-role { font-size: 10px; color: rgba(255,255,255,0.35); font-family: 'DM Sans', sans-serif; }

  /* MAIN CONTENT — clean macOS app feel */
  .dash-main {
    padding: 24px 28px;
    overflow: hidden;
    background: #F5F5F7;
  }

  .dash-greeting {
    font-size: 14px;
    font-weight: 700;
    color: #1C1C1E;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: -0.2px;
    margin-bottom: 1px;
  }
  .dash-btn-icon {
    width: 30px; height: 30px;
    background: #F5F5F7;
    border: none; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; color: #555;
    flex-shrink: 0;
  }
  .dash-notif { position: relative; }
  .notif-dot {
    position: absolute; top: 5px; right: 5px;
    width: 6px; height: 6px;
    background: #E5484D; border-radius: 50%;
    border: 1px solid #F5F5F7;
  }
  .dash-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
  }

  .dash-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1C1C1E;
    letter-spacing: -0.4px;
  }
  .dash-subtitle {
    font-size: 12px;
    color: #8E8E93;
    margin-top: 2px;
    font-family: 'DM Sans', sans-serif;
  }

  .dash-actions { display: flex; gap: 8px; }
  .dash-btn {
    padding: 7px 14px;
    font-size: 12px;
    font-weight: 600;
    background: #2D5A27;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: -0.2px;
  }

  /* KPI CARDS — frosted glass Apple style */
  .kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 12px;
  }

  .kpi-card {
    background: #fff;
    border-radius: 14px;
    padding: 14px 16px;
    box-shadow: 0 0 0 0.5px rgba(0,0,0,0.07), 0 2px 8px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 4px;
    overflow: hidden;
    position: relative;
  }
  .kpi-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
  }
  .kpi-icon {
    width: 28px; height: 28px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .kpi-icon-green { background: rgba(45,90,39,0.10); color: #2D5A27; }
  .kpi-icon-gold  { background: rgba(200,169,110,0.12); color: #C8A96E; }
  .kpi-icon-muted { background: #F5F5F7; color: #8E8E93; }
  .kpi-badge {
    font-size: 10px; font-weight: 700;
    padding: 2px 7px; border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
  }
  .kpi-badge-up   { background: rgba(48,164,108,0.10); color: #1e7e50; }
  .kpi-badge-down { background: rgba(229,72,77,0.10);  color: #c0392b; }
  .kpi-label {
    font-size: 10px;
    font-weight: 600;
    color: #8E8E93;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-family: 'DM Sans', sans-serif;
  }
  .kpi-value {
    font-family: 'DM Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1C1C1E;
    letter-spacing: -0.8px;
    line-height: 1.1;
  }
  .kpi-sparkline {
    margin-top: 6px;
    height: 28px;
    overflow: hidden;
  }
  .kpi-sparkline svg { display: block; }

  /* BOTTOM GRID */
  .bottom-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 12px;
  }

  .dash-card {
    background: #fff;
    border: none;
    border-radius: 14px;
    padding: 18px 20px;
    box-shadow:
      0 1px 0 rgba(255,255,255,0.8) inset,
      0 0 0 0.5px rgba(0,0,0,0.08),
      0 2px 8px rgba(0,0,0,0.06),
      0 4px 16px rgba(0,0,0,0.04);
  }

  .card-title {
    font-size: 13px;
    font-weight: 600;
    color: #1C1C1E;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'DM Sans', sans-serif;
  }
  .card-tag {
    font-size: 10.5px;
    color: #8E8E93;
    font-weight: 500;
  }

  /* PROPERTY LIST */
  .card-title-row {
    display: flex; align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
  }
  .property-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  .property-item:last-child { border-bottom: none; padding-bottom: 0; }
  .prop-item-last { opacity: 0.6; }
  .prop-item-last:hover { opacity: 1; cursor: pointer; }

  .prop-icon {
    width: 32px; height: 32px;
    background: #F5F5F7;
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: #2D5A27;
  }
  .prop-icon-add { background: rgba(45,90,39,0.07); color: #2D5A27; }
  .prop-icon svg { width: 14px; height: 14px; }

  .prop-info { flex: 1; min-width: 0; }
  .prop-name     { font-size: 12px; font-weight: 600; color: #1C1C1E; font-family: 'DM Sans', sans-serif; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .prop-location { font-size: 10.5px; color: #8E8E93; margin-top: 1px; font-family: 'DM Sans', sans-serif; }

  .prop-return { text-align: right; flex-shrink: 0; }
  .prop-pct {
    font-size: 13px; font-weight: 700;
    color: #30A46C;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: -0.3px;
    margin-bottom: 3px;
  }
  .prop-bar {
    width: 50px; height: 3px;
    background: rgba(0,0,0,0.07);
    border-radius: 100px;
    overflow: hidden;
    margin-left: auto;
  }
  .prop-bar div {
    height: 100%;
    background: linear-gradient(90deg, #2D5A27, #4A8C42);
    border-radius: 100px;
  }

  /* CHART SVG */
  .chart-totals {
    display: flex; gap: 20px;
    margin-bottom: 10px;
  }
  .chart-total-item {
    display: flex; align-items: center; gap: 8px;
  }
  .chart-dot {
    width: 8px; height: 8px; border-radius: 50%;
    flex-shrink: 0;
  }
  .chart-total-val {
    font-size: 13px; font-weight: 700; color: #1C1C1E;
    font-family: 'DM Sans', sans-serif; letter-spacing: -0.3px;
  }
  .chart-total-label {
    font-size: 10px; color: #8E8E93;
    font-family: 'DM Sans', sans-serif;
  }
  .chart-svg-wrap {
    margin-bottom: 6px;
    border-radius: 8px;
    overflow: hidden;
  }
  .chart-months {
    display: flex; justify-content: space-between;
    margin-bottom: 10px;
  }
  .chart-months span {
    font-size: 9.5px; color: #B0B0B8;
    font-family: 'DM Sans', sans-serif;
  }
  .chart-legend {
    display: flex; gap: 14px;
  }
  .legend-item {
    display: flex; align-items: center;
    gap: 5px;
    font-size: 10.5px; color: #8E8E93;
    font-family: 'DM Sans', sans-serif;
  }
  .legend-dot { width: 8px; height: 8px; border-radius: 3px; }

  /* SECTION: GESTÃO */
  .section-gestao {
    padding: 100px 60px;
    background: #ffffff;
    text-align: center;
  }
  .section-gestao .section-inner {
    max-width: 640px;
    margin: 0 auto;
  }


  .section-badge {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(45, 90, 39, 0.08);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    color: var(--green);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
  }

  .section-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
    text-align: center;
  }
  .section-headline em { color: var(--green); font-style: italic; }

  .section-sub {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 56px;
    text-align: center;
  }

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

  .feature-card {
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: var(--cream);
    transition: transform 0.2s;
  }
  .feature-card:hover { transform: translateY(-3px); }
  .feature-card.featured {
    background: var(--dark);
    border-color: var(--dark);
  }
  .feature-card.featured .feat-title,
  .feature-card.featured .feat-desc,
  .feature-card.featured .feat-link { color: var(--white) !important; }
  .feature-card.featured .feat-desc { opacity: 0.6; }
  .feature-card.featured .feat-icon { background: rgba(255,255,255,0.12); color: var(--white); }
  .feature-card.featured .feat-icon svg { stroke: var(--white); }

  .feat-icon {
    width: 44px; height: 44px;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--green);
  }
  .feat-icon svg { width: 22px; height: 22px; }
  .feature-card.featured .feat-icon svg { color: var(--white); }

  .feat-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    letter-spacing: -0.3px;
  }

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

  .feat-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--green);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  /* FAQ — shared p-faq classes (mirrors parceiros.css) */
  .p-faq { padding: 120px 0; background: var(--white); }
  .p-container { max-width: 1100px; margin: 0 auto; padding: 0 60px; }
  .p-faq-inner { max-width: 760px; margin: 0 auto; }
  .p-section-header { text-align: center; margin-bottom: 56px; }
  .p-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 700; color: var(--dark);
    letter-spacing: -2px; text-align: center; margin-bottom: 12px;
  }
  .p-section-sub { font-size: 15px; color: var(--text-muted); text-align: center; }
  .p-faq-list { display: flex; flex-direction: column; }
  .p-faq-item { border-bottom: 1px solid var(--border); }
  .p-faq-q {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 0; cursor: pointer;
    font-size: 15px; font-weight: 500; color: var(--dark); gap: 16px; transition: color 0.2s;
  }
  .p-faq-q:hover { color: var(--green); }
  .p-faq-icon {
    width: 28px; height: 28px; flex-shrink: 0;
    border: 1px solid var(--border); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: var(--text-muted); font-weight: 300;
    background: var(--white); transition: all 0.25s;
  }
  .p-faq-item.open .p-faq-icon { background: var(--dark); color: #fff; border-color: var(--dark); transform: rotate(45deg); }
  .p-faq-a {
    display: grid; grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease, padding 0.3s ease;
    overflow: hidden; padding-bottom: 0;
  }
  .p-faq-a > div { min-height: 0; font-size: 14px; line-height: 1.7; color: var(--text-muted); }
  .p-faq-item.open .p-faq-a { grid-template-rows: 1fr; padding-bottom: 18px; }

  /* CTA SECTION */
  .section-cta {
    padding: 0 60px 160px;
    background: var(--white);
    text-align: center;
  }

  .cta-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 5px 16px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 28px;
  }

  .cta-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 5.5vw, 68px);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 20px;
  }
  .cta-headline em { color: var(--green); font-style: italic; }

  .cta-sub {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto 36px;
  }

  .cta-note {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 14px;
  }

  .btn-cta-gold {
    padding: 0 8px 0 28px;
    height: 56px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    background: #dcd68d;
    color: #192318;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    transition: all 0.25s;
    letter-spacing: -0.2px;
    text-decoration: none;
  }
  .btn-cta-gold .btn-arrow {
    width: 40px; height: 40px;
    background: rgba(25,35,24,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
  }
  .btn-cta-gold .btn-arrow svg { width: 16px; height: 16px; stroke: #192318; }
  .btn-cta-gold:hover { background: #ece69d; transform: translateY(-1px); }
  .btn-cta-gold:hover .btn-arrow { background: rgba(25,35,24,0.20); }

  /* FOOTER */
  footer {
    background: var(--dark);
    padding: 60px 60px 32px;
    color: rgba(255,255,255,0.5);
  }

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

  .footer-brand .logo {
    display: flex;
    margin-bottom: 14px;
  }
  .footer-brand .logo img {
    height: 26px;
    width: auto;
  }

  .footer-desc {
    font-size: 13px;
    line-height: 1.65;
    max-width: 240px;
  }

  .footer-col h4 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    margin-bottom: 16px;
  }

  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col a {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--white); }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
  }

  .social-links { display: flex; gap: 12px; }
  .social-link {
    width: 32px; height: 32px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    transition: all 0.2s;
  }
  .social-link:hover { background: rgba(255,255,255,0.08); color: var(--white); }

  /* Fade in hero text */
  .hero-badge, .hero-headline, .hero-sub, .hero-actions {
    animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
  .hero-badge { animation-delay: 0s; }
  .hero-headline { animation-delay: 0.1s; }
  .hero-sub { animation-delay: 0.18s; }
  .hero-actions { animation-delay: 0.24s; }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
  }
  /* ===== LINHA SLIDER — with photo backgrounds ===== */
  .section-linha {
    padding: 120px 0;
    background: var(--white);
  }
  .linha-header {
    text-align: center;
    padding: 0 60px;
    margin-bottom: 60px;
  }
  .linha-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: var(--dark);
    margin: 16px 0 16px;
  }
  .linha-title em { font-style: normal; color: var(--green); }
  .linha-sub {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 500px;
    margin: 0 auto;
  }

  .slider-wrap {
    display: flex; flex-direction: column; align-items: center; gap: 18px;
  }
  .slider-outer {
    position: relative;
    width: 100%; max-width: 960px; height: 520px;
    border-radius: 20px; overflow: hidden;
    cursor: col-resize; user-select: none;
    box-shadow: 0 8px 40px rgba(26,35,24,0.14), 0 0 0 1px rgba(26,35,24,0.07);
  }

  /* Each full-width side */
  .slider-side {
    position: absolute; inset: 0;
    overflow: hidden;
  }
  .slider-std { clip-path: inset(0 50% 0 0); }
  .slider-prm { clip-path: inset(0 0 0 50%); }

  /* Photo background */
  .slider-photo-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center center;
    transition: transform 0.6s ease;
  }
  .slider-outer:hover .slider-photo-bg { transform: scale(1.02); }

  /* Overlay */
  .slider-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.22) 100%);
  }

  /* Content */
  .slider-content {
    position: absolute; inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 44px;
    pointer-events: none;
  }
  .slider-content > * { pointer-events: auto; }

  /* Glass box */
  .slider-glass-box {
    width: 300px; min-width: 300px; max-width: 300px;
    padding: 22px 24px;
    box-sizing: border-box;
    background: rgba(0,0,0,0.38);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.14);
    flex-shrink: 0;
  }
  .slider-prm .slider-glass-box {
    border: 1px solid rgba(226,220,143,0.18);
  }

  .sl-pill {
    display: inline-flex; align-items: center;
    padding: 5px 14px; border-radius: 999px;
    font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.2px;
    margin-bottom: 14px; width: fit-content;
  }
  .sl-pill-std { background: rgba(52,211,153,0.15); color: #34D399; border: 1px solid rgba(52,211,153,0.30); }
  .sl-pill-prm { background: rgba(200,169,110,0.15); color: #C8A96E; border: 1px solid rgba(200,169,110,0.25); }

  .sl-name { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 800; letter-spacing: -0.025em; color: #fff; margin-bottom: 3px; }
  .sl-sub  { font-size: 13px; color: rgba(255,255,255,0.80); margin-bottom: 6px; }
  .sl-for  { font-size: 11px; font-weight: 600; color: #8FB887; margin-bottom: 16px; }
  .slider-prm .sl-for { color: #C8A96E; opacity: 0.85; }

  .sl-list { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
  .sl-list li { display: flex; align-items: center; gap: 9px; font-size: 13px; color: rgba(255,255,255,0.92); font-weight: 500; }
  .sl-chk {
    width: 18px; height: 18px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .sl-chk-std { background: rgba(52,211,153,0.18); }
  .sl-chk-prm { background: rgba(200,169,110,0.18); }

  .sl-focus {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 14px; border-radius: 10px;
    font-size: 12px; font-weight: 600;
    background: rgba(0,0,0,0.28); color: rgba(255,255,255,0.90);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.10);
  }

  /* Handle */
  .slider-handle {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0,0,0,0.2), 0 6px 28px rgba(0,0,0,0.14);
    display: flex; align-items: center; justify-content: center;
    z-index: 20; border: 2px solid rgba(26,35,24,0.12);
    transition: box-shadow 0.2s, transform 0.1s;
    cursor: col-resize;
  }
  .slider-handle:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.28), 0 8px 36px rgba(0,0,0,0.16);
    transform: translate(-50%, -50%) scale(1.08);
  }
  .slider-line {
    position: absolute; top: 0; bottom: 0; left: 50%;
    width: 2px; background: rgba(255,255,255,0.55);
    z-index: 10; pointer-events: none;
    box-shadow: 0 0 8px rgba(0,0,0,0.15);
  }

  .slider-hint {
    display: flex; align-items: center; gap: 8px;
    font-size: 12px; color: var(--text-muted); font-weight: 500; letter-spacing: 0.2px;
  }
/* ============================================================
   ANIMAÇÕES DE SCROLL — fade-up ao entrar na viewport
   ============================================================ */

[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays para grids */
[data-animate][data-delay="1"] { transition-delay: 0.10s; }
[data-animate][data-delay="2"] { transition-delay: 0.20s; }
[data-animate][data-delay="3"] { transition-delay: 0.30s; }
[data-animate][data-delay="4"] { transition-delay: 0.40s; }

/* Feature cards hover polish */
.feature-card {
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.25s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

/* Feat-link arrow animation */
.feat-link { transition: gap 0.2s ease, color 0.2s ease; }
.feat-link:hover { gap: 10px; color: var(--green); }

/* FAQ item smooth open/close */
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease, padding 0.3s ease;
  overflow: hidden;
  padding-top: 0;
}
.faq-answer > * { min-height: 0; }
.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
  padding-top: 12px;
}

/* KPI cards subtle hover */
.kpi-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.kpi-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
}

/* Step screen subtle lift */
.step-screen {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.3s ease;
}
.como-step:hover .step-screen {
  transform: translateY(-4px) scale(1.01);
}

/* Button pulse on CTA gold */
.btn-cta-gold {
  transition: background 0.25s, transform 0.2s cubic-bezier(0.22,1,0.36,1), box-shadow 0.25s;
}
.btn-cta-gold:hover {
  box-shadow: 0 8px 32px rgba(216,219,142,0.25);
}
/* ══════════════════════════════════════════
   MOBILE RESPONSIVE — iPhone / ≤768px
   ══════════════════════════════════════════ */

@media (max-width: 768px) {
  /* Footer — override index.css redefinition */
  footer { padding: 48px 24px 28px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }

  /* Navbar — override index.css redefinition */
  .nav-pill { padding: 14px 16px; overflow: hidden; }
  .nav-links { display: none !important; }
  .nav-cta .btn-ghost { display: inline-flex !important; padding: 7px 14px; font-size: 13px; }
  .nav-cta .btn-primary { display: none !important; }
  .nav-pill.scrolled { max-width: calc(100% - 24px); padding: 10px 14px; }

  /* Hero */
  .hero {
    padding: 0 20px;
    min-height: auto;
  }
  .hero-content {
    padding: 100px 0 40px;
    align-items: center;
    text-align: center;
  }
  .hero-headline {
    font-size: clamp(30px, 8vw, 44px);
    letter-spacing: -1px;
  }
  .hero-sub { font-size: 15px; max-width: 320px; }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .hero-actions .btn-cta,
  .hero-actions .btn-secondary {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* Hide browser mockup on mobile — too small to be useful */
  .hero-dashboard-area { display: none; }
  .fosco-viewport { display: none; }

  /* Como Funciona */
  .section-como-funciona { padding: 64px 20px; }
  .como-header { margin-bottom: 48px; }
  .como-step {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 16px 0;
  }
  .como-step.reverse { direction: ltr; }
  .step-visual { order: -1; }

  /* Gestão section */
  .section-gestao { padding: 64px 20px; }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .feature-card { padding: 24px 20px; }

  /* Generic sections with 60px padding */
  .section-cta-final,
  [class*="section-"] { padding-left: 20px !important; padding-right: 20px !important; }

  /* CTA section */
  .section-cta-final { padding: 80px 20px 160px; }

  /* Linha section */
  .section-linha { padding: 64px 0; }
  .linha-header { padding: 0 20px; margin-bottom: 40px; }

  /* Slider cards — horizontal scroll on mobile */
  .sl-cards,
  [class*="sl-cards"] {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 16px;
    gap: 12px;
  }
  .sl-card,
  [class*="sl-card"] {
    scroll-snap-align: start;
    min-width: 280px;
  }
}

@media (max-width: 480px) {
  .hero-content { padding: 90px 0 32px; }
  .section-como-funciona { padding: 48px 16px; }
  .section-gestao { padding: 48px 16px; }
  .linha-header { padding: 0 16px; }
  .features-grid { gap: 10px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
}

/* ── HAMBURGER & MOBILE DRAWER ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 9px;
  cursor: pointer;
  padding: 0;
}
.nav-hamburger span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.mobile-drawer {
  display: none;
  position: fixed;
  top: 57px;
  left: 0; right: 0;
  background: rgba(22,32,20,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-direction: column;
  padding: 8px 0 16px;
  z-index: 99;
}
.mobile-drawer.open { display: flex; }

.mobile-drawer-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 14px 24px;
  transition: color 0.2s;
}
.mobile-drawer-link:hover { color: #fff; }

.mobile-drawer-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  margin: 8px 24px 0;
  padding: 12px 20px;
  background: var(--green);
  border-radius: 10px;
  text-align: center;
  transition: background 0.2s;
}
.mobile-drawer-cta:hover { background: var(--green-light); }

@media (max-width: 768px) {
  .nav-hamburger { display: flex; }

  /* FAQ mobile */
  .p-faq { padding: 64px 0; }
  .p-container { padding: 0 20px; }
  .p-faq-q { font-size: 13px; padding: 16px 0; }
}
