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

body {
  font-family: "Inter", sans-serif;
  background: #1f232b;
  color: #fff;
  margin: 0;
  padding: 0;
}

html, body {
  overflow-x: hidden;
}

/* NAVBAR */
.navbar {
  position: absolute;
  top: 0;
  width: 100%;
  height: 20%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 80px 300px;
  background: transparent;

  z-index: 1000;
}

.menu-btn {
  background: none;
  border: none;
  font-size: 36px;
  color: #ffffff;
  cursor: pointer;
  transition: 0.5s;
}

.menu-btn:hover {
  opacity: 0.8;
  transform: scale(1.2);
}

.logo img {
  height: 120px;
  margin: 30px;
}

.social-icons {
  display: flex;
  align-items: center;
  column-gap: 28px;
}

.social-icons a i {
  font-size: 36px;
  text-decoration: none;
  color: #fff;

  cursor: pointer;
  transition: 0.5s;
}

.social-icons a i:hover {
  opacity: 0.8;
  transform: scale(1.2);
}

@media (max-width: 1024px) {
  .navbar {
    padding: 30px 100px;
    height: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .menu-btn {
    font-size: 24px;
  }

  .logo img {
    height: 80px;
    margin: 10px;
  }

  .social-icons {
    column-gap: 8px;
  }

  .social-icons a i {
    font-size: 24px;
  }
}

/* MENU LATERAL */
.side-menu {
  position: fixed;
  top: 0;
  left: -400px;

  width: 400px;
  height: 100vh;

  background: #000000;
  padding: 30px;

  transition: 0.3s ease;
  z-index: 1100;
}

.side-menu.active {
  left: 0;
}

.side-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.side-menu-header img {
  height: 120px;
}

.close-btn {
  background: none;
  border: none;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
  transition: 0.5s;
}

.close-btn:hover {
  opacity: 0.8;
  transform: scale(1.2);
}

.side-menu-nav a {
  display: block;
  margin-bottom: 50px;

  font-family: 'Special Gothic Expanded One', sans-serif;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 1px;

  color: #fff;
  text-decoration: none;

  transition: 0.5s;
}

.side-menu-nav a:hover {
  opacity: 0.8;
  transform: scale(1.03);
}

@media (max-width: 1024px) {
  .side-menu {
    width: 340px;
  }
  
  .side-menu-header img {
    height: 100px;
  }
}
  
/* OVERLAY */
.overlay {
  position: fixed;
  inset: 0;

  background: rgba(0, 0, 0, 0.6);

  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;

  z-index: 1050;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* SLIDE */
.slider {
  margin: auto 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slides {
  width: 400%;
  height: 400px;
  display: flex;
}

.slides input {
  display: none;
}

.slide {
  width: 25%;
  position: relative;
  transition: 1s;
}

.slide img {
  position: relative;
  width: 100%;
  transition: 2s;
}

.manual-navigation {
  position: absolute;
  width: 100%;
  height: 80%;
  margin-top: -0.5%;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
}

.manual-btn {
  border: 2px solid #fff;
  padding: 5px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.5s;
}

.manual-btn:not(:last-child) {
  margin-right: 40px;
}

.manual-btn:hover {
  background-color: #fff;
}

#radio1:checked ~ .first {
  margin-left: 0;
}

#radio2:checked ~ .first {
  margin-left: -25%;
}

.navigation-auto div {
  border: 2px solid #20a6ff;
  padding: 5px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.5s;
}

.navigation-auto {
  position: absolute;
  width: 100%;
  height: 80%;
  margin-top: 392px;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
}

.navigation-auto div:not(:last-child) {
  margin-right: 40px;
}

#radio1:checked ~ .navigation-auto .auto-btn1 {
  background-color: #FFF;
}

#radio2:checked ~ .navigation-auto .auto-btn2 {
  background-color: #FFF;
}

@media (max-width: 768px) {
  .slider {
    height: 60vh;
  }

  .slides {
    height: 100%;
  }

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

.bio-section {
  padding: 120px 0 60px;
  background: #1f232b;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.bio-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  gap: 10px;
}

.bio-icon {
  font-size: 26px;
  color: #e10600;
}

.bio-title {
  font-family: 'Special Gothic Expanded One', sans-serif;
  font-size: 72px;
  font-weight: 900;
  letter-spacing: 4px;
  color: #ffffff;
}

.bio-wrapper {
  display: flex;
  align-items:flex-start;
  justify-content: center;
  flex-direction: row;

  padding: 60px 60px 0;
  gap: 40px;
}

.bio-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 300px;
  padding: 40px;
  background-color: #2b313a;
  text-align: justify;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.389);
  position: relative;
  border-radius: 30px;
}

