/* ═══════════════════════════════════════════════════
   TV BRASIL HITS – PROFESSIONAL STYLESHEET v2
   Design: Magazine-grade, dark/vibrant, editorial
   ═══════════════════════════════════════════════════ */

:root {
  --green:        #1db954;
  --green-dark:   #0f7a38;
  --green-deeper: #075c28;
  --gold:         #f5c518;
  --gold-warm:    #ffad0d;
  --dark:         #080e08;
  --dark2:        #0d1a0d;
  --dark3:        #111f11;
  --card-bg:      #141f14;
  --surface:      #1a2a1a;
  --white:        #ffffff;
  --off-white:    #f0f4f0;
  --gray:         #8a9a8a;
  --gray-light:   #c8d4c8;
  --border:       rgba(255,255,255,0.08);
  --radius:       16px;
  --radius-sm:    8px;
  --radius-xs:    4px;
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.25);
  --shadow:       0 6px 30px rgba(0,0,0,0.4);
  --shadow-lg:    0 16px 60px rgba(0,0,0,0.55);
  --glow-green:   0 0 30px rgba(29,185,84,0.3);
  --glow-gold:    0 0 30px rgba(245,197,24,0.4);
  --font-display: 'Oswald', sans-serif;
  --font-body:    'Montserrat', sans-serif;
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--dark); color: var(--white); overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Loader ── */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--dark2);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-logo { height: 90px; width: auto; margin: 0 auto 24px; animation: pulse-logo 1.2s ease infinite alternate; }
@keyframes pulse-logo { from { opacity: 0.6; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
.loader-bar { width: 200px; height: 4px; background: var(--border); border-radius: 2px; margin: 0 auto 12px; overflow: hidden; }
.loader-progress { height: 100%; width: 0; background: linear-gradient(90deg, var(--green), var(--gold)); border-radius: 2px; animation: load-progress 1.5s var(--ease) forwards; }
@keyframes load-progress { to { width: 100%; } }
#loader span { color: var(--gray); font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; }

/* ── Header ── */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  transition: all 0.4s var(--ease);
}
.header-top-bar {
  background: var(--green-deeper);
  padding: 7px 0;
  font-size: 0.78rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.htb-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.htb-left { display: flex; gap: 20px; color: rgba(255,255,255,0.75); }
.htb-left span { display: flex; align-items: center; gap: 6px; }
.htb-left i { color: var(--gold); }
.htb-right { display: flex; align-items: center; gap: 20px; }
.live-indicator {
  display: flex; align-items: center; gap: 7px;
  color: var(--white); font-weight: 700; font-size: 0.75rem; letter-spacing: 1.5px;
}
.live-dot {
  width: 8px; height: 8px; background: #ff4444; border-radius: 50%;
  animation: blink-dot 1s infinite;
  box-shadow: 0 0 6px #ff4444;
}
@keyframes blink-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.8)} }
.social-mini { display: flex; gap: 12px; }
.social-mini a { color: rgba(255,255,255,0.6); font-size: 0.85rem; transition: color 0.2s; }
.social-mini a:hover { color: var(--gold); }

