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

body {
  display: flex;
  justify-content: center;
  height: 200vh;
  width: 100vw;
  overflow-y: auto;
}

.container {
  display: flex;
  flex-direction: column;
  height: 90%;
  width: 80%;
  box-shadow: .5vw .5vh 3em black;
  background-color: white;
}

header {
  background-color: black;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 5%;
  width: 100%;
  padding: 0% 20%;
}

header .menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 30%;
  list-style: none;
}

header .menu a {
  color: white;
  font-size: 1.5rem;
}

header img{
  height: 40px;
}

main {
  height: 95%;
  width: 100%;
}

.carousel {
  display: flex;
  flex-direction: row;
  position: relative;
  height: 40%;
  width:100%;
}

.carousel > ul {
  position: relative;
  list-style: none;
  width: 100%;
  height: 100%;
}

.slide {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  opacity: 0;
  transition: opacity 300ms ease-in-out;
}

.slide > img {
  width: 60%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
/* Fundo */
.slide-bg {
  display: flex;
  justify-content: center;
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
}

.slide-bg > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(20px);
  z-index: 0;
}

.slide[data-active] {
  z-index: 1;
  opacity: 1;
  transition-delay: 0ms;
}

.carousel-button {
  position: absolute;
  z-index: 2;
  background: none;
  border: none;
  font-size: 5rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, .5);
  background-color: rgba(0, 0, 0, .1);
  cursor: pointer;
}

.carousel-button:hover,
.carroselButton:focus {
  color: white;
  background-color: rgba(0, 0, 0, .2);
}

.carousel-button.prev {
  left: 1%;
}

.carousel-button.next {
  right: 1%;
}

.calendarios{
  display: flex;
  height: 60%;
  width: 100%;
}

.container_1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
  height: 100%;
}

.container_2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
  height: 100%;
}

.texto {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 20%;
  width: 91%;
  margin-top: 5%;
  border-top: solid black .1rem;
  border-left: solid black .1rem;
  border-right: solid black .1rem;
}

.texto *{
  padding: 1%;
}

.texto p{
  font-size: 2rem;
}

.texto h1{
  font-size: 2rem;
}

.barraSuperior_1,
.barraSuperior_2 {
  background-color: black;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 8%;
  width: 91%;
  color: white;
  border-left: solid black .1rem;
  border-right: solid black .1rem;
}

.titulo_1,
.titulo_2{
  font-size: 30px;
}

.anterior_1,
.seguinte_1,
.anterior_2,
.seguinte_2 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  height: 50%;
  background-color: yellow;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  margin: 8%;

}

.calendario_1,
.calendario_2 {
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  width: 91%;
  list-style: none;
  border-left: solid black .1rem;
  border-top: solid black .1rem;
}


.dia,
.semana {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 13%;
  height: 8vh;
  font-size: 1.8rem;
  font-weight: 900;
  border-right: solid black .1rem;
  border-bottom: solid black .1rem;
}

.dom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 6%;
  width: 22%;
  height: 8vh;
  font-size: 1.7rem;
  font-weight: 980;
  border-right: solid black .1rem;
  border-bottom: solid black .1rem;
  color: red;
}
