: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('../fonts/DIN_Condensed_Bold.ttf') format('truetype');
}

@font-face {
  font-family: 'PressBox';
  src: url('../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('../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: 580px;
  position: relative;
  display: flex;
}

.swiper .swiper-slide {
  width: 100%;
  min-width: 680px;
}

.swiper-slide img {
  display: block;
  width: 42.5rem;
  height: 25rem;
  object-fit: cover;
  border-radius: 8px;
}

.swiper-wrapper {
  margin-left: 40px;
}

.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;
}

.credits-title {
  cursor: pointer;
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.credits-title:hover {
  opacity: 0.8;
}

/* Esconder conteúdo por padrão */
.credits-section .container > div:last-child {
  display: none;
}

/* Mostrar quando aberto */
.credits-section .container > div:last-child.credits-open {
  display: block;
}

/* Animação da seta */
.credits-title img {
  transition: transform 0.3s ease;
  transform: rotate(180deg);
}

.credits-title img.arrow-rotate {
  transform: rotate(0deg);
}
.swiper-card h3 {
  color: #532d23;
  font-family: Montserrat;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 0.875rem */
  text-transform: uppercase;
  margin-top: 16px;
}

.swiper-card p {
  overflow: hidden;
  color: #532d23;
  text-overflow: ellipsis;
  font-family: Montserrat;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 1.6rem */
  letter-spacing: -0.005rem;
  margin-top: 8px;
}
.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('../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('../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;
}

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

ul li a: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;
}

.menu-wrapper 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;
}

aside .nav-menu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
}

aside .nav-menu img {
  width: 2.5rem;
  margin-left: auto;
  cursor: pointer;
}

aside .nav-menu li {
  padding-top: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-orange-200);
}

aside .nav-menu li .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;
}

aside .nav-menu li a:hover {
  color: var(--color-black);
}

aside .nav-menu li .link-mail {
  color: var(--color-white);
}

aside .nav-menu li:first-child {
  padding-top: 0px;
}

aside .nav-menu 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;
}

aside .languages {
  border: none;
  display: flex;
  gap: 1rem;
  list-style: none;
  margin-top: 7rem;
}

aside .languages 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;
}

aside .languages a: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-wrapper .video-button {
  font-size: 0.875rem;
  font-weight: 700;
  position: absolute;
  line-height: 100%;
  bottom: 16px;
  right: 16px;
  background: none;
  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;
}

.video-wrapper .video-button: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-section .introduction-wrapper {
  display: flex;
  gap: 2.5rem;
  justify-content: space-between;
  align-items: center;
}

.introduction-section h1 {
  max-width: 36.7rem;
}

.introduction-section .introduction-content {
  max-width: 35.375rem;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 2.5rem;
}

.introduction-section .introduction-content .introduction-title {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.introduction-section .introduction-content .introduction-description {
  font-size: 1.125rem;
}

.introduction-section .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;
}

.introduction-section .introduction-button: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-section .episodes-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.episodes-section .episodes-description-wrapper {
  width: 100%;
  max-width: 25.7rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: start;
  justify-content: center;
}

.episodes-section .episodes-description-wrapper .episodes-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.episodes-section
  .episodes-description-wrapper
  .episodes-info-wrapper
  .episodes-info {
  display: flex;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.875rem;
}

.episodes-section
  .episodes-description-wrapper
  .episodes-info-wrapper
  .episodes-title {
  font-weight: 700;
  font-size: 2rem;
  line-height: 100%;
  color: var(--color-white);
}

.episodes-section .episodes-description-wrapper .episodes-description {
  font-weight: 400;
  font-size: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  line-clamp: 5;
  overflow: hidden;
}

.episodes-section .episodes-description-wrapper .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;
}

.episodes-section .episodes-description-wrapper .episodes-button:hover {
  background-color: var(--color-orange-500);
  color: var(--color-white);
}

.episodes-section .episodes-image-wrapper {
  width: 100%;
  max-width: 45.7rem;
}

.episodes-section .episodes-image-wrapper img {
  width: 100%;
  border-radius: 12px;
}

.balls-section {
  background-image: url('../bg2.png');
  background-size: cover;
  background-position: center;
  padding: 5rem 2.5rem;
}

.balls-section .balls-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12rem;
}

.balls-section .balls-wrapper .balls-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}

.balls-section .balls-wrapper .balls-content img {
  max-width: 15rem;
}

