.header-container {
  display: flex;
  flex-direction: row;
}

.carrousel {
  max-width: 60%;
  padding: 1em 2em 1em 2em;
  transition: transform 2s cubic-bezier(0.075, 0.85, 0.175, 1) 5ms,
    opacity 2s 3ms;
}

.carrousel_items {
  max-width: 100%;
  padding: 1em 2em 1em 2em;
  transition: transform 2s cubic-bezier(0.075, 0.85, 0.175, 1) 5ms,
    opacity 2s 3ms;
}


.mySlides > img {
  border-radius: 1em;
}

.title-container {
  max-width: 40%;
}

.title-container > h1 {
  font-size: 2.6em;
  font-weight: 600;
  padding: 0;
  margin: 0;
  color: var(--color-text-primary);
}

.title-container > h2 {
  color: var(--color-text-secondary); 
}

@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
.title-container > h2 > span {
  font-family: "Bebas Neue", cursive;
  font-size: 1em;
  background-image: linear-gradient(var(--color-yellow), var(--color-yellow));
  background-size: 100% 5px;
  background-repeat: no-repeat;
  background-position: 100% 0%;
  transition: background-size 0.7s, background-position 0.5s ease-in-out;
}

.title-container > h2 > span:hover {
  color: gray;
  background-size: 100% 100%;
  background-position: 0% 100%;
  transition: background-position 0.7s, background-size 0.5s ease-in-out;
}

.title-container > a >  h2 {
  font-size: 1.2em;
  line-height: 1.3;
  margin: 0;
  color: var(--color-yellow);
  font-weight: bold;
}

.title-container > p {
  margin-top: 3px;
}

.checklist> ul {
  list-style: none;
  margin-bottom: 0;
  padding-inline-start: 0;
  color: var(--theme-text-light);
  line-height: 1.65;
}

.ul-checklist li {
  color:#fff;
  list-style:none;
  display: flex;
  line-height: 1.5;
  display: flex;
  align-items: center;
}

.ul-checklist li:before {
  font-family:FontAwesome;
  color:#fff;
  font-size:8px;
  content:"\f10c";
}

.ul-checklist li:hover:before {
  color:var(--color-yellow);
}

.checklist a {
  font-size: 1.5em;
  display: block;
  position: relative;
  border-radius: 0.5rem;
  padding: 0.1rem 0.5rem;
  cursor: pointer;
  color: var(--color-text-secondary);
  align-items: center;
}

svg{
  width:30px;
  height:30px;
  color:#fff;
  padding:1px 2px;
  transition:0.4s ease all;
  cursor:pointer;
}

svg:hover{
  transform:translateX(10px); 
  color: var(--color-yellow);
}


/* CSS */
.btn-saiba-mais {
  all: unset;
  width: 300px;
  height: 30px;
  font-size: 16px;
  background: transparent;
  border: none;
  position: relative;
  color: #f0f0f0;
  cursor: pointer;
  z-index: 1;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.btn-saiba-mais::after,
.btn-saiba-mais::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -99999;
  transition: all .4s;
}

.btn-saiba-mais::before {
  transform: translate(0%, 0%);
  width: 100%;
  height: 100%;
  background: #28282d;
  border-radius: 10px;
}

.btn-saiba-mais:hover::before {
  transform: translate(5%, 20%);
  width: 110%;
  height: 110%;
}

.btn-saiba-mais:hover::after {
  border-radius: 10px;
  transform: translate(0, 0);
  width: 100%;
  height: 100%;
}

.btn-saiba-mais:active::after {
  transition: 0s;
  transform: translate(0, 5%);
}

.center-button{ 
  display: flex;
  width: 100%;
  justify-content: center;
  margin: 0em;
  padding: 15px;
}

.about-container{
  padding: 2em;
}

.about-text{
  max-width: 100%;
}

@media only screen and (max-width: 600px){
  .header-container {
    flex-direction: column;
  }
  .carrousel {
    max-width: 100%;
    padding: .3em .8em .3em .8em;
    transition: transform 2s cubic-bezier(0.075, 0.85, 0.175, 1) 5ms,
      opacity 2s 3ms;
  }
  .title-container{
    max-width: 100%;
    margin: 10px;
  }
  .title-container > h1{
    text-align: center;
  }

}
