:root {
  /* Estilo "rádio popular vibrante": cores mais vivas e contraste alto */
  --blue: #1a5cff;
  --red: #ff2d2d;
  --yellow: #ffd000;
  --orange: #ff7a00;
  --black: #0c0e12;
  --white: #ffffff;
  --surface: #131720;
  --surface-soft: #1b2030;
  --surface-card: #171c28;
  --text: #eff3ff;
  --muted: #b9c1d9;
  --border: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(255, 255, 255, 0.18);
  --radius: 22px;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.26);
  --shadow-soft: 0 16px 44px rgba(0, 0, 0, 0.2);
  --container: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  line-height: 1.55;
  letter-spacing: 0.01em;
  background:
    radial-gradient(circle at 12% 10%, rgba(26, 92, 255, 0.55), transparent 32%),
    radial-gradient(circle at 88% 16%, rgba(255, 45, 45, 0.38), transparent 34%),
    radial-gradient(circle at 52% 0%, rgba(255, 208, 0, 0.22), transparent 42%),
    linear-gradient(180deg, #070a12 0%, #101522 100%);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(255, 208, 0, 0.55);
  outline-offset: 3px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.player-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background:
    linear-gradient(90deg, rgba(255, 45, 45, 0.26), rgba(255, 208, 0, 0.16), rgba(26, 92, 255, 0.16)),
    rgba(8, 10, 16, 0.86);
  border-bottom: 1px solid var(--border-strong);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.22);
}

.player-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 12px 0;
}

.player-frame-wrap {
  min-width: 0;
}

.player-frame-wrap iframe {
  display: block;
  width: 100%;
  min-height: 110px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.player-status {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.pulse {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 rgba(223, 31, 38, 0.6);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(223, 31, 38, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(223, 31, 38, 0); }
  100% { box-shadow: 0 0 0 0 rgba(223, 31, 38, 0); }
}

.player-meta {
  min-width: 0;
}

.player-meta strong,
.player-meta span {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-meta span {
  color: var(--muted);
  font-size: 0.92rem;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.player-side-link {
  align-self: start;
  padding-top: 4px;
}

.btn,
.icon-btn {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  transition: transform 0.22s ease, opacity 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.btn:hover,
.icon-btn:hover {
  transform: translateY(-2px);
}

.icon-btn {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--red), #ff4e55);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: var(--white);
  font-weight: 700;
  box-shadow: var(--shadow);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-size: 0.92rem;
}

.btn.alt {
  background: linear-gradient(135deg, var(--yellow), #fff06b);
  color: #201600;
}

.btn.ghost {
  background: linear-gradient(135deg, rgba(26, 92, 255, 0.24), rgba(255, 45, 45, 0.14));
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn.alt:hover {
  box-shadow: 0 18px 46px rgba(255, 208, 0, 0.14);
}

.btn:hover {
  box-shadow: 0 18px 42px rgba(255, 77, 0, 0.22);
}

.volume {
  width: 120px;
  accent-color: var(--yellow);
}

.site-header {
  position: sticky;
  top: 73px;
  z-index: 40;
  background: rgba(10, 13, 20, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-strong);
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 80px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  padding: 7px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.brand-text strong,
.brand-text span {
  display: block;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-toggle {
  display: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--muted);
  font-weight: 650;
  font-size: 0.96rem;
  position: relative;
  padding-bottom: 4px;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--yellow), var(--orange), var(--red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.hero {
  padding: 48px 0 26px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 22px;
  align-items: stretch;
}

.hero-card,
.panel,
.card,
.section-shell,
.admin-shell {
  border: 1px solid rgba(255, 74, 74, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 22%),
    linear-gradient(180deg, rgba(25, 29, 42, 0.96), rgba(14, 18, 28, 0.98));
  border-radius: var(--radius);
  box-shadow: var(--shadow), 0 0 14px rgba(255, 74, 74, 0.08);
}

.hero-card,
.section-shell,
.card {
  position: relative;
}

.hero-card::after,
.section-shell::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--yellow), var(--orange), var(--red), var(--blue));
  opacity: 0.9;
}

.hero-card {
  padding: 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 208, 0, 0.18), rgba(255, 45, 45, 0.14));
  color: #fff1a8;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.hero-card h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.45), 0 0 18px rgba(255, 45, 45, 0.16);
}

.hero-card p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.78;
}

.hero-actions,
.quick-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-info-stack {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.hero-inline-panel {
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(255, 74, 74, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow-soft), 0 0 12px rgba(255, 74, 74, 0.08);
}

#locutor-da-hora {
  width: 100%;
}

.hero-inline-head {
  display: grid;
  gap: 6px;
  margin-bottom: 8px;
}

.hero-inline-head h3 {
  margin: 0;
  font-size: 1.06rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.hero-inline-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

#locutor-da-hora .contact-item {
  padding: 12px 16px;
  min-height: auto;
}

#locutor-da-hora .contact-item strong {
  font-size: 1rem;
}

#locutor-da-hora .contact-item span {
  font-size: 0.92rem;
}

