@charset "UTF-8";
/*Font Imports*/
@import url("https://fonts.googleapis.com/css2?family=Smooch+Sans:wght@100..900&display=swap");
/*CSS Reset*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Smooch Sans", serif;
  font-weight: 500;
  font-size: 22px;
}

h1,
h2,
h3 {
  font-weight: 700;
  font-size: 32px;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 80px;
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
pre,
blockquote,
figure,
hr,
fieldset,
legend {
  margin: 0;
}

ul,
ol {
  list-style: none;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

body {
  font-family: sans-serif;
  background-color: #fff;
  color: #000;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
a {
  background-color: transparent;
  border: none;
  cursor: pointer;
}

button,
[role=button] {
  -webkit-appearance: none;
  -moz-appearance: none;
}

textarea {
  resize: vertical;
}

input:focus,
button:focus,
textarea:focus,
select:focus {
  outline: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

input[type=search] {
  -webkit-appearance: none;
  outline-offset: -2px;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

figure {
  margin: 0;
}

:root {
  --menufont: "Candal", sans-serif;
  --anim_time: 1s;
  /* Sections BG Colors */
  --section1_bg: #2F2C2C;
  --section2_bg: #C0392B;
  --section3_bg: #FFFB00;
  --section4_bg: #111111;
}

/* Header - Menu Superior */
@keyframes topBar_open {
  0% {
    transform: translateY(0px) rotate(0deg);
    width: 40px;
  }
  10% {
    transform: translateY(-6px) rotate(0deg);
    width: 40px;
  }
  50% {
    transform: translateY(20px) rotate(45deg);
    width: 56px;
  }
  75% {
    transform: translateY(10px) rotate(45deg);
    width: 56px;
  }
  100% {
    transform: translateY(14px) rotate(45deg);
    width: 56px;
  }
}
@keyframes bottomBar_open {
  0% {
    transform: translateY(0px) rotate(0deg);
    width: 40px;
  }
  10% {
    transform: translateY(-6px) rotate(0deg);
    width: 40px;
  }
  60% {
    transform: translateY(0px) rotate(-45deg);
    width: 56px;
  }
  75% {
    transform: translateY(-8px) rotate(-45deg);
    width: 56px;
  }
  100% {
    transform: translateY(-6px) rotate(-45deg);
    width: 56px;
  }
}
@keyframes menuLabel_open {
  0% {
    transform: translateY(0px);
    opacity: 1;
  }
  25% {
    transform: translateY(-14px);
  }
  45% {
    transform: translateY(35px);
    opacity: 1;
  }
  48% {
    transform: translateY(40px);
    opacity: 0;
  }
  100% {
    transform: translateY(24px);
    opacity: 0;
  }
}
@keyframes topBar_close {
  0% {
    transform: translateY(14px) rotate(45deg);
    width: 56px;
  }
  35% {
    transform: translateY(-6px) rotate(-4deg);
    width: 40px;
  }
  53% {
    transform: translateY(8px) rotate(3deg);
    width: 40px;
  }
  70% {
    transform: translateY(-4px) rotate(0deg);
    width: 40px;
  }
  100% {
    transform: translateY(-2px) rotate(0deg);
    width: 40px;
  }
}
@keyframes bottomBar_close {
  0% {
    transform: translateY(-6px) rotate(-45deg);
    width: 56px;
  }
  35% {
    transform: translateY(-14px) rotate(6deg);
    width: 40px;
  }
  53% {
    transform: translateY(0px) rotate(-3deg);
    width: 40px;
  }
  68% {
    transform: translateY(-5px) rotate(0deg);
    width: 40px;
  }
  100% {
    transform: translateY(0px) rotate(0deg);
    width: 40px;
  }
}
@keyframes menuLabel_close {
  0% {
    transform: translateY(24px);
    opacity: 0;
  }
  5% {
    transform: translateY(20px);
    opacity: 1;
  }
  25% {
    transform: translateY(-24px);
    opacity: 1;
  }
  37% {
    transform: translateY(-18px);
    opacity: 1;
  }
  45% {
    transform: translateY(-18px);
    opacity: 1;
  }
  58% {
    transform: translateY(6px) rotate(-10deg);
    opacity: 1;
  }
  83% {
    transform: translateY(-4px) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
#menuToggle {
  display: block;
  position: relative;
  text-align: center;
  width: 40px;
  height: 42px;
  margin: 20px;
}
#menuToggle:before, #menuToggle:after {
  content: "";
  width: 100%;
  height: 8px;
  background-color: #ffcc00;
  display: block;
  position: absolute;
  border-radius: 10px;
}
#menuToggle:before {
  transform-origin: left center;
}
#menuToggle:after {
  right: 0;
  top: 18px;
  transform-origin: right center;
}
#menuToggle .text {
  color: #ffcc00;
  font-family: var(--menufont);
  display: block;
  position: absolute;
  bottom: -6px;
  font-size: 11px;
  letter-spacing: 1px;
  font-weight: 800;
}
#menuToggle:hover {
  cursor: pointer;
}
#menuToggle.open:before {
  animation: topBar_open var(--anim_time) ease-in-out;
  animation-fill-mode: forwards;
}
#menuToggle.open:after {
  animation: bottomBar_open var(--anim_time) ease-in-out;
  animation-fill-mode: forwards;
}
#menuToggle.open .text {
  animation: menuLabel_open var(--anim_time) ease-in;
  animation-fill-mode: forwards;
}
#menuToggle.close {
  z-index: 1000;
  position: relative;
  margin: 20px;
}
#menuToggle.close:before {
  animation: topBar_close var(--anim_time) ease-in-out;
  animation-fill-mode: forwards;
}
#menuToggle.close:after {
  animation: bottomBar_close var(--anim_time) ease-in-out;
  animation-fill-mode: forwards;
}
#menuToggle.close .text {
  animation: menuLabel_close var(--anim_time) ease-in;
  animation-fill-mode: forwards;
}

