:root {
  --navy-950: #050b16;
  --navy-900: #0a1428;
  --navy-850: #0d182f;
  --navy-800: #101d3a;
  --navy-700: #1c2c4d;
  --navy-600: #2a3d63;
  --gold-300: #f2dda0;
  --gold-400: #e8c874;
  --gold-500: #d4af37;
  --gold-600: #b8860b;
  --silver-100: #f4f6fa;
  --silver-300: #c7d0e0;
  --silver-500: #8b9ab5;
  --silver-700: #5d6c88;
  --shadow-gold: 0 0 40px rgba(212, 175, 55, 0.25);
  --radius-lg: 22px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--navy-950);
  color: var(--silver-300);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 900px 500px at 50% -10%, rgba(212, 175, 55, 0.10), transparent 60%),
    radial-gradient(ellipse 700px 500px at 100% 20%, rgba(28, 44, 77, 0.5), transparent 60%),
    radial-gradient(ellipse 700px 500px at 0% 60%, rgba(28, 44, 77, 0.4), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

h1,
h2,
h3,
.brand-word {
  font-family: 'Poppins', sans-serif;
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 600;
}

.gold-text {
  background: linear-gradient(180deg, var(--gold-300), var(--gold-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

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

section {
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- NAV ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 11, 22, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  max-width: 1160px;
  margin: 0 auto;
}

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

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.brand-word {
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 1.05rem;
  line-height: 1.1;
  color: var(--silver-100);
}

.brand-word span {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  color: var(--gold-500);
  font-weight: 600;
}

nav.links {
  display: flex;
  gap: 34px;
}

nav.links a {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--silver-300);
  position: relative;
  padding: 4px 0;
  transition: color .25s ease;
}

nav.links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 1px;
  width: 0;
  background: var(--gold-500);
  transition: width .25s ease;
}

nav.links a:hover {
  color: var(--silver-100);
}

nav.links a:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.86rem;
  cursor: pointer;
  border: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-600));
  color: var(--navy-950);
  box-shadow: 0 6px 22px rgba(212, 175, 55, 0.28);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--silver-100);
  border: 1px solid var(--navy-600);
}

.btn-outline:hover {
  border-color: var(--gold-500);
  color: var(--gold-400);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}

.burger span {
  width: 24px;
  height: 2px;
  background: var(--silver-100);
  border-radius: 2px;
}

/* ---------- HERO ---------- */
.hero {
  padding: 110px 0 90px;
  text-align: center;
  position: relative;
}

.mark-wrap {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mark-wrap img {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 2;
  border: 2px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.35);
  animation: pulse 3.6s ease-out infinite;
  opacity: 0;
  will-change: width, height, opacity;
}

.ring1 {
  width: 120px;
  height: 120px;
  animation-delay: 0s;
}

.ring2 {
  width: 120px;
  height: 120px;
  animation-delay: 1.2s;
}

.ring3 {
  width: 120px;
  height: 120px;
  animation-delay: 2.4s;
}

@keyframes pulse {
  0% {
    width: 120px;
    height: 120px;
    opacity: 0.7;
  }

  80% {
    opacity: 0;
  }

  100% {
    width: 230px;
    height: 230px;
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ring {
    animation: none;
    opacity: 0.25;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 600;
  margin-bottom: 22px;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff5c5c;
  box-shadow: 0 0 0 0 rgba(255, 92, 92, 0.6);
  animation: dot 1.8s infinite;
}

@keyframes dot {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 92, 92, 0.55);
  }

  70% {
    box-shadow: 0 0 0 9px rgba(255, 92, 92, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 92, 92, 0);
  }
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 900;
  letter-spacing: 0.01em;
  color: var(--silver-100);
  line-height: 1.05;
}

.hero h1 .accent {
  font-weight: 900;
}

