:root {
  --bg: #050505;
  --panel: rgba(12, 13, 16, 0.82);
  --panel-strong: rgba(7, 8, 10, 0.94);
  --gold: #f5c24b;
  --gold-strong: #ffdb69;
  --green: #35e76b;
  --blue: #2e76ff;
  --text: #f7f3e8;
  --muted: #bdb7a7;
  --line: rgba(245, 194, 75, 0.34);
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.46);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 16% 20%, rgba(245, 194, 75, 0.18), transparent 30%),
    radial-gradient(circle at 84% 18%, rgba(46, 118, 255, 0.20), transparent 29%),
    radial-gradient(circle at 82% 52%, rgba(53, 231, 107, 0.10), transparent 24%),
    linear-gradient(180deg, #090909 0%, #050505 48%, #020202 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent 70%);
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--gold);
  color: #070707;
  font-weight: 800;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  min-width: 104px;
  min-height: 52px;
  padding: 0.5rem 0.9rem;
  border: 1px solid rgba(255, 219, 105, 0.7);
  border-radius: 18px;
  color: var(--gold-strong);
  background: linear-gradient(135deg, rgba(245,194,75,0.22), rgba(255,255,255,0.02));
  box-shadow: 0 0 28px rgba(245, 194, 75, 0.22), inset 0 0 18px rgba(255, 219, 105, 0.10);
  font-size: 1.45rem;
  font-weight: 950;
  letter-spacing: 0.05em;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 0.55rem;
  padding: 0.35rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  background: rgba(0,0,0,0.42);
}

.nav a {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav a:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.nav-button {
  cursor: pointer;
  border: 0;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: #fff;
  background: rgba(230, 57, 70, 0.20);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 800;
}

.nav-button:hover {
  background: rgba(230, 57, 70, 0.42);
}

.hero,
.section,
.episodes-band,
.participar {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: block;
  min-height: calc(100vh - 88px);
  color: white;
  padding: clamp(22px, 4vw, 46px) 0 clamp(54px, 7vw, 82px);
}

.hero-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: clamp(0.9rem, 2vw, 1.35rem);
  text-align: center;
  background:
    linear-gradient(rgba(10,10,10,0.72), rgba(10,10,10,0.88)),
    radial-gradient(circle at 0% 52%, rgba(245, 194, 75, 0.25), transparent 26%),
    radial-gradient(circle at 100% 52%, rgba(245, 194, 75, 0.22), transparent 26%),
    linear-gradient(135deg, #050505, #101319);
  border-radius: 0 0 38px 38px;
}

.hero-content {
  width: min(940px, 100%);
  margin: 0 auto clamp(0.35rem, 1vw, 0.9rem);
}

.hero-content h1 {
  margin-bottom: 0.2rem;
  color: var(--gold-strong);
  font-size: clamp(4rem, 10vw, 5.5rem);
  text-shadow: 0 0 30px rgba(245, 194, 75, 0.34);
}

.subtitle {
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  font-weight: 900;
  letter-spacing: -0.035em;
}

.description {
  margin: 0 auto 40px;
  max-width: 600px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.55;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 0.95rem;
}

.trust {
  margin: 0;
  color: var(--green);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.showcase-frame {
  position: relative;
  display: block;
  width: min(100%, 1120px);
  padding: clamp(0.42rem, 1vw, 0.72rem);
  border: 1px solid rgba(255, 219, 105, 0.44);
  border-radius: clamp(24px, 3vw, 42px);
  background:
    linear-gradient(135deg, rgba(255, 219, 105, 0.18), rgba(46, 118, 255, 0.16), rgba(53, 231, 107, 0.08)),
    rgba(0, 0, 0, 0.56);
  box-shadow:
    0 28px 100px rgba(0, 0, 0, 0.56),
    0 0 80px rgba(245, 194, 75, 0.12),
    inset 0 0 24px rgba(255, 255, 255, 0.035);
  text-decoration: none;
}

.showcase-frame::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 219, 105, 0.34), transparent 42%, rgba(46, 118, 255, 0.34));
  opacity: 0.62;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  padding: 1px;
}