.container {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1400px;
  z-index: 1000;
  padding: 0 20px;
  box-sizing: border-box;
}

.container-content {
  position: relative;
  width: 100%;
  max-width: 1400px;
  padding: 0 1rem;
  margin: 0 auto;
}

:focus-visible {
  outline: 2px dashed #333;
  outline-offset: 2px;
}

/* Full Width Site */
.full-width-site {
  background-color: #fff;
}
.full-width-site .header {
  width: 100%;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: transparent;
}
.full-width-site .header.sticky {
  position: sticky;
  top: 0;
  z-index: 999;
}
.full-width-site .header .primary-menu {
  display: flex;
  position: relative;
  align-items: center;
  width: 100%;
  justify-content: flex-end;
}
.full-width-site .header .primary-menu .primary-menu-navbox {
  display: flex;
  margin-left: 50px;
  align-items: center;
}
.full-width-site .header .primary-menu .primary-menu-navbox .nav-header {
  display: flex;
  gap: 16px;
}
.full-width-site .header .primary-menu .primary-menu-navbox .nav-header a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 22px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}
.full-width-site .header .primary-menu .primary-menu-navbox .nav-header a:hover {
  color: rgb(255, 255, 255);
}
.full-width-site .header .primary-menu .primary-menu-navbox .nav-header a:hover::after {
  width: 100%;
}
.full-width-site .header .primary-menu .primary-menu-navbox .nav-header a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background-color: rgb(255, 255, 255);
  transition: width 0.3s ease;
}
.full-width-site .header .primary-menu .socials ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 18px;
  margin-left: 100px;
}
.full-width-site .header .primary-menu .socials ul a img {
  width: 25px;
}

/* Mantém a logo fixa no canto superior esquerdo */
.header-logo {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1001;
}

.header-logo a {
  display: flex;
  align-items: center;
}

.header-logo img {
  max-width: 140px;
  height: auto;
}