.hero p.lead {
  max-width: 560px;
  margin: 22px auto 40px;
  font-size: 1.05rem;
  color: var(--silver-500);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.4rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* equalizer */
.eq {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  height: 46px;
  max-width: 340px;
  margin: 0 auto;
}

.eq span {
  width: 4px;
  background: linear-gradient(180deg, var(--gold-300), var(--gold-600));
  border-radius: 3px;
  animation: eq 1.1s ease-in-out infinite;
  animation-play-state: running;
  transition: transform 0.3s ease;
  will-change: transform;
}

.eq span:nth-child(1) {
  height: 30%;
  animation-delay: .1s;
}

.eq span:nth-child(2) {
  height: 70%;
  animation-delay: .3s;
}

.eq span:nth-child(3) {
  height: 45%;
  animation-delay: .5s;
}

.eq span:nth-child(4) {
  height: 90%;
  animation-delay: .2s;
}

.eq span:nth-child(5) {
  height: 55%;
  animation-delay: .6s;
}

.eq span:nth-child(6) {
  height: 80%;
  animation-delay: .15s;
}

.eq span:nth-child(7) {
  height: 35%;
  animation-delay: .45s;
}

.eq span:nth-child(8) {
  height: 65%;
  animation-delay: .35s;
}

.eq span:nth-child(9) {
  height: 25%;
  animation-delay: .55s;
}

.eq span:nth-child(10) {
  height: 75%;
  animation-delay: .25s;
}

.eq span:nth-child(11) {
  height: 40%;
  animation-delay: .5s;
}

.eq span:nth-child(12) {
  height: 60%;
  animation-delay: .4s;
}

.eq span:nth-child(13) {
  height: 30%;
  animation-delay: .6s;
}

@keyframes eq {
  0%,
  100% {
    transform: scaleY(0.4);
  }

  50% {
    transform: scaleY(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .eq span {
    animation: none;
  }
}

/* ---------- HERO GRID & CAROUSEL LAYOUT ---------- */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 50px;
  align-items: center;
  text-align: left;
}

.hero-brand-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-brand-col .mark-wrap {
  margin: 0 0 20px 0;
}

.hero-brand-col p.lead {
  margin: 20px 0 35px 0;
  text-align: left;
}

.hero-brand-col .hero-actions {
  justify-content: flex-start;
  margin-bottom: 0;
}

.hero-brand-col .eq {
  margin: 35px 0 0 0;
}

.hero-carousel-col {
  width: 100%;
}

.promo-carousel {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--navy-700);
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.45);
  background: var(--navy-900);
}

.carousel-track-container {
  position: relative;
  width: 100%;
  aspect-ratio: 8/5;
  overflow: hidden;
}

.carousel-track {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 1;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 2;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-nav {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.carousel-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.carousel-indicator:hover {
  background: rgba(255, 255, 255, 0.7);
}

.carousel-indicator.active {
  background: var(--gold-500);
  transform: scale(1.2);
  box-shadow: 0 0 8px var(--gold-500);
}

/* Responsividade do Hero */
@media (max-width: 990px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 45px;
    text-align: center;
  }
  .hero-brand-col {
    align-items: center;
    text-align: center;
  }
  .hero-brand-col .mark-wrap {
    margin: 0 auto 20px auto;
  }
  .hero-brand-col p.lead {
    margin: 20px auto 35px auto;
    text-align: center;
  }
  .hero-brand-col .hero-actions {
    justify-content: center;
  }
  .hero-brand-col .eq {
    margin: 35px auto 0 auto;
  }
}

/* ---------- SECTION HEADERS ---------- */
.section-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--silver-100);
  font-weight: 800;
  margin-top: 10px;
}

.section-head p {
  color: var(--silver-500);
  margin-top: 12px;
  font-size: 0.98rem;
}

.divider {
  width: 60px;
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}

/* ---------- PLAYER & CHAT ---------- */
.player-chat-section {
  padding: 60px 0;
  position: relative;
}

.player-chat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: start;
}

.player-card {
  display: block;
  max-width: 460px;
  margin: 0 auto;
  padding: 8px;
  background: var(--navy-850);
  border: 1px solid var(--navy-700);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.player-card iframe {
  width: 100%;
  height: 470px;
  border: none;
  display: block;
  border-radius: var(--radius-md);
  background: #fff;
}

.toast-notification {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--navy-800);
  border: 1px solid var(--gold-500);
  color: var(--silver-100);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 500;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
  z-index: 999;
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

/* ---------- CHAT ---------- */

.chat-card {
  background: var(--navy-850);
  border: 1px solid var(--navy-700);
  border-radius: var(--radius-lg);
  padding: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  max-width: 480px;
  margin: 0 auto;
}

.chat-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}

