/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE ONLY
   Tablet (≥768px) e Desktop ficam idênticos ao layout original.
   Mudanças mais bruscas ocorrem apenas em ≤767px.
   ═══════════════════════════════════════════════════════════════ */

/* Hamburger button — só aparece no mobile, mas declarado aqui para
   manter coesão. Default: oculto. */
.nav-hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 10px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 200;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--texto);
  position: absolute;
  left: 11px;
  transition: transform 0.3s, opacity 0.2s, top 0.3s;
}
.nav-hamburger span:nth-child(1) { top: 14px; }
.nav-hamburger span:nth-child(2) { top: 21px; }
.nav-hamburger span:nth-child(3) { top: 28px; }
.nav-hamburger.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* Mobile variant switcher removido — Pills (mobile-v2) é a única variante. */

/* ═══════════════════════════════════════════════════════════════
   BREAKPOINT PRINCIPAL: ≤767px (CELULAR)
   Toda a mudança brusca acontece aqui.
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 767px) {

  /* ── MARQUEE · oculta o carrossel horizontal de frases no mobile ── */
  .marquee-wrap { display: none !important; }

  /* ── CONTAINERS · padding lateral reduzido ── */
  .container,
  .nav-inner,
  .iv-2-in,
  .iv-3-in,
  .iv-4-in,
  .hero-inner,
  .hero[data-variant="cinema"] .hero-content,
  .hero[data-variant="cinema-claro"] .hero-content,
  .hero[data-variant^="hv-"] .hero-content {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* ── NAV · hambúrguer ── */
  .nav-inner { height: 64px; }
  .nav-logo img { height: 40px; }
  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    gap: 0;
    padding: 16px 20px 24px;
    border-bottom: 1px solid var(--borda);
    box-shadow: 0 12px 24px rgba(13,14,11,0.08);
    transform: translateY(-110%);
    /* Esconde por completo quando fechado — evita que a barra de baixo
       da própria ul peeque se a altura for menor que 64px */
    visibility: hidden;
    transition:
      transform 0.3s cubic-bezier(.4,.1,.3,1),
      visibility 0s linear 0.3s;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }
  .nav-links.is-open {
    transform: translateY(0);
    visibility: visible;
    transition:
      transform 0.3s cubic-bezier(.4,.1,.3,1),
      visibility 0s linear 0s;
  }
  .nav-links li { border-bottom: 1px solid var(--borda); }
  .nav-links li:last-child { border-bottom: 0; padding-top: 8px; }
  .nav-links a {
    display: block;
    font-size: 14px;
    padding: 16px 0;
    letter-spacing: 0.06em;
  }
  .nav-links .nav-cta {
    display: inline-block;
    padding: 12px 22px;
    margin-top: 4px;
  }
  .nav-social { display: none; }
  .nav-hamburger { display: flex; }

  /* Quando o menu mobile está aberto, escurece nav bg pra ficar legível */
  nav.menu-open {
    background: rgba(244,244,240,0.98);
    backdrop-filter: blur(12px);
    border-bottom-color: var(--borda);
  }

  /* ── HERO · uma coluna, sem imagem grande de fundo em mobile ── */
  .hero {
    min-height: auto !important;
    padding-top: 64px;
  }
  .hero[data-variant="foto"] .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 32px;
    padding-bottom: 48px;
    min-height: auto;
  }
  .hero[data-variant="foto"] .hero-content { padding: 24px 0 0; }
  .hero[data-variant="foto"] .foto-block { display: none; }
  .hero[data-variant="foto"] .foto-malha { display: none; }

  /* Variantes cinema / hv-* — simplifica e mantém só o essencial */
  .hero[data-variant="cinema"],
  .hero[data-variant="cinema-claro"],
  .hero[data-variant^="hv-"] {
    min-height: auto !important;
  }
  .hero[data-variant="cinema"] .hero-content,
  .hero[data-variant="cinema-claro"] .hero-content,
  .hero[data-variant^="hv-"] .hero-content {
    min-height: 620px;
    padding-top: 48px;
    padding-bottom: 64px;
  }
  /* Esconde overlays decorativos pesados no mobile
     (mantemos hv-canvas/cc-meta-tl visíveis — tratados abaixo) */
  .cinema-signals,
  .cc-signals,
  .cinema-meta.tl,
  .cinema-meta.br,
  .cc-meta-br,
  .cc-meta-tr { display: none !important; }

  /* ── VEIL · spotlight radial ──
     Veil opaco no canto superior-esquerdo (atrás do texto/botões)
     e quase transparente no canto inferior-direito (onde a curva
     da ponte aparece). Tom cream-quente harmonizado com o wash
     laranja — evita uma faixa branca dura no topo. */
  .hv-veil,
  .cc-veil,
  .cinema-vignette {
    background:
      radial-gradient(ellipse 145% 82% at 5% 50%,
        rgba(248,238,220,0.86) 0%,
        rgba(248,238,220,0.72) 40%,
        rgba(248,232,210,0.30) 72%,
        rgba(248,225,195,0.04) 100%) !important;
  }
  .hero[data-hero-bg="ponte-escura"] .hv-veil {
    background:
      radial-gradient(ellipse 145% 82% at 5% 50%,
        rgba(13,20,28,0.88) 0%,
        rgba(13,20,28,0.72) 40%,
        rgba(13,20,28,0.28) 72%,
        rgba(13,20,28,0.04) 100%) !important;
  }

  /* ── FOTO · posição e foco ── */
  .hv-photo,
  .cinema-bg,
  .cc-bg { opacity: 1; }
  .hv-photo img,
  .cinema-bg img,
  .cc-bg img {
    object-position: 65% 70% !important;
  }

  /* ── WASH LARANJA FIM-DE-TARDE · versão "forte" ──
     Mobile precisa de mais saturação porque o veil cobre boa
     parte da foto; o desktop já tem o seu original mais sutil. */
  .hero[data-hero-bg="ponte"] .hv-photo::after {
    background:
      linear-gradient(180deg,
        rgba(255,160,60,0.34) 0%,
        rgba(255,120,40,0.20) 35%,
        rgba(120,50,20,0.05)  65%,
        rgba(40,20,10,0.30)   100%),
      radial-gradient(ellipse 90% 60% at 55% 50%,
        rgba(255,180,90,0.38) 0%,
        rgba(255,180,90,0) 75%) !important;
    mix-blend-mode: multiply;
  }

  /* ── TIPOGRAFIA CINÉTICA · CONECTAR / ENERGIZAR / INOVAR / FUTURO ──
     Cores com alpha bem mais alta que no desktop para serem legíveis
     contra a foto + wash laranja. Reposicionadas para entrarem
     vindas da direita, parcialmente off-screen. */
  .hv-canvas.hv-typo { display: block !important; }
  .hv-typo .hvty-word {
    font-size: clamp(48px, 16vw, 96px) !important;
    letter-spacing: -0.02em;
    z-index: 1 !important;
  }
  .hv-typo .hvty-word.w1 { top: 13%  !important; right: -8%  !important; left: auto !important; color: rgba(0,79,159,0.32)    !important; }
  .hv-typo .hvty-word.w2 { top: 37%  !important; right: -16% !important; left: auto !important; color: rgba(90,122,30,0.32)   !important; }
  .hv-typo .hvty-word.w3 { top: 61%  !important; right: -4%  !important; left: auto !important; color: rgba(230,120,23,0.42)  !important; }
  .hv-typo .hvty-word.w4 { top: 83%  !important; right: -12% !important; left: auto !important; color: rgba(26,26,23,0.26)    !important; }

  /* No tema escuro */
  .hero[data-hero-bg="ponte-escura"] .hv-typo .hvty-word.w1 { color: rgba(120,180,230,0.32) !important; }
  .hero[data-hero-bg="ponte-escura"] .hv-typo .hvty-word.w2 { color: rgba(184,214,116,0.32) !important; }
  .hero[data-hero-bg="ponte-escura"] .hv-typo .hvty-word.w3 { color: rgba(247,140,40,0.42)  !important; }
  .hero[data-hero-bg="ponte-escura"] .hv-typo .hvty-word.w4 { color: rgba(244,244,240,0.26) !important; }

  /* ── TEXTO SOB O LOGO (cc-meta-tl) ── */
  .cc-meta-tl {
    display: flex !important;
    position: absolute !important;
    top: 70px !important;
    left: 20px !important;
    right: 20px !important;
    z-index: 5;
    flex-direction: column;
    gap: 4px;
  }
  .cc-meta-tl .cc-meta-tagline {
    font-size: 11px !important;
    line-height: 1.45;
    color: rgba(26,26,23,0.72);
    max-width: 100%;
  }
  .cc-meta-tl .cc-meta-loc {
    font-size: 10px;
    letter-spacing: 0.16em;
    color: rgba(26,26,23,0.5);
  }
  .hero[data-hero-bg="ponte-escura"] .cc-meta-tl .cc-meta-tagline { color: rgba(244,244,240,0.72); }
  .hero[data-hero-bg="ponte-escura"] .cc-meta-tl .cc-meta-loc     { color: rgba(244,244,240,0.5); }

  /* Empurra o conteúdo do hero pra não colidir com o cc-meta-tl */
  .hero[data-variant^="hv-"] .hero-content {
    padding-top: 96px;
  }

  /* Textos do hero */
  .hero-title {
    font-size: 48px !important;
    line-height: 1.0;
    margin-bottom: 20px;
  }
  .hero-sub {
    font-size: 16.5px !important;
    line-height: 1.6 !important;
    font-weight: 500 !important;
    letter-spacing: 0.005em;
    margin-bottom: 28px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    text-align: center;
    width: 100%;
    padding: 14px 20px;
  }
  .pontte-acronym {
    font-size: 10.5px;
    margin: 6px 0 18px;
  }

  /* ── SECTIONS · padding vertical reduzido ── */
  section { padding: 56px 0; }
  .section-title {
    font-size: 32px !important;
    line-height: 1.05;
    margin-bottom: 28px;
  }

  /* ── O CENTRO · uma coluna ── */
  #sobre > .container > div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    padding: 32px 0 0 !important;
  }
  .sobre-stats { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 28px; }
  .cutout-bg-text {
    font-size: 64px !important;
    left: 20px !important;
    bottom: 0;
  }

  /* ── SERVICOS · uma coluna ── */
  #servicos > .container > div[style*="padding:100px 0"] { padding: 32px 0 !important; }
  #servicos > .container > div > div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    margin-bottom: 32px !important;
  }
  .servicos-grid { grid-template-columns: 1fr !important; }

  /* ── PARCEIROS · uma coluna ── */
  .parceiros-grid { grid-template-columns: 1fr !important; }
  .parceiros-header {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 16px;
  }

  /* ── INFRA V2 · chips em 1 coluna ── */
  .iv-2 { padding: 64px 0 !important; }
  .iv-2 .iv2-head {
    grid-template-columns: 1fr !important;
    gap: 24px;
    margin-bottom: 40px;
  }
  .iv-2 .iv2-chips { grid-template-columns: 1fr !important; }
  .iv-2 .iv2-title { font-size: 40px !important; }

  /* ── CTA ── */
  .cta-section { padding: 64px 0; }
  .cta-title { font-size: 34px !important; }
  .cta-sub { font-size: 15px; }
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-actions .btn-primary,
  .cta-actions .btn-ghost-inv { text-align: center; }

  /* ── FOOTER ── */
  .footer-inner { grid-template-columns: 1fr !important; gap: 32px !important; }
  .footer-addresses-row { grid-template-columns: 1fr; gap: 12px; }
  .footer-addr-items { grid-template-columns: 1fr; gap: 12px; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  /* ─────────────────────────────────────────────────────────
     LINHAS · ACORDEÃO VERTICAL (.lin-head)
     Grid 4-col → grid 2-col simples (num + título), ícone some.
     Indent de 124px do .lin-desc some.
     ───────────────────────────────────────────────────────── */
  [data-layout="acordeon-v"] .lin-head {
    grid-template-columns: 48px 1fr 24px;
    gap: 12px;
    padding: 18px 20px;
  }
  [data-layout="acordeon-v"] .lin-icon { display: none; }
  [data-layout="acordeon-v"] .lin-title { font-size: 15px; line-height: 1.3; }
  [data-layout="acordeon-v"] .lin-num { font-size: 11px; }
  [data-layout="acordeon-v"] .lin-desc {
    padding: 0 20px 24px 20px !important;
    font-size: 13.5px;
    line-height: 1.7;
  }

  /* Mesmo tratamento para o layout expansao (mesma estrutura conceitual) */
  [data-layout="expansao"] .lin-exp-head {
    grid-template-columns: 44px 1fr 24px;
    gap: 12px;
    padding: 16px 20px;
  }
  [data-layout="expansao"] .lin-exp-head .ico { display: none; }
  [data-layout="expansao"] .lin-exp-head .ttl { font-size: 15px; }
  [data-layout="expansao"] .lin-exp-body .desc {
    padding: 0 20px 20px 20px !important;
    font-size: 13.5px;
  }

  /* ─────────────────────────────────────────────────────────
     LINHAS · ACORDEÃO HORIZONTAL (acordeon-h)
     3 variações mobile selecionáveis: v1, v2, v3.
     Cada variação é uma classe no #linhas-container.
     Default: v1 (vertical empilhado).
     ───────────────────────────────────────────────────────── */

  /* ─────────────────────────────────────────────────────────
     LINHAS · ACORDEÃO HORIZONTAL (acordeon-h) — MOBILE
     Variação única: PILLS + CARD DETALHE
     - Pills horizontais com num + título de todas as 5 linhas
     - Ativo destaca em cor sólida da linha
     - Card grande colorido abaixo com ícone + título + descrição
     - Tudo pode ficar fechado (segundo clique no aberto, fecha)
     ───────────────────────────────────────────────────────── */

  /* Reset base: anula o flex horizontal do desktop */
  [data-layout="acordeon-h"].mobile-v2 {
    height: auto;
    background: transparent;
    border-radius: 0;
    overflow: visible;
    gap: 16px;
    padding: 0;
    display: flex;
    flex-direction: column;
  }
  /* Reset universal das transformações do desktop (vertical text, etc) */
  [data-layout="acordeon-h"].mobile-v2 .lin-title-h {
    writing-mode: horizontal-tb !important;
    transform: none !important;
    margin: 0 !important;
    max-width: none !important;
    letter-spacing: 0 !important;
    white-space: normal;
  }
  [data-layout="acordeon-h"].mobile-v2 .lin-desc-h {
    transition: none;
  }

  /* Faixa de pills (todas as 5 sempre visíveis) */
  [data-layout="acordeon-h"].mobile-v2 .lin-item {
    flex: none;
    background: var(--bg2);
    color: var(--texto);
    cursor: pointer;
    border-radius: 3px;
    border: 1px solid var(--borda);
    overflow: visible;
    display: grid;
    grid-template-columns: 30px 1fr;
    grid-template-rows: auto;
    column-gap: 10px;
    align-items: center;
    padding: 10px 14px;
    min-height: 0;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    -webkit-tap-highlight-color: transparent;
  }
  /* Hover só em dispositivos com hover real (evita o efeito "preso" no mobile) */
  @media (hover: hover) {
    [data-layout="acordeon-h"].mobile-v2 .lin-item:hover {
      background: var(--offwhite);
      border-color: var(--lc);
    }
  }
  [data-layout="acordeon-h"].mobile-v2 .lin-item:focus,
  [data-layout="acordeon-h"].mobile-v2 .lin-item:focus-visible {
    outline: none;
  }
  [data-layout="acordeon-h"].mobile-v2 .lin-item.open {
    background: var(--lc);
    border-color: var(--lc);
    color: #fff;
  }
  [data-layout="acordeon-h"].mobile-v2 .lin-num {
    grid-column: 1;
    grid-row: 1;
    color: var(--lc) !important;
    font-size: 10px;
    letter-spacing: 0.1em;
    align-self: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
    max-width: 30px;
  }
  [data-layout="acordeon-h"].mobile-v2 .lin-item.open .lin-num { color: rgba(255,255,255,0.8) !important; }
  [data-layout="acordeon-h"].mobile-v2 .lin-icon-h {
    display: none;
  }
  [data-layout="acordeon-h"].mobile-v2 .lin-title-h {
    grid-column: 2;
    grid-row: 1;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: var(--texto) !important;
    line-height: 1.3 !important;
    padding: 0 !important;
  }
  [data-layout="acordeon-h"].mobile-v2 .lin-item.open .lin-title-h { color: #fff !important; }
  /* Descrição escondida nas pills — extraída para o card detalhe via JS */
  [data-layout="acordeon-h"].mobile-v2 .lin-desc-h { display: none; }
  /* Card detalhe (injetado via JS) */
  .mv-detail-card {
    background: var(--lc);
    color: #fff;
    padding: 26px 52px 28px 22px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 4px;
    position: relative;
  }
  .mv-detail-card .mv-d-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
    -webkit-tap-highlight-color: transparent;
  }
  .mv-detail-card .mv-d-close:active {
    transform: scale(0.94);
    background: rgba(255,255,255,0.28);
  }
  .mv-detail-card .mv-d-close svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    fill: none;
  }
  .mv-detail-card .mv-d-num {
    font: 700 11px/1 'Space Mono', monospace;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.75);
  }
  .mv-detail-card .mv-d-icon {
    width: 32px;
    height: 32px;
    color: #fff;
  }
  .mv-detail-card .mv-d-icon svg { width: 100%; height: 100%; }
  .mv-detail-card .mv-d-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: #fff;
  }
  .mv-detail-card .mv-d-desc {
    font-size: 13.5px;
    line-height: 1.65;
    color: rgba(255,255,255,0.92);
  }
  .mv-detail-card .mv-d-desc b { color: #fff; font-weight: 700; }

  /* ── Outras layouts de linhas — fallback simples ── */
  [data-layout="grade-modal"] { grid-template-columns: 1fr !important; }
  [data-layout="abas-topo"] .lin-panel-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  [data-layout="abas-topo"] .lin-big-num { font-size: 64px; }

  /* ── INFRA V3 / V4 fallback mobile ── */
  .iv-3-in, .iv-4-in { padding-left: 20px !important; padding-right: 20px !important; }
  .iv-3 .iv3-grid { grid-template-columns: 1fr !important; }
  .iv-3 .iv3-card.tall { grid-row: auto; min-height: 0; }
  .iv-4 .iv4-stats { grid-template-columns: 1fr !important; }
  .iv-4 .iv4-stat {
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.18);
  }

  /* Centro detalhes — back-to-top menor */
  .back-to-top { right: 14px; bottom: 14px; width: 40px; height: 40px; }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE MENU · estilo Editorial (26px)
   Aplica-se em ≤767px ao .nav-links já posicionado pela regra
   principal acima — só ajusta tipografia, espaçamento e separadores.
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  .nav-links {
    padding: 28px 28px 32px !important;
    gap: 3px;
    box-shadow: 0 16px 32px rgba(13,14,11,0.10);
  }
  .nav-links li {
    border-bottom: 0 !important;
  }
  .nav-links li:last-child {
    padding-top: 16px;
    margin-top: 6px;
    border-top: 1px solid var(--borda);
  }
  .nav-links a {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 26px !important;
    font-weight: 600;
    letter-spacing: -0.015em !important;
    text-transform: none !important;
    color: var(--texto);
    line-height: 1.18;
    padding: 7px 0 !important;
    display: inline-block !important;
  }
  .nav-links li:nth-child(1) a:hover { color: var(--verde-l); }
  .nav-links li:nth-child(2) a:hover { color: var(--azul); }
  .nav-links li:nth-child(3) a:hover { color: var(--laranja); }
  .nav-links li:nth-child(4) a:hover { color: var(--verde-l); }
  .nav-links li:nth-child(5) a:hover { color: var(--azul); }
  .nav-links .nav-cta {
    font-size: 13px !important;
    font-weight: 700;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    color: #fff !important;
    padding: 14px 26px !important;
    border-radius: 2px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   AJUSTES FINOS · ≤428px (iPhone Plus / Pro Max)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 428px) {
  .hero-title { font-size: 44px !important; }
  .section-title { font-size: 28px !important; }
  .cta-title { font-size: 30px !important; }
  .iv-2 .iv2-title { font-size: 36px !important; }
  .stat-num { font-size: 24px; }
  .cutout-bg-text { font-size: 56px !important; }
}

