/* ================================================
   RESET / BASE
================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Poppins', sans-serif;
    background: #f3f5f7;
    color: #111;
    max-width: 100%;
    overflow-x: hidden;
}

/* Remove sublinhado padrão dos links */
a {
    text-decoration: none;
    color: inherit;
}

/* Container padrão */
.container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 18px;
}

/* ================================================
   HEADER FIXO + MENU + SUBMENU
================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 88px;
    background: #0f172a; /* azul bem escuro */
    color: #fff;
    display: flex;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 3px 12px rgba(0,0,0,0.45);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* LOGO */
.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 54px;
    object-fit: contain;
}

.portal-name {
    font-size: 20px;
    font-weight: 700;
}

/* MENU PRINCIPAL */
.nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

/* Links do menu (desktop) – estilo esportivo verde */
.nav > a,
.nav-link {
    font-size: 17px;
    font-weight: 600;
    position: relative;
    padding: 6px 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;

    color: #34bbd3; /* verde principal */
    text-shadow: 0 0 8px rgba(34,197,94,0.35);
}

/* nav-link é <button> → tira visual de botão */
.nav-link {
    background: transparent;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

/* Hover: texto mais claro */
.nav > a:hover,
.nav-link:hover {
    color: #bbf7d0;
}

/* Sublinhado animado verde */
.nav > a::after,
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #34bbd3, #4ade80);
    transition: width 0.2s ease;
}

.nav > a:hover::after,
.nav-link:hover::after {
    width: 100%;
}

/* Caret da setinha */
.nav-caret {
    font-size: 11px;
    color: #a7f3d0;
}

/* SUBMENU */
.nav-item {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: 115%;
    left: 0;
    background: #020617;
    border-radius: 12px;
    padding: 8px 0;
    min-width: 200px;
    box-shadow: 0 14px 30px rgba(15,23,42,0.75);
    border: 1px solid rgba(34,197,94,0.25);
    display: none;
    z-index: 1000;
}

.nav-dropdown a {
    display: block;
    padding: 9px 16px;
    font-size: 14px;
    color: #e5e7eb;
}

.nav-dropdown a:hover {
    background: rgba(15,23,42,0.9);
    color: #bbf7d0;
}

/* abre no hover (desktop) */
.nav-item:hover .nav-dropdown {
    display: block;
}

/* ================================================
   MENU MOBILE
================================================ */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
}

/* ================================================
   MENU MOBILE (abre da direita para esquerda)
================================================ */
.nav-toggle{
  display:none;               /* desktop: escondido */
  background:none;
  border:none;
  color:#fff;
  font-size:32px;
  cursor:pointer;
}

/* Mobile breakpoint */
@media (max-width: 820px){

  /* ✅ volta o botão ☰ no mobile */
  .nav-toggle{
    display:block;
    width:46px;
    height:46px;
    border-radius:12px;
    border:1px solid rgba(148,163,184,.25);
    background: rgba(2,6,23,.25);
    backdrop-filter: blur(8px);
  }

  /* ✅ nav vira drawer pela direita */
  .nav{
    position:fixed;
    top:88px;
    right:0;
    left:auto;

    height:calc(100vh - 88px);
    width:min(86vw, 340px);

    background:#020617;
    padding:18px 18px 22px;
    display:flex;
    flex-direction:column;
    align-items:stretch;
    gap:12px;

    transform:translateX(110%);
    transition:transform .28s ease;
    overflow-y:auto;

    border-left:1px solid rgba(34,197,94,.25);
    box-shadow:-18px 0 40px rgba(0,0,0,.45);
    z-index:9999;
  }

  .nav.nav-open{
    transform:translateX(0);
  }

  /* ✅ submenu no mobile (abre por classe .open) */
  .nav-item:hover .nav-dropdown{ display:none; } /* desliga hover no mobile */

  .nav-dropdown{
    position:static;
    background:transparent;
    border-radius:0;
    box-shadow:none;
    border:0;
    padding:6px 0 0;
    display:none;
  }

  .nav-item.open .nav-dropdown{
    display:block;
  }

  .nav-dropdown a{
    padding-left:22px;
    color:#e5e7eb;
  }

  .nav-dropdown a:hover{
    background:rgba(15,23,42,.7);
  }
}

