* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  min-height: 100vh;
  min-width: 100vw;
}

body {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  position: relative;
  font-family: 'Roboto', sans-serif;
}

section {
  width: 100%;
  display: flex;
}

section article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  position: relative;
}

.gif-container {
  background: #d61b3e;
  height: 95vh;
}

.main .logo-caption{
  max-width: 150px;
  position: absolute;
  top: 3rem;
  right: 5rem;
}

.content span {
  font-size: 1.25rem;
}

.main .content {
  color: #341a5c;
  margin-left: -8rem;
}

.last {
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 3rem;
  max-width: 400px;
}

em {
  font-style: normal;
  color: #d61b3e;
}

article .content a {
  position: relative;
  width: auto;
  background: #d61b3e;
  color: white;
  border-radius: 25px;
  padding: .75rem 1.5rem;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 4rem;
  border: 1px solid transparent;
  transition: 0.2s;
}

article a:hover {
  opacity: 0.7;
}

.cover {
  object-fit: contain;
  width: 100%;
}

.blue-light {
  color: #23419c;
}

h2 {
  color: #341a5c;
  font-size: 2.5rem;
}

section:nth-child(3) article:first-child {
  background: #f3f1f5;
  font-size: 1.25rem;
}

.bg {
  position: absolute;
}

.left {
  left: -2rem;
}

.right {
  right: 0;
  z-index: -1;
}

.content.second {
  margin-left: 10rem;
}

.content.second p {
  line-height: 2.5rem;
  max-width: 450px;
}

.content.second h3 {
  font-weight: 900;
  max-width: 375px;
}

.content.second p,
.content.second h3,
.content.second h2 {
  margin: .5rem 0;
}

.content.second a {
  font-size: 1rem;
}

.content.second .ytb {
  background: transparent;
  color: #d61b3e;
  border: 1px solid #d61b3e;
}

.content.second .ytb i {
  color: red;
  margin-left: .5rem;
}

.content.third h2,
.content.third ul,
.content.third a {
  margin-left: -15rem;
}

.content.third h2 {
  font-weight: 900;
  max-width: 230px;
  margin-bottom: 1.5rem;
}

.content.third ul li {
  list-style: none;
  margin-top: .5rem;
}

.special {
  position: relative;
  left: -2rem;
}

footer {
  background: #23419c;
  padding: 2.5rem 10rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5rem;
}

footer img:hover {
  opacity: 0.8;
  transition: 0.2s;
}

footer .social-media img {
  margin: 0 .5rem;
}

footer>a img{
  max-width: 200px;
}

@media (max-width: 1250px) {
  .right {
    right: -2rem;
  }

  .left {
    left: -8rem;
  }

  .content.second {
    margin-left: 0;
  }

  .main .content {
    margin-left: 0;
  }
}

@media (max-width: 1076px) {

  html {
    min-width: 100vw;
  }

  body, section {
    min-width: 100%;
    overflow-x: hidden;
  }

  section {
    flex-wrap: wrap;
  }

  h1 {
    line-height: 4rem;
  }

  .main .content span, .main .content h1, .main .content a,
  .content.second, .content.third h2, .content.third ul,
  .content.third a {
    margin: 0;
  }

  .content.second p,
  .content.second h2,
  .content.second h3 {
    max-width: none;
  }

  .bg {
    display: none;
  }

  section article {
    width: 100%;
    padding: 10%;
  }

  footer {
    width: 100%;
    padding: 2rem 0;
    margin-top: 1rem;
    flex-direction: column;
  }

  footer .social-media{
    margin-top: 2rem;
  }

  article .content a {
    display: block;
    width: 100%;
    line-height: 1.5rem;
    height: 3rem;
    text-align: center;
  }

  a i, .logo-caption {
    display: block;
    height: 0;
    width: 0;
    opacity: 0;
    visibility: hidden;
  }

  .gif-container {
    width: 100vw;
    height: auto;
  }

  .gif-container a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .gif-container img {
    width: 80%;
  }

  .img {
    padding: 0;
  }

  .img img {
    width: 100%;
  }

  .conteudo {
    order: 1;
  }

  #first-btn {
    margin-top: 2rem;
  }

  .content.third h2{
    margin-bottom: 2rem;
  }
}

@media (max-width: 321px) {
  .ytb {
    height: 4.5rem !important;
  }
}