@keyframes swing {
  0%, 100% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(10deg);
  }
}
/* Menu */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 888;
}
.menu-overlay.active {
  opacity: 0.9;
  visibility: visible;
}
.menu-overlay .menu-content {
  display: flex;
  width: 80%;
  max-width: 1000px;
  height: 70%;
  background: black;
  border-radius: 10px;
  overflow: hidden;
}
.menu-overlay .menu-content .menu-left,
.menu-overlay .menu-content .menu-right {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.menu-overlay .menu-content .menu-left {
  background: rgba(255, 255, 255, 0.1);
}
.menu-overlay .menu-content .menu-left nav ul {
  flex-direction: column;
  list-style: none;
  padding: 0;
  text-align: center;
}
.menu-overlay .menu-content .menu-left nav ul li {
  margin: 15px 0;
}
.menu-overlay .menu-content .menu-left nav ul li a {
  color: white;
  font-size: 22px;
  text-decoration: none;
  transition: 0.3s;
}
.menu-overlay .menu-content .menu-left nav ul li a:hover {
  color: #f39c12;
}
.menu-overlay .menu-content .menu-right {
  background: rgba(255, 255, 255, 0.2);
}
.menu-overlay .menu-content .menu-right .social-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  padding: 0;
}
.menu-overlay .menu-content .menu-right .social-links li {
  margin: 15px 0;
}
.menu-overlay .menu-content .menu-right .social-links li img {
  width: 40px;
  height: auto;
  transition: 0.3s;
}
.menu-overlay .menu-content .menu-right .social-links li img:hover {
  transform: scale(1.1);
  filter: brightness(0) saturate(100%) invert(67%) sepia(40%) saturate(1231%) hue-rotate(330deg) brightness(95%) contrast(89%);
}

/* Homepage CSS */
.fullwidth {
  width: 100%;
  position: relative;
}

.intro {
  width: 100%;
  max-height: 70vh; /* Limita a altura máxima à altura da viewport */
  aspect-ratio: 16/9; /* Proporção 16:9 (ajuste conforme o aspect ratio do seu vídeo) */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: #2F2C2C;
  margin-top: 0;
  position: relative;
}

.video-background {
  width: 100%;
  height: 100%; /* Ocupa toda a altura do contêiner */
  -o-object-fit: cover;
     object-fit: cover; /* Garante que o vídeo cubra o contêiner sem distorcer */
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 0;
  left: 0;
}

.agenda {
  position: absolute;
  bottom: 5%;
  left: 50%;
  width: 160px;
}
.agenda .agenda-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 3px;
  background-color: transparent;
  transition: 0.1s background-color linear, 0.1s color linear;
  width: auto;
  height: auto;
  padding: 8px 24px;
}
.agenda .agenda-title:hover {
  background-color: #e4d200;
  border-color: #e4d200;
  color: #1d1d1d;
}

.agenda-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 888;
}
.agenda-overlay.active {
  opacity: 0.9;
  visibility: visible;
}

.agenda-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80%;
  max-width: 800px;
  max-height: 80vh;
  background: #FFFB00;
  border-radius: 10px;
  overflow: hidden;
  padding: 20px;
  text-align: center;
  position: relative;
  overflow-y: auto;
}

.close-agenda-overlay {
  position: absolute;
  top: -15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 3rem;
  color: black;
  cursor: pointer;
  transition: color 0.3s ease;
}
.close-agenda-overlay:hover {
  color: #f39c12;
}