/* Espaço para o header fixo */
body.theme-sports {
    padding-top: 88px;
}

/* ================================================
   SLIDER ESPORTIVO (HERO)
================================================ */
.sports-hero-slider {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    height: 620px;
    overflow: hidden;
    background: #000;
}

.sports-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: .5s ease;
}

.sports-hero-slide.active {
    opacity: 1;
}

/*.sports-hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.75);
}*/
.sports-hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center; /* 👈 foco no topo da imagem */
    filter: brightness(.75);
}
.sports-hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(15,23,42,0) 0%,      /* topo totalmente limpo */
        rgba(15,23,42,0.15) 35%,  /* início suave */
        rgba(15,23,42,0.55) 65%,  /* escurece mais */
        rgba(15,23,42,0.85) 100%  /* base bem escura */
    );
    display: flex;
    align-items: flex-end;
    padding: 30px 0;
    color: #fff;
}

.sports-hero-title {
    font-size: 32px;
    font-weight: 800;
    max-width: 720px;
    text-shadow: 0 8px 26px rgba(15,23,42,0.9);
}

.sports-hero-subtitle {
    font-size: 16px;
    max-width: 650px;
    margin-top: 8px;
    color: #e5e7eb;
    text-shadow: 0 4px 18px rgba(15,23,42,0.9);
}

/* Dots (bolinhas) */
.sports-hero-dots {
    position: absolute;
    left: 50%;
    bottom: 20px;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

.sports-hero-dot {
    width: 11px;
    height: 11px;
    background: rgba(255,255,255,.4);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: .2s;
}

.sports-hero-dot.active {
    background: #34bbd3;
    width: 24px;
    border-radius: 30px;
}

/* Setas */
.sports-hero-prev,
.sports-hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: rgba(0,0,0,.42);
    color: #fff;
    font-size: 38px;
    padding: 8px 14px;
    cursor: pointer;
}

.sports-hero-prev { left: 10px; }
.sports-hero-next { right: 10px; }

.sports-hero-prev:hover,
.sports-hero-next:hover {
    background: rgba(0,0,0,.7);
}

/* Hero responsivo */
@media (max-width: 960px) {
    .sports-hero-slider { height: 360px; }
    .sports-hero-title { font-size: 26px; max-width: 100%; }
    .sports-hero-subtitle { font-size: 14px; max-width: 100%; }
}

@media (max-width: 640px) {
    .sports-hero-slider { height: 300px; }
    .sports-hero-title { font-size: 20px; }
}

/* ================================================
   GRID PRINCIPAL — sports-top
================================================ */
.sports-top {
    margin-top: 40px;
    margin-bottom: 40px;
}

.sports-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 26px;
}

/* COLUNA PRINCIPAL */
.sports-main .card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.card-img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}

.card-body {
    padding: 16px;
}

.card-category {
    font-size: 12px;
    font-weight: 700;
    color: #34bbd3;
    text-transform: uppercase;
}

.card-title {
    font-size: 26px;
    margin: 6px 0;
}

.card-meta {
    font-size: 12px;
    color: #666;
}

.card-excerpt {
    margin-top: 12px;
    color: #444;
    line-height: 1.45;
}

/* 2 CARDS SECUNDÁRIOS */
.sports-secondary-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.sports-secondary-grid .card-img {
    height: 190px;
}

