
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root { --navy: #1F242B; --navy-mid: #424A54; --gold: #D1AF2B; --white: #fff; --gray: #f2f2f2; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Lato', sans-serif; color: #3a3a3a; background: var(--white); overflow-x: hidden; }

  /* ─── HEADER ─── */
  header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: var(--navy); height: 70px; }
  header.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.35); }
  .header-inner { max-width: 1300px; margin: 0 auto; padding: 0 48px; height: 70px; display: flex; align-items: center; justify-content: space-between; }
  .logo img { height: 22px; display: block; }
  .logo-fallback { display: none; font-size: 19px; font-weight: 900; color: #fff; letter-spacing: .06em; }
  .logo-fallback span { color: var(--gold); }
  .nav-links { display: flex; align-items: stretch; height: 70px; }
  .nav-item { position: static; display: flex; align-items: center; }
  .nav-btn { background: none; border: none; cursor: pointer; color: rgba(255,255,255,.78); font-size: 13px; font-weight: 700; padding: 0 15px; height: 70px; display: flex; align-items: center; gap: 5px; font-family: 'Lato', sans-serif; letter-spacing: .015em; position: relative; transition: color .15s; white-space: nowrap; }
  .nav-btn::after { content: ''; position: absolute; bottom: 0; left: 15px; right: 15px; height: 2px; background: var(--gold); transform: scaleX(0); transition: transform .2s; }
  .nav-item:hover .nav-btn { color: #fff; }
  .nav-item:hover .nav-btn::after { transform: scaleX(1); }
  .nav-btn svg { width: 9px; height: 9px; opacity: .55; transition: transform .2s; }
  .nav-item:hover .nav-btn svg { transform: rotate(180deg); }
  .nav-right { display: flex; align-items: center; gap: 3px; }
  .lang-btn { background: none; border: none; cursor: pointer; color: rgba(255,255,255,.5); font-size: 11px; font-weight: 700; padding: 4px 7px; border-radius: 3px; transition: all .15s; font-family: 'Lato', sans-serif; letter-spacing: .06em; }
  .lang-btn:hover { color: #fff; }
  .lang-btn.curr { color: var(--gold); border: 0.5px solid rgba(209,175,43,.45); }
  .lang-sep { color: rgba(255,255,255,.15); font-size: 10px; }
  .search-btn { background: none; border: 0.5px solid rgba(255,255,255,.18); cursor: pointer; color: rgba(255,255,255,.6); padding: 7px; border-radius: 4px; display: flex; align-items: center; margin-left: 8px; transition: all .15s; }
  .search-btn:hover { color: var(--gold); border-color: rgba(209,175,43,.4); }
  .mega-wrap { position: fixed; top: 70px; left: 0; right: 0; background: var(--navy); border-top: 2px solid var(--gold); z-index: 999; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .2s ease, transform .2s ease, visibility .2s; pointer-events: none; }
  .nav-item:hover .mega-wrap { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
  .mega-inner { max-width: 1280px; margin: 0 auto; padding: 32px 48px 36px; display: flex; }
  .mega-accent { width: 260px; flex-shrink: 0; padding-right: 36px; border-right: 0.5px solid rgba(255,255,255,.08); margin-right: 44px; }
  .mega-thumb { width: 100%; height: 148px; border-radius: 8px; overflow: hidden; margin-bottom: 18px; position: relative; background: #2a3040; }
  .mega-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; filter: brightness(.82); }
  .nav-item:hover .mega-thumb img { transform: scale(1.05); }
  .mega-thumb-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 22px 12px 10px; background: linear-gradient(to top, rgba(0,0,0,.7), transparent); font-size: 10px; font-weight: 700; color: rgba(255,255,255,.55); letter-spacing: .08em; text-transform: uppercase; }
  .mega-accent-title { font-size: 15px; font-weight: 700; color: #fff; line-height: 1.35; margin-bottom: 8px; }
  .mega-accent-sub { font-size: 11.5px; color: rgba(255,255,255,.38); line-height: 1.65; margin-bottom: 18px; }
  .mega-cta { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: var(--gold); cursor: pointer; border: none; background: none; font-family: 'Lato', sans-serif; transition: gap .15s; }
  .mega-cta:hover { gap: 10px; }
  .mega-cta svg { width: 12px; height: 12px; }
  .mega-cols { display: flex; gap: 44px; flex: 1; }
  .mega-col-title { font-size: 10px; font-weight: 700; color: var(--gold); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
  .mega-link { display: flex; align-items: flex-start; gap: 11px; padding: 9px 0; cursor: pointer; border: none; background: none; text-align: left; font-family: 'Lato', sans-serif; transition: transform .15s; width: 100%; }
  .mega-link:hover { transform: translateX(4px); }
  .mega-link:hover .ml-label { color: var(--gold); }
  .ml-icon { width: 33px; height: 33px; border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: rgba(255,255,255,.06); }
  .ml-icon svg { width: 16px; height: 16px; }
  .ml-label { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.85); line-height: 1; margin-bottom: 3px; transition: color .15s; }
  .ml-desc { font-size: 11px; color: rgba(255,255,255,.33); line-height: 1.4; }
  .mega-brands { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; flex: 1; }
  .brand-card { background: rgba(255,255,255,.04); border: 0.5px solid rgba(255,255,255,.08); border-radius: 8px; padding: 14px 16px; cursor: pointer; transition: all .15s; display: flex; flex-direction: column; gap: 5px; }
  .brand-card:hover { background: rgba(209,175,43,.08); border-color: rgba(209,175,43,.3); }
  .brand-logo { height: 26px; width: auto; max-width: 130px; opacity: .9; margin-bottom: 2px; display: block; }
  .brand-logo.is-bigger { height: 36px; max-width: 150px; }
  .brand-name { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.9); }
  .brand-desc { font-size: 11px; color: rgba(255,255,255,.33); line-height: 1.4; }
  .brand-tag { font-size: 10px; color: var(--gold); font-weight: 700; letter-spacing: .05em; margin-top: auto; padding-top: 6px; }
  .mob-menu-btn { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
  .mob-menu-btn span { display: block; width: 22px; height: 1.5px; background: rgba(255,255,255,.85); border-radius: 2px; transition: all .25s; }
  .mob-menu-btn.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px,4.5px); }
  .mob-menu-btn.open span:nth-child(2) { opacity: 0; }
  .mob-menu-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px,-4.5px); }
  .mob-drawer { position: fixed; top: 0; left: 0; bottom: 0; width: 80%; max-width: 320px; background: var(--navy); z-index: 1050; transform: translateX(-100%); transition: transform .3s; display: flex; flex-direction: column; visibility: hidden; }
  .mob-drawer.open { transform: translateX(0); visibility: visible; }
  .mob-drawer-logo { padding: 20px 24px 16px; border-bottom: 0.5px solid rgba(255,255,255,.08); }
  .mob-drawer-logo img { height: 20px; }
  .mob-drawer-nav { flex: 1; overflow-y: auto; padding-top: 8px; }
  .mob-drawer-footer { flex-shrink: 0; border-top: 0.5px solid rgba(255,255,255,.08); }
  .mob-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 1040; opacity: 0; transition: opacity .3s; visibility: hidden; }
  .mob-overlay.open { opacity: 1; visibility: visible; }
  .mob-nav-item { border-bottom: 0.5px solid rgba(255,255,255,.07); }
  .mob-nav-btn { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 17px 24px; background: none; border: none; color: rgba(255,255,255,.82); font-size: 16px; font-weight: 700; font-family: 'Lato', sans-serif; cursor: pointer; }
  .mob-nav-btn svg { width: 10px; height: 10px; transition: transform .2s; opacity: .5; }
  .mob-nav-btn.open svg { transform: rotate(180deg); }
  .mob-sub { max-height: 0; overflow: hidden; transition: max-height .25s; background: rgba(0,0,0,.2); }
  .mob-sub.open { max-height: 300px; }
  .mob-sub-link { display: block; padding: 11px 24px 11px 36px; font-size: 13px; color: rgba(255,255,255,.5); background: none; border: none; width: 100%; text-align: left; font-family: 'Lato', sans-serif; cursor: pointer; }
  .mob-sub-link:hover { color: var(--gold); }
  .mob-langs { display: flex; gap: 16px; padding: 16px 24px; }
  .mob-lang-btn { font-size: 12px; font-weight: 700; color: rgba(255,255,255,.4); background: none; border: none; cursor: pointer; font-family: 'Lato', sans-serif; }
  .mob-lang-btn.curr { color: var(--gold); }
  .mob-socials { display: flex; gap: 10px; padding: 18px 24px; }
  .mob-social-btn { width: 34px; height: 34px; border-radius: 4px; border: 0.5px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; cursor: pointer; background: none; color: rgba(255,255,255,.45); transition: all .15s; }
  .mob-social-btn:hover { border-color: var(--gold); color: var(--gold); }

  /* ─── SHARED ─── */
  .section-tag { font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: .14em; text-transform: uppercase; display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
  .section-tag::before { content: ''; display: block; width: 24px; height: 1.5px; background: var(--gold); }
  .section-h2 { font-size: clamp(28px, 3.5vw, 48px); font-weight: 900; color: var(--navy); line-height: 1.08; letter-spacing: -.02em; margin-bottom: 20px; }
  .section-body { font-size: 15px; font-weight: 300; color: #666; line-height: 1.75; }
  .btn-navy { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; font-size: 12px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; border: none; background: var(--navy); color: #fff; cursor: pointer; border-radius: 2px; font-family: 'Lato', sans-serif; transition: all .2s; text-decoration: none; }
  .btn-navy:hover { background: #2e3540; }
  .btn-navy svg { width: 12px; height: 12px; }

  /* ─── HERO ─── */
  .hero-news {
    position: relative; padding: 160px 48px 100px;
    background: var(--navy); overflow: hidden; min-height: 480px;
    display: flex; align-items: center;
  }
  /* Geometric grid pattern */
  .hero-news-pattern {
    position: absolute; inset: 0; pointer-events: none; overflow: hidden;
  }
  .hero-news-pattern svg { width: 100%; height: 100%; opacity: .06; }
  .hero-news-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; width: 100%; }
  .hero-tag { font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: .16em; text-transform: uppercase; display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
  .hero-tag::before { content: ''; display: block; width: 28px; height: 1.5px; background: var(--gold); }
  .hero-h1 { font-size: clamp(32px, 4.5vw, 60px); font-weight: 900; color: #fff; line-height: 1.06; letter-spacing: -.025em; max-width: 820px; margin-bottom: 20px; }
  .hero-sub { font-size: clamp(14px, 1.5vw, 17px); font-weight: 300; color: rgba(255,255,255,.6); max-width: 620px; line-height: 1.7; }

  /* ─── PRESS RELEASES ─── */
  .news-section {
    background: var(--white); padding: 100px 48px;
    border-radius: 24px 24px 0 0; position: relative; z-index: 2; margin-top: -24px;
  }
  .news-inner { max-width: 1200px; margin: 0 auto; }
  .news-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; }
  .news-header-text { display: flex; flex-direction: column; }
  .news-filter { display: flex; gap: 8px; }
  .news-filter-btn { padding: 8px 16px; font-size: 12px; font-weight: 700; letter-spacing: .04em; border-radius: 100px; border: 1.5px solid #e0e0e0; background: none; cursor: pointer; font-family: 'Lato', sans-serif; color: #888; transition: all .2s; }
  .news-filter-btn.active, .news-filter-btn:hover { border-color: var(--navy); color: var(--navy); background: rgba(31,36,43,.04); }

  /* Featured (first card big) */
  .news-featured { display: grid; grid-template-columns: 1.5fr 1fr; gap: 24px; margin-bottom: 24px; }
  .news-card {
    border-radius: 12px; overflow: hidden; border: 0.5px solid #eee;
    display: flex; flex-direction: column;
    transition: transform .2s, box-shadow .2s;
  }
  .news-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.08); }
  .news-card-img { aspect-ratio: 16/9; overflow: hidden; position: relative; background: var(--gray); }
  .news-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s; }
  .news-card:hover .news-card-img img { transform: scale(1.04); }
  .news-card-category {
    position: absolute; top: 16px; left: 16px;
    background: var(--gold); color: var(--navy); font-size: 10px; font-weight: 700;
    letter-spacing: .08em; padding: 4px 10px; border-radius: 100px; text-transform: uppercase;
  }
  .news-card-body { padding: 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
  .news-card-date { font-size: 11px; color: #aaa; font-weight: 400; letter-spacing: .04em; }
  .news-card-title { font-size: 18px; font-weight: 900; color: var(--navy); line-height: 1.25; }
  .news-card.featured .news-card-title { font-size: clamp(18px, 2vw, 26px); }
  .news-card-summary { font-size: 14px; color: #666; line-height: 1.65; font-weight: 300; }
  .news-card-link { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: var(--navy); letter-spacing: .04em; text-transform: uppercase; cursor: pointer; border: none; background: none; font-family: 'Lato', sans-serif; padding: 0; margin-top: auto; transition: gap .2s; }
  .news-card-link:hover { gap: 10px; color: var(--gold); }
  .news-card-link svg { width: 11px; height: 11px; }

  /* Grid secundário */
  .news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

  /* ─── MÍDIA COVERAGE ─── */
  .midia-section {
    background: var(--navy-mid); padding: 100px 48px;
    border-radius: 24px 24px 0 0; position: relative; z-index: 3; margin-top: -24px; overflow: hidden;
  }
  .midia-inner { max-width: 1200px; margin: 0 auto; }
  .midia-header { margin-bottom: 56px; }
  .midia-header .section-tag { color: var(--gold); }
  .midia-header .section-tag::before { background: var(--gold); }
  .midia-header .section-h2 { color: #fff; margin-bottom: 0; }

  /* Veículos logos strip */
  .midia-logos {
    display: flex; align-items: center; gap: 0;
    border: 0.5px solid rgba(255,255,255,.1); border-radius: 10px; overflow: hidden;
    margin-bottom: 48px; flex-wrap: wrap;
  }
  .midia-logo-item {
    flex: 1; min-width: 140px; padding: 20px 24px;
    border-right: 0.5px solid rgba(255,255,255,.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 900; color: rgba(255,255,255,.35);
    letter-spacing: .06em; text-transform: uppercase; transition: color .2s, background .2s;
    cursor: pointer; background: transparent; border-top: none; border-bottom: none; border-left: none;
    font-family: 'Lato', sans-serif; text-align: center;
  }
  .midia-logo-item:last-child { border-right: none; }
  .midia-logo-item:hover { color: rgba(255,255,255,.7); background: rgba(255,255,255,.03); }
  .midia-logo-item.is-active { color: var(--gold); background: rgba(209,175,43,.08); }

  /* Carrossel — viewport + track */
  .midia-carousel { position: relative; overflow: hidden; }
  .midia-track {
    display: flex; gap: 20px; transition: transform .6s cubic-bezier(.25,.46,.45,.94);
    will-change: transform;
  }
  .midia-card {
    flex: 0 0 calc((100% - 40px) / 3);
    background: rgba(255,255,255,.06); border: 0.5px solid rgba(255,255,255,.1);
    border-radius: 12px; padding: 28px; display: flex; flex-direction: column; gap: 16px;
    transition: background .2s, border-color .2s;
    min-height: 280px;
  }
  .midia-card:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); }

  .midia-card-tags { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
  .midia-card-source {
    font-size: 10px; font-weight: 700; color: var(--gold);
    letter-spacing: .12em; text-transform: uppercase;
  }
  .midia-card-brand {
    font-size: 9px; font-weight: 700; color: rgba(255,255,255,.5);
    letter-spacing: .14em; text-transform: uppercase;
    padding: 3px 8px; border: 0.5px solid rgba(255,255,255,.2); border-radius: 4px;
  }
  .midia-card-title {
    font-size: 17px; font-weight: 700; color: #fff; line-height: 1.35;
    flex: 1;
  }
  .midia-card-portals-label {
    font-size: 11px; font-weight: 700; color: rgba(255,255,255,.5);
    letter-spacing: .08em; text-transform: uppercase; margin-bottom: 2px;
  }
  .midia-card-portals { display: flex; flex-direction: column; gap: 6px; }
  .midia-portal-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 700; color: var(--gold);
    background: none; border: none; padding: 0;
    cursor: pointer; transition: color .15s, transform .15s;
    font-family: 'Lato', sans-serif; text-align: left;
  }
  .midia-portal-link:hover { color: #e8c43d; transform: translateX(2px); }
  .midia-portal-link svg { width: 11px; height: 11px; flex-shrink: 0; }

  /* Carrossel — controles */
  .midia-carousel-nav {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: 32px; gap: 24px;
  }
  .midia-carousel-dots { display: flex; gap: 8px; }
  .midia-carousel-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,.2); border: none; padding: 0;
    cursor: pointer; transition: background .25s, transform .25s;
  }
  .midia-carousel-dot:hover { background: rgba(255,255,255,.4); }
  .midia-carousel-dot.is-active { background: var(--gold); transform: scale(1.3); }
  .midia-carousel-arrows { display: flex; gap: 8px; }
  .midia-carousel-arrow {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,.05); border: 0.5px solid rgba(255,255,255,.15);
    color: rgba(255,255,255,.7); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s, color .2s, border-color .2s;
  }
  .midia-carousel-arrow:hover {
    background: var(--gold); border-color: var(--gold); color: var(--navy);
  }
  .midia-carousel-arrow svg { width: 14px; height: 14px; }
  .midia-empty {
    text-align: center; padding: 60px 20px;
    color: rgba(255,255,255,.4); font-size: 14px;
  }

  /* ─── MEDIA KIT ─── */
  .kit-section {
    background: var(--white); padding: 100px 48px;
    border-radius: 24px 24px 0 0; position: relative; z-index: 4; margin-top: -24px;
  }
  .kit-inner { max-width: 1200px; margin: 0 auto; }
  .kit-header { max-width: 600px; margin-bottom: 64px; }
  .kit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
  .kit-item {
    background: var(--gray); padding: 40px 36px; display: flex; flex-direction: column; gap: 16px;
    transition: background .2s;
  }
  .kit-item:first-child { border-radius: 12px 0 0 12px; }
  .kit-item:last-child  { border-radius: 0 12px 12px 0; }
  .kit-item:hover { background: var(--navy); }
  .kit-item:hover .kit-title { color: #fff; }
  .kit-item:hover .kit-body  { color: rgba(255,255,255,.55); }
  .kit-item:hover .kit-icon-wrap { background: rgba(209,175,43,.15); }
  .kit-item:hover .kit-dl-btn { border-color: rgba(255,255,255,.3); color: #fff; }
  .kit-icon-wrap { width: 52px; height: 52px; border-radius: 12px; background: var(--white); display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,.06); transition: background .2s; }
  .kit-icon-wrap svg { width: 24px; height: 24px; }
  .kit-title { font-size: 18px; font-weight: 900; color: var(--navy); transition: color .2s; }
  .kit-body { font-size: 14px; color: #777; line-height: 1.7; font-weight: 300; transition: color .2s; }
  .kit-dl-btn {
    display: inline-flex; align-items: center; gap: 8px; margin-top: 4px;
    padding: 10px 20px; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
    border: 1.5px solid #ccc; color: var(--navy); background: none;
    cursor: pointer; border-radius: 4px; font-family: 'Lato', sans-serif; transition: all .2s;
    align-self: flex-start;
  }
  .kit-dl-btn svg { width: 11px; height: 11px; }

  /* ─── CONTATO IMPRENSA ─── */
  .contato-section {
    background: var(--gold); padding: 100px 48px;
    border-radius: 24px 24px 0 0; position: relative; z-index: 5; margin-top: -24px; overflow: hidden;
  }
  .contato-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 2; }
  .contato-text { display: flex; flex-direction: column; gap: 16px; }
  .contato-tag { font-size: 11px; font-weight: 700; color: rgba(31,36,43,.5); letter-spacing: .14em; text-transform: uppercase; }
  .contato-h2 { font-size: clamp(24px, 3vw, 44px); font-weight: 900; color: var(--navy); line-height: 1.1; letter-spacing: -.02em; }
  .contato-body { font-size: 15px; color: rgba(31,36,43,.65); line-height: 1.7; font-weight: 300; }
  .contato-links { display: flex; flex-direction: column; gap: 12px; background: rgba(31,36,43,.08); border-radius: 12px; padding: 28px 32px; }
  .contato-link-item { display: flex; align-items: center; gap: 14px; }
  .contato-link-icon { width: 40px; height: 40px; border-radius: 8px; background: rgba(31,36,43,.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .contato-link-icon svg { width: 18px; height: 18px; }
  .contato-link-label { font-size: 11px; color: rgba(31,36,43,.5); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
  .contato-link-value { font-size: 15px; font-weight: 700; color: var(--navy); }
  .contato-divider { width: 32px; height: 1.5px; background: rgba(31,36,43,.15); }

  /* ─── FOOTER ─── */
  footer { background: var(--navy); padding: 72px 48px 0; border-radius: 24px 24px 0 0; position: relative; z-index: 6; margin-top: -24px; }
  .footer-inner { max-width: 1200px; margin: 0 auto; }
  .footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 0.5px solid rgba(255,255,255,.1); }
  .footer-brand-col img { height: 28px; margin-bottom: 20px; }
  .footer-tagline { font-size: 13px; color: rgba(255,255,255,.38); line-height: 1.7; max-width: 260px; }
  .footer-socials { display: flex; gap: 10px; margin-top: 28px; }
  .social-btn { width: 34px; height: 34px; border-radius: 4px; border: 0.5px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; cursor: pointer; background: none; color: rgba(255,255,255,.45); transition: all .15s; }
  .social-btn:hover { border-color: var(--gold); color: var(--gold); }
  .footer-col-title { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.9); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 20px; }
  .footer-links { display: flex; flex-direction: column; gap: 10px; }
  .footer-link { font-size: 13px; color: rgba(255,255,255,.38); cursor: pointer; transition: color .15s; background: none; border: none; font-family: 'Lato', sans-serif; text-align: left; padding: 0; }
  .footer-link:hover { color: rgba(255,255,255,.8); }
  .footer-bottom { padding: 24px 0; display: flex; justify-content: space-between; align-items: center; }
  .footer-copy { font-size: 11px; color: rgba(255,255,255,.22); }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1024px) {
    .nav-links, .nav-right { display: none; }
    .mob-menu-btn { display: flex; }
    .header-inner { padding: 0 24px; }
  }
  @media (max-width: 768px) {
    .hero-news { padding: 120px 24px 80px; }
    .news-section, .midia-section, .kit-section { padding: 60px 24px; }
    .news-featured { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: 1fr; }
    .news-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    /* Filtros como carrossel horizontal (não estoura a largura) */
    .news-filter {
      width: 100%; max-width: 100%;
      overflow-x: auto; -webkit-overflow-scrolling: touch;
      scrollbar-width: none; -ms-overflow-style: none;
      padding-bottom: 2px;
    }
    .news-filter::-webkit-scrollbar { display: none; }
    .news-filter-btn { flex: 0 0 auto; white-space: nowrap; }
    .midia-logos { flex-wrap: wrap; align-items: stretch; }
    .midia-logo-item { flex: 1 1 50%; min-width: 0; min-height: 72px; border-bottom: 0.5px solid rgba(255,255,255,.1); }
    .midia-card { flex: 0 0 calc(100% - 40px); padding: 24px; min-height: 0; }
    .midia-carousel-nav { flex-direction: column; gap: 16px; }
    .kit-grid { grid-template-columns: 1fr; gap: 2px; }
    .kit-item:first-child { border-radius: 12px 12px 0 0; }
    .kit-item:last-child  { border-radius: 0 0 12px 12px; }
    .contato-section { padding: 60px 24px; }
    .contato-inner { grid-template-columns: 1fr; }
    footer { padding: 48px 24px 0; }
    .footer-top { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  }

  .footer-addresses { display: flex; flex-direction: column; gap: 8px; padding: 20px 0 0; border-top: 0.5px solid rgba(255,255,255,.08); margin-top: 4px; }
  .footer-address-item { display: flex; align-items: flex-start; gap: 8px; font-size: 11px; color: rgba(255,255,255,.28); line-height: 1.5; }
  .footer-address-item svg { flex-shrink: 0; margin-top: 1px; }
  .footer-address-item strong { color: rgba(255,255,255,.45); font-weight: 700; }
  .footer-copy-lang { font-size: 11px; color: rgba(255,255,255,.22); }

/* ── Press Releases: botão "Mais notícias" (usa .btn-navy do site) ── */
.news-loadmore-wrap { display: flex; justify-content: center; margin-top: 48px; }
#press-loadmore:disabled, #press-loadmore.is-loading { opacity: .5; cursor: default; }