.hero-webcam-card {
  margin-top: 20px;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(223, 31, 38, 0.3);
  background: linear-gradient(135deg, rgba(255, 45, 45, 0.12), rgba(255, 208, 0, 0.08), rgba(26, 92, 255, 0.1));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.hero-webcam-head {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.hero-webcam-head span {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-webcam-frame {
  overflow: hidden;
  border-radius: 18px;
  background: #05070c;
}

.hero-webcam-frame iframe {
  display: block;
  width: 100%;
  min-height: 280px;
  border: 0;
}

.hero-locutor-card {
  display: grid;
  grid-template-rows: auto auto;
  overflow: hidden;
  min-height: 0;
  padding-bottom: 24px;
}

.hero-locutor-media {
  position: relative;
  width: min(100%, 500px);
  aspect-ratio: 1 / 1;
  min-height: 350px;
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
}

.hero-locutor-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(5, 8, 14, 0.88) 100%);
}

.hero-locutor-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-locutor-body {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), 500px);
  margin: -70px auto 0;
  padding: 0 0 8px;
}

.hero-locutor-body .badge {
  display: inline-flex;
  margin-bottom: 12px;
}

.hero-locutor-body h3 {
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.hero-locutor-body p {
  margin: 0;
  color: #f6d96c;
  font-weight: 700;
  font-size: 1rem;
  text-shadow: 0 0 14px rgba(255, 208, 0, 0.16);
}

.hero-locutor-body {
  background: linear-gradient(180deg, rgba(6, 10, 18, 0.18), rgba(6, 10, 18, 0.78) 18%, rgba(6, 10, 18, 0.96) 100%);
  border-radius: 0 0 22px 22px;
  padding: 14px 18px 18px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
}

.wide-slider-frame {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  border-radius: 24px;
  background: #070b12;
}

.wide-slide-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.01);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.wide-slide-item.active {
  opacity: 1;
  transform: scale(1);
}

.wide-slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wide-slide-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.wide-slide-dots button {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.wide-slide-dots button.active {
  background: var(--yellow);
  box-shadow: 0 0 14px rgba(255, 208, 0, 0.6);
}

.quick-strip {
  padding: 12px 0 26px;
}

.quick-links a {
  flex: 1 1 180px;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(255, 45, 45, 0.12), rgba(26, 92, 255, 0.12));
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
  text-transform: uppercase;
  font-size: 0.88rem;
}

.quick-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 208, 0, 0.28);
  background: linear-gradient(135deg, rgba(255, 45, 45, 0.18), rgba(255, 208, 0, 0.12), rgba(26, 92, 255, 0.16));
}

.section {
  padding: 34px 0;
  scroll-margin-top: 160px;
}

.section-shell {
  padding: 30px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  margin-bottom: 26px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.section-head h2 {
  margin: 0 0 8px;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 0 16px rgba(255, 208, 0, 0.08);
}

.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 720px;
  line-height: 1.72;
  font-size: 1rem;
}

.grid {
  display: grid;
  gap: 20px;
}

.grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  overflow: hidden;
  position: relative;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 35%);
  pointer-events: none;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 95, 95, 0.34);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28), 0 0 18px rgba(255, 45, 45, 0.12);
}

.card-body {
  padding: 24px;
}

.card h3,
.card h4 {
  margin: 0 0 12px;
  line-height: 1.22;
  letter-spacing: -0.01em;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.card small {
  color: var(--muted);
}

.badge {
  display: inline-flex;
  padding: 8px 13px;
  background: linear-gradient(90deg, rgba(255, 208, 0, 0.18), rgba(255, 45, 45, 0.22), rgba(26, 92, 255, 0.18));
  color: #fff5c1;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.supporter-card img,
.gallery-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
}

.supporters-carousel {
  position: relative;
  overflow: hidden;
}

.supporters-track {
  position: relative;
  min-height: 420px;
  transition: height 0.35s ease;
}

.supporter-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.supporter-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.supporters-page {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.supporter-placeholder {
  border-radius: var(--radius);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  min-height: 320px;
}

.supporters-controls {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}

.supporters-controls button {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
}

.supporters-controls button.active {
  background: var(--yellow);
  box-shadow: 0 0 16px rgba(255, 208, 0, 0.75);
}

.supporter-card .card-body,
.gallery-card .card-body {
  padding-top: 20px;
}

.gallery-card img {
  aspect-ratio: 4 / 3;
}

.highlight-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.schedule-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.schedule-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.schedule-card {
  height: 100%;
}

.schedule-card .card-body {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.schedule-row {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: start;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 74, 74, 0.12);
  position: relative;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.schedule-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.schedule-row-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.schedule-row:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 95, 95, 0.24);
  background: rgba(255, 255, 255, 0.06);
}

.schedule-row strong {
  color: var(--yellow);
  font-size: 0.9rem;
  line-height: 1.25;
}

.schedule-row-text > div {
  font-size: 0.94rem;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.schedule-row.current {
  border-color: rgba(255, 75, 75, 0.8);
  box-shadow:
    0 0 0 1px rgba(255, 71, 71, 0.18),
    0 0 18px rgba(223, 31, 38, 0.35),
    0 0 32px rgba(255, 208, 0, 0.12),
    inset 0 0 22px rgba(223, 31, 38, 0.08);
}

.schedule-row.current::before {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff4747;
  box-shadow: 0 0 12px #ff4747, 0 0 24px rgba(255, 71, 71, 0.9);
}

.team-card .avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--red));
  margin-bottom: 16px;
}