/* ================================================
   SIDEBAR DIREITA
================================================ */
.sports-sidebar {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* Anúncios */
.ad-box {
    background: #fff;
    border-radius: 12px;
    padding: 0;
    border: 1px solid #e5e7eb;
}

.ad-box-header {
    background: #e5e7eb;
    padding: 10px;
    font-weight: 600;
    text-align: center;
}

.ad-box-space {
    padding: 20px;
    text-align: center;
    color: #555;
    font-size: 14px;
}
/* =========================
   BUSCA (dentro .ad-box)
========================= */
.ad-box .search_form{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px;
  border-radius:16px;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 26px rgba(0,0,0,.08);
  backdrop-filter: blur(8px);
}

.ad-box .search_form input[type="text"]{
  flex:1;
  height:44px;
  padding:0 14px;
  border-radius:12px;
  border: 1px solid rgba(0,0,0,.12);
  background:#fff;
  color:#111;
  outline:none;
  font-size:15px;
  font-weight:500;
  transition: .18s ease;
}

.ad-box .search_form input[type="text"]::placeholder{
  color:#6b7280;
}

.ad-box .search_form input[type="text"]:focus{
  border-color: rgba(34,140,255,.55);
  box-shadow: 0 0 0 4px rgba(34,140,255,.18);
}

.ad-box .search_form button{
  height:44px;
  padding:0 16px;
  border-radius:12px;
  border:0;
  cursor:pointer;
  font-weight:700;
  letter-spacing:.2px;
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  color:#fff;
  box-shadow: 0 10px 22px rgba(37,99,235,.22);
  transition: transform .12s ease, filter .12s ease, box-shadow .12s ease;
}

.ad-box .search_form button:hover{
  filter: brightness(1.04);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(37,99,235,.28);
}

.ad-box .search_form button:active{
  transform: translateY(0);
  filter: brightness(.98);
}

@media (max-width: 520px){
  .ad-box .search_form{ gap:8px; padding:10px; }
  .ad-box .search_form button{ padding:0 12px; }
}

/* Lista lateral */
.sidebar-card {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid #eee;
}

.sidebar-card h3 {
    margin-bottom: 12px;
}

.sidebar-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-list li a {
    color: #0f172a;
    font-size: 15px;
}

.sidebar-list li a:hover {
    color: #34bbd3;
}

/* ================================================
   GRID DE NOTÍCIAS GRANDES
================================================ */
.sports-news-section {
    margin-top: 40px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 18px;
}

.section-title {
    font-size: 22px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 14px;
    color: #6b7280;
}

.section-link {
    font-size: 14px;
    color: #2563eb;
}

.sports-news-grid-large {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.sports-news-card .card-img {
    height: 200px;
}

/* ================================================
   ANÚNCIO RODAPÉ
================================================ */
.sports-ads-bottom {
    margin: 30px 0 40px;
}

.ad-horizontal {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.ad-horizontal-inner {
    padding: 24px;
    text-align: center;
    color: #444;
}

/* ================================================
   FOOTER
================================================ */
.footer {
    background: #0f172a;
    color: #e2e8f0;
    padding: 24px 0;
    font-size: 14px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
}

/* ================================================
   RESPONSIVO GERAL
================================================ */
@media (max-width: 990px) {
    .sports-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .sports-news-grid-large {
        grid-template-columns: 1fr 1fr;
    }

    .sports-secondary-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .sports-news-grid-large {
        grid-template-columns: 1fr;
    }

    .card-title {
        font-size: 20px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* ================================================
   SCROLL VERTICAL VERDE
================================================ */
/* Firefox */
body {
    scrollbar-width: thin;
    scrollbar-color: #16a34a #020617; /* polegar / trilho */
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #020617; /* trilho escuro */
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #16a34a, #34bbd3);
    border-radius: 999px;
    border: 2px solid #020617;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #15803d, #16a34a);
}
/* ================================================
   SIDEBAR — PLACAR DE JOGO TURBINADO
================================================ */

.sidebar-score-card {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    margin-bottom: 16px;
}

/* card ao vivo com borda/Glow verde */
.sidebar-score-card.is-live {
    border-color: #34bbd3;
    box-shadow: 0 0 0 1px rgba(34,197,94,0.25), 0 6px 18px rgba(15,23,42,0.25);
}

/* cabeçalho: título + badge à direita */
.score-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.sidebar-score-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
}

/* badge AO VIVO piscando */
.score-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #b91c1c;
    color: #fee2e2;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.score-live-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #fecaca;
    box-shadow: 0 0 0 0 rgba(248,113,113,0.9);
    animation: pulse-dot 1.2s ease-out infinite;
}

/* badge do próximo jogo */
.score-next-badge {
    padding: 4px 10px;
    border-radius: 999px;
    background: #0f172a;
    color: #e5e7eb;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .12em;
}

/* animação ponto piscando */
@keyframes pulse-dot {
    0%   { box-shadow: 0 0 0 0 rgba(248,113,113,0.9); }
    70%  { box-shadow: 0 0 0 10px rgba(248,113,113,0); }
    100% { box-shadow: 0 0 0 0 rgba(248,113,113,0); }
}

/* bloco do confronto */
.score-match {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
    gap: 12px;
    padding: 12px 10px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

/* versão próximo jogo (sem placar numérico) */
.score-match.next {
    padding-block: 14px;
}

/* time */
.team {
    text-align: center;
    padding: 6px 4px;
    border-radius: 10px;
}

/* MANDANTE: Flamengo — vermelho */
.team--home {
    background: linear-gradient(145deg, #991b1b, #ef4444);
    color: #fee2e2;
    box-shadow: 0 0 0 1px rgba(248,113,113,0.4);
}

/* VISITANTE: Paysandu — azul/esverdeado */
.team--away {
    background: linear-gradient(145deg, #0ea5e9, #105cb9);
    color: #e0f2fe;
    box-shadow: 0 0 0 1px rgba(59,130,246,0.4);
}

.team img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    margin-bottom: 4px;
    filter: drop-shadow(0 0 6px rgba(15,23,42,0.6));
}

.team span {
    display: block;
    font-size: 13px;
    font-weight: 600;
}

/* placar numérico */
.score-result {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.score-number {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
}

/* glowzinho piscando no AO VIVO */
.sidebar-score-card.is-live .score-number {
    animation: scoreBlink 1.4s ease-in-out infinite;
}

@keyframes scoreBlink {
    0%, 100% { text-shadow: 0 0 0 rgba(34,197,94,0); }
    50%      { text-shadow: 0 0 18px rgba(34,197,94,0.9); }
}

.score-x {
    font-size: 14px;
    margin: 2px 0;
    opacity: 0.7;
}

/* "VS" do próximo jogo */
.score-vs {
    font-size: 20px;
    font-weight: 700;
    color: #34bbd3;
    text-shadow: 0 0 10px rgba(34,197,94,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* status + competição */
.score-status {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    font-size: 13px;
    color: #475569;
}

.score-status .score-minute {
    font-weight: 600;
}

/* barra de tempo correndo */
.score-timebar {
    margin-top: 8px;
    width: 100%;
    height: 5px;
    border-radius: 999px;
    background: #e5e7eb;
    overflow: hidden;
}

.score-timebar-fill {
    width: 100%;
    height: 100%;
    transform-origin: left center;
    background: linear-gradient(90deg, #34bbd3, #4ade80);
    animation: timeAdvance 90s linear infinite;
}

/* anima a barra da esquerda pra direita */
@keyframes timeAdvance {
    0%   { transform: scaleX(0.05); }
    100% { transform: scaleX(1); }
}

/* responsivo do placar */
@media (max-width: 820px) {
    .score-match {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .score-result {
        flex-direction: row;
        gap: 6px;
    }
}
/* novos */
/* ================================================
   PÁGINAS INTERNAS – CABEÇALHO E LISTAGEM
================================================ */
.main {
    padding: 32px 0 40px;
}

.page-header {
    margin-bottom: 18px;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 10px;
}

.breadcrumb {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 6px;
}

.breadcrumb a {
    color: #34bbd3;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.page-title {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
}

.page-subtitle {
    font-size: 14px;
    color: #6b7280;
    margin-top: 4px;
}

/* LISTAGEM DE ARTIGOS (artigos.html) */
.list-articles {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.list-item {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 16px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(15,23,42,0.06);
    border: 1px solid #e5e7eb;
}

.list-thumb img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.list-body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.list-category {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #34bbd3;
    font-weight: 700;
}

.list-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
}

.list-title a {
    color: inherit;
}

.list-title a:hover {
    color: #34bbd3;
}

.list-meta {
    font-size: 12px;
    color: #6b7280;
}

.list-excerpt {
    font-size: 14px;
    color: #4b5563;
}

/* Paginação */
.pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 20px;
    justify-content: center;
}

.pagination a,
.pagination span {
    min-width: 32px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 13px;
    text-align: center;
    border: 1px solid #d1d5db;
    background: #ffffff;
    color: #111827;
}

.pagination a:hover {
    border-color: #34bbd3;
    color: #16a34a;
}

.pagination .active {
    background: #34bbd3;
    border-color: #16a34a;
    color: #022c22;
    font-weight: 600;
}

/* responsivo listagem */
@media (max-width: 780px) {
    .list-item {
        grid-template-columns: 1fr;
    }
    .list-thumb img {
        height: 190px;
    }
}

/* ================================================
   PÁGINA DO ARTIGO (artigo.html)
================================================ */
.article-page {
    padding: 32px 0 40px;
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 2.4fr) minmax(0, 1.2fr);
    gap: 26px;
}

@media (max-width: 960px) {
    .article-layout {
        grid-template-columns: 1fr;
    }
}

.article-header {
    margin-bottom: 16px;
}

.article-category {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: #34bbd3;
    font-weight: 700;
}

.article-title {
    font-size: 30px;
    font-weight: 800;
    color: #0f172a;
    margin-top: 4px;
}

.article-subtitle {
    font-size: 15px;
    color: #4b5563;
    margin-top: 4px;
}

.article-meta {
    font-size: 13px;
    color: #6b7280;
    margin-top: 6px;
}

.article-cover {
    width: 100%;
    max-height: 380px;
    object-fit: cover;
    border-radius: 16px;
    margin: 18px 0;
}

.article-body {
    background: #ffffff;
    border-radius: 18px;
    padding: 18px 20px;
    box-shadow: 0 8px 22px rgba(15,23,42,0.08);
    font-size: 15px;
    color: #111827;
    line-height: 1.7;
}

.article-body p + p {
    margin-top: 12px;
}

.article-body h2,
.article-body h3 {
    margin-top: 18px;
    margin-bottom: 6px;
    font-weight: 700;
}

.article-body h2 {
    font-size: 20px;
}

.article-body h3 {
    font-size: 17px;
}

.article-body ul {
    margin: 10px 0 10px 20px;
}

.article-body blockquote {
    border-left: 3px solid #34bbd3;
    padding-left: 12px;
    margin: 12px 0;
    color: #374151;
    font-style: italic;
}

/* Compartilhamento */
.share-section {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.share-label {
    color: #4b5563;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.btn-share {
    border-radius: 999px;
    padding: 7px 13px;
    border: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-share.whats { background: #34bbd3; }
.btn-share.face  { background: #2563eb; }
.btn-share.tw    { background: #020617; }

/* ================================================
   PÁGINA INSTITUCIONAL (pagina.html)
================================================ */
.institutional-page {
    padding: 32px 0 40px;
}

.institutional-hero {
    margin-bottom: 20px;
}

.institutional-hero-title {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
}

.institutional-hero-subtitle {
    font-size: 14px;
    color: #6b7280;
    margin-top: 4px;
}

.institutional-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 2fr);
    gap: 26px;
    align-items: flex-start;
    margin-top: 16px;
}

.institutional-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 18px 20px;
    box-shadow: 0 8px 20px rgba(15,23,42,0.06);
}

.institutional-highlight {
    background: radial-gradient(circle at top, rgba(34,197,94,0.12), #020617);
    color: #e5e7eb;
    border-radius: 16px;
    padding: 18px 20px;
    box-shadow: 0 18px 30px rgba(0,0,0,0.45);
}

.institutional-highlight h2 {
    font-size: 20px;
    margin-bottom: 8px;
}

.institutional-highlight p {
    font-size: 14px;
    color: #d1d5db;
}

.institutional-card h2 {
    font-size: 18px;
    margin-bottom: 8px;
}

.institutional-card p + p {
    margin-top: 10px;
}

@media (max-width: 900px) {
    .institutional-layout {
        grid-template-columns: 1fr;
    }
}

/* ================================================
   PÁGINA 404 (404.html)
================================================ */
.error-page {
    min-height: calc(100vh - 88px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 0;
}

.error-inner {
    text-align: center;
    max-width: 420px;
    padding: 24px 20px;
    background: #020617;
    border-radius: 18px;
    color: #e5e7eb;
    box-shadow: 0 26px 60px rgba(0,0,0,0.7);
    border: 1px solid rgba(75,85,99,0.7);
}

.error-code {
    font-size: 62px;
    font-weight: 800;
    color: #34bbd3;
    text-shadow: 0 0 18px rgba(34,197,94,0.5);
}

.error-title {
    font-size: 20px;
    margin-top: 4px;
}

.error-text {
    font-size: 14px;
    color: #9ca3af;
    margin-top: 8px;
    margin-bottom: 16px;
}

.error-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-go-home,
.btn-go-back {
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    border: none;
}

.btn-go-home {
    background: linear-gradient(135deg, #34bbd3, #4ade80);
    color: #022c22;
    font-weight: 600;
}

.btn-go-back {
    background: transparent;
    border: 1px solid #4b5563;
    color: #e5e7eb;
}

.btn-go-back:hover {
    border-color: #34bbd3;
}

/* ================================================
   SCROLLBAR VERDE
================================================ */
body {
    scrollbar-width: thin;
    scrollbar-color: #34bbd3 #020617;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #020617;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #34bbd3, #4ade80);
    border-radius: 999px;
    border: 2px solid #020617;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #16a34a, #34bbd3);
}
/* =========================
   RADIO PLAYER (RESPONSIVO)
   CSS COMPLETO
========================= */
:root{
  --rp-bg: #0b1220;
  --rp-bg2:#111b31;
  --rp-border: rgba(255,255,255,.12);
  --rp-text: #e5e7eb;
  --rp-sub: rgba(229,231,235,.72);
  --rp-accent: #38bdf8;
}

.radio-wrap{
  position:fixed;
  left:12px; right:12px; bottom:12px;
  z-index:9999;
}

.radio-player{
  display:flex;
  align-items:center;
  gap:16px;

  padding: 14px 18px;
  border-radius: 18px;

  background: linear-gradient(90deg, var(--rp-bg), var(--rp-bg2));
  border: 1px solid var(--rp-border);
  box-shadow: 0 18px 50px rgba(0,0,0,.55);
  backdrop-filter: blur(10px);
}

/* ===== PLAY ===== */
.rp-btn{
  width:46px;
  height:46px;
  border-radius:999px;
  border:none;
  background: var(--rp-accent);
  color:#fff;
  cursor:pointer;
  font-size:16px;
  font-weight:900;
  display:grid;
  place-items:center;
  flex:0 0 auto;
  box-shadow: 0 8px 18px rgba(0,0,0,.35);
}
.rp-btn:hover{ filter: brightness(1.08); }

/* ===== ESQUERDA ===== */
.rp-left{
  min-width: 240px;
  max-width: 320px;
  flex:0 0 auto;
  overflow:hidden;
}

.rp-title{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--rp-text);
  font-weight:900;
  font-size:14px;
  line-height:1.1;
}

.rp-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#ef4444;
  box-shadow: 0 0 0 0 rgba(239,68,68,.65);
  animation: rpPulse 1.2s ease-out infinite;
  flex:0 0 auto;
}
@keyframes rpPulse{
  0%{ box-shadow: 0 0 0 0 rgba(239,68,68,.65); }
  70%{ box-shadow: 0 0 0 12px rgba(239,68,68,0); }
  100%{ box-shadow: 0 0 0 0 rgba(239,68,68,0); }
}

.rp-marquee{
  position:relative;
  overflow:hidden;
  white-space:nowrap;
  max-width: 100%;
}
.rp-marquee span{
  display:inline-block;
  padding-left: 100%;
  animation: rpMarquee 12s linear infinite;
}
@keyframes rpMarquee{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-100%); }
}

.rp-sub{
  margin-top:4px;
  color:var(--rp-sub);
  font-size:12px;
  font-weight:700;
}

/* ===== BARRA ===== */
.rp-mid{
  flex: 1 1 auto;
  min-width: 140px;
}

.rp-bar{
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.15);
  overflow: hidden;
}

.rp-bar-fill{
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,.25), var(--rp-accent));
  transform: translateX(-60%);
  animation: rpBar 1.6s linear infinite;
  animation-play-state: paused;
}
@keyframes rpBar{
  0%{ transform: translateX(-60%); }
  100%{ transform: translateX(160%); }
}

/* ===== DIREITA ===== */
.rp-right{
  display:flex;
  align-items:center;
  gap:14px;
  flex: 0 0 auto;
  white-space: nowrap;
}

.rp-vol{
  width: 140px;
  accent-color: var(--rp-accent);
}

.rp-theme-btn{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--rp-border);
  background: rgba(255,255,255,.06);
  color: var(--rp-text);
  cursor:pointer;
  display:grid;
  place-items:center;
  font-size:18px;
  font-weight:900;
}
.rp-theme-btn:hover{ filter: brightness(1.06); }

.rp-station-select{
  width: 220px;
  height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(56,189,248,.45);
  background: rgba(255,255,255,.10);
  color: var(--rp-text);
  font-weight: 900;
  font-size: 13px;
  outline:none;
  cursor:pointer;

  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
}

.rp-station-select option{
  background:#ffffff;
  color:#111;
  font-weight:700;
}

/* =========================
   RESPONSIVO REAL (mobile)
   - Mantém desktop 1 linha
   - No mobile quebra em 2 linhas
========================= */
@media (max-width: 780px){
  .radio-player{
    flex-wrap: wrap;            /* permite quebrar linha */
    gap: 12px;
    padding: 12px 12px;
  }

  /* primeira linha: play + esquerda */
  .rp-left{
    min-width: 0;
    max-width: none;
    flex: 1 1 240px;
  }

  /* barra fica na linha de baixo com largura total */
  .rp-mid{
    order: 3;
    flex: 1 1 100%;
    min-width: 100%;
  }

  /* direita vai para outra linha e vira "grid" */
  .rp-right{
    order: 4;
    flex: 1 1 100%;
    white-space: normal;
    justify-content: flex-end;
    gap: 10px;
  }

  .rp-vol{
    width: 120px;
  }

  /* combo não some: ocupa o resto da linha */
  .rp-station-select{
    flex: 1 1 auto;
    width: 100%;
    min-width: 160px;
  }
}

/* mobile bem pequeno: empilha volume/tema e combo */
@media (max-width: 480px){
  .rp-right{
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .rp-vol{ width: 100%; }
  .rp-theme-btn{ flex: 0 0 auto; }
  .rp-station-select{ width: 100%; }
}
