p {
  color: #666666;
}

h4 { 
  font-size:25px;
  font-weight: bold;
}

/* Estilos para o card */
.card {
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  background-color: #f9f9f9;
  width: 91%;
  margin-left: 10px;
}


.item {
  display: flex;
  margin-bottom: 10px;
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 15px;
  color: #282828;
}

.label {
  /* flex: 1; */
  font-weight: bold;
  text-align: left;
}

.valuePed {
  flex: 2;
  text-align: left;
}










.card-aviso {
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  background-color: #3d3c54;
  width: 82%;
  margin-left: 10px;   
}

.card-aviso p{ 
  color: #e6e6e6;
}

.card-aviso h3{ 
  color: #e6e6e6;
}

.card-clean {
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 91%;
  margin-left: 10px;
}

.card-grid {
padding: 20px;
width: 82%;
margin-left: 5%; 
margin-top:15px;
}


/* Estilos para os dados */
.card p {
  margin: 5px 0;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  word-wrap: break-word;
}

.card span {
  font-weight: bold;
  margin-right: 10px;
}

/* Estilos para os ícones */
.icon {
  margin-right: 5px;
}
/* Adicionando espaço entre o ícone e o texto "Para:" */
.heart-icon {
  margin-right: 5px; /* Ajuste o valor conforme necessário */
}


/* Estilos para o gif de carregamento */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loading-overlay img {
  width: 300px; /* Ajuste o tamanho do gif conforme necessário */
}

.hero {
width: 100%;
/* height: 100vh; */
/* background: #a9a9a9; */
display: flex;
align-items: center;
justify-content: center;
}
.music {
width: 90%;
max-width: 900px;
padding: 30px;
box-shadow: 0 0 20px rgb(red, 0, 0, 0.4);
background: #fff;
color: #555;
border-radius: 8px;

}
.track {

display: flex;
align-items: center;
margin-top: 20px;

}
.track img {
width: 70px;
margin-right: 30px;
cursor: pointer;
}
.track div {

flex: 1;

}

/* Estilos para o botão */
button {
background-color: #4CAF50; /* Cor de fundo */
color: white; /* Cor do texto */
padding: 10px 20px; /* Espaçamento interno */
border: none; /* Remover borda */
border-radius: 4px; /* Arredondar as bordas */
cursor: pointer; /* Alterar o cursor ao passar o mouse */
text-decoration: none; /* Remover sublinhado padrão */
font-size: 16px; /* Tamanho do texto */
}

/* Estilos para o link */
a {
color: blue; /* Cor do texto */
text-decoration: none; /* Remover sublinhado */
margin-left: 10px; /* Espaçamento à esquerda */
}

.box {
  width: 37%;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 15px;
  float: left;
}

/* Para telas com largura máxima de 650px */
@media screen and (max-width: 620px) {

  .card {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    background-color: #f9f9f9;
    width: 85%;
    margin-left: 10px;
  }

  .card-clean {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 85%;
    margin-left: 10px;
  }


  .box {
    width: 85%;
    float: none;
    margin-left: 5px;
  }
}

.box img {
  max-width: 100%;
  height: auto;
}

.box-content {
  padding-top: 10px;
}

.box-title {
  font-size: 20px;
  margin-bottom: 10px;
}

.box-description {
  font-size: 16px;
  color: #666;
}

.button {
  display: inline-block;
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.button:hover {
  background-color: #0056b3;
}


/* Botão de Confirmação para Sim/Não */
.modal-container { 
  display: none; 
  position: fixed; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
  background: rgba(0, 0, 0, 0.5); 
  align-items: center; 
  justify-content: center; 
  z-index: 1; 
} 

.modal-content { 
  background-color: #fff; 
  border-radius: 8px; 
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); 
  max-width: 400px; 
  width: 100%; 
  padding: 20px; 
  text-align: center; 
} 
 

.confirmation-message { 
  margin-bottom: 20px; 
} 

.button-container { 
  display: flex; 
  justify-content: space-around; 
} 

 
.cancel-button { 
  background-color: #727171; 
  color: #fcfcfc; 
} 

.cancel-button:hover { 
  background-color: #2b553e; 
  color: #fcfcfc; 
}


.delete-button { 
  background-color: #adadad; 
  color: #fff; 
}

.delete-button:hover{ 
  background-color: #914848; 
  color: #fff; 
}

 

.content-area {
 
  border-top: 1px solid #e1e1e1;
  margin-top: 20px;
  padding-top: 20px;
  text-align: left;
  color: #4c4c4c;
  font-size: 19px;
    display: block;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
}

.content-area.active {
    max-height: 500px; /* Ajuste conforme necessário */
    opacity: 1;
}
