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

    :root {
      --brand:       #FF5722;
      --brand-dark:  #E64A19;
      --brand-light: #FFF3E0;
      --dark:        #0F172A;
      --dark2:       #1E293B;
      --dark3:       #334155;
      --gray:        #64748B;
      --light:       #F1F5F9;
      --white:       #FFFFFF;
      --radius:      16px;
      --radius-lg:   24px;
    }

    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', sans-serif;
      background: var(--dark);
      color: var(--white);
      overflow-x: hidden;
    }

    /* ── NAV ─────────────────────────────────────────────────────── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 14px 5%;
      background: rgba(15,23,42,0.9);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .nav-logo {
      display: flex; align-items: center; gap: 10px;
      text-decoration: none;
    }
    .nav-logo img { width: 36px; height: 36px; border-radius: 10px; }
    .nav-logo span { font-size: 20px; font-weight: 900; color: var(--white); letter-spacing: -0.5px; }
    .nav-logo span em { color: var(--brand); font-style: normal; }

    .nav-links { display: flex; align-items: center; gap: 6px; }
    .nav-links a {
      text-decoration: none; color: rgba(255,255,255,0.65);
      font-size: 13px; font-weight: 500; transition: color 0.2s; white-space: nowrap;
      padding: 6px 10px; border-radius: 8px;
    }
    .nav-links a:hover { color: var(--white); background: rgba(255,255,255,.06); }

    /* Dropdown */
    .nav-dropdown { position: relative; }
    .nav-dropdown-btn {
      display: flex; align-items: center; gap: 4px; cursor: pointer;
      color: rgba(255,255,255,0.65); font-size: 13px; font-weight: 500;
      padding: 6px 10px; border-radius: 8px; white-space: nowrap;
      transition: color .2s, background .2s; user-select: none;
      background: none; border: none;
    }
    .nav-dropdown-btn:hover { color: var(--white); background: rgba(255,255,255,.06); }
    .nav-dropdown-btn .chevron { font-size: 9px; opacity: .6; transition: transform .2s; }
    .nav-dropdown:hover .nav-dropdown-btn .chevron,
    .nav-dropdown.open .nav-dropdown-btn .chevron { transform: rotate(180deg); }
    .nav-dropdown-menu {
      display: none; position: absolute; top: calc(100% + 6px); left: 0;
      background: #1E293B; border: 1px solid rgba(255,255,255,.1);
      border-radius: 12px; padding: 8px; min-width: 190px; z-index: 300;
      box-shadow: 0 16px 48px rgba(0,0,0,.6);
    }
    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown.open .nav-dropdown-menu { display: flex; flex-direction: column; gap: 2px; }
    .nav-dropdown-menu a {
      padding: 9px 12px; border-radius: 8px; font-size: 13px; font-weight: 500;
      color: rgba(255,255,255,.7); display: flex; align-items: center; gap: 8px;
    }
    .nav-dropdown-menu a:hover { background: rgba(255,255,255,.07); color: #fff; }
    .nav-links a:hover { color: var(--white); }

    .btn-download {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--brand); color: var(--white);
      padding: 10px 20px; border-radius: 999px;
      font-size: 14px; font-weight: 700;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s;
    }
    .btn-download:hover { background: var(--brand-dark); transform: translateY(-1px); }

    /* Hamburger */
    .nav-hamburger {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; padding: 4px; background: none; border: none;
    }
    .nav-hamburger span {
      display: block; width: 24px; height: 2px;
      background: var(--white); border-radius: 2px;
      transition: all 0.3s;
    }
    .mobile-menu {
      display: none; position: fixed; top: 64px; left: 0; right: 0;
      background: var(--dark2); border-bottom: 1px solid rgba(255,255,255,0.08);
      padding: 20px 5%; flex-direction: column; gap: 16px; z-index: 99;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      text-decoration: none; color: rgba(255,255,255,0.75);
      font-size: 16px; font-weight: 600;
      padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .mobile-menu a:last-child { border-bottom: none; }

    /* ── AD UNIT ─────────────────────────────────────────────────── */
    .ad-unit {
      max-width: 900px; margin: 0 auto;
      padding: 8px 5%;
      text-align: center;
    }
    .ad-unit-label {
      font-size: 10px; color: rgba(255,255,255,0.2);
      letter-spacing: 1px; text-transform: uppercase;
      margin-bottom: 6px;
    }
    /* Placeholder visual enquanto AdSense não está ativo */
    .ad-placeholder {
      background: rgba(255,255,255,0.03);
      border: 1px dashed rgba(255,255,255,0.08);
      border-radius: 8px;
      height: 90px;
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.15); font-size: 12px;
    }

    /* ── HERO ────────────────────────────────────────────────────── */
    .hero {
      min-height: 100vh;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      text-align: center; padding: 120px 5% 80px;
      position: relative; overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0; z-index: 0;
      background:
        radial-gradient(ellipse 80% 60% at 50% 0%,  rgba(255,87,34,0.18) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 80% 60%, rgba(255,87,34,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 40% 30% at 10% 80%, rgba(255,87,34,0.06) 0%, transparent 50%);
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,87,34,0.15); border: 1px solid rgba(255,87,34,0.3);
      padding: 6px 16px; border-radius: 999px;
      font-size: 13px; font-weight: 600; color: #FFAB91;
      margin-bottom: 24px; position: relative; z-index: 1;
      animation: pulse-badge 3s ease-in-out infinite;
    }
    @keyframes pulse-badge {
      0%, 100% { box-shadow: 0 0 0 0 rgba(255,87,34,0.3); }
      50%       { box-shadow: 0 0 0 8px rgba(255,87,34,0); }
    }
    /* Contador ao vivo — prova social no hero */
    .hero-live-count {
      align-items: center; gap: 8px;
      background: rgba(229,57,53,0.14); border: 1px solid rgba(229,57,53,0.4);
      padding: 8px 16px; border-radius: 999px;
      font-size: 14px; font-weight: 600; color: #FF8A80;
      margin: 0 0 22px; position: relative; z-index: 1;
      text-decoration: none; transition: transform .2s;
    }
    .hero-live-count:hover { transform: translateY(-1px); }
    .hero-live-count b { color: #fff; font-weight: 900; }
    .hlc-dot {
      width: 9px; height: 9px; border-radius: 50%; background: #E53935;
      box-shadow: 0 0 0 0 rgba(229,57,53,0.6); animation: hlc-pulse 1.6s ease-out infinite;
    }
    @keyframes hlc-pulse {
      0%   { box-shadow: 0 0 0 0 rgba(229,57,53,0.6); }
      70%  { box-shadow: 0 0 0 9px rgba(229,57,53,0); }
      100% { box-shadow: 0 0 0 0 rgba(229,57,53,0); }
    }
    .hero h1 {
      font-size: clamp(40px, 7vw, 82px);
      font-weight: 900; line-height: 1.05; letter-spacing: -2px;
      position: relative; z-index: 1; margin-bottom: 20px;
    }
    .hero h1 span { color: var(--brand); }
    .hero p {
      font-size: clamp(16px, 2vw, 20px);
      color: rgba(255,255,255,0.65);
      max-width: 560px; line-height: 1.6;
      position: relative; z-index: 1; margin-bottom: 40px;
    }
    .hero-ctas {
      display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
      position: relative; z-index: 1; margin-bottom: 24px;
    }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--brand); color: var(--white);
      padding: 16px 32px; border-radius: 14px;
      font-size: 16px; font-weight: 800; text-decoration: none;
      box-shadow: 0 8px 32px rgba(255,87,34,0.4);
      transition: all 0.2s;
    }
    .btn-primary:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255,87,34,0.5); }

    .btn-secondary {
      display: inline-flex; align-items: center; gap: 10px;
      background: rgba(255,255,255,0.07); color: var(--white);
      padding: 16px 32px; border-radius: 14px;
      font-size: 16px; font-weight: 700; text-decoration: none;
      border: 1px solid rgba(255,255,255,0.12); transition: all 0.2s;
    }
    .btn-secondary:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }

    .btn-ios-soon {
      display: inline-flex; align-items: center; gap: 10px;
      background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.5);
      padding: 16px 32px; border-radius: 14px;
      font-size: 16px; font-weight: 700; text-decoration: none;
      border: 1px solid rgba(255,255,255,0.08); cursor: default;
      position: relative;
    }
    .ios-soon-badge {
      position: absolute; top: -8px; right: -8px;
      background: var(--brand); color: white;
      font-size: 9px; font-weight: 800; letter-spacing: 0.5px;
      padding: 2px 7px; border-radius: 999px; text-transform: uppercase;
    }

    /* ── Busca de alertas por cidade/categoria (hero) ────────────── */
    .city-search-wrap { position: relative; z-index: 1; width: 100%; max-width: 680px; margin: 0 auto 8px; }
    .city-search-box {
      display: flex; align-items: center; gap: 10px;
      background: rgba(255,255,255,0.08); border: 1.5px solid rgba(255,255,255,0.15);
      border-radius: 14px; padding: 14px 18px;
      transition: border-color 0.2s;
    }
    .city-search-box:focus-within { border-color: rgba(255,87,34,0.6); }
    .city-search-icon { font-size: 16px; opacity: 0.6; }
    .city-search-input {
      flex: 1; background: none; border: none; outline: none;
      color: var(--white); font-size: 15px; font-family: inherit;
    }
    .city-search-input::placeholder { color: rgba(255,255,255,0.4); }
    .city-search-results {
      position: absolute; top: calc(100% + 8px); left: 0; right: 0;
      background: var(--dark2); border: 1px solid rgba(255,255,255,0.12);
      border-radius: 14px; overflow: hidden; text-align: left;
      box-shadow: 0 16px 40px rgba(0,0,0,0.5);
      display: none; max-height: 320px; overflow-y: auto; z-index: 5;
    }
    .city-search-results.open { display: block; }
    .city-search-result {
      display: flex; align-items: center; gap: 10px;
      padding: 12px 18px; color: var(--white); text-decoration: none;
      font-size: 14px; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,0.06);
      transition: background 0.15s;
    }
    .city-search-result:last-child { border-bottom: none; }
    .city-search-result:hover { background: rgba(255,255,255,0.06); }
    .city-search-result small { color: rgba(255,255,255,0.4); font-weight: 500; }
    .city-search-empty { padding: 16px 18px; color: rgba(255,255,255,0.5); font-size: 13px; }
    .city-search-suggestions { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 12px; }
    .city-search-suggestions a { color: rgba(255,255,255,0.78); background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 999px; padding: 8px 12px; font-size: 13px; font-weight: 700; text-decoration: none; transition: all 0.2s; }
    .city-search-suggestions a:hover { color: var(--white); border-color: rgba(255,87,34,0.55); background: rgba(255,87,34,0.15); transform: translateY(-1px); }
    .hero-pulse-panel { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; width: 100%; max-width: 680px; margin: 18px auto 6px; }
    .hero-pulse-panel div { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 12px 14px; text-align: left; }
    .hero-pulse-panel strong { display: block; color: var(--white); font-size: 16px; line-height: 1.2; }
    .hero-pulse-panel span { display: block; margin-top: 4px; color: rgba(255,255,255,0.55); font-size: 12px; line-height: 1.35; }

    .hero-screenshots {
      position: relative; z-index: 1;
      display: flex; align-items: flex-end; justify-content: center;
      width: 100%; max-width: 700px; margin-top: 20px;
    }
    .hero-screenshots img {
      width: 200px; border-radius: 24px;
      box-shadow: 0 24px 64px rgba(0,0,0,0.6);
      border: 2px solid rgba(255,255,255,0.1);
      transition: transform 0.3s;
    }
    .hero-screenshots img:nth-child(1) { transform: rotate(-6deg) translateY(20px); }
    .hero-screenshots img:nth-child(2) { transform: scale(1.08) translateY(-10px); z-index: 2; width: 220px; animation: float 4s ease-in-out infinite; }
    .hero-screenshots img:nth-child(3) { transform: rotate(6deg) translateY(20px); }
    .hero-screenshots img:hover { transform: scale(1.05) !important; z-index: 3; }
    @keyframes float { 0%,100% { transform: scale(1.08) translateY(-10px); } 50% { transform: scale(1.08) translateY(-20px); } }

    /* ── STATS ───────────────────────────────────────────────────── */
    .stats {
      background: var(--dark2);
      border-top: 1px solid rgba(255,255,255,0.06);
      border-bottom: 1px solid rgba(255,255,255,0.06);
      padding: 40px 5%;
    }
    .stats-inner {
      max-width: 1000px; margin: 0 auto;
      display: flex; justify-content: space-around; flex-wrap: wrap; gap: 32px;
    }
    .stat { text-align: center; }
    .stat-num { font-size: 38px; font-weight: 900; color: var(--brand); }
    .stat-label { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 4px; font-weight: 500; }

    /* ── SECTION COMMON ──────────────────────────────────────────── */
    section { padding: 96px 5%; }
    .section-label {
      display: inline-block;
      background: rgba(255,87,34,0.12); border: 1px solid rgba(255,87,34,0.25);
      color: #FFAB91; font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
      padding: 4px 14px; border-radius: 999px; text-transform: uppercase;
      margin-bottom: 16px;
    }
    .section-title {
      font-size: clamp(28px, 4vw, 46px);
      font-weight: 900; letter-spacing: -1px;
      line-height: 1.15; margin-bottom: 16px;
    }
    .section-sub {
      font-size: 17px; color: rgba(255,255,255,0.5);
      max-width: 520px; line-height: 1.6;
    }
    .section-header { margin-bottom: 56px; }
    .center { text-align: center; }
    .center .section-sub { margin: 0 auto; }

    /* ── FEATURES ────────────────────────────────────────────────── */
    .features { background: var(--dark); }
    .features-grid {
      max-width: 1100px; margin: 0 auto;
      display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px;
    }
    .feature-card {
      background: var(--dark2);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: var(--radius-lg); padding: 32px;
      transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
    }
    .feature-card:hover {
      transform: translateY(-4px);
      border-color: rgba(255,87,34,0.3);
      box-shadow: 0 16px 48px rgba(0,0,0,0.3);
    }
    .feature-icon {
      width: 52px; height: 52px; border-radius: 14px;
      background: rgba(255,87,34,0.15);
      display: flex; align-items: center; justify-content: center;
      font-size: 26px; margin-bottom: 20px;
    }
    .feature-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 10px; }
    .feature-card p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; }

    /* ── HOW IT WORKS ────────────────────────────────────────────── */
    .how { background: var(--dark2); }
    .steps { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; }
    .step {
      display: flex; gap: 32px; align-items: flex-start;
      padding: 32px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .step:last-child { border-bottom: none; }
    .step-num {
      width: 56px; height: 56px; flex-shrink: 0; border-radius: 50%;
      background: var(--brand);
      display: flex; align-items: center; justify-content: center;
      font-size: 22px; font-weight: 900;
    }
    .step-content h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
    .step-content p { font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.6; }

    /* ── SCREENSHOTS ─────────────────────────────────────────────── */
    .screenshots-section { background: var(--dark); overflow: hidden; }
    .screenshots-scroll {
      display: flex; gap: 20px;
      overflow-x: auto; padding: 16px 5% 32px;
      scrollbar-width: none; -webkit-overflow-scrolling: touch;
    }
    .screenshots-scroll::-webkit-scrollbar { display: none; }
    .screenshots-scroll img {
      height: 500px; width: auto; border-radius: 20px;
      border: 2px solid rgba(255,255,255,0.1);
      box-shadow: 0 20px 60px rgba(0,0,0,0.5);
      flex-shrink: 0; transition: transform 0.3s;
    }
    .screenshots-scroll img:hover { transform: scale(1.03); }

    /* ── TESTIMONIALS ────────────────────────────────────────────── */
    .testimonials { background: var(--dark2); }
    .testimonials-grid {
      max-width: 1000px; margin: 0 auto;
      display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px;
    }
    .testimonial-card {
      background: var(--dark);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: var(--radius-lg); padding: 28px;
    }
    .testimonial-stars { color: #FBBF24; font-size: 16px; margin-bottom: 14px; }
    .testimonial-text { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 20px; font-style: italic; }
    .testimonial-author { display: flex; align-items: center; gap: 12px; }
    .testimonial-avatar {
      width: 40px; height: 40px; border-radius: 50%;
      background: linear-gradient(135deg, var(--brand), var(--brand-dark));
      display: flex; align-items: center; justify-content: center;
      font-size: 18px; font-weight: 800;
    }
    .testimonial-name { font-size: 14px; font-weight: 700; }
    .testimonial-city { font-size: 12px; color: rgba(255,255,255,0.35); }

    /* ── RANKING ─────────────────────────────────────────────────── */
    .ranking-section { background: var(--dark); }
    .ranks-grid {
      max-width: 900px; margin: 0 auto;
      display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 14px;
    }
    .rank-card {
      background: var(--dark2);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius); padding: 24px 12px;
      text-align: center; transition: transform 0.2s;
    }
    .rank-card:hover { transform: translateY(-4px); }
    .rank-emoji { font-size: 36px; margin-bottom: 8px; display: block; }
    .rank-name { font-size: 13px; font-weight: 800; margin-bottom: 4px; }
    .rank-pts { font-size: 11px; color: rgba(255,255,255,0.35); }

    /* ── STREAK DIÁRIO (gamificação) ─────────────────────────────── */
    .streak-promo-section { background: var(--dark2); padding: 80px 5%; text-align: center; }
    .streak-badges-grid {
      max-width: 700px; margin: 0 auto;
      display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 14px;
    }
    .streak-badge-card {
      background: var(--dark);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius); padding: 24px 12px;
      text-align: center; transition: transform 0.2s;
    }
    .streak-badge-card:hover { transform: translateY(-4px); }
    .streak-badge-emoji { font-size: 36px; margin-bottom: 8px; display: block; }
    .streak-badge-name { font-size: 13px; font-weight: 800; margin-bottom: 4px; }
    .streak-badge-days { font-size: 11px; color: rgba(255,255,255,0.35); }

    /* ── iOS COMING SOON ─────────────────────────────────────────── */
    .ios-section {
      background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
      border-top: 1px solid rgba(255,255,255,0.06);
      border-bottom: 1px solid rgba(255,255,255,0.06);
      padding: 80px 5%; text-align: center;
    }
    .city-alert-section {
      background: linear-gradient(135deg, #134E4A 0%, #0F172A 100%);
      border-top: 1px solid rgba(255,255,255,0.06);
      border-bottom: 1px solid rgba(255,255,255,0.06);
      padding: 80px 5%; text-align: center;
    }
    .city-alert-section .notify-form { flex-wrap: wrap; }
    .ios-badge-big {
      display: inline-flex; align-items: center; gap: 10px;
      background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
      padding: 8px 20px; border-radius: 999px;
      font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.7);
      margin-bottom: 24px;
    }
    .ios-section h2, .city-alert-section h2 {
      font-size: clamp(26px, 4vw, 44px);
      font-weight: 900; letter-spacing: -1px; margin-bottom: 16px;
    }
    .ios-section p, .city-alert-section p {
      font-size: 17px; color: rgba(255,255,255,0.5);
      max-width: 480px; margin: 0 auto 36px; line-height: 1.6;
    }
    .notify-form {
      display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
    }
    .notify-input {
      background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
      border-radius: 12px; padding: 14px 20px;
      font-size: 15px; color: var(--white); font-family: inherit;
      width: 280px; outline: none;
      transition: border-color 0.2s;
    }
    .notify-input:focus { border-color: rgba(255,87,34,0.5); }
    .notify-input::placeholder { color: rgba(255,255,255,0.3); }
    .notify-btn {
      background: var(--brand); color: var(--white); border: none;
      padding: 14px 28px; border-radius: 12px;
      font-size: 15px; font-weight: 700; cursor: pointer;
      font-family: inherit; transition: all 0.2s;
    }
    .notify-btn:hover { background: var(--brand-dark); transform: translateY(-1px); }

    /* ── PROGRAMA DE TESTES (Google Play) ────────────────────────── */
    .beta-section {
      background: linear-gradient(135deg, #FF7043 0%, #FF5722 60%, #E64A19 100%);
      padding: 80px 5%; text-align: center;
    }
    .beta-section h2 {
      font-size: clamp(26px, 4vw, 44px);
      font-weight: 900; letter-spacing: -1px; margin-bottom: 16px; color: var(--white);
    }
    .beta-section p {
      font-size: 17px; color: rgba(255,255,255,0.85);
      max-width: 520px; margin: 0 auto 36px; line-height: 1.6;
    }
    .beta-section .notify-input { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.25); }
    .beta-section .notify-btn { background: #1E293B; }
    .beta-section .notify-btn:hover { background: #0F172A; }

    /* ── FAQ ─────────────────────────────────────────────────────── */
    .faq-section { background: var(--dark2); }
    .faq-list { max-width: 740px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
    .faq-item {
      background: var(--dark);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: var(--radius); overflow: hidden;
    }
    .faq-question {
      width: 100%; background: none; border: none; color: var(--white);
      padding: 20px 24px; text-align: left; cursor: pointer;
      font-size: 16px; font-weight: 700; font-family: inherit;
      display: flex; justify-content: space-between; align-items: center;
      transition: background 0.2s;
    }
    .faq-question:hover { background: rgba(255,255,255,0.03); }
    .faq-chevron { font-size: 14px; color: var(--brand); transition: transform 0.3s; flex-shrink: 0; }
    .faq-item.open .faq-chevron { transform: rotate(180deg); }
    .faq-answer {
      max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
    }
    .faq-item.open .faq-answer { max-height: 200px; }
    .faq-answer p {
      padding: 0 24px 20px;
      font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7;
    }

    /* ── DOWNLOAD CTA ────────────────────────────────────────────── */
    .cta-section {
      background: linear-gradient(135deg, #FF5722 0%, #E64A19 50%, #BF360C 100%);
      text-align: center; padding: 96px 5%;
      position: relative; overflow: hidden;
    }
    .cta-section::before {
      content: ''; position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .cta-section h2 {
      font-size: clamp(28px, 5vw, 54px);
      font-weight: 900; letter-spacing: -1.5px;
      margin-bottom: 16px; position: relative;
    }
    .cta-section p {
      font-size: 18px; opacity: 0.85;
      max-width: 480px; margin: 0 auto 40px; line-height: 1.6; position: relative;
    }
    .cta-badges { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }
    .badge-store {
      display: inline-flex; align-items: center; gap: 12px;
      background: rgba(0,0,0,0.25); border: 1.5px solid rgba(255,255,255,0.25);
      padding: 14px 28px; border-radius: 14px;
      text-decoration: none; color: white;
      transition: all 0.2s; backdrop-filter: blur(8px);
    }
    .badge-store:hover { background: rgba(0,0,0,0.4); transform: translateY(-2px); }
    .badge-store.disabled { opacity: 0.5; cursor: default; pointer-events: none; }
    .badge-store-icon { font-size: 28px; }
    .badge-store-text { text-align: left; }
    .badge-store-text small { display: block; font-size: 10px; font-weight: 600; opacity: 0.8; letter-spacing: 0.5px; text-transform: uppercase; }
    .badge-store-text strong { display: block; font-size: 18px; font-weight: 800; }
    .whatsapp-share-btn {
      display: inline-flex; align-items: center; gap: 8px;
      margin-top: 24px; color: rgba(255,255,255,0.85);
      background: rgba(37,211,102,0.15); border: 1.5px solid rgba(37,211,102,0.4);
      padding: 10px 20px; border-radius: 999px;
      font-size: 14px; font-weight: 700; text-decoration: none;
      transition: all 0.2s;
    }
    .whatsapp-share-btn:hover { background: rgba(37,211,102,0.28); transform: translateY(-1px); }

    /* ── FOOTER ──────────────────────────────────────────────────── */
    footer {
      background: #060C18;
      border-top: 1px solid rgba(255,255,255,0.06);
      padding: 56px 5% 32px;
    }
    .footer-inner {
      max-width: 1100px; margin: 0 auto;
      display: flex; justify-content: space-between; align-items: flex-start;
      flex-wrap: wrap; gap: 40px; margin-bottom: 40px;
    }
    .footer-brand { max-width: 280px; }
    .footer-logo {
      display: flex; align-items: center; gap: 10px;
      text-decoration: none; margin-bottom: 14px;
    }
    .footer-logo img { width: 32px; height: 32px; border-radius: 8px; }
    .footer-logo span { font-size: 18px; font-weight: 900; color: var(--white); }
    .footer-brand p { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.7; }
    .footer-links { display: flex; flex-direction: column; gap: 10px; }
    .footer-links h4 { font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 6px; }
    .footer-links a { font-size: 14px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
    .footer-links a:hover { color: var(--white); }
    .footer-bottom {
      max-width: 1100px; margin: 0 auto;
      border-top: 1px solid rgba(255,255,255,0.06);
      padding-top: 24px;
      display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
    }
    .footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.25); }
    .footer-social { display: flex; gap: 14px; }
    .footer-social a { font-size: 18px; text-decoration: none; opacity: 0.5; transition: opacity 0.2s; }
    .footer-social a:hover { opacity: 1; }

    /* ── COOKIE BANNER ───────────────────────────────────────────── */
    .cookie-banner {
      position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
      background: var(--dark2); border-top: 1px solid rgba(255,255,255,0.1);
      padding: 16px 5%;
      display: flex; align-items: center; justify-content: space-between;
      gap: 20px; flex-wrap: wrap;
      transform: translateY(100%); transition: transform 0.4s ease;
    }
    .cookie-banner.show { transform: translateY(0); }
    .cookie-banner p { font-size: 13px; color: rgba(255,255,255,0.6); max-width: 680px; line-height: 1.5; }
    .cookie-banner p a { color: var(--brand); }
    .cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
    .cookie-accept {
      background: var(--brand); color: white; border: none;
      padding: 9px 20px; border-radius: 8px; font-size: 13px; font-weight: 700;
      cursor: pointer; font-family: inherit;
    }
    .cookie-decline {
      background: transparent; color: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.15);
      padding: 9px 16px; border-radius: 8px; font-size: 13px; font-weight: 600;
      cursor: pointer; font-family: inherit;
    }

    /* ── ANIMATIONS ──────────────────────────────────────────────── */
    .fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .fade-in.visible { opacity: 1; transform: translateY(0); }

    /* ── CONTA / LOGIN ──────────────────────────────────────────── */
    .btn-account {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 9px 16px; border-radius: 10px; margin-right: 10px;
      border: 1px solid rgba(255,255,255,0.18);
      color: rgba(255,255,255,0.9); font-weight: 700; font-size: 14px;
      text-decoration: none; white-space: nowrap;
      transition: background 0.2s, border-color 0.2s;
    }
    .btn-account:hover { background: rgba(255,255,255,0.08); border-color: var(--brand); }

    .login-overlay {
      position: fixed; inset: 0; z-index: 1200;
      background: rgba(8,12,24,0.78);
      display: none; align-items: center; justify-content: center; padding: 20px;
    }
    .login-overlay.open { display: flex; }
    .login-card {
      position: relative; width: 100%; max-width: 400px;
      background: var(--dark2); border: 1px solid rgba(255,255,255,0.1);
      border-radius: 18px; padding: 26px;
      box-shadow: 0 24px 80px rgba(0,0,0,0.5);
      max-height: 92vh; overflow-y: auto;
    }
    .login-close {
      position: absolute; top: 12px; right: 14px;
      background: none; border: 0; color: rgba(255,255,255,0.5);
      font-size: 20px; cursor: pointer; line-height: 1;
    }
    .login-close:hover { color: #fff; }
    .login-title { font-size: 20px; font-weight: 900; color: #fff; margin-bottom: 4px; padding-right: 24px; }
    .login-sub { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 18px; }
    .login-tabs { display: flex; gap: 6px; margin-bottom: 16px; }
    .login-tabs button {
      flex: 1; padding: 10px; border: 0; border-radius: 10px;
      background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.65);
      font-weight: 700; font-size: 14px; cursor: pointer; font-family: inherit;
    }
    .login-tabs button.active { background: var(--brand); color: #fff; }
    .login-field { margin-bottom: 12px; }
    .login-field label {
      display: block; font-size: 12px; font-weight: 700;
      color: rgba(255,255,255,0.6); margin-bottom: 5px;
    }
    .login-field input {
      width: 100%; box-sizing: border-box; padding: 12px 13px;
      border-radius: 10px; border: 1px solid rgba(255,255,255,0.14);
      background: rgba(255,255,255,0.05); color: #fff; font-size: 15px; font-family: inherit;
    }
    .login-field input:focus { outline: none; border-color: var(--brand); }
    .login-btn {
      display: flex; align-items: center; justify-content: center; gap: 10px;
      width: 100%; padding: 13px; border: 0; border-radius: 12px;
      background: var(--brand); color: #fff; font-size: 15px; font-weight: 800;
      cursor: pointer; font-family: inherit;
    }
    .login-btn:hover { background: var(--brand-dark); }
    .login-btn:disabled { opacity: 0.5; cursor: default; }
    .login-btn.google { background: #fff; color: #222; }
    .login-btn.google:hover { background: #f1f1f1; }
    .login-divider { text-align: center; color: rgba(255,255,255,0.35); font-size: 12px; margin: 14px 0; }
    .login-link {
      display: block; margin: 10px auto 0; background: none; border: 0;
      color: var(--brand); font-size: 13px; cursor: pointer; font-family: inherit;
    }
    .login-msg { padding: 10px 12px; border-radius: 10px; font-size: 13px; margin-bottom: 12px; display: none; }
    .login-msg.err { background: rgba(229,57,53,0.15); color: #FF8A80; display: block; }
    .login-msg.ok  { background: rgba(46,125,50,0.18); color: #A5D6A7; display: block; }
    .login-note { margin-top: 14px; font-size: 12px; color: rgba(255,255,255,0.45); text-align: center; }

    /* ── BOTÃO "MINHA LOCALIZAÇÃO" (mapa ao vivo) ────────────────── */
    .locate-btn {
      width: 38px; height: 38px; border-radius: 10px;
      border: 1px solid rgba(255,255,255,0.15);
      background: #1E293B; color: #fff; font-size: 17px; cursor: pointer;
      box-shadow: 0 2px 10px rgba(0,0,0,0.4);
    }
    .locate-btn:hover { background: #334155; }

    /* ── RESPONSIVE ──────────────────────────────────────────────── */
    @media (max-width: 768px) {
      .nav-links, .btn-download, .btn-account { display: none; }
      .nav-hamburger { display: flex; }
      .hero-screenshots img:nth-child(1),
      .hero-screenshots img:nth-child(3) { display: none; }
      .hero-screenshots img:nth-child(2) { width: 240px; animation: none; }
      .hero-pulse-panel { grid-template-columns: 1fr; max-width: 420px; }
      .hero-pulse-panel div { text-align: center; }
      .step { flex-direction: column; gap: 16px; }
      .footer-inner { flex-direction: column; }
      .notify-form { flex-direction: column; align-items: center; }
      .notify-input { width: 100%; max-width: 320px; }
    }

    /* ── EVENTOS AO VIVO — Seção dedicada ───────────────────────── */
    .eventos-section {
      padding: 80px 5% 70px;
      background: #0A0F1A;
      border-top: 1px solid rgba(255,255,255,0.06);
    }
    .live-dot {
      display: inline-block; width: 8px; height: 8px; border-radius: 50%;
      background: #FF5722; box-shadow: 0 0 0 3px rgba(255,87,34,0.25);
      animation: livePulse 1.6s ease-in-out infinite;
    }
    @keyframes livePulse {
      0%,100% { box-shadow: 0 0 0 3px rgba(255,87,34,0.25); }
      50%      { box-shadow: 0 0 0 7px rgba(255,87,34,0.08); }
    }
    .eventos-header {
      display: flex; align-items: flex-start; justify-content: space-between;
      gap: 20px; margin-bottom: 28px; flex-wrap: wrap;
    }
    .eventos-header-left { flex: 1; min-width: 200px; }
    .eventos-count-wrap {
      background: rgba(255,87,34,0.1); border: 1px solid rgba(255,87,34,0.25);
      border-radius: 16px; padding: 16px 24px; text-align: center; flex-shrink: 0;
    }
    .eventos-count { font-size: 36px; font-weight: 900; color: var(--brand); line-height: 1; }
    .eventos-count-label { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 4px; }

    /* Filtros */
    .eventos-filters {
      display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px;
    }
    .ev-filter {
      padding: 7px 16px; border-radius: 999px; font-size: 13px; font-weight: 600;
      border: 1.5px solid rgba(255,255,255,0.12); background: transparent;
      color: rgba(255,255,255,0.55); cursor: pointer; transition: all .18s; white-space: nowrap;
    }
    .ev-filter:hover { border-color: rgba(255,87,34,0.5); color: rgba(255,255,255,0.85); }
    .ev-filter.active { background: var(--brand); border-color: var(--brand); color: #fff; }

    /* Layout split */
    .eventos-body {
      display: grid;
      grid-template-columns: 1fr 360px;
      gap: 20px;
      align-items: start;
    }
    @media (max-width: 860px) {
      .eventos-body { grid-template-columns: 1fr; }
    }

    /* Coluna do mapa */
    .eventos-map-wrap {
      position: relative; border-radius: 18px; overflow: hidden;
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: 0 20px 60px rgba(0,0,0,0.5);
      height: 520px;
    }
    #liveMap { width: 100%; height: 100%; }
    .live-map-loading, .live-map-empty {
      position: absolute; inset: 0; display: flex; flex-direction: column;
      align-items: center; justify-content: center; gap: 12px;
      background: rgba(10,15,26,0.88); backdrop-filter: blur(6px);
      color: rgba(255,255,255,0.45); font-size: 14px; z-index: 999;
    }
    .live-map-empty span { font-size: 16px; font-weight: 900; color: var(--white); }
    .live-map-empty p { max-width: 320px; color: rgba(255,255,255,0.68); text-align: center; line-height: 1.5; }
    .live-map-empty-actions { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
    .live-map-empty-actions a { color: var(--white); background: rgba(255,87,34,0.18); border: 1px solid rgba(255,87,34,0.36); border-radius: 999px; padding: 8px 12px; font-size: 12px; font-weight: 800; text-decoration: none; }
    .live-spinner {
      width: 34px; height: 34px; border-radius: 50%;
      border: 3px solid rgba(255,87,34,0.2); border-top-color: var(--brand);
      animation: spin .75s linear infinite;
    }
    @keyframes spin { to { transform: rotate(360deg); } }

    /* Coluna da lista */
    .eventos-list-col {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 18px; overflow: hidden;
      height: 520px; display: flex; flex-direction: column;
    }
    .eventos-list-header {
      display: flex; align-items: center; justify-content: space-between;
      padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,0.07);
      font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.5); flex-shrink: 0;
    }
    .eventos-refresh {
      background: none; border: 1px solid rgba(255,255,255,0.12);
      color: rgba(255,255,255,0.5); width: 30px; height: 30px;
      border-radius: 8px; font-size: 16px; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: all .2s;
    }
    .eventos-refresh:hover { border-color: var(--brand); color: var(--brand); transform: rotate(45deg); }
    .eventos-list-scroll {
      flex: 1; overflow-y: auto; padding: 10px;
      scrollbar-width: thin; scrollbar-color: rgba(255,255,255,0.1) transparent;
    }
    .ev-card {
      display: flex; align-items: center; gap: 12px;
      padding: 11px 12px; border-radius: 12px; cursor: pointer;
      transition: background .15s; margin-bottom: 6px;
      border: 1px solid transparent;
    }
    .ev-card:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.08); }
    .ev-card.selected { background: rgba(255,87,34,0.1); border-color: rgba(255,87,34,0.3); }
    .ev-card-icon {
      width: 44px; height: 44px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 22px; flex-shrink: 0;
    }
    .ev-card-body { flex: 1; min-width: 0; }
    .ev-card-title {
      font-size: 13px; font-weight: 700; color: #fff;
      white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    }
    .ev-card-sub {
      font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 3px;
      white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    }
    .ev-card-badge {
      font-size: 10px; font-weight: 800; color: #fff; flex-shrink: 0;
      padding: 3px 8px; border-radius: 999px; background: #43A047;
    }
    .ev-card-badge.urgent { background: #E53935; }
    .ev-list-empty {
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      min-height: 100%; gap: 12px; color: rgba(255,255,255,0.45); font-size: 14px;
      text-align: center; padding: 20px;
    }
    .ev-list-empty span { font-size: 15px; font-weight: 900; color: var(--white); }
    .ev-list-empty p { max-width: 280px; line-height: 1.5; margin: 0; }
    .ev-empty-links { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; padding: 0 16px; }
    .ev-empty-links a {
      background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
      color: rgba(255,255,255,0.7); font-size: 12px; font-weight: 600;
      padding: 6px 12px; border-radius: 999px; text-decoration: none;
    }
    .ev-empty-links a:hover { background: rgba(255,255,255,0.12); text-decoration: none; }
    .ev-empty-cta {
      background: var(--brand); color: var(--white);
      font-size: 13px; font-weight: 700; text-decoration: none;
      padding: 10px 18px; border-radius: 999px; margin-top: 4px;
    }
    .ev-empty-cta:hover { background: var(--brand-dark); text-decoration: none; }

    /* Leaflet popup */
    .leaflet-popup-content-wrapper {
      background: #1C1C1E !important; border-radius: 14px !important;
      box-shadow: 0 8px 32px rgba(0,0,0,0.7) !important; border: none !important; padding: 0 !important;
    }
    .leaflet-popup-content { margin: 0 !important; }
    .leaflet-popup-tip { background: #1C1C1E !important; }
    .leaflet-popup-close-button { color: rgba(255,255,255,0.4) !important; font-size: 18px !important; top: 8px !important; right: 10px !important; }
    .map-popup {
      display: flex; align-items: center; gap: 10px;
      padding: 12px 36px 12px 12px; min-width: 210px;
    }
    .map-popup-icon {
      width: 40px; height: 40px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0;
    }
    .map-popup-title { font-size: 13px; font-weight: 700; color: #fff; }
    .map-popup-sub { font-size: 11px; color: #8E8E93; margin-top: 2px; }
    .map-popup-meta { font-size: 10px; color: #555; margin-top: 3px; }

    @media (max-width: 600px) {
      .eventos-map-wrap, .eventos-list-col { height: 340px; }
    }


    /* Etapa 2 - engajamento */
    .category-grid {
      max-width: 1120px; margin: 0 auto;
      display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px;
    }
    .category-card {
      min-height: 260px; display: flex; flex-direction: column; justify-content: space-between;
      background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025));
      border: 1px solid rgba(255,255,255,0.1); border-radius: 22px; padding: 24px;
      color: var(--white); text-decoration: none; position: relative; overflow: hidden;
      transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
    }
    .category-card::before {
      content: ''; position: absolute; inset: auto -20% -35% -20%; height: 130px;
      background: var(--cat-glow, rgba(255,87,34,0.24)); filter: blur(34px); opacity: 0.72;
    }
    .category-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,0.22); box-shadow: 0 20px 54px rgba(0,0,0,0.35); }
    .category-kicker { color: rgba(255,255,255,0.58); font-size: 11px; text-transform: uppercase; font-weight: 900; letter-spacing: 0.8px; }
    .category-icon { font-size: 34px; margin: 20px 0 8px; }
    .category-card h3 { font-size: 24px; font-weight: 900; margin-bottom: 8px; }
    .category-card p { color: rgba(255,255,255,0.68); font-size: 14px; line-height: 1.55; margin-bottom: 18px; position: relative; z-index: 1; }
    .category-card strong { color: var(--white); font-size: 14px; position: relative; z-index: 1; }
    .cat-dui { --cat-glow: rgba(0,137,123,0.36); }
    .cat-accident { --cat-glow: rgba(229,57,53,0.36); }
    .cat-flood { --cat-glow: rgba(30,136,229,0.34); }
    .cat-radar { --cat-glow: rgba(251,140,0,0.32); }
    .cat-events { --cat-glow: rgba(233,30,99,0.34); }
    .cat-app { --cat-glow: rgba(255,87,34,0.38); border-color: rgba(255,87,34,0.28); }

    .mid-cta-section {
      display: flex; align-items: center; justify-content: space-between; gap: 24px;
      background: linear-gradient(135deg, #111827 0%, #172033 55%, #2A130B 100%);
      padding: 42px 5%; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .mid-cta-section > div:first-child { max-width: 680px; }
    .mid-cta-section span { color: #FFAB91; font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.8px; }
    .mid-cta-section h2 { font-size: clamp(24px, 4vw, 40px); font-weight: 900; margin: 8px 0; }
    .mid-cta-section p { color: rgba(255,255,255,0.62); line-height: 1.6; }
    .mid-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }

    .journey-wrap { max-width: 1120px; margin: 0 auto; }
    .journey-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
    .journey-card {
      background: rgba(255,255,255,0.045); border: 1px solid rgba(255,255,255,0.08);
      border-radius: 20px; padding: 24px; min-height: 240px;
    }
    .journey-num { color: var(--brand); font-size: 13px; font-weight: 900; margin-bottom: 38px; }
    .journey-card h3 { font-size: 20px; font-weight: 900; margin-bottom: 10px; }
    .journey-card p { color: rgba(255,255,255,0.62); line-height: 1.6; font-size: 14px; }

    .community-proof-section { background: #080D16; padding: 80px 5%; }
    .community-proof-inner { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center; }
    .community-copy h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 900; line-height: 1.05; margin: 14px 0; }
    .community-copy p { color: rgba(255,255,255,0.62); line-height: 1.65; margin-bottom: 24px; max-width: 540px; }
    .community-metrics { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
    .community-metrics div { background: rgba(255,255,255,0.055); border: 1px solid rgba(255,255,255,0.09); border-radius: 18px; padding: 24px; }
    .community-metrics strong { display: block; font-size: 28px; color: var(--brand); margin-bottom: 8px; }
    .community-metrics span { color: rgba(255,255,255,0.62); font-size: 14px; line-height: 1.4; }

    .screenshots-section { padding-bottom: 78px !important; }
    .screenshots-showcase {
      max-width: 1120px; margin: 42px auto 0; padding: 0 5%;
      display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px;
    }
    .shot-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; overflow: hidden; }
    .shot-card img { width: 100%; height: 360px; object-fit: cover; object-position: top center; display: block; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .shot-card div { padding: 18px; }
    .shot-card span { color: #FFAB91; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.8px; }
    .shot-card h3 { font-size: 18px; font-weight: 900; margin: 8px 0; }
    .shot-card p { color: rgba(255,255,255,0.6); font-size: 13px; line-height: 1.5; }

    .engagement-grid {
      max-width: 1120px; margin: 0 auto 28px;
      display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px;
    }
    .engagement-card { background: var(--dark2); border: 1px solid rgba(255,255,255,0.08); border-radius: 18px; padding: 22px; }
    .engagement-card span { font-size: 28px; display: block; margin-bottom: 14px; }
    .engagement-card h3 { font-size: 18px; font-weight: 900; margin-bottom: 8px; }
    .engagement-card p { color: rgba(255,255,255,0.6); font-size: 13px; line-height: 1.55; }
    .compact-ranks { margin-top: 18px; }
    .cta-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }

    @media (max-width: 920px) {
      .mid-cta-section { flex-direction: column; align-items: flex-start; }
      .mid-cta-actions { justify-content: flex-start; }
      .journey-grid, .screenshots-showcase, .engagement-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .community-proof-inner { grid-template-columns: 1fr; }
    }
    @media (max-width: 600px) {
      .category-grid, .journey-grid, .screenshots-showcase, .engagement-grid, .community-metrics { grid-template-columns: 1fr; }
      .category-card { min-height: 220px; }
      .shot-card img { height: 420px; }
    }


    /* Etapa 3 - confianca e SEO */
    .trust-section { background: var(--dark2); padding: 84px 5%; }
    .trust-grid {
      max-width: 1120px; margin: 0 auto;
      display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px;
    }
    .trust-card {
      background: rgba(255,255,255,0.045); border: 1px solid rgba(255,255,255,0.08);
      border-radius: 20px; padding: 24px;
    }
    .trust-card span { display: inline-flex; color: #FFAB91; font-size: 13px; font-weight: 900; margin-bottom: 18px; }
    .trust-card h3 { font-size: 18px; font-weight: 900; margin-bottom: 10px; }
    .trust-card p { color: rgba(255,255,255,0.62); font-size: 14px; line-height: 1.6; }
    .seo-links-panel {
      max-width: 1120px; margin: 28px auto 0; display: flex; align-items: center; justify-content: space-between; gap: 22px;
      background: rgba(255,87,34,0.09); border: 1px solid rgba(255,87,34,0.22); border-radius: 20px; padding: 22px;
    }
    .seo-links-panel strong { display: block; color: var(--white); font-size: 18px; margin-bottom: 4px; }
    .seo-links-panel p { color: rgba(255,255,255,0.62); font-size: 14px; line-height: 1.45; }
    .seo-links { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
    .seo-links a {
      color: var(--white); background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
      border-radius: 999px; padding: 9px 12px; font-size: 13px; font-weight: 800; text-decoration: none;
    }
    .seo-links a:hover { background: rgba(255,87,34,0.2); border-color: rgba(255,87,34,0.45); }
    @media (max-width: 920px) {
      .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .seo-links-panel { flex-direction: column; align-items: flex-start; }
      .seo-links { justify-content: flex-start; }
    }
    @media (max-width: 600px) {
      .trust-grid { grid-template-columns: 1fr; }
    }