.chat-topbar .dots {
  display: flex;
  gap: 6px;
}

.chat-topbar .dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--navy-600);
}

.chat-topbar .label {
  font-size: 0.78rem;
  color: var(--silver-500);
  letter-spacing: 0.06em;
}

.chat-frame-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--navy-700);
  background:
    linear-gradient(var(--navy-900), var(--navy-900)) padding-box;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.chat-frame-wrap iframe {
  width: 100%;
  height: 540px;
  border: none;
  display: block;
}

/* ---------- PROGRAMAÇÃO ---------- */
.schedule-section {
  padding: 60px 0;
}

.schedule-card {
  background: var(--navy-850);
  border: 1px solid var(--navy-700);
  border-radius: var(--radius-lg);
  padding: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  max-width: 900px;
  margin: 0 auto;
}

.schedule-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}

.schedule-topbar .dots {
  display: flex;
  gap: 6px;
}

.schedule-topbar .dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--navy-600);
}

.schedule-topbar .label {
  font-size: 0.78rem;
  color: var(--silver-500);
  letter-spacing: 0.06em;
}

.schedule-frame-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--navy-700);
  background:
    linear-gradient(var(--navy-900), var(--navy-900)) padding-box;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.schedule-frame-wrap iframe {
  width: 100%;
  height: 540px;
  border: none;
  display: block;
}

/* ---------- VERSE ---------- */
.verse-section {
  padding: 80px 0;
  text-align: center;
}

.verse-mark {
  font-size: 2.6rem;
  color: var(--gold-600);
  font-family: 'Cormorant Garamond', serif;
  line-height: 0.5;
}

.verse-section p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  color: var(--silver-100);
  max-width: 680px;
  margin: 14px auto 10px;
}

.verse-ref {
  color: var(--gold-500);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.copy-verse-btn {
  background: transparent;
  border: 1px solid var(--navy-700);
  color: var(--silver-500);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  transition: all 0.25s ease;
}

.copy-verse-btn:hover {
  border-color: var(--gold-500);
  color: var(--gold-400);
  background: rgba(28, 44, 77, 0.2);
}

.copy-verse-btn svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

/* ---------- SOBRE ---------- */
.about-section {
  padding: 60px 0 90px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  color: var(--silver-100);
  font-weight: 800;
  margin-bottom: 18px;
}

.about-text p {
  color: var(--silver-500);
  margin-bottom: 14px;
}

.pillars {
  display: grid;
  gap: 18px;
}

.pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--navy-850);
  border: 1px solid var(--navy-700);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.pillar:hover {
  border-color: rgba(212, 175, 55, 0.25);
  transform: translateX(4px);
}

.pillar-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(212, 175, 55, 0.04));
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--gold-400);
}

.pillar h3 {
  color: var(--silver-100);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.pillar p {
  color: var(--silver-500);
  font-size: 0.87rem;
}

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

/* ---------- FOOTER ---------- */
footer {
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding: 50px 0 30px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}

.footer-brand img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.social-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 26px;
}

.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--navy-600);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s ease, transform .2s ease, background-color .2s ease;
}

.social-row a:hover {
  border-color: var(--gold-500);
  background-color: rgba(212, 175, 55, 0.05);
  transform: translateY(-2px);
}

.social-row svg {
  width: 16px;
  height: 16px;
  fill: var(--silver-300);
  transition: fill 0.2s ease;
}

.social-row a:hover svg {
  fill: var(--gold-400);
}

footer .fine {
  font-size: 0.78rem;
  color: var(--silver-700);
}

/* ---------- MOBILE NAV ---------- */
@media (max-width:900px) {
  nav.links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--navy-900);
    border-bottom: 1px solid var(--navy-700);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }

  nav.links.open {
    max-height: 400px;
  }

  nav.links a {
    padding: 16px 28px;
    border-bottom: 1px solid var(--navy-800);
    width: 100%;
  }

  .nav-inner .btn-gold {
    display: none;
  }

  .burger {
    display: flex;
  }
}