.agenda-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80%;
  max-width: 800px;
  max-height: 80vh;
  background: #FFFB00;
  border-radius: 10px;
  overflow: hidden;
  padding: 20px;
  text-align: center;
  position: relative;
  overflow-y: auto;
}
.agenda-content::-webkit-scrollbar {
  width: 16px;
}
.agenda-content::-webkit-scrollbar-track {
  background: var(--section2_bg);
  border-radius: 8px;
}
.agenda-content::-webkit-scrollbar-thumb {
  background: #ffbf00;
  border-radius: 8px;
}
.agenda-content::-webkit-scrollbar-thumb:hover {
  background: var(--section1_bg);
}
.agenda-content .close-agenda-overlay {
  position: absolute;
  top: -15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 3rem;
  color: black;
  cursor: pointer;
  transition: color 0.3s ease;
}
.agenda-content .close-agenda-overlay:hover {
  color: #f39c12;
}
.agenda-content .agenda-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.agenda-content .agenda-header p {
  font-size: 2.5rem;
  font-weight: 700;
}
.agenda-content .agenda-header img {
  width: 100px;
  height: 46px;
  margin-right: 32px;
}
.agenda-content .agenda-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 5px 20px;
  border-top: 1px solid #2c3338;
}
.agenda-content .agenda-item:last-child {
  border-bottom: 1px solid #2c3338;
}
.agenda-content .agenda-item .date-time-container {
  display: flex;
  align-items: center;
  width: 25%;
}
.agenda-content .agenda-item .date-time-container .agenda-date, .agenda-content .agenda-item .date-time-container .agenda-time {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 20px;
}
.agenda-content .agenda-item .date-time-container .agenda-date .date.title, .agenda-content .agenda-item .date-time-container .agenda-time .date.title {
  font-size: 1.2rem;
}
.agenda-content .agenda-item .date-time-container .agenda-date .date-info, .agenda-content .agenda-item .date-time-container .agenda-date .time-info, .agenda-content .agenda-item .date-time-container .agenda-time .date-info, .agenda-content .agenda-item .date-time-container .agenda-time .time-info {
  font-weight: 600;
}
.agenda-content .agenda-item .event-info {
  display: flex;
  flex-direction: column;
  width: 45%;
}
.agenda-content .agenda-item .event-info .event-name {
  font-size: 32px;
  font-weight: 700;
  position: relative;
  top: 8px;
}
.agenda-content .agenda-item .event-info .event-location {
  display: flex;
  flex-direction: row;
  color: #C0392B;
  font-weight: 600;
  justify-content: center;
  position: relative;
  bottom: 8px;
}
.agenda-content .agenda-item .event-info .event-location span {
  color: #000;
}
.agenda-content .agenda-item .event-info .event-location p {
  margin: 0;
  font-size: 21px;
  font-weight: 600;
}
.agenda-content .agenda-item .map-ticket-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 30%;
}
.agenda-content .agenda-item .map-ticket-container .event-map, .agenda-content .agenda-item .map-ticket-container .event-ticket {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 20px;
}
.agenda-content .agenda-item .map-ticket-container .event-map img, .agenda-content .agenda-item .map-ticket-container .event-ticket img {
  width: 40px;
}
.agenda-content .agenda-item .map-ticket-container .event-map p, .agenda-content .agenda-item .map-ticket-container .event-ticket p {
  font-weight: 600;
}