.bio-card-content {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.bio-card-content::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(transparent, #2b313a);
}

.bio-card-content h3 {
  font-family: 'Special Gothic Expanded One', sans-serif;
  font-size: 22px;
  color: #ffffff;

  text-align: center;

  margin-bottom: 30px;
  position: relative;
}

.bio-card-content h3::before {
  content: '';
  position: absolute;
  height: 2px;
  width: 40px;
  bottom: 4px;
  border-radius: 100px;
}

.bio-card-content p {
  text-align: left;
}

.read-btn {
  border: none;
  padding: 10px;
  margin-top: 15px;
  background-color: #e10600;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  border-radius: 10px;
  font-size: 16px;
  transition: 0.5s;
}

.read-btn:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

.bio-card.active .bio-card-content {
  height: auto;
}

.bio-card.active .bio-card-content p {
  margin-bottom: 20px;
}

.bio-card.active .bio-card-content::before {
  visibility: hidden;
}

@media (max-width: 1024px) {
  .bio-title{
    font-size: 36px;
  }

  .bio-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;

    height: 20%;
  }

  .bio-card {
    padding: 30px;

    width: 120%;
    height: 100%;
    border-radius: 30px;
  }
}

/* AGENDA */
.agenda-section {
  padding: 120px 0;

  background: #1f232b;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
}

.agenda-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.agenda-icon i {
  font-size: 26px;
  color: #e10600;
}

.agenda-title {
  font-family: 'Special Gothic Expanded One', sans-serif;
  font-size: 72px;
  font-weight: 900;
  letter-spacing: 4px;
  color: #ffffff;
  margin-bottom: 50px;
}

.agenda-empty {
  background-color: #2b313a;
  width: 110%;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.389);
}

.agenda-card {
  background-color: #1f232b;
  border-radius: 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}

.agenda-content {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 140px;
  gap: 30px;
}

.agenda-date {
  background-color: #15171d;
  border-radius: 20px 0 0 20px;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  padding: 40px;
  gap: 5px;
}

.date-month, .date-name-day {
  font-size: 14px;
  font-weight: 600;
}

.date-day {
  font-family: 'Special Gothic Expanded One', sans-serif;
  font-size: 28px;
}

.agenda-content-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.agenda-content-image img {
  width: 86px;
  height: 86px;
  border-radius: 10px;
}

.agenda-content-title {
  display: flex;
  align-items: center;
  justify-content: center;

  font-family: 'Inter', sans-serif;
  font-size: 34px;
  white-space: nowrap;
}

.agenda-content-btn {
  border: none;
  padding: 10px 40px;
  border-radius: 10px;
  background-color: #e10600;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  white-space: nowrap;
  margin: 30px;
  text-decoration: none;
  transition: 0.5s;
}

.agenda-content-btn:hover {
  font-weight: 600;
  opacity: 0.8;
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .agenda-title {
    font-size: 52px;
  }

  .agenda-empty {
    background-color: #2b313a;
    width: 105%;
    padding: 20px;
  }
  
  .agenda-card {
    background-color: #1f232b;
    border-radius: 20px;
  
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    height: 200px;
  }
  
  .agenda-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 300px;
    gap: 30px;
  }
  
  .agenda-date {
    background-color: #15171d;
    border-radius: 20px 20px 0 0;
  
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    text-align: justify;
  
    padding: 10px;
    gap: 5px;
  }
  
  .date-month, .date-name-day {
    font-size: 14px;
    font-weight: 600;
  }
  
  .date-day {
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: 28px;
  }
  
  .agenda-content-image {
    display: none;
  }
  
  .agenda-content-title {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: justify;
  
    font-family: 'Inter', sans-serif;
    font-size: 24px;
  }
}