.team-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.team-card {
  align-self: start;
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
}

.team-card .card-body {
  padding: 14px 16px 14px;
}

.team-card .badge {
  margin-bottom: 8px;
  padding: 6px 10px;
  font-size: 0.72rem;
}

.team-card h3 {
  margin-bottom: 6px;
  font-size: 1.02rem;
}

.team-card p {
  line-height: 1.45;
  font-size: 0.88rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.current-show-card {
  border: 1px solid rgba(255, 74, 74, 0.75);
  box-shadow:
    0 0 0 1px rgba(255, 66, 66, 0.2),
    0 0 20px rgba(223, 31, 38, 0.34),
    0 0 36px rgba(255, 208, 0, 0.08),
    inset 0 0 30px rgba(223, 31, 38, 0.08);
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 208, 0, 0.08), rgba(255, 77, 77, 0.06) 26%, transparent 40%),
    linear-gradient(180deg, rgba(25, 29, 42, 0.96), rgba(14, 18, 28, 0.98));
}

.current-show-card::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff4a4a;
  box-shadow: 0 0 14px #ff4a4a, 0 0 30px rgba(255, 74, 74, 0.9);
}

.news-carousel {
  position: relative;
}

.news-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  min-height: 0;
}

.news-card {
  height: 100%;
}

.news-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-card-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.news-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-card .card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.news-card .card-body h3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card .card-body p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-controls {
  display: none;
}

.video-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--yellow);
  font-weight: 700;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
}

.contact-list {
  display: grid;
  gap: 12px;
}

#locutores-list {
  grid-template-rows: repeat(3, auto);
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
  align-items: start;
}

#locutores-list .contact-item {
  height: 100%;
}

.contact-item {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 74, 74, 0.16);
  box-shadow: var(--shadow-soft), 0 0 12px rgba(255, 74, 74, 0.07);
}

.contact-item strong,
.contact-item span {
  display: block;
}

.contact-item span {
  color: var(--muted);
  margin-top: 4px;
}

.contact-form,
.admin-form {
  display: grid;
  gap: 14px;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(2, 4, 10, 0.8);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
  z-index: 120;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-dialog {
  width: min(92vw, 900px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 22%),
    linear-gradient(180deg, rgba(20, 25, 38, 0.98), rgba(10, 14, 23, 0.98));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  position: relative;
  overflow: hidden;
}

.modal-head {
  display: grid;
  gap: 6px;
  padding: 22px 24px 14px;
}

.modal-head strong {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.modal-head span {
  color: var(--muted);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: var(--white);
  font-size: 1.35rem;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(255, 45, 45, 0.2);
}

.modal-media {
  padding: 0 24px 24px;
}

.modal-media iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 315px;
  border: 0;
  border-radius: 18px;
  background: #05070c;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: rgba(44, 121, 255, 0.7);
  box-shadow: 0 0 0 4px rgba(44, 121, 255, 0.12);
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.footer {
  margin-top: 34px;
  padding: 32px 0 42px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow), var(--orange), var(--red), var(--blue), var(--yellow));
  box-shadow: 0 0 22px rgba(255, 208, 0, 0.52);
}

.footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 208, 0, 0.1), transparent 24%),
    radial-gradient(circle at 90% 10%, rgba(255, 45, 45, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 22%);
  pointer-events: none;
}

.sponsor-section {
  padding-bottom: 0;
}

.sponsor-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) 1.1fr;
  gap: 22px;
  align-items: center;
  text-decoration: none;
  border: 2px solid rgba(223, 31, 38, 0.92);
  box-shadow:
    0 0 0 1px rgba(255, 80, 80, 0.25),
    0 0 28px rgba(223, 31, 38, 0.26);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.sponsor-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 0 1px rgba(255, 80, 80, 0.3),
    0 0 36px rgba(223, 31, 38, 0.32);
}

