:root {
  --bg: #020202;
  --panel: #090909;
  --panel-2: #111;
  --gold: #d8ad35;
  --gold-light: #f7db78;
  --red: #b90020;
  --green: #8cff29;
  --text: #fff;
  --muted: #aaa;
  --border: rgba(216, 173, 53, 0.34);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  color-scheme: dark;
}
body {
  font-family: Inter, sans-serif;
  background: #000;
  color: #fff;
  min-height: 100vh;
}
a {
  text-decoration: none;
  color: inherit;
}
button,
input {
  font: inherit;
}
img {
  display: block;
  max-width: 100%;
}
.v2-shell {
  width: min(1540px, 100%);
  margin: auto;
  background: #000;
  min-height: 100vh;
}
.v2-header {
  height: 86px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 42px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(18px);
  z-index: 100;
}
.v2-brand {
  width: 350px;
  flex: none;
}
.v2-brand img {
  height: 70px;
  width: auto;
  object-fit: contain;
}
.v2-section-heading a:hover {
  color: var(--gold-light);
}
.v2-header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-left: auto;
}
.v2-btn {
  min-height: 42px;
  padding: 0 24px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.2px;
}
.v2-btn-outline {
  border: 1px solid var(--gold);
  background: #050505;
}
.v2-login-button {
  border-color: #fff;
  background: #fff;
  color: var(--red);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.12);
}
.v2-login-button:hover {
  border-color: #f4f4f4;
  background: #f4f4f4;
  color: #d20b2e;
}
.v2-login-button:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}
.v2-btn-red {
  background: linear-gradient(135deg, #d20b2e, #8f0018);
  box-shadow: 0 12px 30px rgba(185, 0, 32, 0.2);
}
.v2-btn-large {
  min-height: 52px;
  font-size: 15px;
  gap: 10px;
}
.v2-btn small {
  display: block;
  font-size: 10px;
  text-transform: none;
  font-weight: 500;
}
.v2-menu-button,
.v2-mobile-menu {
  display: none;
}
main {
  padding: 0 48px 28px;
}
.v2-hero {
  position: relative;
  min-height: 360px;
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  border-bottom: 1px solid rgba(216, 173, 53, 0.2);
  background: #000;
  isolation: isolate;
}
.v2-hero-slide {
  position: relative;
  grid-area: 1 / 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(24px, 0, 0);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease,
    visibility 0s linear 0.65s;
}
.v2-hero-slide.is-active {
  z-index: 2;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  transition-delay: 0s;
}
.v2-hero-copy {
  padding: 42px 0 28px;
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.v2-eyebrow {
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.v2-hero h1 {
  font-family: "Bebas Neue";
  font-size: clamp(48px, 5vw, var(--hero-title-size, 76px));
  line-height: 0.92;
  letter-spacing: 0.6px;
  max-width: 720px;
}
.v2-hero h1 span {
  display: block;
  color: var(--gold);
}
.v2-hero-copy--company h1 {
  font-size: clamp(46px, 4.6vw, 70px);
}
.v2-hero-text {
  font-size: 17px;
  line-height: 1.55;
  max-width: 590px;
  margin: 20px 0;
  color: #eee;
}
.v2-hero-copy > small {
  display: block;
  color: #bbb;
  margin: 8px 0 18px 58px;
}
.v2-hero-art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 360px;
  padding: 28px 0;
}
.v2-hero-visual-link {
  width: min(76%, 460px);
  margin: 0 auto;
  display: block;
  position: relative;
  z-index: 2;
  border-radius: 30px;
  line-height: 0;
  -webkit-tap-highlight-color: transparent;
}

.v2-hero-visual {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 28px 52px rgba(0, 0, 0, 0.58));
  transform: translateZ(0);
  transition:
    transform 0.28s ease,
    filter 0.28s ease;
}

.v2-hero-visual-link:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 5px;
}
.v2-hero-dots {
  position: absolute;
  z-index: 6;
  left: 50%;
  bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transform: translateX(-50%);
}
.v2-hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: rgba(216, 173, 53, 0.18);
  cursor: pointer;
  transition:
    width 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}
.v2-hero-dot.is-active {
  width: 30px;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(216, 173, 53, 0.42);
}
.v2-hero-dot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