.balls-section .balls-wrapper .balls-content h3,
.balls-section .balls-wrapper .balls-content .balls-highlight,
.balls-section .balls-wrapper .balls-content h3 *,
.balls-section .balls-wrapper .balls-content .balls-highlight *,
.balls-section .balls-wrapper .balls-content .balls-description,
.balls-section .balls-wrapper .balls-content .balls-description * {
  font-weight: 700 !important;
  font-size: 1.125rem !important;
  color: var(--color-orange-100) !important;
  text-align: center !important;
  max-width: 280.03px;
  width: 100%;
  display: block;
  margin: 0 auto;
}
.way-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}

.way-wrapper img {
  width: 100%;
  max-width: 50rem;
}

.way-wrapper .way-description-wrapper {
  max-width: 31rem;
  height: 100%;
  min-width: 25rem;
}

.way-wrapper .way-description-wrapper p {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  font-weight: 500;
}

.way-wrapper .way-description-wrapper p span {
  font-weight: 600;
}

footer {
  background-color: var(--color-orange-500);
  padding: 1rem;
}

footer .footer-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

footer .footer-wrapper .regua {
  width: 100%;
  height: auto;
  max-height: 20rem;
}

footer .footer-wrapper .footer-content {
  width: 100%;
  display: flex;
  border-top: solid 1px #e7cb8f;
  padding-top: 1.5rem;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.social-image img {
  width: 2.5rem;
  height: 2.5rem;
}

.social-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

/*Episódios*/

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

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

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

.episodio-header-section,
.about-header-section {
  width: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: repeat;
}

.episodio-header-section h1,
.about-header-section 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-section .episodes-item-wrapper {
  width: 100%;
  max-width: 70rem;
  display: flex;
  justify-content: space-between;
  padding-bottom: 5rem;
  border-bottom: 1px solid #b3b3b3;
}

.episodes-item-section
  .episodes-item-wrapper
  .episodes-item-description-content {
  display: flex;
  gap: 2.5rem;
}

.episodes-item-section
  .episodes-item-wrapper
  .episodes-item-description-content
  .episodes-item-info {
  font-size: 0.875rem;
  color: #797979;
  font-weight: 600;
}

.episodes-item-section
  .episodes-item-wrapper
  .episodes-item-description-content
  .episodes-item-info
  :first-child {
  color: var(--color-brown);
  font-weight: 700;
}

.episodes-item-section
  .episodes-item-wrapper
  .episodes-item-description-content
  .episodes-description-wrapper {
  max-width: 24.25rem;
}

.episodes-item-section
  .episodes-item-wrapper
  .episodes-item-description-content
  .episodes-description-wrapper
  .episodes-info {
  display: flex;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.episodes-item-section
  .episodes-item-wrapper
  .episodes-item-description-content
  .episodes-description-wrapper
  .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-item-section
  .episodes-item-wrapper
  .episodes-item-description-content
  .episodes-description-wrapper
  .episodes-description {
  font-weight: 500;
  font-size: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  line-clamp: 5;
  overflow: hidden;
}

.episodes-item-section img {
  width: 100%;
  max-width: 27rem;
  height: auto;
}

.new-episodes-section {
  width: 100%;
  padding: 10rem 2.5rem;
  text-align: center;
}

.new-episodes-section 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('../bg-ep.png');
}

.ep-header-section .episodes-info-wrapper {
  width: 100%;
  max-width: 1580px;
  padding: 2.5rem 4rem;
  margin: 0 auto;
}

.ep-header-section .episodes-info-wrapper .episodes-info {
  display: flex;
  gap: 0.5rem;
  color: var(--color-offwhite);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.ep-header-section .episodes-info-wrapper h1 {
  color: var(--color-offwhite);
  max-width: 26rem;
  margin-bottom: 1.5rem;
}
.page-ep .episodes-item-wrapper .episodes-item-description-content {
  width: 100%;
}

.page-ep
  .episodes-item-wrapper
  .episodes-item-description-content
  .episodes-item-info {
  border-bottom: none !important;
  min-width: 7rem;
}

.page-ep
  .episodes-item-wrapper
  .episodes-item-description-content
  .episodes-description-wrapper {
  max-width: 100%;
}

.page-ep
  .episodes-item-wrapper
  .episodes-item-description-content
  .episodes-description-wrapper
  .ep-description-wrapper {
  margin-top: 5rem;
}

.page-ep
  .episodes-item-wrapper
  .episodes-item-description-content
  .episodes-description-wrapper
  .ep-description-wrapper
  h3 {
  text-transform: uppercase;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.page-ep
  .episodes-item-wrapper
  .episodes-item-description-content
  .episodes-description-wrapper
  .ep-description-wrapper
  .ep-description {
  font-size: 1rem;
  line-height: 160%;
  letter-spacing: -0.005rem;
}

.page-ep
  .episodes-item-wrapper
  .episodes-item-description-content
  .episodes-description-wrapper
  .ep-description-wrapper
  .ep-description
  span {
  font-weight: 600;
}

.page-ep
  .episodes-item-wrapper
  .episodes-item-description-content
  .episodes-description-wrapper
  .ep-description-wrapper
  .ref {
  margin-top: 2rem;
}
.container-references {
  width: 100%;
  max-width: 65rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #9d9d9d;
  padding-top: 3.25rem;
}

.container-references .ep-description.ref {
  font-size: 1rem;
  line-height: 160%;
  letter-spacing: -0.005rem;
  padding-top: 1.5rem;
}

.container-references .ep-description.ref span {
  font-weight: 600;
}

.container-references .tags {
  margin-top: 2rem;
  border-top: 1px solid #9d9d9d;
  margin-bottom: 10rem;
  padding-top: 3.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.references {
  max-width: 31.1rem;
}

.title-reference {
  color: #532d23;

  font-family: Montserrat;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 0.875rem */
  text-transform: uppercase;
  margin-bottom: 2rem;
}

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

.details-section {
  width: 100%;
  max-width: 73rem;
  padding: 5rem 2.5rem;
  margin: 0 auto;
}

.details-section .details-title h2 {
  color: var(--color-brown);
  font-size: 3.5rem;
}

.details-section .details-title p {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -0.015rem;
  text-transform: uppercase;
}

.details-section .details-wrapper {
  margin-top: 4rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 3.5rem;
}

.details-section .details-wrapper .details-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.details-section .details-wrapper .details-description-wrapper {
  padding-bottom: 1.5rem;
  width: 100%;
  border-bottom: 1px solid #9d9d9d;
}

.details-section .details-wrapper .details-description-wrapper h3 {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 100%;
  letter-spacing: -0.015rem;
  margin-bottom: 0.5rem;
}

.details-section
  .details-wrapper
  .details-description-wrapper
  .details-description {
  font-size: 1rem;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: -0.015rem;
}

.details-section
  .details-wrapper
  .details-description-wrapper
  .details-description
  span {
  font-weight: 600;
}

.details-section .details-wrapper .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;
}

.tags .tag-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tags .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 0 2.5rem;
  background-color: #fcf6e5;
}

.credits-section .credits-wrapper {
  padding: 0rem 4rem;
  max-width: 70rem;
  margin: 0 auto;
}

.credits-section .credits-wrapper .credits-title {
  padding-bottom: 5rem;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.credits-section .credits-wrapper .credits-title 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-section .credits-wrapper 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-section .credits-wrapper .credits-description-wrapper {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #9d9d9d;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

.credits-section .credits-wrapper .credits-description-wrapper h3 {
  font-family: 'montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -0.0125rem;
  text-transform: uppercase;
}

.credits-section
  .credits-wrapper
  .credits-description-wrapper
  .credits-description-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 25rem;
  width: 100%;
}

.credits-section
  .credits-wrapper
  .credits-description-wrapper
  .credits-description-content
  p {
  font-size: 1rem;
  line-height: 160%;
  letter-spacing: -0.005rem;
}

.credits-section
  .credits-wrapper
  .credits-description-wrapper
  .credits-description-content
  p
  span {
  font-weight: 700;
}

.credits-section .credits-wrapper .credits-description-wrapper.first {
  padding-top: 2.5rem;
}

.credits-section .credits-wrapper .credits-description-wrapper.last {
  border: none;
}

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

.about-item-section {
  padding: 5rem;
  max-width: 78rem;
  margin: 0 auto;
}

.about-item-section .about-item-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  font-weight: 500;
}

.about-item-section .about-item-wrapper strong {
  font-weight: 600;
}

.credits-section.about {
  background: none;
}
.about-section {
  max-width: 70rem;
  margin: 0 auto;
  padding-bottom: 7.5rem;
}

.about-section .about-container {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.about-section .about-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 2rem;
}

.about-section .about-wrapper img {
  max-width: 27.625rem;
  height: 30rem;
  object-fit: cover;
  border-radius: 8px;
}

.about-section .about-wrapper:first-child img {
  width: 100%;
  height: fit-content;
}

.about-section .about-description-wrapper {
  max-width: 32.5rem;
}

.about-section .about-description-wrapper 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-section .about-description-wrapper .about-description-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-section .about-description-wrapper .about-description-content a {
  font-weight: 700;
}

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

.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);
    }
  }
}

