:root{
  --bg:#000000;
  --text:#ffffff;
  --muted:rgba(255,255,255,.78);
  --muted2:rgba(255,255,255,.60);

  --accent:#FDFD05; /* exact yellow */
  --line:rgba(253,253,5,.35);

  --panel:rgba(255,255,255,.05);
  --panel2:rgba(0,0,0,.55);

  --radius:18px;
  --shadow:0 10px 30px rgba(0,0,0,.5);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:"Lato",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
}

a{color:inherit; text-decoration:none}
a:hover{text-decoration:none}
img{max-width:100%; display:block}
.container{width:min(1100px,92vw); margin:0 auto}

.accent{color:var(--accent)}
.muted{color:var(--muted)}
.note{color:var(--muted2); font-size:13px}
.mt{margin-top:14px}

.h1{font-size:44px; margin:0 0 10px; font-weight:800}
.h2{font-size:26px; margin:0 0 14px; font-weight:800}
.h3{font-size:18px; margin:0 0 10px; font-weight:800}
.sub{font-size:16px; margin:0; color:var(--muted)}

.divider{
  margin:26px 0;
  border:0;
  height:1px;
  background:linear-gradient(90deg, transparent, var(--line), transparent);
}
.divider.mini{margin:18px 0}

/* =========================
   TOP INFO BAR (ALL YELLOW)
========================= */
.top-info-bar{
  background:linear-gradient(180deg, rgba(20,20,20,.95), rgba(10,10,10,.95));
  border-bottom:1px solid rgba(255,255,255,.06);
  font-size:13px;
}
.top-info-inner{
  display:flex;
  gap:26px;
  align-items:center;
  justify-content:space-between;
  padding:8px 0;
  flex-wrap:wrap;
}
.info-item,
.info-item a{
  color:var(--accent);
  white-space:nowrap;
  font-weight:700;
}
.info-item a:hover{ text-decoration:underline; }

@media (max-width: 900px){
  .top-info-inner{
    justify-content:center;
    gap:14px;
    text-align:center;
  }
}

/* =========================
   SITE HEADER & NAVIGATION
========================= */
.site-header{
  position:sticky; top:0; z-index:50;
  background:linear-gradient(180deg, rgba(0,0,0,.92), rgba(0,0,0,.75));
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
}

/* Brand (logo + name) */
.brand{
  display:flex;
  align-items:center;
  gap:10px;
}
.brand-logo{
  width:42px;
  height:42px;
  object-fit:contain;
  border-radius:6px;
}
.brand-name{
  font-weight:800;
  letter-spacing:.18em;
  font-size:14px;
}

/* Nav */
.nav{display:flex; gap:22px; align-items:center}
.nav-link{
  font-size:14px;
  color:rgba(255,255,255,.86);
  padding:8px 6px;
  border-radius:999px;
}
.nav-link:hover{color:#fff}
.nav-link.pill{
  background:var(--accent);
  color:#000;
  font-weight:800;
  padding:10px 14px;
}
.nav-link.active:not(.pill){color:var(--accent)}
.nav-link.pill.active{filter:brightness(1.03)}

.burger{
  display:none; background:transparent; border:0; cursor:pointer;
  width:44px; height:44px; border-radius:10px;
}
.burger span{
  display:block; height:2px; background:#fff; margin:7px 10px;
  border-radius:2px;
}
.mobile-nav{
  display:none;
  border-top:1px solid rgba(255,255,255,.06);
  padding:10px 0 14px;
}
.mobile-nav a{
  display:block; padding:10px 0; color:rgba(255,255,255,.88);
}
.mobile-nav.open{display:block}

/* =========================
   MAIN
========================= */
.site-main{padding:26px 0 60px}
.page{min-height:calc(100vh - 220px)}

/* HERO IMAGE BLOCK (Sobre/Contactos) */
.heroRow{
  position:relative;
  margin-top:16px;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
}
.heroImg{
  width:100%;
  height:320px;
  object-fit:cover;
  opacity:.55;
}
.heroOverlay{
  position:absolute; inset:0;
  padding:18px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  gap:14px;
  background:linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.80));
}

