* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container-geral{
  display: grid;
  grid-template-columns: 1fr;
  align-items:center;
}

.row:after {
  content: "";
  clear: both;
  display: table;
}

[class*="col-"] {
  float: left;
  padding: 15px;
  width: 100%;
}

@media only screen and (min-width: 600px) {
  .col-s-1 {width: 8.33%;}
  .col-s-2 {width: 16.66%;}
  .col-s-3 {width: 25%;}
  .col-s-4 {width: 33.33%;}
  .col-s-5 {width: 41.66%;}
  .col-s-6 {width: 50%;}
  .col-s-7 {width: 58.33%;}
  .col-s-8 {width: 66.66%;}
  .col-s-9 {width: 75%;}
  .col-s-10 {width: 83.33%;}
  .col-s-11 {width: 91.66%;}
  .col-s-12 {width: 100%;}
}

@media only screen and (min-width: 768px) {
  .col-1 {width: 8.33%;}
  .col-2 {width: 16.66%;}
  .col-3 {width: 25%;}
  .col-4 {width: 33.33%;}
  .col-5 {width: 41.66%;}
  .col-6 {width: 50%;}
  .col-7 {width: 58.33%;}
  .col-8 {width: 66.66%;}
  .col-9 {width: 75%;}
  .col-10 {width: 83.33%;}
  .col-11 {width: 91.66%;}
  .col-12 {width: 100%;}
}

html {
  font-family: "Lucida Sans", sans-serif;
}

body{
  background: url('../img/background.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100vw;
  height: 100vh;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--cor-da-barra);
  color: var(--cor-do-texto);
  font-size: 1.2rem;
  font-weight: bold;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0.5rem 1rem;
  gap: 1rem;
  height: 60px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

nav .nav-icon {
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

nav .nav-icon:hover {
  transform: scale(1.1);
}

nav .nav-title {
  flex: 1;
  text-align: center;
  font-size: 1.2rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--cor-da-barra);
  color: var(--cor-do-icone);
  font-size: 12px;
  padding: 1rem 1rem 2rem 1rem;
  bottom: 0;
  left: 0;
  position: fixed;
  width: 100%;
  height: 100px;
  gap: 1rem;
  box-shadow: 0 -2px 4px rgba(0,0,0,0.1);
}

.footer .play-button {
  font-size: 4.5rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.footer .play-button:hover {
  transform: scale(1.05);
}

/* Responsividade mobile */
@media (max-width: 768px) {
  nav {
    padding: 0.5rem;
    height: 50px;
  }

  nav .nav-title {
    font-size: 1rem;
  }

  nav .nav-icon {
    font-size: 1.25rem;
    width: 35px;
    height: 35px;
  }

  .footer {
    height: 90px;
    padding: 0.75rem 0.75rem 1.5rem 0.75rem;
  }

  .footer .play-button {
    font-size: 4rem;
  }
}

.video {
  overflow: hidden;
  position: relative;
  width: 100%;
  min-width: 320px;
  max-height: 500px;
  padding-bottom: 56.25%;
  display: block;
  content: "";
  background-color: rgba(0, 0, 0, 0.500);
  background: url("../img/logo.png");
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: center;
}

.player {
  top: 0;
  height: 100%;
  width: 100%;
  object-fit: fill;
  position: absolute;
  margin-left: auto;
  margin-right: auto;
}

/*mostra/esconde equalizador*/
.hide{
  display: none;
}

.cantor {
  display: flex;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 3rem;
  color: var(--cor-do-texto);
}

.cantor>span:hover {
  cursor: pointer;
}

.containerVolume {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-bottom: 120px;
  color: var(--cor-do-texto);
}

.menosVolume {
  justify-content: flex-start;
}

.menosVolume sl-icon-button {
  font-size: 2rem !important;
}

.maisVolume {
  justify-content: flex-end;
}

.maisVolume sl-icon-button {
  font-size: 2rem !important;
}

.barraVolume {
  justify-content: center;
  min-width: 300px;
  flex: 1;
  padding: 0 1rem;
}

.compartilhar {
  margin-left: 1rem;
}