.slide-footer {
  background: #b13512;
  padding-top: 4rem;
  height: 720px;
  & h3 {
    margin: 0 auto;
    margin-bottom: 4rem;
    width: 100%;
    max-width: 65rem;
    color: #fff;
    font-family: Montserrat;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 1.25rem */
    letter-spacing: -0.0125rem;
    text-transform: uppercase;
  }
  & .swiper-controls {
    bottom: 100px;
  }
  & .swiper-pagination-bullet {
    background: white !important;
  }

  & .swiper-button-prev,
  .swiper-button-next {
    position: static !important;
    width: 40px !important;
    height: 40px !important;
    margin: 0 !important;
    color: white !important;
    border: 1.5px solid white;
  }
}

/* CSS para a seção de episódios com Swiper */

.slide-epsodios {
  padding: 60px 0;
  transition: background-color 0.6s ease;
  background-color: #602ea3; /* Cor inicial */
}

.swiper-episodes {
  width: 100%;
  padding-bottom: 60px;
}

.swiper-episodes .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* Garantir que o episódio ocupe toda a largura */
.swiper-episodes .episodes-section {
  width: 100%;
}

/* Controles do Swiper */
.slide-epsodios .swiper-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
  bottom: 20px;
}

.slide-epsodios .swiper-pagination {
  position: static !important;
}