/* =========================
   CARDS / GRID / BUTTONS
========================= */
.card{
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.card.pad{padding:18px}
.card.yellow{
  border:1px solid var(--line);
  box-shadow:0 16px 40px rgba(0,0,0,.55);
}
.mini-card{
  background:var(--panel2);
  border:1px solid var(--line);
  border-radius:14px;
  padding:14px;
}

.grid{display:grid; gap:16px}
.grid-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.grid-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.grid-4{grid-template-columns:repeat(4,minmax(0,1fr))}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  background:var(--accent);
  color:#000;
  font-weight:800;
  border:0;
  border-radius:999px;
  padding:12px 16px;
  cursor:pointer;
}
.btn:hover{filter:brightness(1.03)}
.btn.secondary{
  background:transparent;
  color:#fff;
  border:1px solid var(--line);
}
.btn.small{padding:10px 14px; font-size:13px}

/* Tabs */
.tabs{display:flex; gap:12px; flex-wrap:wrap; padding:10px 0}
.tab{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  color:rgba(255,255,255,.86);
  padding:10px 14px;
  border-radius:999px;
  cursor:pointer;
  font-weight:800;
  font-size:13px;
}
.tab.active{
  background:rgba(253,253,5,.18);
  border:1px solid var(--line);
  color:var(--accent);
}

/* Forms */
.form{display:grid; gap:12px}
.input{
  width:100%;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background:var(--panel2);
  color:#fff;
  outline:none;
}
textarea.input{min-height:120px; resize:vertical}
.smallInput{padding:10px 12px; border-radius:999px}

/* Toolbar */
.toolbar{
  display:flex;
  gap:12px;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
}
.search{min-width:220px}

/* Tile (news cards) */
.tile{overflow:hidden; position:relative}
.tileImg{
  width:100%;
  height:160px;
  object-fit:cover;
  opacity:.65;
}
.tileBody{padding:14px}
.tag{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(253,253,5,.18);
  border:1px solid var(--line);
  color:var(--accent);
  font-weight:800;
  font-size:12px;
}
.meta{color:var(--muted2); font-size:13px; margin-top:6px}

/* =========================
   MODAL
========================= */
.modal{
  position:fixed; inset:0;
  background:rgba(0,0,0,.68);
  display:none;
  place-items:center;
  padding:16px;
  z-index:1000;
}
.modal[aria-hidden="false"]{display:grid}
.modalCard{
  width:min(720px,92vw);
  border-radius:18px;
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(10,10,10,.98), rgba(5,5,5,.98));
  box-shadow:0 30px 70px rgba(0,0,0,.7);
  padding:18px;
  position:relative;
}
.modalClose{
  position:absolute; top:10px; right:12px;
  width:40px; height:40px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  color:#fff;
  cursor:pointer;
  font-size:22px;
}
.modalBody{color:rgba(255,255,255,.85); line-height:1.6}

/* =========================
   HOME: ZENO STRIP
========================= */
.zeno-strip{
  background:#fff;
  color:#000;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:18px 22px;
  border-radius:12px;
  margin:18px 0;
}
.zeno-logo{
  font-weight:800;
  letter-spacing:6px;
  font-size:28px;
}
.zeno-right{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.store-badge{
  display:flex;
  flex-direction:column;
  justify-content:center;
  background:#000;
  color:#fff;
  padding:10px 14px;
  border-radius:10px;
  min-width:170px;
  border:1px solid rgba(0,0,0,.25);
}
.badge-small{font-size:11px; opacity:.85}
.badge-big{font-size:18px; font-weight:800; line-height:1.1}

/* =========================
   HOME: RADIO HERO + BAR
========================= */
.radio-hero{
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,0));
  border:1px solid var(--line);
  border-radius:16px;
  overflow:hidden;
}
.radio-hero-top{
  display:flex;
  align-items:center;
  gap:18px;
  padding:22px;
  background:
    linear-gradient(90deg, rgba(0,0,0,.6), rgba(0,0,0,.2)),
    url("./assets/img/hero.jpg");
  background-size:cover;
  background-position:center;
}
.radio-logo-box{
  width:78px;
  height:78px;
  background:#fff;
  border-radius:10px;
  display:grid;
  place-items:center;
  overflow:hidden;
}
.radio-logo{width:100%; height:100%; object-fit:cover}
.radio-hero-title h2{margin:0; font-size:44px; line-height:1}
.radio-hero-title p{margin:8px 0 0; color:var(--muted)}

