* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: #030b18;
}

:root {
    --primary-color: #;
    --secondary-color: rgb(255, 20, 20);
    --background-color: rgb(12, 0, 14);
    --text-color: rgb(244, 250, 255);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

/* ----- SETA TOPO ----- */

#seta-topo {
    position: fixed;
    bottom: 100px;
    right: 100px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px;
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.3s;
    z-index: 2;
}

#seta-topo:hover {
    transform: scale(1.1);
}

/* ----- SETA TOPO FINAL ----- */

/* ----- HEADER GUSTAVO ----- */

.header-play {
    background-color: black;
    padding: 20px 0;
    font-family: 'khand', sans-serif;
}

.header-play__video {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.header-play__video p {
    font-size: 52px;
    font-weight: 500;
    color: var(--text-color);
}

.header-play__video .martinez {
    font-weight: 300;
}

/* ----- HEADER GUSTAVO FINAL ----- */

/* ----- HEADER ----- */

header {
    width: 100%;
    padding: 40px 0;
    position: sticky;
    top: 0; 
    z-index: 2;
    font-family: 'khand', sans-serif;
    transition: padding 1s;
}

header.shrink {
    padding: 20px 0;
    background-color: black;
    border-bottom: 1px solid rgba(255, 0, 0, 0.336);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .header__menu-desktop nav ul {
    list-style-type: none;
}

header .header__menu-desktop nav ul a {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
    color: var(--text-color);
    text-transform: uppercase;
}

header .header__menu-desktop nav ul li a:hover {
    color: var(--secondary-color);
}

header .header__menu-desktop nav ul li {
    display: inline-block;
    margin: 0 16px;
    position: relative;
    overflow: hidden;
}

header .header__menu-desktop nav ul li::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: var(--secondary-color);
    transition: width 0.5s ease-in-out;
}

header .header__menu-desktop nav ul li:hover::after {
    width: 100%;
}

header .header__midias-sociais nav ul {
    list-style-type: none;
}

header .header__midias-sociais nav ul li {
    font-size: 20px;
    display: inline-block;
    margin: 0 6px;
}

header .header__midias-sociais nav ul li i {
    display: inline-block;
    color: var(--text-color);
    transition: transform 0.3s ease-in-out;
}

header .header__midias-sociais nav ul li i:hover {
    color: var(--secondary-color);
    transform: translateY(-3px);
}

header .header__btn-comprar-ingresso button {
    position: relative;
    padding: 8px 16px;
    border: none;
    border-radius: 2px;
    background-color: var(--text-color);
    color: var(--background-color);
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    overflow: hidden;
    font-family: 'khand', sans-serif;
    transition: transform 0.5s ease-in-out;
    cursor: pointer;
    letter-spacing: 1px;
}

header .header__btn-comprar-ingresso button:hover {
    background-color: var(--secondary-color);
}

header .header__btn-comprar-ingresso button::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: width 0.3s ease-in-out;
}

header .header__btn-comprar-ingresso button:hover::after {
    width: 100%;
    height: 2px;
}

/* ----- HEADER FINAL ----- */

/* ----- HEADER MOBILE ----- */

header .menu-mobile-geral {
    display: flex;
    justify-content: space-between;
    margin: -10px 0;
}
header .btn-menu-mob {
    position: relative;
    z-index: 5;
}

header .btn-menu-mob div {
    background-color: var(--text-color);
    height: 3px;
    margin: 10px 0;
    transition: .3s;
}

header .btn-menu-mob .line-menumob-1 {
    width: 30px;
}

header .btn-menu-mob .line-menumob-2 {
    width: 20px;
}

header .btn-menu-mob .line-menumob-1.ativo1 {
    transform: rotate(45deg) translate(30%);
}

header .btn-menu-mob .line-menumob-2.ativo2 {
    transform: rotate(-45deg) translate(30%);
    width: 30px;
}

/* menu interno mobile */

header .menu-mobile {
    font-family: 'khand', sans-serif;
    width: 0;
    height: 0;
    background-color: var(--background-color);
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    transition: .5s;
}

header .menu-mobile .menu-mobile__button button {
    display: block;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 8px 32px;
    margin-top: 20px;
    border: none;
    border-radius: 2px;
    background-color: var(--text-color);
    color: var(--background-color);
    font-size: 26px;
    font-weight: 800;
    text-transform: uppercase;
    overflow: hidden;
    font-family: 'khand', sans-serif;
    transition: transform 0.5s ease-in-out;
    cursor: pointer;
    letter-spacing: 1px;
}

header .menu-mobile .menu-mobile__button button:hover {
    background-color: var(--secondary-color);
}

header .menu-mobile nav {
    width: 100%;
}

header .menu-mobile nav ul {
    list-style-type: none;
}

