* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Quicksand", sans-serif;
}

html {
  font-size: 62.5%;
}

body {
  width: 100%;
  height: 100vh;
  background-color: #12121f;
  color: #eee;
  display: flex;
  justify-content: center;
  align-items: center;
}

.calendar {
  width: 45rem;
  height: 52rem;
  background-color: #222227;
  box-shadow: 0 0.5rem 3rem rgba(0, 0, 0, 0.4);
  border-radius: 10px;
}

.month {
  width: 100%;
  height: 12rem;
  background-color: #345B6B;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  text-align: center;
  text-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.5);
  border-radius: 10px 10px 0 0;
}

.month i {
  font-size: 2.5rem;
  cursor: pointer;
}

.month h1 {
  font-size: 3rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  margin-bottom: 1rem;
  color:#262626;
}

.month p {
  font-size: 1.6rem;
  color:#262626;
}

.weekdays {
  width: 100%;
  height: 5rem;
  padding: 0 0.4rem;
  display: flex;
  align-items: center;
}

.weekdays div {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  width: calc(44.2rem / 7);
  display: flex;
  justify-content: center;
  align-items: center;
  text-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.5);
}

.days {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 0.2rem;
}

.days div {
  font-size: 1.4rem;
  margin: 0.3rem;
  width: calc(40.2rem / 7);
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.5);
  transition: background-color 0.2s;
}

.days div:hover:not(.today) {
  background-color: #262626;
  border: 0.2rem solid #777;
  cursor: pointer;
}

.prev-date,
.next-date {
  opacity: 0.5;
}

#today {
  background-color: #345B6B;
  color:#262626;
}
.selected{
  border: 1px solid #345B6B;
}

#infoD{
  display: flex!important;
}
.info{
  display: none;
}

.card {
  width: 45rem;
  height: auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: whitesmoke;
  box-shadow: 0 5px 10px #345B6B;
  border-radius: 10px;
  transition: 0.1s;
  margin-bottom: 1%;
  padding: 20px;
  flex-wrap: nowrap;
}

.card img {
  width: 100%;
  height: auto;
  background-size: cover;
}
.card h2 {
  color: #282828;
  text-align: center;
  margin-bottom: 5px;
}
.card p {
  color: #0e0c1a;
  font-size: 15px;
}
.fechalugaractiviades{
  margin: 10px;
  text-align: center;
}

.card input[type="submit"] {
  background: #0e0c1a;
  padding: 5px 10px;
  color: whitesmoke;
  border-radius: 5px;
  outline: none;
  border: none;
  cursor: pointer;
}

button a{
  color:whitesmoke;
}
.card .btn-container button:hover {
  background: #345B6B;
  color: #282828;
}