.radio-player-bar{
  display:grid;
  grid-template-columns:92px 1fr auto;
  align-items:center;
  background:#e9e9e9;
  color:#111;
}
.radio-play{
  height:78px;
  width:92px;
  border:none;
  background:#d7d7d7;
  cursor:pointer;
  font-size:26px;
  font-weight:800;
}
.radio-track{padding:14px 16px}
.track-title{font-weight:800; font-size:20px}
.track-sub{margin-top:4px; font-size:12px; opacity:.7}
.radio-actions{
  display:flex;
  gap:10px;
  padding:0 16px;
}
.icon-btn{
  border:none;
  background:transparent;
  cursor:pointer;
  font-size:18px;
  color:#111;
  text-decoration:none;
}

/* =========================
   HOME: HITS DA SEMANA
========================= */
.hits-section{margin-top:26px}
.hits-title{font-size:28px; font-weight:800; margin:0 0 14px}
.hits-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:18px;
}
.hit-card{
  border:1px solid var(--line);
  border-radius:10px;
  overflow:hidden;
  background:rgba(0,0,0,.35);
  min-height:320px;
  display:flex;
  flex-direction:column;
}
.hit-img{height:180px; background:rgba(255,255,255,.04)}
.hit-img img{width:100%; height:100%; object-fit:cover}
.hit-meta{
  padding:14px 14px 18px;
  text-align:center;
  display:grid;
  gap:6px;
}
.hit-artist{font-weight:800}
.hit-song{color:var(--accent); font-weight:800; font-size:13px}
.hit-play{
  margin:10px auto 0;
  width:64px;
  height:44px;
  border-radius:12px;
  border:1px solid var(--line);
  background:transparent;
  cursor:pointer;
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  place-items:center;
  column-gap:8px;
}
.hit-play .tri{
  width:0; height:0;
  border-left:14px solid var(--accent);
  border-top:9px solid transparent;
  border-bottom:9px solid transparent;
}
.hit-play .eq{
  color:var(--accent);
  font-weight:800;
  font-size:14px;
  opacity:.7;
}
.hit-card.is-playing .hit-play{background:rgba(253,253,5,.12)}

/* YouTube player inside modal */
.yt-wrap{
  position:relative;
  width:100%;
  padding-top:56.25%;
  border-radius:14px;
  overflow:hidden;
  border:1px solid var(--line);
  background:#000;
}
.yt-wrap iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

/* =========================
   HOME: Últimas Notícias image
========================= */
.center-image{
  display:block;
  margin:20px auto;
  max-width:100%;
  height:auto;
  border-radius:14px;
}