/* Quem Somos */
.about {
  display: flex;
  color: #ffffff;
}
.about .about-block {
  display: flex;
  flex-direction: row;
  padding: 64px 32px;
  align-items: center;
}
.about .about-block .about-img {
  flex: 0 0 35%;
  max-width: 35%;
}
.about .about-block .about-img img {
  width: 100%;
  height: auto;
}
.about .about-block .about-content {
  flex: 1;
  padding: 0 35px;
}
.about .about-block .about-content .about-content-title {
  display: flex;
  flex-direction: row;
  font-size: 32px;
  font-weight: 700;
}
.about .about-block .about-content .about-content-title .chopp-cup {
  width: 50px;
  height: auto;
  animation: swing 2s infinite ease-in-out;
  margin: 0 32px;
}
.about .contrate-ja {
  padding: 32px 0;
}
.about .contrate-ja p {
  font-size: 28px;
  color: #fff;
}
.about .contrate-ja a {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
.about .contrate-ja img {
  width: 50px;
  height: 50px;
}
.about .about-characteristics {
  display: flex;
  flex-direction: row;
  padding: 64px 32px;
}
.about .about-characteristics .vox3-characteristics {
  flex: 0 0 58%;
  padding: 0 32px;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about .about-characteristics .about-characteristics-img {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  border-radius: 12px;
}
.about .about-characteristics .carousel-image {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.about .about-characteristics .carousel-image.active {
  opacity: 1;
}

/* Discografia */
.discography {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  color: #111111;
  padding: 140px 32px;
  gap: 32px;
}
.discography .discography-img {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.discography .discography-img h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 16px;
}
.discography .discography-img img {
  max-width: 100%;
  height: auto;
}
.discography .discography-songs {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  padding: 0 20px;
}
.discography .discography-songs h3 {
  font-size: 24px;
  margin-bottom: 16px;
  text-align: center;
  width: 100%;
}
.discography .discography-songs .song {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  margin-left: 30px;
  width: 100%;
}
.discography .discography-songs .song .play-button {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #111111;
  flex-shrink: 0;
}
.discography .discography-songs .song .play-button:hover {
  color: #ffbf00;
}
.discography .discography-songs .song .song-info {
  width: 75%;
}
.discography .discography-songs .song .song-info p {
  font-size: 20px;
  margin: 0;
  line-height: 1;
  text-align: center;
}
.discography .discography-songs .song .song-info .song-details {
  font-size: 16px;
  color: #666;
  margin-top: 4px;
}
.discography .discography-songs .song .song-info .song-details span {
  font-size: 16px;
  color: #E74C3C;
}
.discography .discography-songs .song .restart-button {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #111111;
  flex-shrink: 0;
  margin-left: 8px;
}
.discography .discography-songs .song .restart-button:hover {
  color: #ffbf00;
}
.discography .discography-songs .platforms-indication {
  font-size: 18px;
  color: #111;
  font-weight: 600;
  margin-top: 16px;
  text-align: center;
  width: 100%;
}
.discography .discography-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.discography .discography-content h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 16px;
}
.discography .discography-content p {
  font-size: 16px;
  margin-bottom: 16px;
}
.discography .discography-content .streaming-platforms {
  display: flex;
  gap: 32px;
  margin-bottom: 16px;
}
.discography .discography-content .streaming-platforms a img {
  display: block;
  min-width: unset;
  max-width: 50px;
  transition: transform 0.3s ease;
}
.discography .discography-content .streaming-platforms a img:hover {
  transform: scale(1.1);
}
.discography .discography-content .youtube-highlight {
  margin-top: 16px;
  text-align: center;
}
.discography .discography-content .youtube-highlight a {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.discography .discography-content .youtube-highlight a img {
  width: 100px;
  height: auto;
  transition: transform 0.3s ease;
}
.discography .discography-content .youtube-highlight a img:hover {
  transform: scale(1.1);
}
.discography .discography-content .youtube-highlight a p {
  font-size: 18px;
  font-weight: 600;
  color: #111111;
  margin: 0;
  transition: color 0.3s ease;
}
.discography .discography-content .youtube-highlight a p:hover {
  color: #ff0000;
}

/* Galeria */
.photos_gallery {
  padding: 80px 0;
  background-color: #111111;
}
.photos_gallery .swiper-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  padding-bottom: 0;
}
.photos_gallery .swiper-container .swiper-slide {
  width: auto;
  height: 850px;
  text-align: center;
  background: #111111;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.photos_gallery .swiper-container .swiper-slide img {
  max-width: 100%;
  max-height: 800px;
  border-radius: 10px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.3s ease-in-out;
}
.photos_gallery .swiper-container .swiper-slide figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.photos_gallery .swiper-container .swiper-slide figcaption.image-description {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 500;
  color: #000;
  text-align: center;
  padding: 5px 10px;
  background-color: #ffc107;
  border-radius: 5px;
  max-width: 80%;
  display: none;
}
.photos_gallery .swiper-container .swiper-slide figcaption.image-description:not(:empty) {
  display: block;
}
.photos_gallery .swiper-container .swiper-button-next,
.photos_gallery .swiper-container .swiper-button-prev {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.5);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: background-color 0.3s ease, color 0.3s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
}
.photos_gallery .swiper-container .swiper-button-next:hover,
.photos_gallery .swiper-container .swiper-button-prev:hover {
  background-color: rgb(255, 230, 0);
  color: #ffcc00;
}
.photos_gallery .swiper-container .swiper-button-next {
  right: 50px;
}
.photos_gallery .swiper-container .swiper-button-prev {
  left: 50px;
}

.zoom-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}
.zoom-modal figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 90%;
  max-height: 90%;
  pointer-events: none;
}
.zoom-modal .zoomed-image {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 10px;
  pointer-events: auto;
}
.zoom-modal .zoomed-image-description {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 500;
  color: #000;
  text-align: center;
  padding: 5px 10px;
  background-color: #ffc107;
  border-radius: 5px;
  max-width: 80%;
  display: none;
}
.zoom-modal .zoomed-image-description:not(:empty) {
  display: block;
}
.zoom-modal .close-modal {
  position: absolute;
  top: 50px;
  right: 80px;
  color: #fff;
  font-size: 60px;
  font-weight: bold;
  cursor: pointer;
}
.zoom-modal .modal-navigation {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
}
.zoom-modal .modal-navigation .modal-button-prev,
.zoom-modal .modal-navigation .modal-button-next {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.5);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}
.zoom-modal .modal-navigation .modal-button-prev:hover,
.zoom-modal .modal-navigation .modal-button-next:hover {
  background-color: rgb(255, 230, 0);
  color: #ffcc00;
}
.zoom-modal .modal-navigation .modal-button-prev {
  left: 80px;
}
.zoom-modal .modal-navigation .modal-button-next {
  right: 80px;
}