.main-page {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.watch-section {
  background: #1f232b;

  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;

  padding-left: 150px;
  padding-bottom: 100px;
  gap: 0;
}

.watch-media {
  position: relative;
  width: 100%;
  max-width: calc(100% - 20px); /* respeita seu padding lateral */
  aspect-ratio: 16 / 9;
  overflow: hidden;
  z-index: 10;
}

.watch-thumbnail,
.watch-video {
  position: absolute;
  inset: 0;
}

.watch-thumbnail {
  z-index: 12;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.watch-media.playing .watch-thumbnail {
  display: none;
  opacity: 1;
}

.watch-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.watch-video iframe {
  width: 100%;
  height: 100%;
}

.watch-info-wrapper {
  width: 100%;
  display: flex;
  justify-content: flex-end;

  margin: 0;
  gap: 0;
}

.watch-info {
  background-color: #e10600;

  width: 90%;
  margin-left: 0;
  margin-top: -120px;
  z-index: 8;

  position: relative;

  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;

  padding: 210px 80px 60px 80px;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.389);
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
  gap: 20px;
}

.watch-info-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.watch-title {
  color: #fff;
  font-size: 70px;
  letter-spacing: 8px;
  font-weight: 800;
  font-family: 'Special Gothic Expanded One', sans-serif;
}

.watch-btn {
  color: #fff;
  border: 2px solid #fff;
  padding: 10px 26px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 200;
  font-size: 15px;

  margin-top: 14px;
  transition: 0.5s;
}

.watch-btn:hover {
  opacity: 0.8;
  transform: scale(1.05);
  background-color: #fff;
  color: #e10600;
  font-weight: 600;
}

.watch-music-name {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.watch-music-artists {
  color: #fff;
  font-size: 14px;
  opacity: 0.9;
}

@media (max-width: 1024px) {
  .watch-section {
    padding-left: 0;
    padding-bottom: 60px;
  }

  .watch-info {
    width: 96%;
    margin-top: -60px;
    padding: 120px 24px 30px;
    border-radius: 20px 0 0 20px;
    gap: 10px;
  }

  .watch-info-header {
    gap: 10px;
  }

  .watch-title {
    font-size: 34px;
    letter-spacing: 2px;
  }

  .watch-music-name {
    font-size: 16px;
  }

  .watch-music-artists {
    font-size: 12px;
  }

  .watch-btn {
    color: #fff;
    border: 2px solid #fff;
    padding: 4px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 400;
    font-size: 12px;
  
    margin-top: 6px;
  }
}

.listen-section {
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;

  margin-top: -238px;
  padding: 0;
}

.listen-background {
  position: absolute;
  z-index: 0;
}

.listen-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listen-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.3);
}

.spotify-wrapper {
  position: relative;
  z-index: 6;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  
  padding: 200px 0;
}

.listen-title {
  font-family: 'Special Gothic Expanded One', sans-serif;
  font-size: 50px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;

  margin-left: 850px;

  z-index: 7;
}

.spotify-card {
  width: 100%;
  max-width: 1150px;
}

@media (max-width: 1024px) {

  .listen-section {
    margin-top: -180px;
  }

  .listen-background {
    position: absolute;
    z-index: 0;

    width: 100%;
    height: 100%;
  }

  .listen-title {
    margin-left: 0;
    text-align: center;
  }

  .spotify-wrapper {
    padding: 180px 0px;
  }

  .spotify-card {
    min-width: 320px;
    width: 80%;
  }
}

.music-section {
  background-color: #1f232b;
  z-index: 3;
}

.music-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 4;
}

.music-title {
  font-family: 'Special Gothic Expanded One', sans-serif;
  font-size: 48px;
  font-weight: 200;
  letter-spacing: 4px;
  margin-top: 90px;
}

.card-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-container {
  padding-block: 5rem;
}

.card-content {
  margin-inline: 2.75rem;
  border-radius: 1.25rem;
  overflow: hidden;

  width: 100%;
  max-width: 1200px;
  padding-bottom: 80px;
}

.card-article {
  display: flex;
  flex-direction: column;
  background: #2a2f36;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.389);
}

.card-image {
  position: relative;
  margin-bottom: -.75rem;
}

.card-image img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto -10px;
  position: relative;
  border-radius: 1rem 1rem;
  z-index: 4;
}

.card-data {
  background-color: #2a2f36;
  padding: 1.5rem 2rem;
  
  text-align: center;
  position: relative;
  z-index: 5;
}

.card-name {
  font-size: 14px;
  margin-bottom: .75rem;
}