/* =========================
   FOOTER + FOOTER BRAND
========================= */
.site-footer{
  margin-top:40px;
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border-top:1px solid rgba(255,255,255,.08);
}
.footer-top{
  padding:18px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.footer-brand{
  display:flex;
  align-items:center;
  gap:10px;
}
.footer-logo{
  width:38px;
  height:38px;
  object-fit:contain;
}
.footer-name{
  font-weight:800;
  letter-spacing:.18em;
  font-size:13px;
  color:var(--accent);
}

.footer-links{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  color:rgba(255,255,255,.82);
  font-size:13px;
}
.footer-links a:hover{color:var(--accent)}
.footer-social{display:flex; gap:10px}
.footer-social a{
  width:38px;
  height:38px;
  border-radius:999px;
  border:1px solid var(--line);
  display:grid;
  place-items:center;
  font-weight:800;
  color:var(--accent);
}
.footer-social a:hover{background:rgba(253,253,5,.12)}
.footer-bottom{
  padding:12px 0;
  border-top:1px solid rgba(255,255,255,.06);
  color:rgba(255,255,255,.7);
  font-size:12px;
}
.footer-bottom a{color:var(--accent); text-decoration:underline}

/* =========================
   LEGAL PAGES
========================= */
.legal-content{
  line-height:1.7;
  color:rgba(255,255,255,.85);
}
.legal-content h2{
  margin-top:24px;
  font-size:18px;
}
.legal-content ul{padding-left:18px}
.legal-content li{margin-bottom:8px}

/* =========================
   COOKIE BANNER
========================= */
.cookie-banner{
  position:fixed;
  left:0; right:0; bottom:0;
  z-index:2000;
  background:rgba(0,0,0,.92);
  border-top:1px solid var(--line);
  backdrop-filter: blur(10px);
}
.cookie-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 0;
  flex-wrap:wrap;
}
.cookie-text{
  color:rgba(255,255,255,.85);
  display:flex;
  flex-direction:column;
  gap:6px;
  max-width:820px;
}
.cookie-text strong{color:var(--accent)}
.cookie-text a{color:var(--accent); text-decoration:underline}
.cookie-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* =========================
   NEWSLETTER POPUP (SLIDE-IN)
========================= */
.newsletter-popup{
  position:fixed;
  right:16px;
  bottom:16px;
  z-index:2100;
  width:min(360px, calc(100vw - 32px));
  transform: translateX(120%);
  opacity:0;
  pointer-events:none;
  transition: transform .45s ease, opacity .45s ease;
}
.newsletter-popup.show{
  transform: translateX(0);
  opacity:1;
  pointer-events:auto;
}
.newsletter-card{
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow:0 22px 60px rgba(0,0,0,.65);
  padding:16px;
  backdrop-filter: blur(10px);
  position:relative;
}
.newsletter-close{
  position:absolute;
  top:10px;
  right:10px;
  width:38px;
  height:38px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:#fff;
  cursor:pointer;
  font-size:22px;
}
.newsletter-consent{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-size:13px;
  color:rgba(255,255,255,.85);
}
.newsletter-consent input{margin-top:3px}
.newsletter-consent a{
  color:var(--accent);
  text-decoration:underline;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 920px){
  .grid-4{grid-template-columns:repeat(2,minmax(0,1fr))}
  .grid-3{grid-template-columns:repeat(2,minmax(0,1fr))}
  .h1{font-size:38px}
  .heroImg{height:280px}
  .hits-grid{grid-template-columns:repeat(2, minmax(0, 1fr))}
}
@media (max-width: 680px){
  .nav{display:none}
  .burger{display:block}
  .grid-2,.grid-3{grid-template-columns:1fr}
  .heroImg{height:260px}

  .radio-hero-top{flex-direction:column; align-items:flex-start}
  .radio-hero-title h2{font-size:34px}
  .radio-player-bar{grid-template-columns:78px 1fr; grid-template-rows:auto auto}
  .radio-actions{grid-column:1 / -1; padding:10px 16px 16px}

  .cookie-inner{padding:12px 0}
  .footer-top{justify-content:center; text-align:center}
  .footer-brand{justify-content:center}
}
@media (max-width: 520px){
  .hits-grid{grid-template-columns:1fr}
  .newsletter-popup{right:10px; bottom:10px}
}
@media (max-width: 480px){
  .h1{font-size:32px}
  .heroImg{height:220px}
}

/* YouTube responsive wrapper inside modal */
.yt-wrap{
  position:relative;
  padding-top:56.25%;
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(253,253,5,.35);
}
.yt-wrap iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}
/* =========================
   CONTACT PAGE 
========================= */

.contact-panel-wrap{
  border-top: 1px solid rgba(253,253,5,.18);
  padding-top: 16px;
}

.contact-grid{
  align-items: start;
}

/* Right side info card in Publicidade  */
.contact-side-card{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 12px;
  padding: 14px;
}
.contact-side-row{
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.85);
}
.contact-side-row:last-child{
  border-bottom: 0;
}

/* Publicidade list */
.contact-list{
  display: grid;
  gap: 10px;
  color: rgba(255,255,255,.88);
  font-weight: 700;
}