/* Footer */
.footer-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  color: #111111;
  text-align: center;
}
.footer-content > div {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-content .footer-whatsapp a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #111111;
}
.footer-content .footer-whatsapp a img {
  width: 25px;
}
.footer-content .footer-whatsapp a:hover {
  transform: scale(1.1);
  filter: brightness(0) saturate(100%) invert(67%) sepia(40%) saturate(1231%) hue-rotate(330deg) brightness(95%) contrast(89%);
}
.footer-content .footer-band-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.footer-content .footer-band-info img {
  width: 100px;
}
.footer-content .footer-band-info p {
  font-size: 14px;
  color: #666;
}
.footer-content .socials ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 18px;
}
.footer-content .socials a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #111111;
}
.footer-content .socials a img {
  width: 25px;
}
.footer-content .socials a:hover {
  transform: scale(1.1);
  filter: brightness(0) saturate(100%) invert(67%) sepia(40%) saturate(1231%) hue-rotate(330deg) brightness(95%) contrast(89%);
}

.footer-credits {
  text-align: center;
  margin-top: 10px;
  font-size: 5px;
  color: #ffbf00;
  width: 100%;
  display: flex;
  justify-content: center;
}
.footer-credits p {
  font-size: 16px;
}
.footer-credits a {
  font-size: 16px;
  color: #F8F8F2;
  text-decoration: none;
}
.footer-credits a:hover {
  color: #ffbf00;
}