.header-main {
  background: rgba(8,14,8,0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.header-container {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.logo-wrap img { height: 48px; width: auto; }
#main-nav ul { display: flex; align-items: center; gap: 4px; }
.nl {
  display: block; padding: 8px 18px;
  color: rgba(255,255,255,0.75); font-weight: 600; font-size: 0.88rem;
  border-radius: 50px; letter-spacing: 0.3px;
  transition: all 0.25s var(--ease);
  position: relative;
}
.nl::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px; background: var(--green); border-radius: 2px;
  transition: width 0.25s var(--ease);
}
.nl:hover, .nl.active { color: var(--white); }
.nl:hover::after, .nl.active::after { width: 20px; }
.nl.contato-btn {
  background: var(--green); color: var(--white) !important;
  padding: 8px 22px; font-weight: 700;
  box-shadow: 0 2px 12px rgba(29,185,84,0.4);
}
.nl.contato-btn::after { display: none; }
.nl.contato-btn:hover { background: #18a349; transform: translateY(-1px); box-shadow: 0 4px 18px rgba(29,185,84,0.5); }

.burger { display: none; color: white; font-size: 1.3rem; padding: 8px; }

/* ── Hero ── */
#hero {
  position: relative; height: 100vh; min-height: 620px;
  display: flex; align-items: center; overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s var(--ease);
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(8,14,8,0.95) 0%,
    rgba(8,14,8,0.75) 50%,
    rgba(8,14,8,0.3) 100%
  );
}
.hero-content {
  position: relative; z-index: 3;
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  padding-top: 140px;
}
.hero-eyebrow { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.live-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: #e53935; color: white;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 2px;
  padding: 5px 14px; border-radius: 50px;
}
.live-pill i { animation: blink-dot 1s infinite; }
.channel-tag {
  color: var(--gold); font-size: 0.8rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; border-left: 2px solid var(--gold); padding-left: 14px;
}
.hero-title {
  font-family: var(--font-display);
  line-height: 0.9; margin-bottom: 20px;
  animation: hero-in 0.8s 0.2s var(--ease) both;
}
.ht-line1 {
  display: block; font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 700; letter-spacing: 4px; color: var(--white);
  text-shadow: 0 4px 30px rgba(0,0,0,0.6);
}
.ht-line2 {
  display: block; font-size: clamp(5rem, 13vw, 12rem);
  font-weight: 700; letter-spacing: 6px;
  color: transparent;
  -webkit-text-stroke: 2px var(--gold);
  text-shadow: 0 0 60px rgba(245,197,24,0.3);
}
@keyframes hero-in { from{opacity:0;transform:translateY(40px)} to{opacity:1;transform:translateY(0)} }
.hero-sub {
  max-width: 520px; color: rgba(255,255,255,0.7);
  font-size: 1rem; line-height: 1.65; margin-bottom: 36px;
  animation: hero-in 0.8s 0.4s var(--ease) both;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; animation: hero-in 0.8s 0.6s var(--ease) both; }
.cta-watch {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green); color: white;
  font-weight: 800; font-size: 0.95rem; padding: 16px 32px;
  border-radius: 50px; transition: all 0.3s var(--ease);
  box-shadow: 0 4px 24px rgba(29,185,84,0.5);
}
.cta-watch i { font-size: 1.1rem; }
.cta-watch:hover { background: #18a349; transform: translateY(-3px); box-shadow: 0 8px 32px rgba(29,185,84,0.6); }
.cta-schedule {
  display: inline-flex; align-items: center; gap: 10px;
  border: 2px solid rgba(255,255,255,0.3); color: white;
  font-weight: 700; font-size: 0.95rem; padding: 16px 32px;
  border-radius: 50px; transition: all 0.3s var(--ease);
  backdrop-filter: blur(10px);
}
.cta-schedule:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

.hero-float-card {
  position: absolute; z-index: 3;
  background: rgba(13,26,13,0.85); backdrop-filter: blur(20px);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 14px 20px; display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow);
}
.hero-float-card.left { left: 5%; bottom: 22%; }
.hero-float-card.right { right: 5%; top: 35%; }
.hfc-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--green); display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1rem;
}
.hfc-icon.gold { background: var(--gold); color: var(--dark); }
.hero-float-card strong { display: block; color: white; font-weight: 800; font-size: 0.88rem; }
.hero-float-card span { color: var(--gray); font-size: 0.75rem; }

.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 3; text-align: center; color: rgba(255,255,255,0.5);
  font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: float-updown 2.5s ease infinite;
}
@keyframes float-updown { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }
.hero-scroll i { font-size: 1rem; color: var(--green); }

.slide-dots { position: absolute; right: 40px; top: 50%; transform: translateY(-50%); z-index: 3; display: flex; flex-direction: column; gap: 10px; }
.sdot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.3); transition: all 0.3s; }
.sdot.active { background: var(--green); height: 24px; border-radius: 4px; box-shadow: var(--glow-green); }

/* ── Section Labels ── */
.section-label {
  display: inline-block;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 3px;
  text-transform: uppercase; color: var(--green);
  margin-bottom: 12px;
}
.section-label.green { color: var(--green); }