.slide-epsodios .navigation-buttons {
  display: flex;
  gap: 15px;
}

.slide-epsodios .swiper-pagination-bullet {
  width: 100% !important;
  height: 3px !important;
  border-radius: 3px !important;
  background: white !important;
  transition: all 0.3s ease;
}

.slide-epsodios .swiper-button-prev,
.slide-epsodios .swiper-button-next {
  position: static !important;
  margin: 0;
  width: 40px;
  border: white;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.slide-epsodios .swiper-button-prev:after,
.slide-epsodios .swiper-button-next:after {
  font-size: 18px;
  color: #fff;
}

/* Responsivo */
@media (max-width: 768px) {
  .slide-epsodios {
    padding: 40px 0;
  }
}

@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 {
    display: flex;

    flex-direction: column;
    margin-top: 2rem;
    gap: 1rem;
  }

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

@media (max-width: 400px) {
  .introduction-wrapper {
    flex-direction: column;
  }
  .swiper {
    & .swiper-slide {
      width: 100%;
      min-width: 280px;
    }
  }
  .episodes-item-section {
    padding-left: 0;
    padding-right: 0;
  }
  .episodes-info-wrapper-btn {
    & .episodes-info-wrapper {
      flex-direction: column;
      padding: 1.5rem 1rem !important;
      & a {
        width: 100%;
      }
    }
  }

  .details-section {
    padding-top: 80px;
    padding-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
  }
  .details-title h2 {
    font-size: 2.5rem !important;
  }
  .container-references {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .ep-description-wrapper {
    margin-top: 2rem !important;
  }
  .episodes-info-wrapper {
    padding: 0 !important;
  }
  .tags {
    margin-bottom: 4rem !important;
  }
  .credits-description-wrapper {
    flex-direction: column;
    gap: 2rem !important;
  }
  .credits-section {
    padding-left: 1rem;
  }
  .credits-description-wrapper.last {
    margin-bottom: 0 !important;
  }
  .swiper {
    height: 420px;
    margin-top: 40px;
    & .swiper-controls {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 30px;
      margin-top: 30px;
      & .swiper-pagination {
        margin: 16px;
      }
      & .navigation-buttons {
        display: none;
      }
    }
  }

  .slide-footer {
    height: 520px;
    & .swiper {
      height: 320px;
    }
    & .swiper-controls {
      bottom: 10px !important;
    }
    & .swiper-controls {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 30px;
      margin-top: 30px;
      & .swiper-pagination {
        margin: 16px;
      }
      & .navigation-buttons {
        display: none;
      }
    }
  }

  .slide-footer h3 {
    padding: 0 1rem;
  }
  .swiper-wrapper {
    margin-left: 1rem !important;
  }
  .swiper-slide img {
    width: 100% !important;
    max-width: 340px;
    height: 250px !important;
  }
}
