:root {
  --color-gray-500: #444443;

  --color-offwhite: #f0e5cc;

  --color-orange-100: #f2e5d9;
  --color-orange-200: #efa786;
  --color-orange-500: #e86c28;
  --color-orange-700: #b13512;

  --color-purple: #602ea3;

  --color-brown: #532d23;
  --color-white: #fff;
  --color-black: #000;
}

@font-face {
  font-family: 'Din Condensed';
  src: url('./assets/fonts/DIN_Condensed_Bold.ttf') format('truetype');
}

@font-face {
  font-family: 'PressBox';
  src: url('./assets/fonts/PressBox-Clean.otf') format('truetype');
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a {
  text-decoration: none;
  color: inherit;
}

h1,
h2 {
  font-family: 'PressBox', sans-serif;
  text-transform: uppercase;
}

h1 {
  font-size: 3.5rem;
  line-height: 100%;
  color: var(--color-brown);
}

h2 {
  font-size: 3rem;
  line-height: 100%;
  color: var(--color-orange-700);
}

body {
  font-family: 'montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  background-image: url('../assets/bg.png');
  color: var(--color-brown);
}

button {
  font-family: 'montserrat', sans-serif;
  cursor: pointer;
  border: none;
  background: none;
  font-size: 0.875rem;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 100%;
}

.swiper {
  width: 100%;
  height: 500px;
  position: relative;
  display: flex;
  & .swiper-slide {
    width: 100%;
    min-width: 680px;
  }
}

.swiper-controls {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  padding: 0 40px;
  max-width: 1580px;
  margin: 0 auto !important;
}
.navigation-buttons {
  right: 0px;
  margin-bottom: -10px !important;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
  margin-left: auto;
}
.swiper-pagination {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  max-width: 85% !important;
  margin-left: 48px;
}

.swiper-pagination-bullet {
  width: 100% !important;
  height: 3px !important;
  border-radius: 3px !important;
  background: var(--color-brown) !important;
  transition: all 0.3s ease;
}

.swiper-pagination {
  gap: 6px;
}

.swiper-button-prev,
.swiper-button-next {
  position: static !important;
  width: 40px !important;
  height: 40px !important;
  margin: 0 !important;
  color: var(--color-brown) !important;
  border: 1.5px solid var(--color-brown);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  padding: 12px;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 14px !important;
  font-weight: bold;
}
.content-with-navbar,
.about-header-section,
.episodio-header-section {
  padding-top: 120px;
}

.internal-nav .navbar.navbar-scrolled img {
  content: url('../assets/logo.svg'); /* Troca para logo escura */
}

/* Textos dos idiomas escuros */
.internal-nav .navbar.navbar-scrolled .languages a {
  color: var(--color-gray-500) !important;
}

.internal-nav .navbar.navbar-scrolled .languages a:hover {
  color: var(--color-orange-500) !important;
}

/* Ícone hamburger escuro */
.internal-nav .navbar.navbar-scrolled .menu-wrapper button img {
  content: url('../assets/hamburguer.svg'); /* Troca para hamburger escuro */
}

/* Navbar interna sem scroll - mantém aparência original */
.internal-nav .navbar:not(.navbar-scrolled) {
  background: transparent;
}

.internal-nav .navbar:not(.navbar-scrolled) .languages a {
  color: var(--color-white);
}

.internal-nav .navbar:not(.navbar-scrolled) .languages a:hover {
  color: var(--color-orange-500);
}

.navbar {
  background-size: cover;
  background-position: center;
  width: 100%;
  padding: 1.5rem 1rem;
  font-family: 'din condensed', sans-serif;
  font-size: 1.25rem;
  position: fixed;
  top: 0;
  z-index: 1000;
  transition: transform 0.3s ease, background-color 0.3s ease, padding 0.3s ease;
  transform: translateY(0);
}

.navbar.navbar-hidden {
  transform: translateY(-100%);
}

.navbar.navbar-scrolled {
  background-color: var(--color-offwhite);
  backdrop-filter: blur(10px);
  padding: 0.75rem 0 0.5rem;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

ul li {
  list-style: none;
  & a {
    color: var(--color-gray-500);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
    &:hover {
      color: var(--color-orange-500);
    }
  }
}

strong {
  font-weight: 600;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9998;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.languages {
  display: flex;
  gap: 1rem;
  list-style: none;
  text-decoration: none;
}

.container {
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.menu-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: none;
  & button {
    margin-top: -4px;
  }
}

aside {
  display: block;
  position: fixed;
  top: 0;
  right: -100%;
  width: fit-content;
  height: fit-content;
  background-color: var(--color-orange-500);
  z-index: 9999;
  overflow-y: auto;
  padding: 2.5rem;
  transition: right 0.3s ease-in-out;
  & .nav-menu {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style: none;
    & img {
      width: 2.5rem;
      margin-left: auto;
      cursor: pointer;
    }
    & li {
      padding-top: 2rem;
      padding-bottom: 0.5rem;
      border-bottom: 1px solid var(--color-orange-200);
      & .link-menu {
        display: flex;
        flex-direction: column;
        font-family: 'Din Condensed', sans-serif;
        text-transform: uppercase;
        line-height: 100%;
        color: var(--color-white);
        font-weight: 600;
        text-decoration: none;
        font-size: 3rem;
        transition: color 0.2s ease-in-out;
      }
      & a:hover {
        color: var(--color-black);
      }
      & .link-mail {
        color: var(--color-white);
      }
    }
    & li:first-child {
      padding-top: 0px;
    }
    & span {
      padding-top: 0.25rem;
      padding-bottom: 0.75rem;
      display: block;
      font-family: 'montserrat', sans-serif;
      font-size: 1.25rem !important;
      line-height: 100%;
      color: var(--color-white);
      font-weight: 600;
      text-decoration: none;
      font-size: 3rem;
      transition: color 0.2s ease-in-out;
    }
  }
  & .languages {
    border: none;
    display: flex;
    gap: 1rem;
    list-style: none;
    margin-top: 7rem;
    & a {
      font-family: 'Din Condensed', sans-serif;
      text-transform: uppercase;
      line-height: 100%;
      color: var(--color-white);
      font-weight: 600;
      text-decoration: none;
      transition: color 0.2s ease-in-out;
      font-size: 2.5rem;
      &:hover {
        color: var(--color-black);
      }
    }
  }
}

aside.active {
  right: 0;
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  & .video-button {
    font-size: 0.875rem;
    font-weight: 700;
    position: absolute;
    line-height: 100%;
    bottom: 16px;
    right: 16px;
    background: non e;
    border: none;
    cursor: pointer;
    z-index: 10;
    background-color: var(--color-orange-100);
    color: var(--color-brown);
    padding: 1.25rem 2rem;
    border-radius: 11px;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    &:hover {
      background-color: var(--color-orange-500);
      color: var(--color-white);
    }
  }
}

.video {
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.introduction-section {
  margin-top: 11.5rem;
  margin-bottom: 10.5rem;
  padding: 0 2.5rem;
  & .introduction-wrapper {
    display: flex;
    gap: 2.5rem;
    justify-content: space-between;
    align-items: center;
  }
  & h1 {
    max-width: 36.7rem;
  }
  & .introduction-content {
    max-width: 35.375rem;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 2.5rem;
    & .introduction-title {
      font-weight: 700;
      font-size: 1.25rem;
      margin-bottom: 0.5rem;
    }
    & .introduction-description {
      font-size: 1.125rem;
    }
  }
  & .introduction-button {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 100%;
    background-color: var(--color-orange-500);
    color: var(--color-white);
    padding: 1.25rem 2rem;
    border-radius: 3px;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    &:hover {
      background-color: var(--color-orange-700);
      color: var(--color-white);
    }
  }
}

.episodes-section {
  background-color: var(--color-purple);
  padding: 7.5rem 2.5rem 10rem 2.5rem;
  color: white;
  & .episodes-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
  }
  & .episodes-description-wrapper {
    width: 100%;
    max-width: 25.7rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: start;
    justify-content: center;
    & .episodes-info-wrapper {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      & .episodes-info {
        display: flex;
        gap: 0.5rem;
        font-weight: 700;
        font-size: 0.875rem;
      }
      & .episodes-title {
        font-weight: 700;
        font-size: 2rem;
        line-height: 100%;
        color: var(--color-white);
      }
    }
    & .episodes-description {
      font-weight: 400;
      font-size: 1rem;
      display: -webkit-box;
      -webkit-line-clamp: 5;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    & .episodes-button {
      font-size: 0.875rem;
      font-weight: 700;
      background-color: var(--color-black);
      color: var(--color-white);
      padding: 1.25rem 2rem;
      border-radius: 3px;
      transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
      &:hover {
        background-color: var(--color-orange-500);
        color: var(--color-white);
      }
    }
  }
  & .episodes-image-wrapper {
    width: 100%;
    max-width: 45.7rem;
    & img {
      width: 100%;
      border-radius: 12px;
    }
  }
}

.balls-section {
  background-image: url('../assets/bg2.png');
  background-size: cover;
  background-position: center;
  padding: 5rem 2.5rem;
  & .balls-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12rem;
    & .balls-content {
      display: flex;
      flex-direction: column;
      gap: 2.5rem;
      align-items: center;
      & img {
        max-width: 15rem;
      }
      & h3 {
        font-weight: 700;
        font-size: 1.125rem;
        color: var(--color-orange-100);
        text-align: center;
      }
    }
  }
}

.way-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
      padding: 0 4rem;
  & img {
    width: 100%;
    max-width: 50rem;
  }
  & .way-description-wrapper {
    max-width: 31rem;
    height: 100%;
    min-width: 25rem;
    & p {
      margin-top: 1.25rem;
      font-size: 1.125rem;
      font-weight: 500;
      & span {
        font-weight: 600;
      }
    }
  }
}

footer {
  background-color: var(--color-orange-500);
  padding: 1rem;
  & .footer-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    & .regua {
      width: 100%;
      height: auto;
      max-height: 20rem;
    }
    & .footer-content {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1.5rem;
    }
  }
}

/*Episódios*/

.internal-nav {
  .navbar {
    background-size: cover;
    background-position: center;
    width: 100%;
    padding: 1.5rem 1rem;
  }

  .languages {
    & a {
      color: var(--color-white);
    }
  }
}

.episodio-header-section {
  background-image: url('../assets/bg2.png');
}

.episodio-header-section,
.about-header-section {
  width: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: repeat;
  & h1 {
    padding-top: 8rem;
    padding-bottom: 4rem;
    color: var(--color-offwhite);
    font-size: 5rem;
    padding-left: 2.5rem;
  }
}

.episodes-item-section {
  width: 100%;
  padding: 5rem 2.5rem 0 2.5rem;
  & .episodes-item-wrapper {
    width: 100%;
    max-width: 70rem;
    display: flex;
    justify-content: space-between;
    padding-bottom: 5rem;
    border-bottom: 1px solid #b3b3b3;
    & .episodes-item-description-content {
      display: flex;
      gap: 2.5rem;
      & .episodes-item-info {
        font-size: 0.875rem;
        color: #797979;
        font-weight: 600;
        & :first-child {
          color: var(--color-brown);
          font-weight: 700;
        }
      }
      & .episodes-description-wrapper {
        max-width: 24.25rem;
        & .episodes-info {
          display: flex;
          gap: 0.5rem;
          font-weight: 700;
          font-size: 0.875rem;
          margin-bottom: 0.5rem;
        }
        & .episodes-title {
          font-family: 'montserrat', sans-serif;
          text-transform: none;
          font-weight: 700;
          font-size: 2rem;
          line-height: 100%;
          color: var(--color-brown);
          margin-bottom: 1.5rem;
        }
        & .episodes-description {
          font-weight: 500;
          font-size: 1rem;
          display: -webkit-box;
          -webkit-line-clamp: 5;
          -webkit-box-orient: vertical;
          overflow: hidden;
        }
      }
    }
  }
  & img {
    width: 100%;
    max-width: 27rem;
    height: auto;
  }
}

.new-episodes-section {
  width: 100%;
  padding: 10rem 2.5rem;
  text-align: center;
  h2 {
    color: var(--color-brown);
  }
}

/*Episódios Internal*/

.ep-header-section {
  height: 45rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-image: url('/assets/bg-ep.png');
  & .episodes-info-wrapper {
    width: 100%;
    max-width: 1580px;
    padding: 2.5rem 4rem;
    margin: 0 auto;
    & .episodes-info {
      display: flex;
      gap: 0.5rem;
      color: var(--color-offwhite);
      font-size: 0.875rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
    }
    & h1 {
      color: var(--color-offwhite);
      max-width: 26rem;
      margin-bottom: 1.5rem;
    }
  }
}
.page-ep .episodes-item-wrapper .episodes-item-description-content {
  width: 100%;
  & .episodes-item-info {
    border-bottom: none !important;
    min-width: 7rem;
  }

  & .episodes-description-wrapper {
    max-width: 100%;
    & .ep-description-wrapper {
      margin-top: 5rem;
      & h3 {
        text-transform: uppercase;
        font-size: 0.875rem;
        margin-bottom: 0.25rem;
        font-weight: 700;
      }
      & .ep-description {
        font-size: 1rem;
        line-height: 160%;
        letter-spacing: -0.005rem;
        & span {
          font-weight: 600;
        }
      }
      & .ref {
        margin-top: 2rem;
      }
    }
  }
}

.episodes-item-wrapper.ref {
  border-bottom: none !important;
}

.details-section {
  width: 100%;
  max-width: 73rem;
  padding: 5rem 2.5rem;
  margin: 0 auto;
  & .details-title {
    & h2 {
      color: var(--color-brown);
      font-size: 3.5rem;
    }
    & p {
      font-size: 1.5rem;
      font-weight: 700;
      line-height: 100%;
      letter-spacing: -0.015rem;
      text-transform: uppercase;
    }
  }

  & .details-wrapper {
    margin-top: 4rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 3.5rem;
    & .details-content {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    & .details-description-wrapper {
      padding-bottom: 1.5rem;
      width: 100%;
      border-bottom: 1px solid #9d9d9d;
      & h3 {
        font-size: 0.875rem;
        font-weight: 700;
        text-transform: uppercase;
        line-height: 100%;
        letter-spacing: -0.015rem;
        margin-bottom: 0.5rem;
      }
      & .details-description {
        font-size: 1rem;
        font-weight: 500;
        line-height: 160%;
        letter-spacing: -0.015rem;
        & span {
          font-weight: 600;
        }
      }
    }
    & .details-card {
      height: fit-content;
      display: flex;
      gap: 2.5rem;
      background-color: #fcfbf7;
      padding: 4rem;
      border-radius: 0.5rem;
      color: #532d23;
      font-size: 1.5rem;
      font-weight: 600;
      line-height: 130%;
      letter-spacing: -0.015rem;
      max-width: 30rem;

      /* card-shadow */
      box-shadow: 0 177px 49px 0 rgba(169, 167, 167, 0),
        0 113px 45px 0 rgba(169, 167, 167, 0.01),
        0 64px 38px 0 rgba(169, 167, 167, 0.02),
        0 28px 28px 0 rgba(169, 167, 167, 0.03),
        0 7px 16px 0 rgba(169, 167, 167, 0.03);
    }
  }
}

.tags {
  & h3 {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 100%;
    letter-spacing: -0.015rem;
    margin-bottom: 0.75rem;
  }
  & .tag-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .tag-item {
    padding: 0.5rem;
    color: var(--color-white);
    border-radius: 0.5rem;
    background: #b13512;
    font-family: 'montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 100%;
    text-transform: uppercase;
  }
}

.credits-section {
  padding: 5rem 2.5rem;
  background-color: #fcf6e5;
  .credits-wrapper {
    padding: 0rem 4rem;
    max-width: 70rem;
    margin: 0 auto;
    & .credits-title {
      padding-bottom: 5rem;
      display: flex;
      justify-content: space-between;
      cursor: pointer;
      & h2 {
        color: var(--color-brown);
        font-family: 'montserrat', sans-serif;
        font-size: 1.25rem;
        font-weight: 700;
        line-height: 100%;
        letter-spacing: -0.0125rem;
        text-transform: uppercase;
      }
    }
  }

  .credits-wrapper {
    margin-bottom: 4rem;
    & h2 {
      color: var(--color-brown);
      font-family: 'montserrat', sans-serif;
      font-size: 1.25rem;
      font-weight: 700;
      line-height: 100%;
      letter-spacing: -0.0125rem;
      text-transform: uppercase;
    }

    & .credits-description-wrapper {
      display: flex;
      justify-content: space-between;
      border-bottom: 1px solid #9d9d9d;
      padding-bottom: 1.5rem;
      margin-bottom: 1.5rem;

      & h3 {
        font-family: 'montserrat', sans-serif;
        font-size: 0.875rem;
        font-weight: 700;
        line-height: 100%;
        letter-spacing: -0.0125rem;
        text-transform: uppercase;
      }
      & .credits-description-content {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        max-width: 25rem;
        width: 100%;
        & p {
          font-size: 1rem;
          line-height: 160%;
          letter-spacing: -0.005rem;
          & span {
            font-weight: 700;
          }
        }
      }
    }
    .credits-description-wrapper.first {
      padding-top: 2.5rem;
    }
    .credits-description-wrapper.last {
      border: none;
    }
  }
}

.about-header-section {
  background-image: url('../assets/bg3.png');
}

.about-item-section {
  padding: 5rem;
  max-width: 78rem;
  margin: 0 auto;
  & .about-item-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    font-weight: 500;
    & strong {
      font-weight: 600;
    }
  }
}

.credits-section.about {
  background: none;
}
.about-section {
  max-width: 70rem;
  margin: 0 auto;
  padding-bottom: 7.5rem;
  & .about-container {
    display: flex;
    flex-direction: column;
    gap: 5rem;
  }
  & .about-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 2rem;
    & img {
      max-width: 27.625rem;
      height: 30rem;
      object-fit: cover;
      border-radius: 8px;
    }
    &:first-child img {
      width: 100%;
      height: fit-content;
    }
  }
  & .about-description-wrapper {
    max-width: 32.5rem;
    & h2 {
      color: var(--color-brown);
      font-family: 'montserrat', sans-serif;
      font-size: 2rem;
      font-weight: 700;
      line-height: 100%;
      letter-spacing: -0.02rem;
      margin-bottom: 1.5rem;
    }
    & .about-description-content {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      & a {
        font-weight: 700;
      }
    }
  }
}