header .menu-mobile nav a {
    font-size: 32px;
    text-decoration: none;
    color: var(--text-color);
    padding: 10px 0;
    display: block;
    transition: .5s;
}

header .menu-mobile nav a:hover {
    color: var(--secondary-color);
}

header .menu-mobile.abrir {
    width: 100%;
    height: 100vh;
}

body.no-overflow {
    overflow: hidden;
}

/* ----- HEADER MOBILE FINAL ----- */

/* ----- IMAGEM BG ----- */

.container-gustavo {
    background-image: url('../images/imersao/gustavo-martinez-banner.jpg');     
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 900px;
}

/* ----- IMAGEM BG FINAL ----- */


/* ----- A IMERSÃO ----- */

.imersao {
    font-family: 'khand', sans-serif;
    max-width: 980px;
    margin: 0 auto;
    justify-content: center;
}

.imersao h1 {
    color: #fff;
    padding-bottom: 5px;
    font-size: 72px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.imersao p {
    color: #fff;
    padding-top: 32px;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0.8px;
    padding-bottom: 75px;
}

.imersao .imersao__divisor {
    position: absolute;
    width: 10%;
    height: 2px;
    background-color: var(--secondary-color);
}

.imersao .imersao__marca-texto {
    color: #fff;
    background-color: #000000;
}

.imersao p span {
    color: rgb(255, 239, 19);
}

.imagens {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    max-width: 1280px;
    padding-bottom: 150px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.imagens img {
    width: 100%;
    border-radius: 4px;
}

/* ----- A IMERSÃO FINAL ----- */

/* ----- PARTICIPANTES ----- */

.palestrantes {
    font-family: 'khand', sans-serif;
    max-width: 980px;
    margin: 0 auto;
    position: relative;
}

.palestrantes h1 {
    color: #fff;
    padding-bottom: 5px;
    font-size: 72px;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-align: end;
}

.palestrantes p {
    color: #fff;
    padding-top: 32px;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0.8px;
    padding-bottom: 100px;
    text-align: end;
}

.palestrantes .palestrantes__divisor {
    position: absolute;
    right: 0;
    width: 25%;
    height: 1px;
    border: solid 1px red;
}

.palestrantes .palestrantes__marca-texto {
    color: #fff;
    background-color: #000000;
}

.palestrantes__marca-texto-destaque {
    font-size: 24px;
}

.palestrantes h2 {
    color: var(--text-color);
    justify-content: center;
    text-align: center;
    padding-bottom: 50px;
    font-weight: 400;
}

.palestrantes p span {
    color: rgb(255, 239, 19);
}

.palestrantes h2 {
    color: #fff;
    padding-bottom: 5px;
    font-size: 48px;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-align: center;
}

.palestrantes .imersao__temas {
    padding-bottom: 100px;
    text-align: center;
}

.palestrantes .imersao__temas button {
    color: var(--text-color);
    padding: 8px 32px;
    border-radius: 2px;
    background-color: var(--background-color);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    margin-right: 8px;
    margin-bottom: 12px;
}

.palestrantes .imersao__divisor {
    position: absolute;
    left: 25%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: 2px;
    background-color: var(--secondary-color);
}

.imersao__temas__topo {
    margin-top: 32px;
}

.imersao__temas .imersao__temas--vermelho {
    border: solid red 1px;
}

.imersao__temas .imersao__temas--vermelho:hover {
    border: solid rgb(255, 255, 255) 1px;
}

.imersao__temas .imersao__temas--branco {
    border: solid rgb(255, 255, 255) 1px;
}

.imersao__temas .imersao__temas--branco:hover {
    border: solid red 1px;
}

.imagens-palestrantes {
    font-family: 'khand', sans-serif;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 20px;
    max-width: 1280px;
    padding-bottom: 150px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.imagens-palestrantes h3 {
    color: var(--text-color);
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    opacity: 50%;
}

.imagens-palestrantes h3:hover {
    opacity: 100%;
}

.imagens-palestrantes img {
    width: 100%;
    border-radius: 4px;
}

.imagens-palestrantes__img img {
    padding-bottom: 8px;
    transition: all 0.5s;
}

.imagens-palestrantes__img img:hover {
    filter: saturate(1.2);
    transform: scale(1.05);
}

.imagens-palestrantes__midias {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    text-decoration: none;
    gap: 8px;
}

.imagens-palestrantes__midias li {
    list-style-type: none;
    gap: 5px;
}

.imagens-palestrantes__midias li a {
    text-decoration: none;
}

.imagens-palestrantes__midias li a i {
    display: inline-block;
    color: var(--text-color);
    transition: transform 0.3s ease-in-out;
    opacity: 50%;
}

.imagens-palestrantes__midias li a i:hover {
    color: var(--secondary-color);
    transform: translateY(-3px);
    opacity: 100%;
}

/* ----- PARTICIPANTES FINAL ----- */

/* ----- SEJA PATROCINADOR ----- */

.container-seja-patrocinador {
    background-color: #fff;
    max-width: 100%;
    padding-top: 100px;
}

.seja-patrocinador {
    font-family: 'khand', sans-serif;
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.seja-patrocinador h1 {
    color: var(--secondary-color);
    padding-bottom: 5px;
    font-size: 72px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.seja-patrocinador p {
    color: var(--background-color);
    padding-top: 32px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.8px;
    padding-bottom: 20px;
}

.seja-patrocinador-bottom p {
    padding-bottom: 100px;
}

.seja-patrocinador .seja-patrocinador__divisor {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 350px;
    height: 1px;
    border: solid 1px var(--secondary-color);
}

.seja-patrocinador h2 {
    color: var(--background-colort);
    justify-content: center;
    text-align: center;
    padding-bottom: 50px;
    font-weight: 400;
}

.seja-patrocinador .imagens {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1280px;
    padding-bottom: 150px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.imagens img {
    width: 100%;
    border-radius: 4px;
}

.container-seja-patrocinador--livros {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px 0;
  font-family: 'Khand', sans-serif;
}

.container-seja-patrocinador--livros .livro-box {
  position: relative;
  overflow: hidden;
  width: 320px;
  height: 350px;
  border-radius: 10px;
}

.container-seja-patrocinador--livros .livro-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.3s ease;
}

.container-seja-patrocinador--livros .livro-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: center;
  padding: 0 10px;
}

.container-seja-patrocinador--livros .livro-box:hover .livro-overlay {
  opacity: 1;
}

.container-seja-patrocinador--livros .livro-box:hover img {
  filter: brightness(60%);
  transform: scale(1.1);
}

.container-seja-patrocinador--livros .livro-overlay h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease 0.1s;
}

.container-seja-patrocinador--livros .livro-overlay button {
  padding: 10px 24px;
  background-color: black;
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Khand', sans-serif;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.3s ease 0.2s;
}

/* Mostrar elementos ao passar o mouse */
.container-seja-patrocinador--livros .livro-box:hover .livro-overlay h3,
.container-seja-patrocinador--livros .livro-box:hover .livro-overlay button {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Efeito hover no botão */
.container-seja-patrocinador--livros .livro-overlay button:hover {
  background-color: red;
  transform: scale(1.1);
}

.container-seja-patrocinador ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: 'Khand', sans-serif;
  flex-wrap: wrap; /* opcional, quebra se for responsivo */
}

.container-seja-patrocinador ul li {
  position: relative;
  padding: 0 12px;
  font-size: 1.1rem;
  white-space: nowrap;
}

/* Separador visual entre os itens, exceto o último */
.container-seja-patrocinador ul li:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: 0;
  color: #999;
}

/* ----- SEJA PATROCINADOR FINAL ----- */


.podcastletv-flex {
    max-width: 980px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 100px;
}

.podcastletv-flex .podcastletv-img img {
    width: 400px;
    height: auto;
    display: block;
}



/* ----- IMAGENS CARROSSEL ----- */

@keyframes slide {
    from {
    transform: translateX(0);
    }
    to {
    transform: translateX(-100%);
    }
}

.imagens-carrossel {
    overflow: hidden;
    padding-top: 25px;
    padding-bottom: 25px;
    white-space: nowrap;
    position: relative;
}

.imagens-carrossel__container {
    width: 1280px;
    margin: 0 auto;
}

.imagens-carrossel:before,
.imagens-carrossel:after {
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    content: "";
    z-index: 0.5;
}

.imagens-carrossel:before {
    left: 0;
}

.imagens-carrossel:after {
    right: 0;
}

.imagens-carrossel:hover .imagens-carrossel__slide {
    animation-play-state: paused;
}

.imagens-carrossel__slide {
    display: inline-block;
    animation: 40s slide infinite linear;
}

.imagens-carrossel__slide img {
    height: 200px;
    margin: 0 4px;
    border-radius: 4px;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: gray;
}

.imagens-carrossel__slide img:hover {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
    filter: saturate(1);
}

/* ----- IMAGENS CARROSSEL FINAL ----- */

/* ----- PERGUNTAS FREQUENTES ----- */

.faq {
    font-family: 'khand', sans-serif;
    padding-top: 100px;
    padding-bottom: 100px;
    max-width: 1080px;
    margin: 0 auto;
}

.faq h2 {
    color: #fff;
    font-size: 48px;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-align: center;
    padding-bottom: 75px;
}

.faq__questions {
    width: 60%;
    margin: 0 auto;
    gap: 20px;
}

.faq__questions__item {
    background-color: #13151d;
    margin-bottom: 16px;
}

.faq__questions__item__question {
    color: #fff;
    font-size: 20px;
    padding: 24px;
    display: block;
    cursor: pointer;
    position: relative;
}

.faq__questions__item__question::after {
    content: "+";
    position: absolute;
    top: 0;
    right: 24px;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 40px;
}

.faq__questions__item__answer {
    height: 0;
    overflow: hidden;
    padding: 0 24px;
    transition: height, 0.5s ease;
}

.faq__questions__item__answer p {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.6;
}

.faq__questions__item--is-open .faq__questions__item__question::after {
    content: "-";
}

.faq__questions__item--is-open .faq__questions__item__answer {
    height: auto;
    padding-bottom: 24px;
    transition: height, 0.5s ease;
}

.faq__geral {
    display: flex;
    gap: 40px;
}

.faq__geral .faq__questions {
    text-decoration: none;
    list-style-type: none;
}

.faq__geral .faq__questions__item__answer {
    color: var(--text-color);
    font-size: 14px;
}

.faq__geral .faq__geral__texto {
    color: var(--text-color);
    width: 40%;
}

.faq__geral .faq__geral__texto h3 {
    color: var(--secondary-color);
    padding-bottom: 15px;
    font-size: 48px;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1;
    text-transform: uppercase;
}

.faq__geral .faq__geral__texto p {
    color: var(--text-color);
    font-size: 18px;
    font-weight: 300;
    padding-bottom: 25px;
}

.faq__geral .faq__geral__texto mark {
    color: var(--text-color);
    background-color: var(--background-color);
}

.faq__geral .faq__geral__texto button {
    position: relative;
    padding: 8px 32px;
    margin-bottom: 8px;
    border: none;
    border-radius: 2px;
    background-color: var(--text-color);
    color: var(--background-color);
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'khand', sans-serif;
    transition: transform 0.5s ease-in-out;
    cursor: pointer;
}

.faq__geral .faq__geral__texto  button:hover {
    background-color: var(--secondary-color);
    color: var(--background-color);
}

.faq__geral .faq__geral__texto  button::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--text-color);
    transition: width 0.3s ease-in-out;
}