@media (hover: hover) {
  .v2-hero-visual-link:hover .v2-hero-visual {
    filter: drop-shadow(0 34px 62px rgba(216, 173, 53, 0.18));
    transform: translate3d(0, -5px, 0) scale(1.012);
  }

  .v2-discovery-cta:hover {
    transform: translateY(-2px);
    border-color: #fff;
    filter: brightness(1.06);
  }
}
.v2-discovery {
  padding: 18px 0 4px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.v2-discovery-cta {
  min-height: 76px;
  padding: 14px 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
  color: #fff;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease;
}
.v2-discovery-cta strong {
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.35px;
}
.v2-discovery-cta span {
  font-size: 12px;
  font-weight: 700;
}
.v2-discovery-cta--instagram {
  border-color: rgba(255, 91, 120, 0.5);
  background: linear-gradient(135deg, #d20b2e, #850019);
  box-shadow: 0 14px 30px rgba(185, 0, 32, 0.18);
}
.v2-discovery-cta--instagram span {
  color: #ffd9e0;
}
.v2-discovery-cta--about {
  border-color: var(--gold-light);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #111;
  box-shadow: 0 14px 30px rgba(216, 173, 53, 0.14);
}
.v2-discovery-cta--about span {
  color: #3c2b02;
}
.v2-discovery-cta:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
.v2-section-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.v2-section-heading h2 {
  font-family: "Bebas Neue";
  font-size: 30px;
  letter-spacing: 0.5px;
}
.v2-heading-row {
  justify-content: space-between;
}
.v2-heading-row > a {
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.v2-live-badge {
  background: #c70025;
  border-radius: 5px;
  padding: 4px 8px;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}
.v2-radio {
  margin-top: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  background: #050505;
}
.v2-radio-card {
  min-height: 112px;
  border: 1px solid rgba(216, 173, 53, 0.16);
  border-radius: 12px;
  background: linear-gradient(90deg, #070707, #101010);
  display: grid;
  grid-template-columns: 185px 190px 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 12px 18px;
}
.v2-radio-logo {
  height: 82px;
  width: 180px;
  object-fit: contain;
  border-radius: 7px;
}
.v2-now-playing {
  display: grid;
  gap: 3px;
}
.v2-now-playing small {
  color: var(--gold);
  font-weight: 900;
}
.v2-now-playing strong {
  font-size: 14px;
}
.v2-now-playing span {
  font-size: 12px;
  color: #aaa;
}
.v2-wave {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 3px;
  overflow: hidden;
}
.v2-wave i {
  display: block;
  width: 3px;
  height: 14px;
  border-radius: 3px;
  background: var(--gold);
  box-shadow: 0 0 7px rgba(216, 173, 53, 0.45);
}
.v2-radio-card.playing .v2-wave i {
  animation: wave 0.65s ease-in-out infinite alternate;
}
.v2-wave i:nth-child(3n) {
  animation-delay: 0.15s;
}
.v2-wave i:nth-child(4n) {
  animation-delay: 0.3s;
}
.v2-wave i:nth-child(5n) {
  animation-delay: 0.45s;
}
@keyframes wave {
  to {
    height: 40px;
  }
}
.v2-radio-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}
.v2-radio-controls button {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 17px;
  cursor: pointer;
}
.v2-radio-controls .v2-play {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d20b2e, #8f0018);
  color: #fff;
}
.v2-volume {
  display: flex;
  gap: 7px;
  align-items: center;
}
.v2-volume input {
  accent-color: var(--gold);
  width: 92px;
}
.v2-coupons,
.v2-partners {
  margin-top: 18px;
}
.v2-coupon-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 1fr);
  grid-template-rows: 1fr;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-color: var(--gold) #111;
}
.v2-coupon-card {
  scroll-snap-align: start;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #080808;
  overflow: hidden;
  min-width: 0;
}
.v2-coupon-image {
  height: 150px;
  position: relative;
  overflow: hidden;
}
.v2-coupon-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.v2-image-placeholder {
  height: 100%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, var(--gold), #111);
  font-family: "Bebas Neue";
  font-size: 25px;
}
.v2-coupon-tag {
  position: absolute;
  top: 9px;
  left: 9px;
  background: var(--gold-light);
  color: #111;
  border-radius: 6px;
  padding: 5px 8px;
  font-size: 8px;
  font-weight: 900;
  max-width: 70%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.v2-coupon-image button {
  position: absolute;
  top: 8px;
  right: 8px;
  border: 1px solid #fff;
  background: #080808aa;
  color: #fff;
  border-radius: 50%;
  width: 29px;
  height: 29px;
  font-size: 18px;
}
.v2-coupon-content {
  padding: 13px;
}
.v2-coupon-content h3 {
  font-size: 14px;
  text-transform: uppercase;
  min-height: 34px;
}
.v2-coupon-content p {
  font-size: 11px;
  color: #aaa;
  line-height: 1.4;
  min-height: 31px;
  margin: 4px 0;
}
.v2-price {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-top: 8px;
}
.v2-price del {
  font-size: 10px;
  color: #777;
}
.v2-price strong {
  font-family: "Bebas Neue";
  font-size: 26px;
  color: var(--green);
}
.v2-coupon-footer {
  border-top: 1px solid rgba(216, 173, 53, 0.15);
  margin-top: 10px;
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
  color: #aaa;
}
.v2-coupon-footer a {
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold-light);
  padding: 7px 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.v2-final-cta {
  margin-top: 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: linear-gradient(90deg, #14100a, #070707);
  min-height: 95px;
  padding: 16px 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
}
.v2-final-cta h2 {
  font-size: 23px;
}
.v2-final-cta p {
  color: #bbb;
  margin-top: 4px;
}
.v2-final-cta .v2-btn {
  min-width: 270px;
  display: flex;
  flex-direction: column;
}
.v2-footer {
  border-top: 1px solid rgba(216, 173, 53, 0.2);
  margin: 16px 48px 0;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #888;
  font-size: 11px;
}
.v2-footer img {
  height: 42px;
  width: 150px;
  object-fit: contain;
}
.v2-footer div {
  display: flex;
  gap: 18px;
}
@media (max-width: 1050px) {
  .v2-header {
    padding: 0 24px;
  }
  .v2-brand {
    width: 260px;
  }
  .v2-menu-button {
    display: grid;
    gap: 4px;
    background: transparent;
    border: 0;
    margin-left: auto;
  }
  .v2-menu-button span {
    width: 25px;
    height: 2px;
    background: var(--gold);
  }
  .v2-mobile-menu {
    position: fixed;
    z-index: 99;
    top: 86px;
    left: 12px;
    right: 12px;
    background: #080808;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px;
    display: none;
    gap: 12px;
  }
  .v2-mobile-menu.open {
    display: grid;
  }
  .v2-header-actions {
    display: none;
  }
  .v2-radio-card {
    grid-template-columns: 165px 1fr auto;
  }
  .v2-radio-logo {
    width: 160px;
    height: 76px;
  }
  .v2-wave {
    display: none;
  }
}
@media (max-width: 720px) {
  .v2-shell {
    width: 100%;
  }
  .v2-header {
    height: 76px;
    padding: 0 18px;
  }
  .v2-brand {
    width: 220px;
  }
  .v2-brand img {
    height: 54px;
  }
  .v2-mobile-menu {
    top: 76px;
  }
  main {
    padding: 0 16px 20px;
  }
  .v2-hero {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 545px;
    background: #000;
  }
  .v2-hero-copy {
    padding: 30px 4px 20px;
    width: 68%;
    z-index: 3;
  }
  .v2-eyebrow {
    display: none;
  }
  .v2-hero h1 {
    font-size: 42px;
  }
  .v2-hero-text {
    font-size: 12px;
    line-height: 1.45;
    margin: 14px 0;
  }
  .v2-btn-large {
    font-size: 12px;
    padding: 0 18px;
  }
  .v2-hero-copy > small {
    margin-left: 16px;
  }
  .v2-hero-art {
    position: absolute;
    right: -15px;
    top: 40px;
    width: 48%;
    min-height: 280px;
    padding: 18px 0;
    z-index: 1;
  }
  .v2-hero-visual-link {
    width: min(280px, 112%);
    max-width: none;
    margin: 0 auto;
  }
  .v2-discovery {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 14px;
  }
  .v2-discovery-cta {
    min-height: 64px;
    padding: 11px 16px;
  }
  .v2-discovery-cta strong {
    font-size: 14px;
  }
  .v2-discovery-cta span {
    font-size: 11px;
  }
  .v2-radio {
    padding: 10px;
  }
  .v2-section-heading h2 {
    font-size: 25px;
  }
  .v2-radio-card {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 10px;
    padding: 10px;
  }
  .v2-radio-logo {
    width: 112px;
    height: 72px;
  }
  .v2-now-playing strong {
    font-size: 12px;
  }
  .v2-now-playing span {
    font-size: 10px;
  }
  .v2-radio-controls {
    grid-column: 1/-1;
    justify-content: center;
  }
  .v2-volume {
    margin-left: auto;
  }
  .v2-coupon-rail {
    grid-auto-columns: calc(72vw);
  }
  .v2-coupon-image {
    height: 135px;
  }
  .v2-final-cta {
    grid-template-columns: 1fr;
    padding: 14px;
    gap: 10px;
    text-align: center;
  }
  .v2-final-cta h2 {
    font-size: 17px;
  }
  .v2-final-cta p {
    font-size: 10px;
  }
  .v2-final-cta .v2-btn {
    grid-column: 1/-1;
    width: 100%;
    min-width: 0;
  }
  .v2-footer {
    margin: 10px 16px 0;
    display: grid;
    gap: 12px;
    justify-items: center;
    text-align: center;
  }
  .v2-footer div {
    justify-content: center;
  }
}

/* CARROSSEL INFINITO DE EMPRESAS PARCEIRAS — V5 */
.v2-partners {
  position: relative;
  overflow: hidden;
}
.v2-partner-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(216, 173, 53, 0.22);
  border-radius: 12px;
  background: #050505;
  padding: 12px 0;
}
.v2-partner-marquee::before,
.v2-partner-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 72px;
  z-index: 3;
  pointer-events: none;
}
.v2-partner-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #050505 15%, transparent);
}
.v2-partner-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #050505 15%, transparent);
}
.v2-partner-marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: v2PartnerInfinite 48s linear infinite;
  will-change: transform;
}
.v2-partner-marquee-group {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 14px;
  flex: 0 0 auto;
}
.v2-partner-card {
  width: 180px;
  min-width: 180px;
  height: 92px;
  flex: 0 0 180px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9px;
  background: #070707;
  display: grid;
  place-items: center;
  padding: 10px;
  overflow: hidden;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}