.showcase-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: clamp(18px, 2.4vw, 32px);
}

.showcase-tools {
  width: min(100%, 920px);
  display: grid;
  gap: 0.85rem;
}

.section-premium {
  padding-top: 72px;
}

.section-premium .showcase-frame,
.section-premium .showcase-tools {
  margin-left: auto;
  margin-right: auto;
}

.section-premium .showcase-frame {
  margin-bottom: 1rem;
}

.section-premium .showcase-tools {
  margin-bottom: 3rem;
}

.showcase-tools .search-panel {
  max-width: none;
  margin: 0;
}

.episode-finder {
  display: grid;
  grid-template-columns: minmax(210px, 1.5fr) minmax(150px, 0.8fr) minmax(150px, 0.8fr) auto;
  gap: 0.7rem;
  align-items: end;
  padding: 0.85rem;
  border: 1px solid rgba(255, 219, 105, 0.26);
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.58);
  box-shadow: inset 0 0 28px rgba(255,255,255,0.035), 0 18px 42px rgba(0,0,0,0.26);
}

.finder-field {
  min-width: 0;
}

.finder-field label {
  display: block;
  margin: 0 0 0.35rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.finder-field select {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 15px;
  padding: 0 0.85rem;
  color: #fff;
  background: #0b0c0f;
  font: inherit;
  font-weight: 800;
  outline: none;
}

.finder-field select:focus {
  border-color: rgba(255, 219, 105, 0.78);
  box-shadow: 0 0 0 3px rgba(245, 194, 75, 0.16);
}

.finder-button {
  min-height: 50px;
  white-space: nowrap;
}

.finder-status {
  grid-column: 1 / -1;
  margin: -0.1rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.showcase-tools .hero-actions {
  justify-content: center;
  margin: 0;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 1rem;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  line-height: 0.86;
  letter-spacing: -0.08em;
}

h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

h3 {
  margin-bottom: 0.6rem;
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-text,
.section-heading p,
.episodes-band p,
.participar p,
.program-card p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-text {
  max-width: 760px;
  font-size: 1.16rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.8rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.9rem 1.15rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 14px 36px rgba(0,0,0,0.24);
}

.button-primary {
  border-color: rgba(255, 219, 105, 0.72);
  color: #111;
  background: linear-gradient(135deg, var(--gold-strong), #b87415);
}

.button-outline {
  color: #fff;
  background: rgba(0,0,0,0.34);
}

.button-blue {
  border-color: rgba(87, 142, 255, 0.78);
  color: #fff;
  background: linear-gradient(135deg, rgba(46,118,255,0.92), rgba(11,36,94,0.94));
}

.button-live {
  border-color: rgba(255, 110, 120, 0.72);
  color: #fff;
  padding: 16px 40px;
  font-size: 1.2rem;
  background: linear-gradient(135deg, #e63946, #7b0d18);
}

.search-panel {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  max-width: 740px;
  margin: 0 0 1rem;
  padding: 0.9rem 1.05rem;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 18px;
  background: rgba(0,0,0,0.55);
  box-shadow: inset 0 0 20px rgba(255,255,255,0.03);
}

.search-panel span {
  color: var(--gold);
  font-size: 1.6rem;
}

.search-panel input {
  width: 100%;
  border: 0;
  outline: 0;
  color: #fff;
  background: transparent;
  font: inherit;
}

.search-panel input::placeholder {
  color: rgba(255,255,255,0.55);
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  max-width: 850px;
}

.trust-bar div {
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  background: rgba(255,255,255,0.035);
}

.trust-bar strong,
.trust-bar span {
  display: block;
}

.trust-bar strong {
  color: #fff;
  text-transform: uppercase;
  font-size: 0.84rem;
}

.trust-bar span {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.hero-visual {
  position: relative;
  padding: 0.6rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 219, 105, 0.18), rgba(46,118,255,0.12), rgba(53,231,107,0.08));
  box-shadow: var(--shadow), 0 0 70px rgba(245, 194, 75, 0.16);
  transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
}

.hero-visual img {
  display: block;
  width: 100%;
  border-radius: 22px;
}

.section {
  padding: 72px 0;
}

.section-heading {
  max-width: 880px;
  margin-bottom: 1.4rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.8rem;
}

.filter-chip {
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  color: var(--muted);
  background: rgba(255,255,255,0.04);
  font: inherit;
  font-weight: 800;
}

.filter-chip.is-active,
.filter-chip:hover {
  border-color: rgba(255, 219, 105, 0.7);
  color: #111;
  background: var(--gold);
}

.result-count {
  color: var(--muted);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.program-card {
  overflow: hidden;
  min-height: 470px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.program-art {
  position: relative;
  overflow: hidden;
  height: 255px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at 40% 42%, rgba(255,255,255,0.12), transparent 30%),
    linear-gradient(135deg, rgba(245,194,75,0.32), rgba(0,0,0,0.4));
}

.program-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.16) 52%, rgba(0,0,0,0.72) 100%),
    radial-gradient(circle at 18% 0%, rgba(255, 219, 105, 0.18), transparent 36%);
  pointer-events: none;
}

.program-art img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition: transform 260ms ease, filter 260ms ease;
}

.program-card:hover .program-art img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.04);
}