.section-header-center { text-align: center; margin-bottom: 48px; }
.section-header-center h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.4rem); letter-spacing: 2px;
  color: var(--white); margin-bottom: 12px; line-height: 1.1;
}
.section-header-center h2 span { color: var(--green); }
.section-header-center p { color: var(--gray); font-size: 1rem; max-width: 500px; margin: 0 auto; }
.section-header-center.dark h2 { color: var(--dark); }
.section-header-center.dark p { color: #555; }
.section-header-center.dark .section-label { color: var(--green-dark); }

/* ── Player ── */
#player-section {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.player-wrap {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 400px 1fr;
  min-height: 520px;
}
.player-left {
  padding: 60px 48px;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; justify-content: center;
}
.player-left h2 {
  font-family: var(--font-display); font-size: 2.6rem; font-weight: 700;
  letter-spacing: 2px; line-height: 1.1; color: white; margin-bottom: 16px;
}
.player-left h2 span { color: var(--green); }
.player-left p { color: var(--gray); font-size: 0.92rem; line-height: 1.7; margin-bottom: 32px; }

.player-meta-row { display: flex; gap: 24px; margin-bottom: 28px; }
.pm-item { display: flex; align-items: center; gap: 10px; }
.pm-item i { color: var(--green); font-size: 1.1rem; }
.pm-item strong { display: block; color: white; font-size: 0.95rem; font-weight: 700; }
.pm-item span { color: var(--gray); font-size: 0.72rem; }
.green-txt { color: var(--green) !important; }

