/* =========================================================================
   PORTA LARGA ORDINÁRIA — Landing v2
   Portal de notícias regional · mobile-first · premium · sem dependências
   ========================================================================= */

:root {
  --bg: #06152F;            /* azul quase preto (fundo) */
  --bg-2: #0A1F44;          /* superfície */
  --surface: #102A5A;       /* cards */
  --azul: #1565FF;          /* azul institucional */
  --azul-soft: #2D7BFF;
  --gold: #FFC300;          /* destaque */
  --vermelho: #FF3B3B;
  --wpp: #25D366;
  --tg: #229ED9;
  --branco: #FFFFFF;
  --txt: #EAF1FF;
  --txt-soft: #9DB2D8;
  --line: rgba(255,255,255,.09);
  --radius: 14px;
  --maxw: 1080px;
  --ff-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --ff: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff); background: var(--bg); color: var(--txt);
  font-size: 17px; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.skip-link { position: absolute; left: -999px; top: 0; z-index: 200; background: var(--gold); color: #000; padding: 12px 18px; font-weight: 700; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 6px; }

/* =========================== BOTÕES =========================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--ff); font-weight: 700; font-size: 1.02rem; letter-spacing: .2px;
  padding: 15px 26px; min-height: 54px; border: 2px solid transparent; border-radius: 12px;
  cursor: pointer; line-height: 1.1; transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease, border-color .16s ease, color .16s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn .ico { width: 22px; height: 22px; fill: currentColor; flex-shrink: 0; }
.btn--lg { padding: 18px 32px; min-height: 62px; font-size: 1.14rem; }
.btn--block { width: 100%; }

.btn--gold { background: var(--gold); color: #241b00; box-shadow: 0 10px 30px rgba(255,195,0,.28); }
.btn--gold:hover { box-shadow: 0 14px 36px rgba(255,195,0,.42); }
.btn--outline { background: transparent; color: var(--branco); border-color: var(--line); }
.btn--outline:hover { border-color: var(--gold); color: var(--gold); }
.btn--tg { background: var(--tg); color: #fff; }
.btn--tg:hover { box-shadow: 0 12px 30px rgba(34,158,217,.4); }
.btn--ig { background: linear-gradient(45deg, #F58529, #DD2A7B 55%, #8134AF 95%); color: #fff; }
.btn--ig:hover { box-shadow: 0 12px 30px rgba(221,42,123,.42); }

/* =========================== TOP BAR =========================== */
.topbar {
  background: #04101F; border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
  padding: 7px 14px; font-family: var(--ff-display); font-weight: 700; letter-spacing: 1px;
  font-size: .78rem; text-transform: uppercase; color: var(--txt-soft);
}
.topbar__live { color: var(--gold); display: inline-flex; align-items: center; gap: 7px; }
.topbar__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--vermelho); animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .3; } }