.theme-love .program-art {
  background: radial-gradient(circle at 50% 42%, rgba(255, 55, 139, 0.54), transparent 28%), linear-gradient(135deg, #260016, #070707);
}

.theme-health .program-art {
  background: radial-gradient(circle at 58% 35%, rgba(46, 118, 255, 0.60), transparent 28%), linear-gradient(135deg, #07182b, #060606);
}

.theme-training .program-art {
  background: radial-gradient(circle at 46% 48%, rgba(245, 194, 75, 0.45), transparent 28%), linear-gradient(135deg, #1d1407, #050505);
}

.theme-depth .program-art {
  background: radial-gradient(circle at 48% 50%, rgba(73, 178, 255, 0.42), transparent 30%), linear-gradient(135deg, #061827, #050505);
}

.theme-friends .program-art {
  background: radial-gradient(circle at 50% 45%, rgba(255, 219, 105, 0.40), transparent 30%), linear-gradient(135deg, #201506, #050505);
}

.theme-archive .program-art {
  background: radial-gradient(circle at 50% 45%, rgba(255,255,255,0.13), transparent 30%), linear-gradient(135deg, #161616, #050505);
  filter: grayscale(0.85);
}

.program-content {
  padding: 1.25rem;
}

.status {
  display: inline-flex;
  margin-bottom: 0.9rem;
  padding: 0.32rem 0.55rem;
  border: 1px solid rgba(53, 231, 107, 0.65);
  border-radius: 999px;
  color: var(--green);
  background: rgba(53, 231, 107, 0.10);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.status.archive {
  border-color: rgba(255,255,255,0.28);
  color: #eee;
  background: rgba(255,255,255,0.08);
}

.program-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
  margin-top: 1rem;
}

.program-actions a {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 0.48rem 0.62rem;
  color: #fff;
  background: rgba(255,255,255,0.05);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 800;
}

.program-actions a:hover {
  border-color: rgba(255, 219, 105, 0.75);
  background: rgba(245, 194, 75, 0.14);
}

.program-actions .mini-button {
  color: #111;
  background: var(--gold);
}

.archive-card {
  min-height: 410px;
  opacity: 0.86;
}

.empty-state {
  padding: 1.2rem;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  color: var(--muted);
  background: rgba(255,255,255,0.04);
}

.episodes-band,
.participar {
  margin-bottom: 72px;
}

.episodes-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(245,194,75,0.12), rgba(46,118,255,0.10), rgba(0,0,0,0.70));
  box-shadow: var(--shadow);
}

.episodes-band h2 {
  max-width: 760px;
  margin-bottom: 0.5rem;
}

.participar {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 1rem;
}

.participar-card,
.signature-card {
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 30px;
  background: var(--panel-strong);
  box-shadow: var(--shadow);
}

.participar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.35rem;
}

.signature-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-color: rgba(255, 219, 105, 0.28);
}

.signature-card span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
}

.signature-card strong {
  margin: 0.35rem 0 0.7rem;
  color: var(--gold-strong);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 0.92;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 48px;
  border-top: 1px solid rgba(255,255,255,0.10);
  color: var(--muted);
}

.site-footer a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 800;
}