.share-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.share-row span { color: var(--gray); font-size: 0.82rem; }
.share-pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.8rem; font-weight: 700; padding: 7px 16px; border-radius: 50px;
  transition: all 0.25s;
}
.share-pill.wa { background: rgba(37,211,102,0.15); color: #25d366; border: 1px solid rgba(37,211,102,0.3); }
.share-pill.wa:hover { background: #25d366; color: white; }
.share-pill.fb { background: rgba(24,119,242,0.15); color: #1877f2; border: 1px solid rgba(24,119,242,0.3); }
.share-pill.fb:hover { background: #1877f2; color: white; }

.player-right { position: relative; background: #000; }
.tv-bezel {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 24px; background: #0a0a0a;
  position: relative;
}
.tv-screen {
  width: 100%; max-width: 780px;
  border-radius: 12px; overflow: hidden;
  position: relative; padding-bottom: 56.25%;
  box-shadow: 0 0 0 3px #222, 0 0 0 6px #111, var(--shadow-lg);
}
.tv-screen iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: none;
}
.tv-stand { margin-top: 16px; display: flex; flex-direction: column; align-items: center; }
.tv-base { width: 200px; height: 6px; background: #1a1a1a; border-radius: 3px; }

/* ── Sobre ── */
#sobre {
  background: var(--dark3);
  padding: 100px 0;
}
.sobre-grid {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.sobre-images { position: relative; }
.si-main {
  border-radius: var(--radius); overflow: hidden;
  position: relative; height: 420px;
  box-shadow: var(--shadow-lg);
}
.si-main img { width: 100%; height: 100%; object-fit: cover; }
.si-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--green); color: white;
  font-weight: 800; font-size: 0.82rem; padding: 8px 18px;
  border-radius: 50px; display: flex; align-items: center; gap: 8px;
}
.si-secondary {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px;
}
.si-sec-img {
  border-radius: var(--radius-sm); overflow: hidden;
  height: 160px; position: relative; cursor: pointer;
}
.si-sec-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.si-sec-img:hover img { transform: scale(1.06); }
.si-overlay {
  position: absolute; inset: 0;
  background: rgba(29,185,84,0.2);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.8rem; opacity: 0; transition: opacity 0.3s;
}
.si-sec-img:hover .si-overlay { opacity: 1; }

.sobre-text .section-label { color: var(--green); }
.sobre-text h2 {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; letter-spacing: 2px; color: white;
  line-height: 1.1; margin-bottom: 20px;
}
.sobre-text h2 span { color: var(--green); }
.sobre-text p { color: var(--gray); line-height: 1.75; margin-bottom: 14px; }

.sobre-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0 36px; }
.sf-item { display: flex; gap: 12px; align-items: flex-start; }
.sf-icon i { color: var(--green); font-size: 1.1rem; margin-top: 2px; }
.sf-item strong { display: block; color: white; font-size: 0.9rem; font-weight: 700; margin-bottom: 2px; }
.sf-item p { color: var(--gray); font-size: 0.8rem; margin: 0; }

.btn-green {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green); color: white;
  font-weight: 800; font-size: 0.95rem; padding: 16px 36px;
  border-radius: 50px; transition: all 0.3s var(--ease);
  box-shadow: 0 4px 24px rgba(29,185,84,0.4);
}
.btn-green:hover { background: #18a349; transform: translateY(-3px); box-shadow: 0 8px 32px rgba(29,185,84,0.55); }

/* ── Stats ── */
#stats { background: linear-gradient(135deg, var(--green-deeper) 0%, var(--green-dark) 100%); padding: 64px 0; }
.stats-container {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1px;
  background: rgba(255,255,255,0.1); border-radius: var(--radius); overflow: hidden;
}
.stat-card {
  background: rgba(0,0,0,0.2); padding: 40px 24px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  transition: background 0.3s;
}
.stat-card:hover { background: rgba(0,0,0,0.35); }
.sc-icon { font-size: 1.8rem; color: var(--gold); margin-bottom: 4px; }
.sc-num { font-family: var(--font-display); font-size: 3.2rem; font-weight: 700; color: white; line-height: 1; }
.sc-label { color: rgba(255,255,255,0.7); font-size: 0.82rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }

/* ── Programação ── */
#programacao { position: relative; padding: 100px 0; overflow: hidden; }
.prog-bg { position: absolute; inset: 0; }
.prog-bg img { width: 100%; height: 100%; object-fit: cover; }
.pg-overlay { position: absolute; inset: 0; background: rgba(8,14,8,0.93); }
.prog-container { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; padding: 0 32px; }

.day-tabs-wrap { overflow-x: auto; margin-bottom: 24px; }
.day-tabs { display: flex; gap: 6px; width: max-content; min-width: 100%; }
.dt {
  flex: 1; min-width: 80px; padding: 12px 20px;
  border-radius: 50px; font-weight: 700; font-size: 0.85rem;
  color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.06);
  border: 1px solid var(--border); transition: all 0.25s var(--ease);
}
.dt:hover { color: white; background: rgba(255,255,255,0.1); }
.dt.active { background: var(--green); color: white; border-color: var(--green); box-shadow: 0 4px 20px rgba(29,185,84,0.4); }

.schedule-table {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; margin-bottom: 80px;
}
.sch-row {
  display: grid; grid-template-columns: 100px 1fr 160px;
  padding: 18px 28px; border-bottom: 1px solid var(--border);
  align-items: center; transition: background 0.2s;
}
.sch-row:last-child { border-bottom: none; }
.sch-row:hover { background: rgba(29,185,84,0.05); }
.sch-row.on-air { background: rgba(29,185,84,0.08); border-left: 3px solid var(--green); }
.sch-time { font-family: var(--font-display); font-size: 1.1rem; color: var(--gold); font-weight: 600; }
.sch-info .sch-name { font-weight: 700; color: white; font-size: 0.95rem; margin-bottom: 3px; }
.sch-info .sch-genre { color: var(--gray); font-size: 0.78rem; }
.sch-badge-wrap { text-align: right; }
.sch-on-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green); color: white;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 1px;
  padding: 5px 12px; border-radius: 50px;
}
.sch-on-badge i { animation: blink-dot 1s infinite; }

.prog-cards-title { margin-bottom: 40px; }
.prog-cards-title h3 {
  font-family: var(--font-display); font-size: 2rem; font-weight: 700;
  letter-spacing: 2px; color: white;
}
.prog-cards-title h3 span { color: var(--green); }
.prog-cards-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

.prog-card {
  background: var(--card-bg); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border);
  transition: all 0.35s var(--ease); cursor: pointer;
}
.prog-card:hover { transform: translateY(-8px); border-color: var(--green); box-shadow: 0 16px 40px rgba(0,0,0,0.6), var(--glow-green); }
.pc-img { height: 170px; overflow: hidden; }
.pc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.prog-card:hover .pc-img img { transform: scale(1.08); }
.pc-color-bar { height: 3px; }
.pc-info { padding: 18px 16px; }
.pc-time { font-size: 0.75rem; color: var(--gray); display: flex; align-items: center; gap: 6px; margin-bottom: 6px; }
.pc-time i { color: var(--green); }
.pc-info h4 { color: white; font-weight: 700; font-size: 0.98rem; margin-bottom: 6px; line-height: 1.3; }
.pc-info p { color: var(--gray); font-size: 0.8rem; line-height: 1.5; margin-bottom: 10px; }
.pc-tag {
  display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 1px;
  color: var(--green); border: 1px solid rgba(29,185,84,0.3);
  padding: 3px 10px; border-radius: 50px;
}