.about-logo {
  background-image: url('./assets/about/bruta-logo.png');
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
}

.credits-content {
  display: none;
}

.episodes-info-wrapper-btn {
  display: flex;
  gap: 1rem;
  & .episodes-info-wrapper {
    align-items: flex-end;
    justify-content: space-between;
    display: flex;
  }
  & .episodes-btn {
    padding-bottom: 4rem;
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 100%;
    background-color: var(--color-orange-500);
    color: var(--color-white);
    padding: 1.25rem 2rem;
    border-radius: 3px;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    margin-bottom: 2rem;
    &:hover {
      background-color: var(--color-orange-700);
      color: var(--color-white);
    }
  }
}

@media (max-width: 900px) {
  h1 {
    font-size: 3rem;
  }
  .introduction-wrapper {
    flex-direction: column;
  }
  .episodes-section {
    padding: 5rem 1rem;
  }
  .episodes-wrapper {
    flex-direction: column;
    gap: 3rem !important;
  }
  .balls-section {
    background-size: auto;
    background-repeat: repeat;
  }
  .balls-wrapper {
    flex-wrap: wrap;
    gap: 2rem !important;
  }

  .way-wrapper {
    flex-direction: column;
  }
  .way-section {
    padding-top: 5rem;
  }
  .way-description {
    font-size: 1.125rem !important;
  }
  h2 {
    font-size: 2rem;
  }

  .about-wrapper {
    flex-direction: column;
    width: 100%;

    & .about-description-wrapper {
      max-width: 100%;
      & .about-description-content {
        width: 100%;
      }
    }
  }

  .about-header-section,
  .episodio-header-section {
    h1 {
      font-size: 3rem;
      padding-left: 1rem;
    }
  }

  .credits-wrapper {
    padding: 0rem !important;
    & .credits-description-content {
      max-width: 50% !important;
    }
  }
  .episodes-item-wrapper {
    flex-direction: column;
    gap: 2rem !important;
  }
  .episodes-item-description-content {
    flex-direction: column;
    gap: 1rem !important;
  }
  .details-wrapper {
    flex-direction: column;
    gap: 2rem !important;
  }
  .details-card {
    max-width: 100% !important;
    margin-top: 2rem;
  }
}

/* Correção para mobile */
@media (max-width: 475px) {
  aside {
    right: -100vw;
    width: 100vw;
    height: 100vh;
    overflow-y: auto;
    transition: right 0.3s ease-in-out;
  }

  aside.active {
    right: 0;
  }

  /* Ajuste do padding do container no menu mobile */
  aside .nav-menu {
    padding: 0;
  }

  .container {
    padding: 0 1rem;
  }
  .introduction-section {
    margin-top: 5rem;
    margin-bottom: 5rem;
    padding: 0 1rem;
    h1 {
      font-size: 2.25rem;
    }
    & .introduction-button {
      width: 100%;
      text-align: center;
    }
  }
  .episodes-button {
    width: 100%;
    text-align: center;
  }

  .about-item-section {
    padding: 5rem 0;
  }

  .about-wrapper {
    & img {
      width: 100%;
    }
  }

  .footer-content {
    flex-direction: column;
    margin-top: 2rem;
    gap: 1rem;
  }

  .link-menu {
    font-size: 2.25rem !important;
  }
}

@media (max-width: 400px) {
  .introduction-wrapper {
    flex-direction: column;
  }
}