.live-modal[hidden] {
  display: none;
}

.live-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 18px;
}

.live-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(10px);
}

.live-modal-panel {
  position: relative;
  width: min(1080px, 100%);
  max-height: min(92vh, 900px);
  overflow: auto;
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid rgba(255, 219, 105, 0.36);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(18, 18, 18, 0.98), rgba(4, 7, 12, 0.98));
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.62), 0 0 70px rgba(230, 57, 70, 0.12);
}

.live-close {
  position: absolute;
  top: 16px;
  right: 18px;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.16);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--gold);
  background: rgba(255,255,255,0.06);
  font-size: 2rem;
  line-height: 1;
}

.live-description {
  max-width: 820px;
  color: var(--muted);
}

.live-description code {
  color: var(--gold);
}

.live-player-frame {
  position: relative;
  overflow: hidden;
  margin: 1.2rem 0;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  background: #050505;
  aspect-ratio: 16 / 9;
}

.live-player-frame iframe,
#live-player,
.live-empty {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.live-player-frame iframe {
  border: 0;
}

#live-player iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.live-empty {
  display: grid;
  place-items: center;
  padding: 1.2rem;
  color: var(--muted);
  text-align: center;
}

.live-empty[hidden] {
  display: none;
}

.live-playlist {
  display: grid;
  gap: 0.55rem;
}

.live-now {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.8rem;
  margin: 0 0 1rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 15px;
  color: var(--muted);
  background: rgba(255,255,255,0.045);
}

.live-now strong,
.live-now span {
  color: #fff;
}

.live-now small {
  color: var(--gold);
  font-weight: 900;
}

.live-playlist button {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 15px;
  padding: 0.85rem 1rem;
  color: #fff;
  background: rgba(255,255,255,0.045);
  font: inherit;
  font-weight: 800;
  text-align: left;
}

.live-playlist button:hover:not(:disabled),
.live-playlist button.is-active {
  border-color: rgba(255, 219, 105, 0.68);
  background: rgba(245, 194, 75, 0.12);
}

.live-playlist button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.live-playlist small {
  color: var(--muted);
  white-space: nowrap;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.05rem;
  border: 1px solid rgba(53, 231, 107, 0.72);
  border-radius: 999px;
  color: #041309;
  background: linear-gradient(135deg, #60ff8b, #20c75a);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.36), 0 0 34px rgba(53, 231, 107, 0.28);
  text-decoration: none;
  font-weight: 950;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
}

.sr-only {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

[hidden] {
  display: none !important;
}

@media (max-width: 980px) {
  .site-header,
  .hero,
  .section,
  .episodes-band,
  .participar,
  .site-footer {
    width: min(100% - 24px, 760px);
  }

  .site-header,
  .hero,
  .episodes-band,
  .participar,
  .site-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .site-header {
    position: static;
  }

  .nav {
    justify-content: center;
  }

  .hero {
    min-height: auto;
    padding-top: 20px;
  }

  .showcase-frame {
    width: 100%;
  }

  .description br {
    display: none;
  }

  .episode-finder {
    grid-template-columns: 1fr 1fr;
  }

  .finder-field:first-child,
  .finder-button,
  .finder-status {
    grid-column: 1 / -1;
  }

  .trust-bar,
  .program-grid,
  .participar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    overflow-x: auto;
    justify-content: flex-start;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .showcase-frame {
    padding: 0.34rem;
    border-radius: 22px;
  }

  .showcase-frame img {
    border-radius: 17px;
  }

  .showcase-tools {
    gap: 0.7rem;
  }

  .showcase-tools .hero-actions {
    flex-direction: column;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .episode-finder {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .finder-field:first-child,
  .finder-button,
  .finder-status {
    grid-column: auto;
  }

  .program-card {
    min-height: auto;
  }

  .participar-actions {
    flex-direction: column;
  }

  .episodes-band,
  .participar-card,
  .signature-card {
    padding: 1.2rem;
  }
}