/* ═══════════════════════════════════════════════════════════════
   AJUSTES FINOS · ≤375px (iPhone SE / iPhone "regular")
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 375px) {
  .container,
  .nav-inner,
  .iv-2-in,
  .iv-3-in,
  .iv-4-in,
  .hero-inner,
  .hero[data-variant^="hv-"] .hero-content {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .hero-title { font-size: 38px !important; }
  .hero-sub { font-size: 14px; }
  .section-title { font-size: 26px !important; }
  .cta-title { font-size: 26px !important; }
  .iv-2 .iv2-title { font-size: 32px !important; }
  .sobre-stats { grid-template-columns: 1fr; }
  .stat-num { font-size: 22px; }
  .cutout-bg-text { font-size: 48px !important; left: 16px !important; }
  .nav-logo img { height: 36px; }
  [data-layout="acordeon-h"].mobile-v2 .lin-item { padding: 12px 14px; }
  [data-layout="acordeon-h"].mobile-v2 .lin-title-h { font-size: 20px !important; }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE BAIXO · iPhone SE/5 e telas verticalmente curtas
   Esconde o tagline sob o logo (cc-meta-tl) pra não colidir com
   o título "Conectar saberes / Energizar o futuro".
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 767px) and (max-height: 640px) {
  .cc-meta-tl { display: none !important; }
  /* Sem o cc-meta-tl, o hero-content não precisa do padding extra */
  .hero[data-variant^="hv-"] .hero-content { padding-top: 48px !important; }
}