/* Vagas boxes  */
.vaga-box{
  border: 1px solid rgba(253,253,5,.35);
  border-radius: 12px;
  padding: 16px;
  background: rgba(0,0,0,.35);
}
.vaga-title{
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--accent);
}

/* Segue a FM Afro section (always visible) */
.contact-follow{
  padding-bottom: 10px;
}
.follow-social{
  display: grid;
  gap: 10px;
  margin-top: 10px;
}
.follow-social a{
  display: inline-block;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(253,253,5,.25);
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.9);
}
.follow-social a:hover{
  color: var(--accent);
  border-color: rgba(253,253,5,.45);
}


.tabs{
  gap: 16px;
}
.tab{
  padding: 12px 18px;
  border-radius: 999px;
}
/* =========================
   CONTACT: FOLLOW SECTION
========================= */
.follow-section{
  margin-top: 18px;
}

.follow-grid{
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.follow-card{
  display: block;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(0,0,0,.45);
}

.follow-card:hover{
  background: rgba(253,253,5,.08);
  transform: translateY(-2px);
  transition: 180ms ease;
}

.follow-title{
  font-weight: 800;
  font-size: 16px;
  color: #fff;
}

.follow-handle{
  margin-top: 6px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: .02em;
}

@media (max-width: 900px){
  .follow-grid{ grid-template-columns: 1fr; }
}

/* ===== NOTICIAS: Scroll reveal animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger effect (optional – looks great) */
.reveal[data-delay="1"] { transition-delay: .06s; }
.reveal[data-delay="2"] { transition-delay: .12s; }
.reveal[data-delay="3"] { transition-delay: .18s; }
.reveal[data-delay="4"] { transition-delay: .24s; }
.reveal[data-delay="5"] { transition-delay: .30s; }

/* ===== NOTICIAS: Better hover ===== */
.card.tile,
.card.pad {
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.card.tile:hover,
.card.pad:hover {
  transform: translateY(-6px);
  border-color: rgba(253,253,5,.7);
  box-shadow: 0 20px 60px rgba(0,0,0,.65);
}

.tileImg {
  transition: transform .35s ease, opacity .35s ease;
}

.card.tile:hover .tileImg {
  transform: scale(1.03);
  opacity: .78;
}

/* ===== NOTICIAS: Tabs feel interactive ===== */
.tab {
  transition: transform .12s ease, background .2s ease, border-color .2s ease;
}
.tab:hover {
  transform: translateY(-2px);
}
.tab.active {
  box-shadow: 0 8px 20px rgba(0,0,0,.35);
}
/* ===== Skeleton loading ===== */
.skeleton {
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.05);
  overflow: hidden;
  position: relative;
  min-height: 220px;
}
.skeleton::after {
  content:"";
  position:absolute; inset:0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.10), transparent);
  animation: shimmer 1.1s infinite;
}
@keyframes shimmer {
  100% { transform: translateX(100%); }
}

/* ===== Featured subtle glow ===== */
#featured-news .card.tile {
  position: relative;
}
#featured-news .card.tile::before {
  content:"";
  position:absolute; inset:-2px;
  border-radius: var(--radius);
  background: radial-gradient(circle at 20% 10%, rgba(253,253,5,.22), transparent 55%);
  opacity: .75;
  pointer-events:none;
  filter: blur(8px);
  animation: featuredGlow 4s ease-in-out infinite;
}
@keyframes featuredGlow {
  0%,100% { opacity: .55; }
  50% { opacity: .9; }
}

/* =========================
   A CIDADE NÃO DORME — Stacked Cards
========================= */

:root{
  --fm-yellow: #fdfd05;
  --fm-black: #000;
  --fm-charcoal: #121212;
  --fm-charcoal-soft: #1a1a1a;
  --fm-white: #ffffff;
}

/* Section */
.citySleeps{
  margin-top: 40px;
}

.cityTitle{
  font-style: italic;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fm-white);
  border-bottom: 1px solid var(--fm-yellow);
  padding-bottom: 10px;
}