.v2-partner-card:hover {
  transform: translateY(-2px);
  border-color: rgba(216, 173, 53, 0.55);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.38);
}
.v2-partner-card img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 72px;
  object-fit: contain;
}
.v2-partner-card strong {
  text-align: center;
  font-size: 12px;
}
.v2-partner-marquee:hover .v2-partner-marquee-track {
  animation-play-state: paused;
}
@keyframes v2PartnerInfinite {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
@media (max-width: 1050px) {
  .v2-partner-marquee-track {
    animation-duration: 40s;
  }
  .v2-partner-card {
    width: 145px;
    min-width: 145px;
    flex-basis: 145px;
    height: 82px;
  }
  .v2-partner-card img {
    max-height: 64px;
  }
}
@media (max-width: 720px) {
  .v2-partner-marquee {
    padding: 9px 0;
  }
  .v2-partner-marquee::before,
  .v2-partner-marquee::after {
    width: 28px;
  }
  .v2-partner-marquee-track {
    animation-duration: 32s;
  }
  .v2-partner-marquee-group {
    gap: 9px;
    padding-right: 9px;
  }
  .v2-partner-card {
    width: 120px;
    min-width: 120px;
    flex-basis: 120px;
    height: 70px;
    padding: 7px;
  }
  .v2-partner-card img {
    max-height: 54px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .v2-hero-slide,
  .v2-hero-visual,
  .v2-hero-dot {
    transition: none;
  }
  .v2-partner-marquee-track {
    animation-duration: 90s;
  }
}

/* AJUSTES MOBILE — V8 */
@media (max-width: 720px) {
  /* HERO: remove o vazio preto exagerado */
  .v2-hero {
    min-height: 0 !important;
    height: auto !important;
    padding-bottom: 34px !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    align-items: start !important;
    overflow: hidden !important;
    background: #000 !important;
  }

  .v2-hero-slide {
    grid-template-columns: minmax(0, 1fr) 42% !important;
    align-items: start !important;
  }

  .v2-hero-copy {
    position: relative !important;
    width: auto !important;
    padding: 28px 0 28px 4px !important;
    min-width: 0 !important;
  }

  .v2-hero h1 {
    font-size: clamp(40px, 11vw, 56px) !important;
    line-height: 0.92 !important;
    max-width: 100% !important;
  }

  .v2-hero-copy--company h1 {
    font-size: clamp(36px, 10vw, 48px) !important;
  }

  .v2-hero-text {
    max-width: 100% !important;
    margin: 16px 0 18px !important;
    font-size: 12px !important;
    line-height: 1.5 !important;
  }

  .v2-hero-copy .v2-btn-large {
    width: 100% !important;
    min-height: 52px !important;
    padding: 0 14px !important;
    white-space: nowrap !important;
  }

  .v2-hero-copy > small {
    margin: 8px 0 0 !important;
    text-align: center !important;
    font-size: 11px !important;
  }

  .v2-hero-art {
    position: relative !important;
    right: auto !important;
    top: auto !important;
    width: 100% !important;
    min-height: 280px !important;
    padding: 18px 0 !important;
    align-self: start !important;
  }

  .v2-hero-visual-link {
    width: min(280px, 112%) !important;
    max-width: none !important;
    margin: 0 auto !important;
  }

  .v2-hero-dots {
    bottom: 9px;
  }

  .v2-discovery {
    margin-top: 0 !important;
    padding-top: 14px !important;
  }

  /* FOOTER: tudo centralizado */
  .v2-footer {
    width: 100% !important;
    margin: 18px 0 0 !important;
    padding: 30px 16px 34px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 16px !important;
    text-align: center !important;
  }

  .v2-footer img {
    width: 130px !important;
    height: 64px !important;
    margin: 0 auto !important;
    object-fit: contain !important;
  }

  .v2-footer p {
    width: 100% !important;
    margin: 0 !important;
    text-align: center !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
  }

  .v2-footer div {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 22px !important;
    text-align: center !important;
  }

  .v2-footer div a {
    display: inline-flex !important;
    justify-content: center !important;
    text-align: center !important;
    font-size: 12px !important;
  }
}

@media (max-width: 430px) {
  .v2-hero-slide {
    grid-template-columns: minmax(0, 1fr) 39% !important;
  }

  .v2-hero h1 {
    font-size: 40px !important;
  }

  .v2-hero-art {
    transform: translateX(4px) !important;
  }

  .v2-hero-visual-link {
    width: 112% !important;
  }
}

/* CONTROLES REALISTAS DA RÁDIO — V9 */
.v2-radio-controls {
  gap: 14px;
}

.v2-radio-controls button {
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

.v2-radio-icon-button {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border: 1px solid rgba(216, 173, 53, 0.28) !important;
  border-radius: 50%;
  background: linear-gradient(145deg, #171717, #080808) !important;
  color: #f1f1f1 !important;
  display: grid;
  place-items: center;
  box-shadow:
    0 7px 16px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.v2-radio-icon-button svg {
  width: 19px;
  height: 19px;
}

.v2-radio-icon-button:active {
  transform: scale(0.92);
}

.v2-radio-controls .v2-play {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  background: linear-gradient(135deg, #d20b2e, #8f0018);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow:
    0 10px 24px rgba(185, 0, 32, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transition:
    transform 0.18s ease,
    filter 0.18s ease;
}

.v2-radio-controls .v2-play:active {
  transform: scale(0.93);
}

.v2-radio-controls .v2-play svg {
  width: 23px;
  height: 23px;
}

.v2-icon-pause {
  display: none;
}

.v2-play.is-playing .v2-icon-play {
  display: none;
}

.v2-play.is-playing .v2-icon-pause {
  display: block;
}

.v2-play.is-loading {
  animation: v2RadioPulse 0.85s ease-in-out infinite alternate;
}

.v2-radio-card.loading .v2-wave i {
  animation: wave 0.95s ease-in-out infinite alternate;
  opacity: 0.7;
}

.v2-radio-connection {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 118px;
  color: #aaa;
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.v2-radio-connection i {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 50%;
  background: #777;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.04);
}

.v2-radio-card.loading .v2-radio-connection i {
  background: var(--gold);
  box-shadow: 0 0 12px rgba(216, 173, 53, 0.75);
}

.v2-radio-card.playing .v2-radio-connection {
  color: #d7ffb6;
}

.v2-radio-card.playing .v2-radio-connection i {
  background: var(--green);
  box-shadow: 0 0 14px rgba(140, 255, 41, 0.75);
}

@keyframes v2RadioPulse {
  from {
    transform: scale(0.94);
    filter: brightness(0.82);
  }

  to {
    transform: scale(1.06);
    filter: brightness(1.18);
  }
}

.v2-volume {
  min-width: 132px;
  margin-left: 8px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: #090909;
}

.v2-volume-icon {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  color: #d8ad35;
}

.v2-volume input {
  height: 5px;
  border-radius: 999px;
  cursor: pointer;
}

@media (max-width: 720px) {
  .v2-radio-controls {
    width: 100%;
    grid-column: 1/-1;
    justify-content: flex-start !important;
    gap: 12px;
    padding-top: 6px;
  }

  .v2-radio-icon-button {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .v2-radio-controls .v2-play {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }

  .v2-radio-connection {
    min-width: 102px;
    font-size: 9px;
  }

  .v2-volume {
    flex: 1;
    min-width: 0;
    margin-left: 4px !important;
  }

  .v2-volume input {
    width: 100% !important;
    min-width: 70px;
  }
}

@media (max-width: 430px) {
  .v2-radio-controls {
    gap: 9px;
  }

  .v2-radio-icon-button {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .v2-radio-controls .v2-play {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }

  .v2-radio-connection {
    min-width: 0;
    max-width: 78px;
    white-space: normal;
    line-height: 1.15;
  }

  .v2-volume {
    padding: 6px 8px;
  }

  .v2-volume-icon {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }
}

/* HEADER MOBILE — ENTRAR E CADASTRE-SE — V10 */
.v2-mobile-actions {
  display: none;
}

@media (max-width: 1050px) {
  .v2-menu-button,
  .v2-mobile-menu {
    display: none !important;
  }
  .v2-mobile-actions {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin-left: auto;
    flex: 0 0 auto;
  }
  .v2-mobile-login,
  .v2-mobile-register {
    min-height: 36px;
    padding: 0 13px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.3px;
  }
  .v2-mobile-login {
    color: #fff;
    border: 1px solid var(--gold);
    background: #060606;
  }
  .v2-mobile-login.v2-login-button {
    color: var(--red);
    border-color: #fff;
    background: #fff;
    box-shadow: 0 8px 18px rgba(255, 255, 255, 0.12);
  }
  .v2-mobile-register {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(135deg, #d20b2e, #8f0018);
    box-shadow: 0 8px 18px rgba(185, 0, 32, 0.22);
  }
}

@media (max-width: 720px) {
  .v2-header {
    padding: 0 12px !important;
    gap: 8px !important;
  }
  .v2-brand {
    width: auto !important;
    min-width: 0 !important;
    flex: 1 1 auto !important;
  }
  .v2-brand img {
    width: auto !important;
    max-width: 215px !important;
    height: 52px !important;
  }
  .v2-mobile-actions {
    gap: 5px;
  }
  .v2-mobile-login,
  .v2-mobile-register {
    min-height: 33px;
    padding: 0 9px;
    border-radius: 7px;
    font-size: 8px;
  }
}

@media (max-width: 430px) {
  .v2-brand img {
    max-width: 178px !important;
    height: 46px !important;
  }
  .v2-mobile-login,
  .v2-mobile-register {
    min-height: 31px;
    padding: 0 7px;
    font-size: 7px;
  }
}

@media (max-width: 370px) {
  .v2-brand img {
    max-width: 155px !important;
    height: 44px !important;
  }
  .v2-mobile-login,
  .v2-mobile-register {
    padding: 0 5px;
    font-size: 6.5px;
  }
}
