/* GERADO a partir do bloco <style> de resources/views/home.blade.php.
   Nao editar aqui: editar a home e voltar a correr a geracao, senao o
   blog e a pagina inicial passam a ter estilos diferentes. */
    :root {
      --ink: #1c1527;
      --muted: #625a6d;
      --purple: #7048a6;
      --purple-light: #9d68f2;
      --pink: #c34693;
      --pink-hot: #e55792;
      --line: #ebe5ef;
      --soft: #fbf9fd;
      --white: #ffffff;
      --shadow-sm: 0 10px 26px rgba(48,34,58,.06);
      --shadow-md: 0 16px 40px rgba(48,34,58,.10);
      --shadow-lg: 0 24px 65px rgba(66,43,84,.14);
      --gradient: linear-gradient(135deg, #7048a6 0%, #c34693 50%, #e55792 100%);
      --gradient-text: linear-gradient(135deg, #7048a6 0%, #e55792 45%, #4285f4 100%);
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--ink);
      background: #ffffff;
      font: 16px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Inter", "Helvetica Neue", sans-serif;
      -webkit-font-smoothing: antialiased;
    }
    a { color: inherit; }
    .wrap { width: min(1180px, calc(100% - 36px)); margin: auto; }

    /* Topbar */
    .topbar {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(232, 225, 237, 0.8);
    }
    .nav {
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }
    .brand {
      display: flex;
      align-items: center;
      gap: 11px;
      text-decoration: none;
      font-size: 22px;
      font-weight: 950;
      letter-spacing: -0.02em;
    }
    .brand img {
      width: 40px;
      height: 40px;
      border-radius: 12px;
    }
    .brand span {
      background: var(--gradient);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .nav-stats {
      display: flex;
      align-items: center;
      gap: 18px;
      margin-left: auto;
    }
    .nav-stat {
      position: relative;
      min-width: 100px;
      text-align: center;
      line-height: 1.15;
    }
    .nav-stat + .nav-stat:before {
      content: "";
      position: absolute;
      left: -9px;
      top: 6px;
      bottom: 6px;
      width: 1px;
      background: var(--line);
    }
    .nav-stat b {
      display: block;
      font-size: 20px;
      font-weight: 950;
      color: var(--purple);
    }
    .nav-stat span {
      display: block;
      margin-top: 4px;
      color: var(--muted);
      font-size: 9.5px;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .navcta {
      display: flex;
      align-items: center;
      height: 40px;
      padding: 0 20px;
      border-radius: 99px;
      background: var(--gradient);
      color: #fff;
      font-weight: 900;
      font-size: 14px;
      text-decoration: none;
      box-shadow: 0 6px 18px rgba(195, 70, 147, 0.3);
      transition: transform 0.15s, box-shadow 0.15s;
    }
    .navcta:hover {
      transform: translateY(-1px);
      box-shadow: 0 10px 24px rgba(112, 72, 166, 0.35);
    }

    /* ── HERO BANNER OFICIAL COM OS HOMENS ── */
    .hero {
      position: relative;
      min-height: 82svh;
      display: flex;
      align-items: center;
      background-image: 
        radial-gradient(circle at 78% 28%, rgba(220, 189, 242, 0.35), transparent 32%),
        radial-gradient(circle at 12% 72%, rgba(255, 215, 230, 0.35), transparent 30%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 42%, rgba(255, 255, 255, 0.45) 75%, rgba(255, 255, 255, 0.1) 100%),
        url("https://gchat.appspride.com/assets/dev-hero-men-purple.webp");
      background-size: cover;
      background-position: center right;
      background-repeat: no-repeat;
      padding: 90px 0 70px;
      overflow: hidden;
    }

    .hero-content {
      max-width: 660px;
      position: relative;
      z-index: 2;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 14px;
      border-radius: 99px;
      background: #f0e8f7;
      color: var(--purple);
      font-size: 12.5px;
      font-weight: 900;
      letter-spacing: 0.04em;
      margin-bottom: 20px;
    }
    .dot {
      width: 8px;
      height: 8px;
      background: #ee769f;
      border-radius: 50%;
      box-shadow: 0 0 0 5px rgba(238, 118, 159, 0.25);
    }

    .hero h1 {
      font-size: clamp(40px, 5.2vw, 68px);
      line-height: 1.04;
      margin: 0 0 20px;
      font-weight: 950;
      letter-spacing: -0.03em;
      color: var(--ink);
    }
    .hero h1 span {
      display: block;
      background: var(--gradient-text);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .hero p.lead {
      color: var(--muted);
      font-size: 18.5px;
      line-height: 1.6;
      margin: 0 0 32px;
      max-width: 580px;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 36px;
      flex-wrap: wrap;
    }
    .primary-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 52px;
      padding: 0 28px;
      border-radius: 99px;
      background: var(--gradient);
      color: #fff;
      font-weight: 900;
      font-size: 16px;
      text-decoration: none;
      box-shadow: 0 10px 28px rgba(195, 70, 147, 0.35);
      transition: transform 0.15s, box-shadow 0.15s;
    }
    .primary-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 34px rgba(112, 72, 166, 0.4);
    }
    .secondary-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 52px;
      padding: 0 26px;
      border-radius: 99px;
      background: #ffffff;
      border: 1.5px solid var(--line);
      color: var(--purple);
      font-weight: 900;
      font-size: 16px;
      text-decoration: none;
      box-shadow: var(--shadow-sm);
      transition: all 0.15s;
    }
    .secondary-btn:hover {
      border-color: var(--purple);
      transform: translateY(-1px);
    }

    .trust-row {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }
    .trust-row span {
      display: inline-flex;
      align-items: center;
      padding: 7px 15px;
      border: 1px solid var(--line);
      border-radius: 99px;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(8px);
      font-size: 12.5px;
      font-weight: 800;
      color: #4a4254;
      box-shadow: 0 4px 14px rgba(48,34,58,.04);
    }

    /* ── ENTRADA WEB & SELEÇÃO DE ESTADOS ── */
    .entry-section {
      padding: 70px 0;
      background: #faf7fd;
      border-top: 1px solid var(--line);
    }
    .entry-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 36px 50px;
      align-items: start;
    }

    .browser-entry-card {
      background: #ffffff;
      border: 1px solid var(--line);
      border-radius: 26px;
      padding: 36px;
      box-shadow: var(--shadow-lg);
      position: relative;
    }
    .browser-entry-card:before {
      content: "";
      position: absolute;
      inset: 0 0 auto 0;
      height: 5px;
      background: var(--gradient);
      border-radius: 26px 26px 0 0;
    }
    .kicker {
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--purple);
      margin: 0 0 6px;
    }
    .browser-entry-card h3 {
      margin: 0 0 8px;
      font-size: 24px;
      font-weight: 950;
      letter-spacing: -0.02em;
    }
    .browser-entry-card p.sub {
      color: var(--muted);
      font-size: 15px;
      margin: 0 0 24px;
    }

    .form-group {
      margin-bottom: 18px;
    }
    .form-group label {
      display: block;
      font-size: 12.5px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--muted);
      margin-bottom: 7px;
    }
    .field-input {
      width: 100%;
      height: 52px;
      padding: 0 18px;
      border: 1.5px solid var(--line);
      border-radius: 14px;
      background: var(--soft);
      font: inherit;
      font-size: 16px;
      color: var(--ink);
      outline: none;
      box-sizing: border-box;
      transition: all 0.15s;
    }
    .field-input:focus {
      background: #fff;
      border-color: var(--purple);
      box-shadow: 0 0 0 4px rgba(112, 72, 166, 0.15);
    }

    .reserved-wrap {
      display: none;
      margin-bottom: 18px;
      animation: fadeIn 0.2s ease;
    }
    .reserved-wrap.show { display: block; }
    .reserved-label {
      display: flex;
      align-items: center;
      gap: 6px;
      color: #9333ea;
      font-size: 13px;
      font-weight: 800;
      margin-bottom: 6px;
    }

    .check-wrap {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 13px;
      color: var(--muted);
      line-height: 1.5;
      margin: 18px 0 22px;
    }
    .check-wrap input {
      margin-top: 3px;
      width: 17px;
      height: 17px;
      accent-color: var(--purple);
      cursor: pointer;
    }
    .check-wrap a {
      color: var(--purple);
      font-weight: 800;
      text-decoration: underline;
    }

    .btn-submit-chat {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 54px;
      border: 0;
      border-radius: 14px;
      background: var(--gradient);
      color: #fff;
      font: inherit;
      font-weight: 900;
      font-size: 17px;
      cursor: pointer;
      box-shadow: 0 10px 28px rgba(195, 70, 147, 0.32);
      transition: transform 0.15s, box-shadow 0.15s;
    }
    .btn-submit-chat:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 34px rgba(112, 72, 166, 0.4);
    }

    .btn-quick-nick {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 46px;
      margin-top: 12px;
      border: 1.5px solid #e8dbf4;
      border-radius: 14px;
      background: #ffffff;
      color: var(--purple);
      font: inherit;
      font-weight: 900;
      font-size: 14.5px;
      cursor: pointer;
      transition: all 0.15s;
    }
    .btn-quick-nick:hover {
      background: #faf6fd;
      border-color: var(--purple);
    }

    .error-box {
      display: none;
      color: #e11d48;
      font-size: 13.5px;
      font-weight: 700;
      margin-top: 12px;
      text-align: center;
    }

    /* Lado Direito: Salas por Estado */
    .states-showcase h3 {
      font-size: 24px;
      font-weight: 950;
      letter-spacing: -0.02em;
      margin: 0 0 10px;
    }
    .states-showcase p {
      color: var(--muted);
      font-size: 16px;
      line-height: 1.6;
      margin: 0 0 24px;
    }
    .estados-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
      max-height: 420px;
      overflow-y: auto;
      padding-right: 4px;
    }
    .estado-card {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 16px;
      border: 1px solid var(--line);
      border-radius: 14px;
      background: #ffffff;
      text-decoration: none;
      font-weight: 800;
      font-size: 14px;
      color: var(--ink);
      box-shadow: var(--shadow-sm);
      transition: all 0.15s;
      cursor: pointer;
    }
    .estado-card:hover {
      border-color: var(--purple);
      color: var(--purple);
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(112, 72, 166, 0.15);
    }
    .uf-badge {
      font-size: 11px;
      padding: 3px 8px;
      background: #f0e8f7;
      color: var(--purple);
      border-radius: 99px;
      font-weight: 900;
    }

    /* ── SEÇÃO DE CONTEÚDO SEO DENSO & CIDADES DO BRASIL ── */
    .seo-rich-sec {
      padding: 70px 0;
      background: #ffffff;
    }
    .seo-rich-head {
      text-align: center;
      margin-bottom: 44px;
    }
    .seo-rich-head h2 {
      margin: 0 0 12px;
      font-size: clamp(28px, 3.8vw, 38px);
      font-weight: 950;
      letter-spacing: -0.02em;
    }
    .seo-rich-head p {
      margin: 0;
      color: var(--muted);
      font-size: 17px;
      max-width: 760px;
      margin: auto;
    }
    .seo-article {
      max-width: 900px;
      margin: auto;
      color: #4b4356;
      font-size: 16.5px;
      line-height: 1.8;
    }
    .seo-article h3 {
      margin: 36px 0 12px;
      font-size: 22px;
      font-weight: 900;
      color: var(--ink);
      letter-spacing: -0.01em;
    }
    .seo-article p { margin-bottom: 20px; }
    .seo-article strong { color: var(--ink); font-weight: 800; }

    .regioes-box {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin: 32px 0;
    }
    .regiao-card {
      border: 1px solid var(--line);
      border-radius: 20px;
      padding: 24px;
      background: var(--soft);
    }
    .regiao-card h4 {
      margin: 0 0 10px;
      font-size: 18px;
      font-weight: 900;
      color: var(--purple);
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .regiao-card p {
      margin: 0;
      font-size: 14.5px;
      line-height: 1.6;
      color: #554e60;
    }

    .trust-banner {
      display: flex;
      align-items: center;
      gap: 22px;
      padding: 26px 30px;
      border: 1px solid #e8dbf4;
      border-radius: 24px;
      background: linear-gradient(135deg, #fcfaff 0%, #f6eefc 100%);
      margin-top: 40px;
    }
    .trust-icon { font-size: 38px; flex: 0 0 auto; }
    .trust-text h4 { margin: 0 0 4px; font-size: 18px; font-weight: 950; color: var(--ink); }
    .trust-text p { margin: 0; color: #514a5d; font-size: 14.5px; line-height: 1.6; }

    /* ── DOWNLOADS & PLATAFORMAS ── */
    .downloads { padding: 74px 0; background: #faf7fd; border-top: 1px solid var(--line); }
    .downloads-head { text-align: center; margin-bottom: 36px; }
    .downloads-head h2 { margin: 0 0 8px; font-size: 34px; font-weight: 950; }
    .downloads-head p { margin: 0; color: var(--muted); font-size: 16.5px; }

    .download-platform-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 260px));
      justify-content: center;
      gap: 16px;
      margin-top: 30px;
    }
    .platform-card {
      position: relative;
      min-height: 270px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 26px 20px;
      border: 1px solid #e5dbea;
      border-radius: 24px;
      background: #fff;
      box-shadow: 0 18px 50px rgba(77,52,80,.10);
      overflow: hidden;
      transition: transform 0.15s, box-shadow 0.15s;
    }
    .platform-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 24px 60px rgba(77,52,80,.16);
    }
    .platform-card:before {
      content: "";
      position: absolute;
      inset: 0 0 auto;
      height: 4px;
      background: linear-gradient(90deg,#e53935 0%,#fb8c00 18%,#fdd835 36%,#43a047 54%,#1e88e5 72%,#8e24aa 100%);
    }
    .platform-logo {
      width: 68px;
      height: 68px;
      display: grid;
      place-items: center;
      margin-bottom: 16px;
      border-radius: 20px;
      background: #f3edf8;
      color: #7048a6;
    }
    .platform-logo svg { width: 42px; height: 42px; display: block; }
    .platform-logo.android { background: #edf9f1; color: #28a45d; }
    .platform-logo.google { background: #eef5ff; color: #4285f4; }
    .platform-logo.ios { background: #111; color: #fff; }
    .platform-logo.windows, .platform-logo.store { background: #eaf3ff; color: #1473e6; }
    .platform-card h3 { margin: 0 0 7px; font-size: 18px; font-weight: 900; }
    .platform-card p { min-height: 42px; margin: 0 0 20px; color: var(--muted); font-size: 13.5px; }

    .btn-card-action {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 46px;
      margin-top: auto;
      border: 0;
      border-radius: 12px;
      background: var(--gradient);
      color: #fff;
      font-weight: 900;
      font-size: 14.5px;
      text-decoration: none;
      cursor: pointer;
      box-shadow: 0 8px 20px rgba(195, 70, 147, 0.25);
      transition: all 0.15s;
    }
    .btn-card-action:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 28px rgba(112, 72, 166, 0.35);
    }

    /* ── MOSTRUÁRIO DE CELULAR / SHOWCASE INTERATIVO ── */
    .faq-showcase {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 360px;
      gap: 48px;
      align-items: center;
    }
    .faq-phone-wrap { display: flex; justify-content: center; }
    .faq-phone {
      position: relative;
      width: min(310px, 100%);
      aspect-ratio: 9/16;
      border-radius: 36px;
      background: #18151c;
      box-shadow: 0 28px 70px rgba(62,40,81,.22), 0 0 0 1px #18151c;
      overflow: hidden;
    }
    .faq-phone:before {
      content: "";
      position: absolute;
      z-index: 6;
      top: 10px;
      left: 50%;
      transform: translateX(-50%);
      width: 56px;
      height: 13px;
      border-radius: 20px;
      background: #18151c;
      box-shadow: 0 0 0 1px rgba(255,255,255,.06);
    }
    .faq-phone-screen {
      position: absolute;
      inset: 7px 7px 44px;
      border-radius: 29px 29px 0 0;
      overflow: hidden;
      background: #fbf8fc;
    }
    .faq-phone-shot {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      animation: faqPhoneFade 40s infinite;
    }
    .faq-phone-shot:nth-child(1) { opacity: 1; animation-delay: 0s; }
    .faq-phone-shot:nth-child(2) { animation-delay: 5s; }
    .faq-phone-shot:nth-child(3) { animation-delay: 10s; }
    .faq-phone-shot:nth-child(4) { animation-delay: 15s; }
    .faq-phone-shot:nth-child(5) { animation-delay: 20s; }
    .faq-phone-shot:nth-child(6) { animation-delay: 25s; }
    .faq-phone-shot:nth-child(7) { animation-delay: 30s; }
    .faq-phone-shot:nth-child(8) { animation-delay: 35s; }
    .faq-android-bar {
      position: absolute;
      left: 7px;
      right: 7px;
      bottom: 7px;
      height: 37px;
      z-index: 5;
      display: flex;
      align-items: center;
      justify-content: space-around;
      background: #8f8f8f;
      border-radius: 0 0 24px 24px;
    }
    .faq-android-back { width: 0; height: 0; border-top: 6px solid transparent; border-bottom: 6px solid transparent; border-right: 9px solid #fff; }
    .faq-android-home { width: 11px; height: 11px; border-radius: 50%; background: #fff; }
    .faq-android-apps { width: 10px; height: 10px; border-radius: 2px; background: #fff; }
    @keyframes faqPhoneFade {
      0%, 18% { opacity: 1; transform: scale(1); }
      23%, 95% { opacity: 0; transform: scale(.99); }
      100% { opacity: 1; transform: scale(1); }
    }

    /* ── FAQ ── */
    .faq-sec {
      padding: 70px 0;
      background: #ffffff;
      border-top: 1px solid var(--line);
    }
    .faq-head { text-align: center; margin-bottom: 36px; }
    .faq-head h2 { margin: 0 0 10px; font-size: 34px; font-weight: 950; }
    .faq-head p { margin: 0; color: var(--muted); font-size: 16.5px; }

    .faq-list {
      display: grid;
      gap: 12px;
    }
    .faq-item {
      border: 1px solid var(--line);
      border-radius: 16px;
      background: #ffffff;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
    }
    .faq-item summary {
      padding: 18px 22px;
      font-weight: 900;
      font-size: 16.5px;
      cursor: pointer;
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      user-select: none;
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary:after { content: "+"; font-size: 22px; color: var(--purple); }
    .faq-item[open] summary:after { content: "−"; }
    .faq-item p {
      padding: 0 22px 20px;
      margin: 0;
      color: #514a5d;
      font-size: 15.5px;
      line-height: 1.7;
    }

    /* ── MODAIS INTERATIVOS ── */
    .modal {
      position: fixed;
      inset: 0;
      z-index: 999;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 18px;
      background: rgba(22, 18, 27, 0.65);
      backdrop-filter: blur(6px);
    }
    .modal.open { display: flex; }
    .modal-card {
      width: min(760px, 100%);
      max-height: min(780px, 92vh);
      overflow: hidden;
      border-radius: 22px;
      background: #fff;
      box-shadow: 0 30px 90px rgba(0,0,0,.35);
    }
    .modal-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 18px 24px;
      background: #141118;
      color: #fff;
    }
    .modal-head h2 { margin: 0; font-size: 21px; font-weight: 900; }
    .close {
      width: 38px;
      height: 38px;
      border: 1px solid #39323f;
      border-radius: 10px;
      background: #211c28;
      color: #fff;
      font-size: 24px;
      line-height: 1;
      cursor: pointer;
      display: grid;
      place-items: center;
    }
    .modal-body {
      padding: 24px;
      overflow: auto;
      max-height: calc(92vh - 80px);
      color: #514a5b;
      font-size: 15px;
      line-height: 1.65;
    }
    .modal-body h3 { margin: 20px 0 8px; color: #17121f; font-size: 17px; font-weight: 900; }
    .modal-body h3:first-child { margin-top: 0; }

    /* Guia do Windows */
    .windows-steps {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
      margin-top: 20px;
    }
    .windows-step {
      overflow: hidden;
      border: 1px solid #eadff0;
      border-radius: 18px;
      background: #fff;
      box-shadow: 0 12px 34px rgba(77,52,80,.08);
      margin: 0;
    }
    .windows-step img {
      display: block;
      width: 100%;
      height: auto;
      max-height: 280px;
      object-fit: contain;
      background: #f4f0f6;
    }
    .windows-step figcaption {
      padding: 12px 16px;
      color: #554e5c;
      font-size: 13.5px;
    }
    .windows-step figcaption b { display: block; margin-bottom: 2px; color: var(--ink); font-weight: 900; }

    /* Footer */
    footer {
      background: #0d0b13;
      color: #c9c3d4;
      padding: 44px 0 36px;
      font-size: 13.5px;
    }
    .foot-in {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .footer-copy a { color: #e5dcf4; font-weight: 800; text-decoration: none; }
    .footer-copy a:hover { color: #fff; text-decoration: underline; }
    .footer-links { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }
    .footer-links a { color: #a59cb6; text-decoration: none; font-weight: 700; }
    .footer-links a:hover { color: #fff; text-decoration: underline; }

    @media (max-width: 1000px) {
      .download-platform-grid { grid-template-columns: repeat(2, minmax(0, 260px)); }
      .faq-showcase { grid-template-columns: 1fr; }
      .windows-steps { grid-template-columns: 1fr; }
      .regioes-box { grid-template-columns: 1fr; }
    }
    @media (max-width: 860px) {
      .hero { background-position: 70% center; padding: 60px 0; }
      .entry-grid { grid-template-columns: 1fr; }
      .nav-stats { display: none; }
    }
    @media (max-width: 600px) {
      .hero h1 { font-size: 38px; }
      .estados-grid { grid-template-columns: 1fr; }
      .download-platform-grid { grid-template-columns: 1fr; }
      .foot-in { flex-direction: column; align-items: flex-start; }
      .trust-banner { flex-direction: column; text-align: center; }
    }

    /* ── Blog ── */
    .blog-sec { padding: 70px 0; background: var(--soft); border-top: 1px solid var(--line); }
    .blog-head { text-align: center; margin-bottom: 36px; }
    .blog-head h2 { margin: 0 0 10px; font-size: 34px; font-weight: 950; }
    .blog-head p { margin: 0; color: var(--muted); font-size: 16.5px; }
    .blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
    .blog-card {
      display: flex; flex-direction: column; overflow: hidden;
      border: 1px solid var(--line); border-radius: 18px; background: var(--white);
      box-shadow: var(--shadow-sm); text-decoration: none;
      transition: transform .15s, box-shadow .15s;
    }
    .blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
    .blog-card img { display: block; width: 100%; height: 170px; object-fit: cover; background: #f1ebf5; }
    .blog-card-placeholder {
      display: flex; align-items: center; justify-content: center; height: 170px;
      background: var(--gradient); color: #fff; font-weight: 900;
    }
    .blog-card-body { padding: 18px; }
    .blog-card-meta {
      display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 9px;
      color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
    }
    .blog-card-meta .cat { color: var(--purple); }
    .blog-card h3 { margin: 0 0 8px; font-size: 19px; line-height: 1.25; color: var(--ink); }
    .blog-card p { margin: 0; color: var(--muted); font-size: 14px; }
    .blog-card .read-link { display: inline-block; margin-top: 13px; color: var(--purple); font-weight: 900; }
    .blog-more {
      display: inline-flex; align-items: center; justify-content: center; height: 46px;
      padding: 0 26px; margin-top: 30px; border: 0; border-radius: 12px;
      background: var(--gradient); color: #fff; font-weight: 900; font-size: 14.5px;
      text-decoration: none; box-shadow: 0 8px 20px rgba(195, 70, 147, 0.25); transition: all .15s;
    }
    .blog-more:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(112, 72, 166, .35); }
    @media (max-width: 860px) { .blog-grid { grid-template-columns: 1fr; } }