.sponsor-media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.sponsor-body {
  display: grid;
  gap: 12px;
}

.sponsor-body h2,
.sponsor-body p {
  margin: 0;
}

.sponsor-badge {
  background: linear-gradient(90deg, rgba(255, 45, 45, 0.22), rgba(255, 208, 0, 0.16));
  color: #ffe1e1;
}

.video-link {
  position: relative;
  width: fit-content;
}

.video-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: currentColor;
  opacity: 0.45;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1.2fr;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.footer-col {
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(255, 74, 74, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 208, 0, 0.04), rgba(255, 255, 255, 0.02) 18%, transparent 28%),
    linear-gradient(180deg, rgba(18, 24, 36, 0.88), rgba(13, 17, 27, 0.94));
  box-shadow: var(--shadow-soft), 0 0 14px rgba(255, 74, 74, 0.08);
  position: relative;
  overflow: hidden;
}

.footer-col::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--yellow), var(--blue));
  opacity: 0.95;
}

.footer-col h3,
.footer-col h4 {
  margin-top: 0;
  margin-bottom: 14px;
  color: var(--white);
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.footer-col ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-col li,
.footer-col p {
  color: var(--muted);
}

.footer-col li {
  transition: transform 0.2s ease, color 0.2s ease;
}

.footer-col li:hover {
  transform: translateX(4px);
  color: var(--white);
}

.footer-col a:hover {
  color: var(--yellow);
}

.footer-panel-btn {
  margin-top: 18px;
  width: fit-content;
  padding: 11px 16px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-color: rgba(255, 208, 0, 0.18);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  padding-top: 26px;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.footer-signature {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 208, 0, 0.1), rgba(255, 45, 45, 0.12), rgba(26, 92, 255, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 12px rgba(255, 208, 0, 0.16),
    0 0 22px rgba(255, 45, 45, 0.14),
    0 0 30px rgba(26, 92, 255, 0.12),
    0 10px 26px rgba(0, 0, 0, 0.22);
}

.footer-copy {
  color: #fff1a8;
  font-weight: 800;
  text-shadow:
    0 0 8px rgba(255, 208, 0, 0.4),
    0 0 18px rgba(255, 208, 0, 0.24);
}

.footer-brand {
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.2),
    0 0 16px rgba(255, 45, 45, 0.28),
    0 0 24px rgba(26, 92, 255, 0.24),
    0 0 34px rgba(255, 45, 45, 0.14);
}

.footer-rights {
  color: var(--muted);
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.06);
}

.admin-page {
  padding: 34px 0 50px;
}

.admin-shell {
  padding: 28px;
}

.auth-shell {
  max-width: 560px;
  margin: 0 auto;
}

.auth-form {
  max-width: 420px;
}

.auth-status {
  min-height: 24px;
  font-weight: 700;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  margin-bottom: 24px;
}

.admin-note {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(244, 197, 34, 0.12);
  color: #ffe595;
  margin-bottom: 18px;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.admin-status {
  min-height: 24px;
  color: var(--yellow);
  font-weight: 700;
}

.hide {
  display: none !important;
}

@media (max-width: 1080px) {
  .hero-grid,
  .contact-grid,
  .footer-grid,
  .schedule-board,
  .grid.cols-4,
  .sponsor-card {
    grid-template-columns: 1fr;
  }

  .grid.cols-3,
  .grid.cols-2,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    top: 69px;
  }

  .hero-card {
    padding: 30px;
  }

  .schedule-list {
    grid-template-columns: 1fr;
  }

  #locutores-list {
    grid-template-rows: none;
    grid-auto-flow: row;
    grid-auto-columns: auto;
  }

  .news-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .supporters-page {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .supporter-placeholder {
    min-height: 300px;
  }
}

@media (max-width: 860px) {
  .player-wrap {
    grid-template-columns: 1fr;
  }

  .player-side-link {
    justify-content: start !important;
    padding-top: 0;
  }

  .header-wrap {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .nav-toggle {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
  }

  .main-nav {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 10px;
  }

  .main-nav.open {
    display: flex;
  }
}

@media (max-width: 640px) {
  .hero-card,
  .section-shell,
  .admin-shell {
    padding: 22px;
  }

  .quick-links a,
  .contact-item,
  .footer-col {
    padding: 18px;
  }

  .volume {
    width: 100%;
  }

  .hero-webcam-frame iframe {
    min-height: 240px;
  }

  .wide-slider-frame {
    min-height: 280px;
  }

  .card-body {
    padding: 20px;
  }

  .news-track {
    grid-template-columns: 1fr;
  }

  .supporters-page {
    grid-template-columns: 1fr;
  }

  .supporter-placeholder {
    min-height: 260px;
  }
}
