* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    --primary-color: #;
    --secondary-color: rgb(255, 20, 20);
    --background-color: rgb(12, 0, 14);
    --text-color: rgb(244, 250, 255);
}

@media screen and (max-width: 900px) {
    header .header__menu-desktop, 
    .header__btn-comprar-ingresso, 
    .header__midias-sociais 
    {
        display: none;
    }

    header .header__logo {
        display: none;
    }
}

@media screen and (min-width: 900px) {
    header .menu-mobile-geral {
        display: none;
    }
}

/* ----- min-width: 320px and max-width: 480px ----- */

@media screen and (min-width: 320px) and (max-width: 480px) {

html, body {
    overflow-x: hidden;
}

.container {
    padding: 0 6%;
}

/* ----- IMAGEM BG ----- */

.container-gustavo {
    width: 100%;
    max-width: 480px;
    height: 340px; /* ajuste conforme necessário */
    background-image: url('../images/imersao/gustavo-martinez-banner-mobile.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    margin-top: -80px;
}

header .menu-mobile-geral {
    display: none;
}

/* ----- IMAGEM BG FINAL ----- */

/* ----- HEADER VIDEO ----- */

.header-play {
    margin-bottom: 0;
}

.header-play__video p {
    font-size: 28px;
}

/* ----- HEADER VIDEO FINAL ----- */

/* ----- SETA TOPO ----- */

#seta-topo {
    position: fixed;
    bottom: 18px;
    right: 18px;
    font-size: 18px;
    padding: 9px 10px;
}

/* ----- SETA TOPO FINAL ----- */


/* ----- A IMERSÃO ----- */

.imersao h1 {
    font-size: 62px;
    line-height: 1.1;
}

.imersao p {
    padding-bottom: 50px;
}

.imersao .imersao__divisor {
    width: 40%;
}

.imersao h2 {
    line-height: 1.1;
}

.imersao .imersao__temas {
    padding-bottom: 50px;
}

.imersao .imersao__temas button {
    padding: 8px 24px;
}

.imersao__temas__topo {
    margin-top: 24px;
}

.imagens {
    max-width: 360px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

/* ----- A IMERSÃO FINAL ----- */

/* ----- PARTICIPANTES ----- */

.palestrantes {
    margin-top: -75px;
}

.palestrantes h1 {
    font-size: 52px;
    line-height: 1.1;
}

.palestrantes p {
    padding-bottom: 50px;
}

.palestrantes .palestrantes__divisor {
    width: 40%;
}

.palestrantes h2 {
    line-height: 1.1;
    font-size: 16px;
}

.imagens-palestrantes {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    padding-bottom: 75px;
}

.imagens-palestrantes h3 {
    font-size: 11px;
    padding-bottom: 10px;
}

.imagens-palestrantes__midias li {
    list-style-type: none;
    gap: 1px;
    font-size: 10px;
    padding-bottom: 10px;
}

.imagens-palestrantes img {
    margin-bottom: -10px;
}

.imagens-palestras {
    margin-top: -50px;
    margin-bottom: -50px;
}

/* ----- PARTICIPANTES FINAL ----- */

/* ----- SEJA PATROCINADOR ----- */

.container-seja-patrocinador {
    padding-top: 75px;
}

.seja-patrocinador h1 {
    font-size: 58px;
    line-height: 1.1;
    letter-spacing: 2px;
}

.seja-patrocinador p {
    padding-bottom: 40px;
}

.seja-patrocinador .seja-patrocinador__divisor {
    position: absolute;
    left: 25%;
    transform: translateX(-25%);
    width: 50%;
}

.seja-patrocinador h2 {
    font-size: 16px;
}

/* ----- SEJA PATROCINADOR FINAL ----- */

.lista-livros li {
    display: none;
}

/* ----- LOGOS ----- */

.logos {
    padding: 25px 0 75px 0;
}

.logos-slide img {
    margin: 0 20px;
}

/* ----- LOGOS FINAL ----- */

/* ----- PLANOS ----- */

.podcastletv-flex {
    margin-top: 75px;
    display: grid;
}

.podcastletv-img {
    margin-top: -50px;
    margin-bottom: -50px;
}

/* ----- PLANOS FINAL ----- */

/* ----- COMPRAR INGRESSO ----- */

.ingresso {
    display: grid;
    padding: 20px 20px;
}

.ingresso .ingresso__img img {
    width: 100%;
    border-radius: 4px;
}

.ingresso .ingresso__texto h2 {
    line-height: 1.1;
}

.ingresso .ingresso__texto h4 {
    color: var(--background-color);
    font-size: 24px;
    font-weight: 500;
    padding-bottom: 5px;
}

.ingresso__texto__button--comprar button {
    padding: 4px 16px;
    font-size: 22px;
}

.ingresso__texto__button--falar button {
    padding: 4px 16px;
    font-size: 22px;
}

/* ----- COMPRAR INGRESSO FINAL ----- */

/* ----- IMAGENS CARROSSEL ----- */

.imagens-carrossel {
    padding-top: 75px;
    padding-bottom: 0;
}

/* ----- IMAGENS CARROSSEL FINAL ----- */

/* ----- PERGUNTAS FREQUENTES ----- */

.faq {
    padding-top: 75px;
    padding-bottom: 75x;
}

.faq h2 {
    color: #fff;
    font-size: 48px;
    letter-spacing: 4px;
    line-height: 1.1;
    padding-bottom: 25px;
}

.faq__questions {
    width: 100%;
}

.faq__questions__item__question {
    font-size: 18px;
    padding: 16px 24px;
}

.faq__geral { /* Inverter ordem grid */
    display: grid;
    grid-template-areas: 
        "faq__questions"
        "faq__geral__texto";
}

.faq__questions { /* Inverter ordem grid */
    grid-area: faq__questions;
}

.faq__geral__texto { /* Inverter ordem grid */
    grid-area: faq__geral__texto;
    text-align: center;
}

.faq__geral .faq__geral__texto {
    width: 100%;
}

.faq__geral .faq__geral__texto button {
    padding: 4px 16px;
    font-size: 22px;
}


/* ----- NEWCASTLE IDIOMAS ----- */

.newcastle {
    display: grid;
    padding: 20px;
}

.newcastle .newcastle__img img {
    width: 100%;
}

.newcastle .newcastle__texto h2 {
    line-height: 1.1;
}

.newcastle__texto__button--site button {
    padding: 4px 16px;
    font-size: 22px;
}

/* ----- NEWCASTLE IDIOMAS FINAL ----- */

/* ----- FOOTER ----- */

.footer {
    padding: 125px 8% 25px 8%;
}

.footer .footer__geral {
    display: grid;
    grid-template-columns: 1fr;
}

.footer .footer__geral__coluna {
    margin-right: 0;
}

.footer .footer__geral__coluna h3 {
    margin-bottom: 20px;
    font-size: 22px;
}

.footer .footer__geral__coluna h4 {
    font-size: 14px;
    padding-bottom: 32px;
}

.footer .footer__geral__coluna p {
    font-size: 18px;
}

.footer .footer__geral__coluna ul li a {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1px;
}

.footer__geral__coluna__telefone {
    margin-bottom: 40px;
}

.footer__geral__coluna__links__Newcastle {
    margin-bottom: 40px;
}

.footer-btn {
    gap: 5px;
    margin-bottom: 50px;
}

.footer-btn .far {
    font-size: 180px;
    margin-right: 0;
}

.footer__geral__coluna .footer__geral__coluna__social-icons {
    text-align: center;
    margin-bottom: 0;
}

footer .copyright {
    margin: 0 8%;
    line-height: 1.2;
    padding-bottom: 20px;
}

.footer .desenvolvedor {
    margin: 0 8%;
    line-height: 1.2;
}

/* ----- FOOTER FINAL ----- */

}