@font-face {
  font-family: 'TAN Aegean';
  src: url('../../Recursos/TAN_Aegean/TAN - AEGEAN Regular.ttf') format('truetype')
}

@font-face {
  font-family: 'Signika';
  src: url('../../Recursos/Signika/Signika-VariableFont_wght.ttf') format('truetype');
}

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



.left-panel {
  background-color: #e9d5ff;
  color: #4b0082;
}

.tipo-atendimento {
  font-weight: bold;
  font-size: 32px;
  font-family: "Signika";

}

.avatar {
  width: 120px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;

}

.especialidade {
  font-size: 20px;
  font-family: 'Signika';
}

.calendario {
  max-width: 360px;
}

.mes-navegacao {
  background-color: #c084fc;
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
}

.mes-navegacao button {
  background: none;
  border: none;
  font-size: 22px;
  color: white;
  cursor: pointer;
  font-family: "Signika";
}

.dias-semana {
  font-weight: bold;
  font-size: 12px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-family: "Signika";
}

.dias {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.dias button {
  background-color: #ede9fe;
  color: #4b0082;
  padding: 8px 0;
  border-radius: 6px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: 0.2s;
  width: 100%;
  font-family: 'Signika';
}

.dias button.ativo {
  background-color: #a855f7;
  color: white;
  font-family: "Signika";
}

.dias button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.ilustracoes img {
  max-height: 200px;
  width: auto;
}

.right-panel {
  background-color: white;
}

.subtexto {
  font-size: 14px;
  color: gray;
  margin-bottom: 20px;
}

.horarios button {
  padding: 12px;
  border: 2px solid #e9d5ff;
  background-color: white;
  color: #a855f7;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Signika";
}

.horarios button:hover {
  background-color: #f3e8ff;
  font-family: "Signika";
}
.ilustracoes img {
  opacity: 70%;
  transform: rotate(0deg);
}
.ilustracoes .familia {
  transform: rotate(0deg);
}
.ilustracoes .imgfundo {
  transform: rotate(0deg);
}
.ilustracoes .imgautismo {
  transform: rotate(0deg);
}
.ilustracoes .imgtdah {
  transform: rotate(25deg);
}
.ilustracoes .imgabelha{
  transform: rotate(50);
  padding-left: 0%;
}
.imgmao {
  position: absolute;
  width: 130px;
  height: 130px;
  bottom: 78%;   /* ajuste conforme necessário */
  left: 34%;   /* ajuste conforme necessário */
  z-index: 10;
}

.right-panel {
  background-color: white;
}

.subtexto {
  font-size: 14px;
  color: gray;
  margin-bottom: 20px;
}

.horarios {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.horarios button {
  padding: 12px;
  border: 2px solid #e9d5ff;
  background-color: white;
  color: #a855f7;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.horarios button.ativo {
  background-color: #a855f7;
  color: white;
  border-color: #a855f7;
}

.horarios button:hover:not(.ativo) {
  background-color: #f3e8ff;
}

/* Botão Agendar */
.btn-agendar {
  background-color: #a855f7;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-agendar:hover:not(:disabled) {
  background-color: #9333ea;
  transform: translateY(-2px);
}

.btn-agendar:disabled {
  background-color: #d8b4fe;
  cursor: not-allowed;
  opacity: 0.7;
}

.btn-icon {
  font-size: 20px;
}

#resumo-agendamento {
  background-color: #f5f3ff;
  padding: 15px;
  border-radius: 8px;
  border-left: 4px solid #a855f7;
}

@media (max-width: 768px) {
  .container-fluid {
    flex-direction: column;
    height: auto;
  }
  
  .horarios {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .horarios button {
    width: 45%;
  }
  
  .left-panel, .right-panel {
    width: 100%;
  }
}