/* Container (no slider behavior anymore) */
.citySlider{
  display: grid;
  gap: 26px;
  margin-top: 26px;
}

/* Individual card */
.citySlide{
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--fm-charcoal);
  border-radius: 18px;
  border: 1px solid rgba(253,253,5,0.25);
  overflow: hidden;
}

/* Left content */
.cityLeft{
  padding: 28px;
  background: var(--fm-charcoal-soft);
  border-right: 1px solid rgba(255,255,255,0.08);
}

/* Title */
.cityKicker{
  margin: 0;
  color: var(--fm-yellow);
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
  font-size: clamp(18px, 2.1vw, 22px);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--fm-yellow);
}

/* Text */
.cityText{
  margin-top: 16px;
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
}

/* Schedule */
.cityHorario{
  margin-top: 18px;
  color: var(--fm-white);
  font-weight: 700;
}

/* Right image */
.cityRight{
  background: var(--fm-black);
  display: grid;
  place-items: center;
  padding: 18px;
}

.cityPoster{
  width: 100%;
  max-width: 520px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 50px rgba(0,0,0,0.7);
}

/* Remove slider arrow */
.cityNext{
  display: none;
}

/* =========================
   Responsive
========================= */
@media (max-width: 900px){
  .citySlide{
    grid-template-columns: 1fr;
  }

  .cityLeft{
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .cityPoster{
    max-width: 100%;
  }
}

/* =========================
   TEAM CAROUSEL (FM Afro)
========================= */
.teamCarousel{
  position: relative;
  margin-top: 18px;
}

.teamViewport{
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(253,253,5,0.22);
  background: rgba(255,255,255,0.03);
}

.teamTrack{
  display: flex;
  gap: 14px;
  padding: 14px;
  scroll-behavior: smooth;
  overflow-x: auto; /* enables swipe */
  scrollbar-width: none; /* Firefox */
}
.teamTrack::-webkit-scrollbar{ display: none; } /* Chrome/Safari */

.teamCard{
  flex: 0 0 calc(25% - 11px); /* 4 cards visible desktop */
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #0b0b0b;
  border: 1px solid rgba(255,255,255,0.08);
  min-height: 420px;
  transform: translateY(0);
  transition: transform .18s ease, border-color .18s ease;
}

.teamCard:hover{
  transform: translateY(-2px);
  border-color: rgba(253,253,5,0.35);
}

.teamImg{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.03);
}

.teamOverlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.18) 55%, rgba(0,0,0,0.0));
  pointer-events: none;
}

.teamMeta{
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  color: #fff;
  text-shadow: 0 8px 24px rgba(0,0,0,0.55);
}

.teamName{
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 18px;
}

.teamRole{
  margin-top: 8px;
  opacity: 0.92;
  font-size: 16px;
}

.teamLine{
  margin-top: 10px;
  width: 86px;
  height: 3px;
  background: #fdfd05; /* yellow */
  border-radius: 99px;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.2);
}

/* Nav arrows */
.teamNav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(253,253,5,0.35);
  background: rgba(0,0,0,0.65);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 3;
  transition: transform .15s ease, background .15s ease;
}

.teamNav:hover{
  transform: translateY(-50%) scale(1.03);
  background: rgba(20,20,20,0.78);
}

.teamNav.prev{ left: -10px; }
.teamNav.next{ right: -10px; }

@media (max-width: 1100px){
  .teamCard{ flex-basis: calc(33.333% - 10px); } /* 3 visible */
}
@media (max-width: 850px){
  .teamCard{ flex-basis: calc(50% - 8px); min-height: 380px; } /* 2 visible */
  .teamNav.prev{ left: 6px; }
  .teamNav.next{ right: 6px; }
}
@media (max-width: 520px){
  .teamCard{ flex-basis: 86%; min-height: 360px; } /* 1 big card */
}

/* Dots */
.teamDots{
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
}

.teamDot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(253,253,5,0.35);
  background: rgba(255,255,255,0.10);
  cursor: pointer;
  transition: transform .15s ease, background .15s ease;
}

.teamDot.is-active{
  background: #fdfd05;
  transform: scale(1.1);
}


/* =========================