/* ── Novidades ── */
#novidades { background: var(--off-white); padding: 100px 0; }
.novidades-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

.news-layout { display: grid; grid-template-columns: 1fr 380px; gap: 28px; margin-bottom: 28px; }

.news-featured { background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display: grid; grid-template-columns: 1fr 1fr; }
.nf-img { position: relative; min-height: 360px; overflow: hidden; }
.nf-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.news-featured:hover .nf-img img { transform: scale(1.04); }
.nf-img-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.3), transparent); }
.nf-content { padding: 36px 32px; display: flex; flex-direction: column; justify-content: center; gap: 12px; }
.nf-content h3 { font-size: 1.5rem; font-weight: 800; color: var(--dark); line-height: 1.3; }
.nf-content p { color: #555; font-size: 0.92rem; line-height: 1.7; flex: 1; }
.news-cat {
  display: inline-block; font-size: 0.68rem; font-weight: 800;
  letter-spacing: 2px; padding: 4px 12px; border-radius: 50px;
}
.news-cat.destaque { background: #e8f5e9; color: var(--green-dark); }
.news-cat.evento { background: #fff3e0; color: #e65100; }
.news-cat.carnaval { background: #fce4ec; color: #c2185b; }
.news-cat.entrevista { background: #e3f2fd; color: #1565c0; }
.news-cat.top10 { background: #ffebee; color: #b71c1c; }
.news-cat.novo { background: #e8f5e9; color: var(--green-dark); }
.news-cat.familia { background: #f3e5f5; color: #6a1b9a; }
.news-date { color: var(--gray); font-size: 0.78rem; display: flex; align-items: center; gap: 6px; }

.read-more-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--dark); color: white;
  font-weight: 700; font-size: 0.85rem; padding: 12px 24px;
  border-radius: 50px; align-self: flex-start;
  transition: all 0.25s var(--ease);
}
.read-more-btn:hover { background: var(--green); transform: translateX(4px); }

.news-side-list { display: flex; flex-direction: column; gap: 12px; }
.news-side-item {
  background: white; border-radius: var(--radius-sm);
  overflow: hidden; display: grid; grid-template-columns: 120px 1fr;
  box-shadow: var(--shadow-sm); transition: all 0.25s var(--ease); cursor: pointer;
}
.news-side-item:hover { transform: translateX(4px); box-shadow: var(--shadow); }
.nsi-img { height: 100px; overflow: hidden; }
.nsi-img img { width: 100%; height: 100%; object-fit: cover; }
.nsi-body { padding: 14px 16px; display: flex; flex-direction: column; gap: 7px; justify-content: center; }
.nsi-body h4 { font-size: 0.85rem; font-weight: 700; color: var(--dark); line-height: 1.35; }

.news-bottom-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.news-bottom-card {
  background: white; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
}
.news-bottom-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.nbc-img { height: 200px; overflow: hidden; }
.nbc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.news-bottom-card:hover .nbc-img img { transform: scale(1.06); }
.nbc-body { padding: 20px; display: flex; flex-direction: column; gap: 8px; }
.nbc-body h4 { font-size: 0.98rem; font-weight: 800; color: var(--dark); line-height: 1.3; }
.nbc-body p { color: #666; font-size: 0.84rem; line-height: 1.55; flex: 1; }
.read-more-link { color: var(--green); font-weight: 700; font-size: 0.82rem; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.read-more-link:hover { gap: 10px; }

/* ── CTA Banner ── */
#cta-banner { position: relative; padding: 100px 0; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay { position: absolute; inset: 0; background: rgba(7,92,40,0.88); }
.cta-content { position: relative; z-index: 1; text-align: center; max-width: 700px; margin: 0 auto; padding: 0 32px; }
.cta-content h2 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; letter-spacing: 2px; color: white; margin-bottom: 16px; line-height: 1.2; }
.cta-content h2 span { color: var(--gold); }
.cta-content p { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 32px; }
.cta-big-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--gold); color: var(--dark);
  font-weight: 900; font-size: 1.1rem; padding: 20px 48px;
  border-radius: 50px; transition: all 0.3s var(--ease);
  box-shadow: 0 6px 30px rgba(245,197,24,0.5);
}
.cta-big-btn:hover { background: white; transform: translateY(-4px); box-shadow: 0 12px 40px rgba(245,197,24,0.4); }

/* ── Contato ── */
#contato { background: var(--dark2); }
.contato-layout { display: grid; grid-template-columns: 440px 1fr; min-height: 700px; }
.contato-panel { background: linear-gradient(160deg, var(--green-deeper) 0%, var(--dark3) 100%); }
.cp-inner { padding: 72px 56px; }
.cp-inner .section-label { color: rgba(255,255,255,0.5); }
.cp-inner h2 { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; letter-spacing: 2px; color: white; margin-bottom: 14px; line-height: 1.1; }
.cp-inner h2 span { color: var(--gold); }
.cp-inner > p { color: rgba(255,255,255,0.65); font-size: 0.92rem; line-height: 1.7; margin-bottom: 40px; }
.contact-info-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.cil-item { display: flex; gap: 16px; align-items: flex-start; }
.cil-icon {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem;
}
.cil-text strong { display: block; color: white; font-weight: 700; font-size: 0.88rem; margin-bottom: 4px; }
.cil-text a, .cil-text span { display: block; color: rgba(255,255,255,0.6); font-size: 0.85rem; transition: color 0.2s; }
.cil-text a:hover { color: var(--gold); }
.wa-direct-btn {
  display: flex; align-items: center; gap: 16px;
  background: #25d366; border-radius: var(--radius);
  padding: 18px 24px; transition: all 0.3s var(--ease);
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
}
.wa-direct-btn:hover { background: #1dc758; transform: translateY(-3px); box-shadow: 0 10px 32px rgba(37,211,102,0.5); }
.wa-direct-btn i { font-size: 2rem; color: white; }
.wa-direct-btn strong { display: block; color: white; font-weight: 800; font-size: 1rem; }
.wa-direct-btn span { color: rgba(255,255,255,0.8); font-size: 0.82rem; }

.contato-form-panel { padding: 72px 56px; }
.cfp-inner h3 { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; letter-spacing: 2px; color: white; margin-bottom: 6px; }
.form-subtitle { color: var(--gray); font-size: 0.88rem; margin-bottom: 32px; }
#form-contato { display: flex; flex-direction: column; gap: 20px; }
.form-row.two-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { display: flex; flex-direction: column; gap: 7px; }
.fg label { color: rgba(255,255,255,0.7); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.3px; }
.fg label span { color: var(--green); }
.fg input, .fg select, .fg textarea {
  background: rgba(255,255,255,0.06); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 14px 18px;
  color: white; font-family: inherit; font-size: 0.92rem;
  outline: none; transition: all 0.25s var(--ease);
}
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,0.25); }
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--green); background: rgba(29,185,84,0.06);
  box-shadow: 0 0 0 3px rgba(29,185,84,0.1);
}
.fg select option { background: var(--dark); }
.fg textarea { resize: vertical; min-height: 130px; }
.submit-wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  background: #25d366; color: white;
  font-weight: 800; font-size: 1.05rem; padding: 18px;
  border-radius: var(--radius-sm); transition: all 0.3s var(--ease);
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
}
.submit-wa-btn i { font-size: 1.3rem; }
.submit-wa-btn:hover { background: #1dc758; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }
.form-hint { text-align: center; color: var(--gray); font-size: 0.75rem; display: flex; align-items: center; justify-content: center; gap: 6px; }
.form-hint i { color: var(--green); }

/* ── Footer ── */
#footer { background: #040a04; }
.footer-main { border-bottom: 1px solid var(--border); padding: 72px 0 48px; }
.footer-grid {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 2.5fr 1fr 1.2fr 1.5fr; gap: 48px;
}
.footer-logo { height: 64px; width: auto; margin-bottom: 18px; }
.fg-brand p { color: var(--gray); font-size: 0.88rem; line-height: 1.7; max-width: 280px; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray); font-size: 0.9rem; transition: all 0.25s;
}
.footer-socials a:hover { background: var(--green); color: white; border-color: var(--green); transform: translateY(-3px); }
.footer-socials .fs-wa:hover { background: #25d366; border-color: #25d366; }

.fg-nav h4, .fg-programs h4, .fg-contact h4 {
  color: white; font-family: var(--font-display); font-size: 1.1rem;
  letter-spacing: 1px; margin-bottom: 20px;
}
.fg-nav ul li, .fg-programs ul li { margin-bottom: 10px; }
.fg-nav a, .fg-programs a {
  color: var(--gray); font-size: 0.88rem; display: flex; align-items: center; gap: 8px;
  transition: color 0.2s;
}
.fg-nav a i, .fg-programs a i { color: var(--green); font-size: 0.7rem; }
.fg-nav a:hover, .fg-programs a:hover { color: white; }
.fc-item { display: flex; align-items: flex-start; gap: 10px; color: var(--gray); font-size: 0.86rem; margin-bottom: 12px; }
.fc-item i { color: var(--green); margin-top: 2px; font-size: 0.88rem; }
.fc-item a { color: var(--gray); transition: color 0.2s; }
.fc-item a:hover { color: white; }
.footer-wa-btn {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 12px;
  background: rgba(37,211,102,0.12); border: 1px solid rgba(37,211,102,0.3);
  color: #25d366; font-weight: 700; font-size: 0.85rem;
  padding: 10px 20px; border-radius: 50px; transition: all 0.25s;
}
.footer-wa-btn:hover { background: #25d366; color: white; border-color: #25d366; }
.footer-bottom { padding: 20px 0; }
.fb-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.fb-inner p { color: #444; font-size: 0.82rem; }
.fb-inner a { color: var(--green); transition: color 0.2s; }
.fb-inner a:hover { color: var(--gold); }
.back-top-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--green); color: white; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s; flex-shrink: 0;
}
.back-top-btn:hover { background: var(--gold); transform: translateY(-3px); }

/* ── WhatsApp Float ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 800;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; color: white; font-size: 1.7rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  transition: all 0.3s var(--ease);
}
.wa-float:hover { background: #1dc758; transform: scale(1.1); }
.wa-float-tooltip {
  position: absolute; right: 70px; background: var(--dark);
  color: white; font-size: 0.78rem; font-weight: 600;
  white-space: nowrap; padding: 7px 14px; border-radius: 50px;
  opacity: 0; transform: translateX(10px); pointer-events: none;
  transition: all 0.25s; border: 1px solid var(--border);
}
.wa-float:hover .wa-float-tooltip { opacity: 1; transform: translateX(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .prog-cards-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .fg-brand { grid-column: 1/-1; }
}
@media (max-width: 1024px) {
  .player-wrap { grid-template-columns: 1fr; }
  .player-left { border-right: none; border-bottom: 1px solid var(--border); }
  .sobre-grid { grid-template-columns: 1fr; gap: 48px; }
  .contato-layout { grid-template-columns: 1fr; }
  .news-layout { grid-template-columns: 1fr; }
  .news-featured { grid-template-columns: 1fr; }
  .nf-img { min-height: 260px; }
  .news-side-list { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
  .prog-cards-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .burger { display: flex; }
  #main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(8,14,8,0.98); padding: 16px 0; border-top: 1px solid var(--border); }
  #main-nav.open { display: block; }
  #main-nav ul { flex-direction: column; padding: 0 16px; }
  .nl { border-radius: 8px; padding: 14px 16px; }
  .nl::after { display: none; }
  .header-top-bar { display: none; }
  .hero-float-card { display: none; }
  .slide-dots { right: 16px; }
  .stats-container { grid-template-columns: 1fr 1fr; }
  .news-side-list { grid-template-columns: 1fr; }
  .news-bottom-row { grid-template-columns: 1fr; }
  .prog-cards-grid { grid-template-columns: 1fr 1fr; }
  .contato-layout { grid-template-columns: 1fr; }
  .cp-inner, .contato-form-panel { padding: 48px 24px; }
  .form-row.two-cols { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .fb-inner { flex-direction: column; gap: 16px; text-align: center; }
  .sch-row { grid-template-columns: 80px 1fr; }
  .sch-badge-wrap { display: none; }
  .sobre-grid { gap: 32px; }
}
@media (max-width: 480px) {
  .prog-cards-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .cta-watch, .cta-schedule { justify-content: center; }
  .player-meta-row { flex-direction: column; gap: 12px; }
}