/*******************/
/* Mobile Settings */
/*******************/
@media (width < 768px) {
  *,
  *::before,
  *::after {
    font-size: 18px;
  }
  .container {
    padding: 0 10px;
  }
  h1, h2, h3 {
    font-size: 28px;
  }
  .menu-content {
    flex-direction: column;
  }
  .menu-overlay .menu-content .menu-right .social-links {
    flex-direction: row;
  }
  .header-logo img {
    max-width: 100px;
  }
  #menuToggle {
    margin: 10px;
  }
  .intro {
    max-height: 50vh;
    min-height: 50vh;
    aspect-ratio: auto;
    position: relative;
    overflow: hidden;
  }
  .video-background {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    position: absolute;
    top: 0;
    left: 0;
  }
  .agenda-content .agenda-header {
    flex-direction: column;
  }
  .agenda-content .agenda-header img {
    margin: auto;
  }
  .agenda-content .agenda-header p {
    font-size: 1.5rem;
  }
  .agenda-content .agenda-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .agenda-content .agenda-item .date-time-container, .agenda-content .agenda-item .event-info, .agenda-content .agenda-item .map-ticket-container {
    width: 100%;
    justify-content: center;
  }
  .agenda-content .agenda-item .date-time-container {
    flex-direction: row;
  }
  .agenda-content .agenda-item .event-info {
    width: 100%;
  }
  .agenda-content .agenda-item .map-ticket-container {
    justify-content: center;
  }
  .about .about-block {
    flex-direction: column;
    padding: 32px 16px;
  }
  .about .about-block .about-img {
    flex: auto;
    max-width: 100%;
  }
  .about .about-block .about-content {
    padding: 0;
    text-align: center;
  }
  .about .about-block .about-content .about-content-title {
    flex-direction: column;
    align-items: center;
  }
  .about .about-block .about-content .about-content-title .chopp-cup {
    margin-bottom: 12px;
  }
  .about .about-characteristics {
    flex-direction: column;
    padding: 32px 16px;
  }
  .about .about-characteristics .vox3-characteristics {
    padding: 0;
    text-align: center;
  }
  .about .about-characteristics .about-characteristics-img {
    flex: auto;
    max-width: 100%;
  }
  .discography {
    padding: 32px 16px;
    flex-direction: column;
    align-items: center;
  }
  .discography .discography-songs {
    padding: 0;
  }
  .photos_gallery {
    padding: 32px 8px;
  }
  .footer-content {
    padding: 16px 8px;
    flex-direction: column;
    gap: 16px;
  }
  .footer-content .footer-whatsapp {
    order: 1;
  }
  .footer-content .footer-band-info {
    order: 3;
  }
  .footer-content .socials {
    order: 2;
  }
}
/*******************/
/* Tablet Settings */
/*******************/
@media (768px <= width < 1024px) {
  *, *::before, *::after {
    font-size: 20px;
  }
  .container {
    padding: 0 20px;
  }
  h1, h2, h3 {
    font-size: 32px;
  }
  .menu-content {
    flex-direction: column;
  }
  .agenda-content {
    padding: 32px 16px;
    flex-direction: column;
    align-items: center;
  }
  .agenda-content .agenda-header img {
    margin: auto;
  }
  .agenda-content .agenda-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .about {
    padding: 32px 16px;
    flex-direction: column;
    align-items: center;
  }
  .about .about-content {
    text-align: center;
  }
  .about .about-content-title {
    justify-content: center;
  }
  .about .about-block, .about .about-characteristics {
    flex-direction: column;
    padding: 32px 16px;
  }
  .about .about-img, .about .about-characteristics-img {
    flex: auto;
    max-width: 100%;
  }
  .discography, .photos_gallery, .footer-content {
    padding: 32px 16px;
    flex-direction: column;
    align-items: center;
  }
  .footer-content {
    gap: 16px;
  }
  .footer-content .footer-whatsapp {
    order: 1;
  }
  .footer-content .footer-band-info {
    order: 3;
  }
  .footer-content .socials {
    order: 2;
  }
}
/*******************/
/*  Small Desktop  */
/*******************/
@media (1024px <= width < 1280px) {
  *, *::before, *::after {
    font-size: 22px;
  }
  .container {
    padding: 0 30px;
  }
  h1, h2, h3 {
    font-size: 36px;
  }
  .menu-content {
    flex-direction: column;
  }
  .agenda-content {
    padding: 48px 24px;
    flex-direction: column;
    align-items: center;
  }
  .agenda-content .agenda-header img {
    margin: auto;
  }
  .agenda-content .agenda-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .about {
    padding: 48px 24px;
    flex-direction: column;
    align-items: center;
  }
  .about .about-content {
    text-align: center;
  }
  .about .about-content-title {
    justify-content: center;
  }
  .about .about-block, .about .about-characteristics {
    flex-direction: column;
    padding: 48px 24px;
  }
  .about .about-img, .about .about-characteristics-img {
    flex: auto;
    max-width: 100%;
  }
  .discography, .photos_gallery, .footer-content {
    padding: 48px 24px;
    flex-direction: column;
    align-items: center;
  }
  .footer-content {
    gap: 24px;
  }
  .footer-content .footer-whatsapp {
    order: 1;
  }
  .footer-content .footer-band-info {
    order: 3;
  }
  .footer-content .socials {
    order: 2;
  }
}/*# sourceMappingURL=main.css.map */