/* =========================== HEADER =========================== */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(6,21,47,.82); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease, background-color .25s ease;
}
.header.scrolled { background: rgba(6,21,47,.97); box-shadow: 0 8px 26px rgba(0,0,0,.4); }
.header__inner { display: flex; align-items: center; justify-content: space-between; padding: 11px 0; gap: 14px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand__logo { width: 44px; height: 44px; border-radius: 10px; box-shadow: 0 4px 12px rgba(0,0,0,.35); }
.brand__name { display: flex; flex-direction: column; line-height: 1; font-family: var(--ff-display); }
.brand__name strong { font-size: 1.18rem; font-weight: 900; letter-spacing: .4px; color: #fff; }
.brand__name em { font-style: normal; font-size: .82rem; font-weight: 700; letter-spacing: 4px; color: var(--gold); }
.nav { display: none; gap: 26px; font-weight: 600; }
.nav a { color: var(--txt-soft); transition: color .15s ease; }
.nav a:hover { color: var(--gold); }

/* =========================== HERO =========================== */
.hero { position: relative; overflow: hidden; padding: clamp(40px,8vw,80px) 0 clamp(46px,8vw,82px); border-bottom: 1px solid var(--line); }
.hero__bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(900px 420px at 50% -8%, rgba(21,101,255,.42), transparent 62%),
    linear-gradient(180deg, #0A2150 0%, var(--bg) 72%);
}
.hero__bg::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px); background-size: 24px 24px; opacity: .6; }
.hero__inner { position: relative; z-index: 1; text-align: center; max-width: 760px; margin: 0 auto; }
.hero__logo { width: 88px; height: 88px; border-radius: 18px; margin: 0 auto 22px; box-shadow: 0 12px 34px rgba(0,0,0,.45); }
.hero__title { font-family: var(--ff-display); font-weight: 900; text-transform: uppercase; font-size: clamp(2.6rem,11vw,5rem); line-height: .92; letter-spacing: 1px; color: #fff; }
.hero__title span { color: var(--gold); display: block; }
.hero__slogan { font-family: var(--ff-display); font-weight: 700; font-size: clamp(1.25rem,5vw,1.9rem); color: #fff; margin-top: 16px; }
.hero__text { color: var(--txt-soft); font-size: clamp(1rem,3.6vw,1.18rem); margin: 12px auto 0; max-width: 540px; }

/* Métricas */
.stats { display: flex; justify-content: center; gap: 8px; margin: 30px auto; max-width: 560px; }
.stat { flex: 1; padding: 16px 6px; background: rgba(255,255,255,.04); border: 1px solid var(--line); border-radius: var(--radius); }
.stat:nth-child(2) { background: rgba(21,101,255,.12); border-color: rgba(21,101,255,.35); }
.stat__num { display: block; font-family: var(--ff-display); font-weight: 900; font-size: clamp(1.6rem,7vw,2.4rem); line-height: 1; color: var(--gold); }
.stat__lbl { display: block; margin-top: 6px; font-size: .76rem; color: var(--txt-soft); text-transform: uppercase; letter-spacing: .6px; }

.hero__note { margin-top: 14px; color: var(--txt-soft); font-size: .92rem; }

/* =========================== SEÇÕES =========================== */
.section { padding: clamp(46px,8vw,82px) 0; }
.section--alt { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.shead { text-align: center; max-width: 640px; margin: 0 auto clamp(28px,5vw,44px); }
.shead__kicker { display: inline-block; font-family: var(--ff-display); font-weight: 700; letter-spacing: 3px; font-size: .82rem; text-transform: uppercase; color: var(--azul-soft); }
.shead__kicker::before { content: ""; display: inline-block; width: 24px; height: 3px; background: var(--gold); vertical-align: middle; margin-right: 9px; border-radius: 2px; }
.shead__title { font-family: var(--ff-display); font-weight: 800; text-transform: uppercase; font-size: clamp(1.9rem,7vw,2.9rem); line-height: 1; color: #fff; margin-top: 8px; }
.shead__sub { color: var(--txt-soft); margin-top: 10px; }

/* =========================== CARDS PARTICIPE =========================== */
.cards { display: grid; grid-template-columns: 1fr; gap: 18px; max-width: 760px; margin: 0 auto; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; text-align: center; display: flex; flex-direction: column; transition: transform .18s ease, border-color .18s ease; }
.card:hover { transform: translateY(-4px); border-color: rgba(255,195,0,.45); }
.card__ico { width: 60px; height: 60px; margin: 0 auto 16px; border-radius: 15px; display: grid; place-items: center; font-size: 28px; background: color-mix(in srgb, var(--c,#1565FF) 18%, transparent); }
.card__title { font-family: var(--ff-display); font-weight: 800; text-transform: uppercase; font-size: 1.5rem; color: #fff; }
.card__desc { color: var(--txt-soft); margin: 10px 0 22px; flex: 1; }

/* =========================== SOBRE =========================== */
.about { max-width: 720px; margin: 0 auto; text-align: center; }
.about .shead__title { margin-top: 8px; }
.about__text { font-size: 1.12rem; color: var(--txt); margin-top: 16px; }
.about__text strong { color: var(--gold); }
.topics { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 28px; }
.topics li { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.05); border: 1px solid var(--line); border-radius: 999px; padding: 9px 16px; font-weight: 600; font-size: .95rem; color: var(--txt); }
.topics svg { width: 18px; height: 18px; color: var(--azul-soft); }

/* =========================== REDES =========================== */
.social { display: grid; grid-template-columns: 1fr; gap: 14px; max-width: 480px; margin: 0 auto; }

/* =========================== EM BREVE =========================== */
.soon { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; max-width: 680px; margin: 0 auto; }
.soon__item { position: relative; background: rgba(255,255,255,.035); border: 1px dashed var(--line); border-radius: var(--radius); padding: 26px 14px 20px; text-align: center; }
.soon__emoji { font-size: 34px; display: block; filter: grayscale(.15); opacity: .92; }
.soon__name { display: block; margin-top: 10px; font-family: var(--ff-display); font-weight: 800; text-transform: uppercase; font-size: 1.25rem; color: #fff; letter-spacing: .5px; }
.soon__tag { display: inline-block; margin-top: 10px; font-size: .72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); background: rgba(255,195,0,.12); border: 1px solid rgba(255,195,0,.3); border-radius: 999px; padding: 4px 12px; }

/* =========================== RODAPÉ =========================== */
.footer { background: #04101F; border-top: 1px solid var(--line); padding: 40px 0 30px; }
.footer__inner { display: flex; flex-direction: column; gap: 22px; align-items: center; text-align: center; }
.footer__brand { display: flex; align-items: center; gap: 13px; }
.footer__brand img { width: 40px; height: 40px; border-radius: 9px; }
.footer__brand strong { display: block; font-family: var(--ff-display); font-weight: 800; letter-spacing: .4px; color: #fff; }
.footer__brand span { color: var(--txt-soft); font-size: .88rem; }
.footer__links { display: flex; flex-wrap: wrap; gap: 16px 22px; justify-content: center; }
.footer__links a { color: var(--txt-soft); font-weight: 600; transition: color .15s ease; }
.footer__links a:hover { color: var(--gold); }
.footer__copy { color: #5E76A0; font-size: .85rem; }

/* =========================== REVEAL =========================== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* =========================== RESPONSIVO =========================== */
@media (min-width: 680px) {
  .cards { grid-template-columns: 1fr 1fr; }
  .social { grid-template-columns: 1fr 1fr; max-width: 560px; }
  .soon { grid-template-columns: repeat(4,1fr); max-width: 760px; }
}
@media (min-width: 820px) {
  .nav { display: flex; }
  body { font-size: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