.faq__geral .faq__geral__texto  button:hover::after {
    width: 100%;
    height: 2px;
}

.faq__geral__texto span {
    color: #fff000;
    font-size: 20px;
}

/* ----- PERGUNTAS FREQUENTES FINAL ----- */

/* ----- NEWCASTLE IDIOMAS ----- */

.newcastle {
    font-family: 'khand', sans-serif;
    display: flex;
    background-color: rgb(218, 218, 218);
    max-width: 1080px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.274);
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: -50px;
    z-index: 1;
    position: relative;
}

.newcastle .newcastle__img img {
    border-radius: 4px;
    width: 500px;
}

.newcastle .newcastle__texto span {
    color: var(--background-color);
    font-weight: 500;
}

.newcastle .newcastle__texto h2 {
    color: var(--secondary-color);
    padding-bottom: 15px;
    font-size: 48px;
    font-weight: 900;
    letter-spacing: 2px;
    line-height: 1;
    text-transform: uppercase;
}

.newcastle .newcastle__texto h4 {
    color: var(--background-color);
    font-size: 24px;
    font-weight: 500;
    padding-bottom: 5px;
}

.newcastle .newcastle__texto p {
    color: var(--background-color);
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 25px;
}

.newcastle__texto__button--site button {
    position: relative;
    padding: 8px 32px;
    margin-bottom: 8px;
    border: none;
    border-radius: 2px;
    background-color: var(--background-color);
    color: var(--text-color);
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'khand', sans-serif;
    transition: transform 0.5s ease-in-out;
    cursor: pointer;
}

.newcastle__texto__button--site button:hover {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

.newcastle__texto__button--site button::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: width 0.3s ease-in-out;
}

.newcastle__texto__button--site button:hover::after {
    width: 100%;
    height: 2px;
}

/* ----- NEWCASTLE IDIOMAS FINAL ----- */

/* ----- FOOTER ----- */

.footer {
    font-family: 'khand', sans-serif;
    background-color: var(--text-color);
    color: var(--background-color);
    padding: 150px 0 50px 0;
    font-size: 13px;
    line-height: 20px;
    justify-content: center;
}

.footer .footer__geral {
    display: grid;
}

footer .copyright {
    text-align: center;
    font-size: 18px;
    line-height: 2;
}

footer .copyright a {
    text-decoration: none;
    color: var(--secondary-color);
}

.footer .desenvolvedor {
    text-align: center;
    font-size: 14px;
    line-height: 3;
}

.footer .desenvolvedor span {
    font-weight: 600;
}

/* ----- FOOTER FINAL ----- */