.card-btn {
  display: inline-block;
  padding: .75rem 1.5rem;
  border: 2px solid #fff;
  border-radius: 50px;

  color: #fff;
  text-decoration: none;
  transition: 0.5s;
}

.card-btn:hover {
  opacity: 0.8;
  transform: scale(1.05);
  background-color: #fff;
  color: #2b313a;
  font-weight: 800;
}

.swiper {
  width: 100%;
}

.swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: '';
}

.swiper-button-prev,
.swiper-button-next {
  width: initial;
  height: initial;
  font-size: 3rem;
  color: #fff;
  display: block;
}

.swiper-button-prev {
  left: -1rem;
}

.swiper-button-next {
  right: -1rem;
}

.swiper-pagination-bullet {
  background-color: hsl(212, 30%, 32%);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: #fff;
}

@media (max-width: 768px) {
  .card-content {
    max-width: 320px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }

  .music-title {
    font-size: 40px;
  }
}

.music-platforms {
  margin-bottom: 150px;
  width: 90%;
  max-width: 900px;
  background: #ff0000;
  border-radius: 22px;
  padding: 38px 40px;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.389);

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

/* Cada plataforma */
.platform {
  display: flex;
  align-items: center;
  gap: 12px;

  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 20px;

  transition: 0.5s;
}

.platform i {
  font-size: 30px;
}

.platform:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .music-platforms {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 80%;
    padding: 28px 24px;
  }

  .platform {
    text-align: center;
    justify-content: center;
  }
}


.social-section {
  z-index: 1;
  background: #2b313a;
  padding: 80px 8%;
  position: relative;
  margin-bottom: -200px;
}

.social-header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;

  gap: 30px;
}

.social-icons-header {
  margin-bottom: 40px;

  display: flex;
  align-items: center;
  column-gap: 28px;
}

.social-icons-header a i {
  font-size: 30px;
  cursor: pointer;

  background-color: white;
  color: #000000;
  padding: 10px;
  border-radius: 10px;
  transition: 0.5s;
}

.social-icons-header a i:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

.social-header h2 {
  color: white;
  font-family: 'Special Gothic Expanded One', sans-serif;
  font-size: 74px;
  letter-spacing: 8px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .social-header {
    flex-direction: column;
    gap: 10px;
  }

  .social-header h2 {
    font-size: 68px;
    margin-bottom: 20px;
  }

  .social-icons-header {
    margin-bottom: 100px;
  }

  .social-icons-header i {
    font-size: 30px;
  }
}


.booking-section {
  background-color: #1f232b;
  width: 100%;
  padding: 0;
  z-index: 2;
  padding-top: 25px;
}

.booking-container {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  min-height: 100vh;
  background-color: #1f232b;
}

.booking-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-content {
  background-color: #1f232b;
  padding: 140px 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 50px;
}

.booking-block h3 {
  font-family: 'Special Gothic Expanded One', sans-serif;
  font-size: 62px;
  letter-spacing: 4px;
  margin-bottom: 50px;
  color: #fff;
}

.booking-block p {
  font-size: 18px;
  color: #cfd3da;
}

.booking-block span {
  font-size: 14px;
  opacity: 0.7;
  margin-left: 10px;
}

.booking-btn {
  margin-top: 160px;
  display: inline-block;
  padding: 16px 40px;
  border: 2px solid white;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  width: fit-content;
  transition: 0.3s;
}

.booking-btn:hover {
  background: white;
  color: #1e232b;
  font-weight: 800;
}

.booking-btn-description {
  margin: 10px 32px;
  font-size: 13px;
  color: #aaa;
}

.booking-footer {
  margin-top: auto;
  font-size: 13px;
  color: #aaa;
}

.booking-footer .dev {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.booking-footer .dev a {
  border: 1px solid white;
  padding: 5px 12px;
  border-radius: 50%;
  text-decoration: none;
  color: #cfd3da;
  transition: 0.5s;
}

.booking-footer .dev a:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .booking-container {
    grid-template-columns: 1fr;
  }

  .booking-img {
    height: 300px;
  }

  .booking-content {
    padding: 60px 30px;
  }

  .booking-block h3 {
    font-size: 42px;
    margin-bottom: 10px;
  }

  .booking-btn {
    margin-top: 60px;
  }
}

section {
  scroll-margin-top: 120px;
}
