@import url('https://fonts.googleapis.com/css2?family=Geologica:wght@400;700&display=swap');

html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 145px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Geologica', sans-serif;
    color: white;
}

body {
    background-color: #00081A;
}

/*  Header  */
header {
    width: 100%;
    height: 145px;
    background-color: #050601bd;
    position: absolute;
    z-index: 99;
}

#dia {
    font-weight: 900;
    font-size: 0.82em;
}

#data {
    font-style: italic;
    font-size: 100%;
}

.horario-container>* {
    width: 100%;
    text-align: center;
}

header nav {
    height: 100%;
    position: relative;
}

/* Container do menu principal */
.menu-header {
    display: flex;
    height: 100%;
    align-items: center;
    text-decoration: none;
    list-style: none;
    justify-content: center;
    gap: 65px;
    transition: all 0.3s ease;
}

.fundo-botao {
    position: absolute;
    width: 360px;
    height: 220px;
    background-image: url(images/icons/fundo_botao.png);
    bottom: -10px;
}

.menu-header li {
    display: flex;
    align-items: center;
}

.menu-header li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Geologica', sans-serif;
    font-size: 1.4em;
    transition: color 0.3s ease;
}

.menu-header li img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.selected-header a {
    color: #FFF !important
}

/*  Hamburger  */
.hamburger-btn {
    display: none;
    /* Escondido por padrão no desktop */
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

/* Linhas do hambúrguer */
.hamburger-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Estado ativo do hambúrguer (X) */
.hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/*  Mobile  */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

.menu-mobile {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    max-width: 80%;
    height: 100vh;
    background: linear-gradient(180deg, #050601 0%, #0a0a0a 100%);
    z-index: 101;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
}

.menu-mobile.active {
    right: 0;
}

.menu-mobile-content {
    padding: 80px 30px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.menu-mobile-logo {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
}

.menu-mobile-logo img {
    width: 120px;
    height: auto;
}

.menu-mobile-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.menu-mobile-list li {
    margin-bottom: 25px;
}

.menu-mobile-list li a {
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-family: 'Geologica', sans-serif;
    font-size: 1.2em;
    padding: 15px 0;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.menu-mobile-list li a:hover {
    color: #6FC95A;
    border-bottom-color: #6FC95A;
}

.menu-mobile-list li.selected-header-mobile a {
    color: white;
    font-weight: 700;
}

.menu-mobile-list li img {
    width: 30px;
    height: 30px;
    margin-right: 15px;
    opacity: 0.8;
}

.menu-mobile-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #333;
    text-align: center;
}

.menu-mobile-footer p {
    color: #666;
    font-size: 0.9em;
    margin: 0;
}

.hero {
    position: relative;
    width: 100%;
    height: 875px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.432);
}

.transicao-hero {
    height: 100px;
    margin-top: 30px;
    position: relative;
}

#linhas-transicao {
    height: 3px;
    top: 0;
}

#linhas-transicao .transparente {
    width: 190px;
}

.video-container {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-container {
    width: fit-content;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

.footer-container-mobile {
    display: none;
}


.logo-container img {
    width: 80%;
    max-width: 575px;
    height: auto;
    object-fit: contain;
    display: block;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    max-height: 50vh;
    min-height: 0;
    object-position: center;
    image-rendering: auto;
}

@supports (-webkit-appearance: none) {
    .logo-container img {
        width: 575px;
        max-width: 80%;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
    }
}

.horario-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Geologica', sans-serif;
    font-size: 1.2em;
    position: absolute;
    top: 165px;
    left: 20px;
}

.horario-container h2 {
    font-size: 2.5em;
}

.linhas-play {
    width: 100%;
    height: 7px;
    position: absolute;
    left: 0;
    display: flex;

    bottom: -3px;
}

.linha-play {
    flex: 1;
}

.linha-play.transparente {
    background-color: transparent;
    width: 240px;
    flex: none;
}

.linha-play.azul {
    background-color: #FFF;
}

.botao-play {
    width: fit-content;
    height: fit-content;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    bottom: -100px;
    transition: all 50ms ease-in-out;
}

.pulso-placeholder {
    position: absolute;
    top: 15px;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%);
    width: 125px;
    height: 125px;
    background-color: transparent;
    z-index: -1;
}

.botao-play img {
    width: 160px;

}

.botao-play img:hover {
    cursor: pointer;
}

.botao-play:active {
    transform: scale(0.95);
}

.botao-play p {
    color: #FFF;
    font-family: 'Geologica', 'sans-serif';
    text-align: center;
    text-transform: uppercase;
    font-size: 1.2em;
    margin-top: 10px;
}

.container-title {
    color: #FFF;
    font-family: 'Geologica', sans-serif;
    padding-left: 10px;
    padding-top: 15px;
    padding-bottom: 15px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    height: 133px;
    margin-left: 90px;
}

.container-title-content {
    height: 133px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    padding-bottom: 13px;
}

.ao-vivo {
    display: flex;
    align-items: center;
    font-family: 'Geologica';
    font-style: normal;
    font-weight: 400;
    font-size: 2em;
    line-height: 70px;
}

.ao-vivo h2 {
    margin-right: 22px;
    font-weight: 400;
}



.ao-vivo img {
    width: 40px;
}

.live {
    color: #FF0000;
    font-weight: 900;
}

#live-sub {
    font-size: 1.2em;
}

.linha-verde-vert {
    height: 133px;
    background-color: #6FC95A;
    width: 6px;
    margin-right: 20px;
    border-radius: 45px;
}

.container-video {
    width: 100%;
    margin-top: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.live-section {
    margin-top: 50px;
    position: relative;
    margin-bottom: 110px;
}

.video-box {
    width: 975px;
}

.video {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 975px;
    aspect-ratio: 16/9;
    border-radius: 10px;
    border: 4px solid #FFF;
    background-color: #000;
    margin-bottom: 20px;
}

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

.views {
    display: flex;
    align-items: center;

}

.views img {
    width: 40px;
    height: 40px;
}

.views p {
    color: #FFF;
    font-family: 'Geologica', sans-serif;
    font-size: 1.2em;
    font-weight: 900;
    margin-left: 10px;
}

.canal-yt {
    display: flex;
    align-items: center;
    gap: 23px;
}

.canal-yt img {
    width: 40px;
    height: 40px;
}

.canal-yt a {
    text-decoration: none;
    color: #FFF;
    font-family: 'Geologica', sans-serif;
    font-size: 1em;
    padding: 10px 15px;
    background-color: transparent;
    border: 2px solid #FFF;
    border-radius: 45px;
}

.fundo-aovivo {
    display: flex;
    font-family: 'Geologica', sans-serif;
    flex-direction: column;
    font-size: 12em;
    font-weight: 900;
    position: absolute;
    top: 0px;
    right: 0;
    line-height: 1.1;
    z-index: -1;
    opacity: 0.05;
}

.fundo-quemsomos {
    display: flex;
    font-family: 'Geologica', sans-serif;
    flex-direction: column;
    font-size: 11.5em;
    font-weight: 900;
    position: absolute;
    top: 0px;
    left: 0;
    line-height: 1.1;
    z-index: -1;
    opacity: 0.05;
}

.fundo-verde {
    color: #6FC95A;
}

.fundo-contorno {
    color: transparent;
    -webkit-text-stroke: 2px #6FC95A;
}

.programas-title {
    color: #FFF;
    font-family: 'Geologica', sans-serif;
}

.programas-title h2 {
    font-size: 3.5em;
    font-weight: 900;
}

.programas-title .negrito-verde {
    font-size: 3.5em;
}

.negrito-verde {
    color: #6FC95A;
    font-weight: 900;
}

.last-videos {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 48px;
    margin-top: 90px;
    margin-bottom: 75px;
    padding-left: 130px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    min-width: 100%;
}

.last-videos::-webkit-scrollbar {
    display: none;
}

.last-video-box {
    flex-shrink: 0;
    flex-grow: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 350px;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    cursor: grab;
    transition: transform 0.2s ease;
    overflow: hidden;
    border: 2px solid #FFF;
}

.last-video-box a {
    padding: 10px 20px;
    background-color: #4CDA2A;
    border-radius: 25px;
    text-decoration: none;
    text-transform: uppercase;
    user-select: none;
}

/* Overlay escuro para hover */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

/* Botão acessar */
.botao-acessar {
    padding: 12px 24px !important;
    background-color: #4CDA2A !important;
    color: #FFF !important;
    border-radius: 25px !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    font-family: 'Geologica', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1em !important;
    user-select: none !important;
    transition: all 0.2s ease !important;
    border: 2px solid transparent !important;
    cursor: pointer !important;
}

.botao-acessar:hover {
    background-color: #3BC91F !important;
    border-color: #FFF !important;
}

.botao-acessar:active {
    transform: scale(0.95) !important;
}

.last-video-box:active {
    cursor: grabbing;
}

.programas-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.8em;

}

.programas {
    height: fit-content;
}

.programas-top img {
    width: 64px;
    height: 64px;
    margin-bottom: 33px;
}

.destaque-programas {
    font-size: 2.2em;
}

.programas-content {
    margin: auto;
    display: flex;
    width: 100%;
    height: auto;
    max-height: 700px;
    max-width: 1400px;
    padding: 0 40px;
    justify-content: space-between;
}

.programa-box-left {
    width: 50%;


}

.programa-box-right {
    width: 50%;
    margin-top: 120px;
    padding-left: 25px;

}

.programa-box-left img,
.programa-box-right img {
    height: 40%;
}

.quem-somos {
    margin-top: 100px;
    position: relative;
    height: 1015px;
}

.quem-somos-content {
    display: flex;
    width: 80%;
    margin: 100px auto;
    font-size: 1.5em;
    justify-content: space-around;
    align-items: center;
}

.quem-somos-text {
    width: 50%;
    text-align: justify;
}

.quem-somos-text p {
    font-size: 0.87em;
    height: 425px;
}

.logo-text {
    width: 275px
}

.logo-text img {
    width: 100%;
    height: auto;
}

.fale-conosco {
    width: 100%;
    padding: 80px 0;
    background-color: #6FC95A;
}

.fale-conosco-content {
    width: 100%;
    margin: 0 auto;
    max-width: 1400px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.fale-conosco-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #FFF;
    justify-content: center;
    font-family: 'Geologica', sans-serif;
    background-image: url(images/logo/logo-back.png);
    background-size: 400px;
    background-position: 100px 100px;
    background-repeat: no-repeat;
    height: 550px;
    width: 550px
}

.fale-conosco-text img {
    width: 64px;
    margin-bottom: 20px;
}

.fale-conosco-text h2 {
    font-size: 2.5em;
    font-weight: 900;
    line-height: 1.1;
}

.fale-conosco-text p {
    font-size: 1.5em;
    font-weight: 400;
    margin-top: 45px;
}

.destaque-azul {
    color: #0C3589;
    font-size: 1.75em;
    line-height: 0.9;
}

.fale-conosco-area {
    flex: 1;
    max-width: 500px;
    margin-right: 50px;
    padding-top: 100px;
    height: 100%;
}

.fale-conosco-form {
    width: 100%;
}

.form-row {
    margin-bottom: 20px;
}

.form-row-half {
    display: flex;
    gap: 15px;
}

.input-full,
.input-half,
.textarea-full {
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
    font-family: 'Geologica', sans-serif;
    font-size: 1em;
    color: #333;
    outline: none;
    transition: all 0.3s ease;
    width: 100%;
}

.input-half {
    flex: 1;
}

.textarea-full {
    resize: vertical;
    min-height: 120px;
    border-radius: 20px;
    font-family: 'Geologica', sans-serif;
}

.input-full:focus,
.input-half:focus,
.textarea-full:focus {
    background-color: #e8e8e8;
    transform: scale(1.02);
}

.input-full::placeholder,
.input-half::placeholder,
.textarea-full::placeholder {
    color: #666;
    font-family: 'Geologica', sans-serif;
}

.btn-enviar {
    display: block;
    margin: 30px auto 0;
    padding: 15px 40px;
    background-color: #FFF;
    color: #5aa849;
    border: none;
    border-radius: 25px;
    font-family: 'Geologica', sans-serif;
    font-size: 1.1em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-enviar:hover {
    background-color: #CCC;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(111, 201, 90, 0.4);
}

.btn-enviar:active {
    transform: translateY(0);
}

.container-app {
    padding-top: 120px;
    padding-left: 90px;
    padding-right: 80px;
    margin: auto;
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: center;
    gap: 51px;
}

.celulares img {
    width: 600px;
}

.app-destaque {
    margin-bottom: 45px;
    width: 100%;
}

.app-destaque h2 {
    font-size: 3em;
    margin-bottom: 55px;
}

.destaque-app-text {
    color: #6FC95A;
    font-size: 1.3em;
    font-weight: 900;
}



.app-destaque p {
    font-size: 1.5em;
    font-weight: 200;
}

.stores {
    margin-top: 20px;
    display: flex;
    justify-content: flex-start;
    gap: 50px;
}

.stores img {
    width: 180px;
}

.text-app {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 30px;
    align-items: center;
    color: #FFF;
    width: 100%;
    font-family: 'Geologica', sans-serif;
}

.download-area {
    width: 100%;
    margin-top: 30px;
}

.app {
    border-bottom: 153px solid #14150F;

}

.midia-kit {
    border-bottom: 24px solid #6FC95A
}

.midia-kit-container {
    width: 100%;
    height: auto;
    padding-top: 75px;
    padding-bottom: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.midia-kit-txt {
    color: #FFF;
    font-size: 2em;
}

.midia-kit-txt h2 .negrito {
    color: #6FC95A;
    font-size: 2.2em;
}

.midia-kit-download {
    padding: 15px 30px;
    background-color: #4CDA2A;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 32.5px;
    margin-top: 50px;
}

.midia-kit-container p {
    margin-top: 50px;
    font-size: 0.8em;
    font-weight: 200;
}

.midia-kit-container img {
    width: 75px;
    margin-bottom: 30px;
}

footer {
    background-color: #000;
    height: 445px;
    display: flex;
    padding: 50px 50px 30px 50px;
    position: relative;
}

.footer-container {
    width: 100%;
    max-width: 1400px;
    height: 100%;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 2fr;

}

.footer-box-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.footer-box-center {
    position: relative;

}

.box-logo-footer {
    font-size: 0.8em;
    text-align: justify;
    width: 80%;
}

.box-logo-footer p {
    margin-top: 20px;
}

.box-logo-footer img {
    width: 70%;
}

.box-redes-footer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
}

.box-redes-footer a {
    width: 30%;
}

.box-redes-footer a img {
    width: 100%;
}

.copyright-footer {
    font-size: 0.8em;
}

.menu-footer {
    display: flex;
    align-items: center;
    text-decoration: none;
    list-style: none;
    justify-content: flex-start;
    align-items: center;
    gap: 65px;
    position: relative;
}

.menu-footer li {
    display: flex;
    align-items: center;
}

.menu-footer li a {
    text-decoration: none;
    color: #ffffff88;
    font-family: 'Geologica', sans-serif;
    font-size: 1em;
}

.selected-footer a {
    color: #FFF !important;
}

.menu-footer li img {
    width: 30px;
    height: 30px;
}

.botao_voltar {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.botao_voltar img {
    width: 80px;
}

.box-info-map-footer {
    display: flex;
    padding-top: 50px;
}

.box-info-map-footer .box-info {
    flex: 1;
    display: flex;
}

.box-info img {
    width: 38px;
    height: 38px;
}

.box-info p {
    width: 250px;
    margin-left: 20px;
    display: flex;
    align-items: center;
}

.box-info-map-footer .box-map {
    flex: 1;
}

.box-info p:first-child {
    margin-bottom: 0;
}

.box-info {
    margin-top: 20px;
}

.box-info p {
    margin-bottom: 10px;
    font-size: 0.9em;
}

.box-info p:nth-child(3) {
    margin-bottom: 0;
}

.box-map {
    display: flex;
    height: 200px;
    gap: 20px;
    align-items: stretch;
}

.box-map-info {
    flex: 1;
    height: fit-content;
    align-self: flex-end;
    font-size: 0.8em;
    text-align: justify;
    display: flex;
    align-items: flex-end;
    color: #FFF;
    font-family: 'Geologica', sans-serif;
    position: relative;
}

.loc-image {
    position: absolute;
    width: 30px;
    top: -20px;
    left: -25px;
}

.map {
    max-width: 250px;
    aspect-ratio: 4/3;
    overflow: hidden;
    border: 2px solid #6FC95A;
}

.map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.develop-by {
    height: 30px;
    position: absolute;
    right: 0;
    bottom: 0;

}

.develop-by img {
    width: auto;
    height: 100%;
    display: block;
}

/* Notificação */

.notificacao-fundo {
    position: absolute;
    top: 0;
    right: 200px;
    height: 480px;
    z-index: -1;
    /* Fica entre a notificacao-box e os elementos internos */

}

.whatsapp-icon-footer {
    width: 20px !important;
    height: 20px !important;
    vertical-align: middle;
    margin-left: 5px;
}

.notificacao-fundo img {
    width: auto;
    height: 100%;
}

.notificacao-live {
    height: 325px;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: none;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.notificacao-live.active {
    display: flex;
    transform: scaleY(1);
    margin-top: 150px;
    margin-bottom: 0px;
}

.notificacao-box {
    height: 100%;
    background-color: #5AA851;
    width: 100%;
    z-index: -2;
    box-sizing: content-box;
    /* Fica mais atrás que o fundo da logo */
    display: flex;
    padding: 30px 40px;
    align-items: center;
    justify-content: center;
    position: relative;
    /* Necessário para o z-index funcionar */

}

.live-box-notificacao {
    width: 480px;
    height: 280px;
    position: relative;
    z-index: 1;
    /* Fica na frente do fundo da logo */
    background-size: cover;
    background-position: center;
    border-radius: 25px;
    border: 3px solid white;
}

.live-box-notificacao iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.live-text-notificacao {
    width: 33%;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 70px;
    padding: 15px 0px 15px 40px;
    position: relative;
    z-index: 1;
    /* Fica na frente do fundo da logo */
}

.live-text-box h2 {
    font-size: 2.5em;
}

.live-text-box h3 {
    font-size: 2em;
    font-weight: 400;
}

.live-close {
    width: 33%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    align-self: flex-start;
    padding-top: 10px;
    position: relative;
    z-index: 1;
    /* Fica na frente do fundo da logo */

}

.live-close img {
    width: 30px;
    height: 30px;

}

.counter {
    font-size: 1.6em;
    color: #FFF;
    font-weight: 900;
    margin-left: 10px;
    margin-right: 30px;

}

.loading-icon {
    animation: loading 1.5s linear infinite;
}

.fechar:hover {
    cursor: pointer;
    transform: scale(1.1);
    /* Adiciona efeito de hover */
}


.live-text-box .live-notificacao-vermelho {
    color: #FF0000;
}

.live-text-notificacao a {
    width: 150px;
}

.live-text-notificacao a img {
    width: 100%;
}



@keyframes loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulsar {
    0% {
        box-shadow: 0 0 0 0 rgba(253, 253, 253, 0.5);
    }

    70% {
        box-shadow: 0 0 0 50px rgba(255, 0, 128, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 128, 0);
    }
}

/* @media (max-width: 1440px) {
    footer {
        padding-right: 40px;
        padding-left: 40px
    }
} */

@media (max-width: 1900px) {
    .last-videos {
        justify-content: flex-start;
    }
}


@media (max-width: 1900px) {
    .last-videos {
        justify-content: flex-start;
    }
}

/* ABLET E MOBILE - ATIVAÇÃO DO MENU HAMBÚRGUER */
@media(max-width: 1200px) {


    .last-videos {
        padding-left: 45px;
    }

    .fale-conosco {
        padding-right: 40px;
        padding-left: 40px;
    }

    .botao-play {
        bottom: -70px
    }

    /*  COMPENSAÇÃO SCROLL PARA MOBILE  */
    section[id] {
        scroll-margin-top: 80px;
        /* Compensa header mobile (80px) */
    }

    /* Ajustes Margin */
    .programas-top {
        margin-top: 40px;
        font-size: 2em;
    }



    /* HEADER RESPONSIVO */
    header {
        height: 80px;
        background-color: #050601;
        position: static;
    }

    /* Esconder menu desktop */
    .menu-header {
        display: none;
    }

    /* Mostrar botão hambúrguer */
    .hamburger-btn {
        display: flex;
    }

    /* Ativar menu mobile */
    .menu-mobile {
        display: block;
    }

    /* SEÇÕES RESPONSIVAS */

    /* Hero section ajustado para header menor */
    .hero {
        margin-top: 0;
        height: 600px;
        /* Reduz altura total */
    }

    .logo-container img {
        width: 80%;
        max-width: 400px;
        /* Logo menor para mobile */
    }

    .horario-container {
        top: 10px;
        left: 15px;
        font-size: 1em;
    }

    .botao-play img {
        width: 120px;
    }

    /* Programas */
    .programas-content {
        flex-direction: column;
        height: auto;
        max-height: none;
        margin-top: 20px;
    }

    .programa-box-left,
    .programa-box-right {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .programa-box-left img,
    .programa-box-right img {
        width: 80%;
        height: auto;
    }

    .programa-box-right {
        margin-top: 0;
    }

    .programas {
        height: auto;
    }

    /* Parte do APP */
    .container-app {
        flex-direction: column;
        align-items: center;
    }

    .celulares {
        order: 2;
        margin-top: 30px;
    }

    /* Parte quem Somos */
    .quem-somos {
        height: auto;
        overflow: hidden;
    }

    .quem-somos-content {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 90%;
    }

    .logo-text {
        width: 40%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .logo-text img {
        width: 70%;
        margin: auto;
    }

    .quem-somos-text {
        width: 70%;
        margin-top: 30px;
    }

    /* Formulario */
    .fale-conosco-content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    /* Footer */
    footer {
        height: auto;
        position: relative;
        padding-bottom: 100px;
        padding: 30px 30px 100px 30px;
    }

    .footer-box-left {
        gap: 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .box-redes-footer {
        align-items: center;
        justify-content: center;
    }

    .box-redes-footer a {
        width: 30%;
    }

    .box-logo-footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        align-self: center;
    }

    .copyright-footer {
        position: absolute;
        bottom: 0px;
    }

    .menu-footer {
        display: none;
    }

    /* Live */
    .live-section {
        height: auto;
        padding: 20px;
    }

    .video-box {
        height: auto;
    }

    /* Overflows */
    .live-section {
        overflow: hidden;
    }

    .fundo-aovivo {
        text-wrap: none;
    }

    .container-title {
        margin: 0;
    }

    /* NOTIFICAÇÃO RESPONSIVA */
    .notificacao-live {
        height: auto;
        margin-bottom: 30px;
    }

    .notificacao-box {
        flex-direction: column;
        height: auto;
        padding: 30px 20px;
        gap: 25px;
    }

    .live-box-notificacao {
        width: 100%;
        height: 200px;
        max-width: 400px;
    }

    .live-text-notificacao {
        width: 100%;
        height: auto;
        padding: 0;
        gap: 20px;
        text-align: center;
        align-items: center;
    }

    .live-text-box h2 {
        font-size: 1.8em;
    }

    .live-text-box h3 {
        font-size: 1.3em;
    }

    .live-close {
        width: 100%;
        justify-content: center;
        padding-top: 0;
    }

    .notificacao-fundo {
        right: 50px;
        height: 300px;
    }
}

@media (max-width: 768px) {

    /* Hero */
    .fundo-botao {
        width: 302px;
        height: 201px;
        right: 80px;
    }

    /* Seção Live */
    .live-section {
        margin-top: 5px;
        margin-bottom: 10px;
    }

    .transicao-hero {
        height: 25px;
    }

    .ao-vivo {
        font-size: 1em;
    }

    .ao-vivo img {
        width: 30px;
    }

    #live-sub {
        font-size: 0.7em;
    }

    .linha-verde-vert {
        height: 80px;
        width: 4px;
        margin-right: 14px;
    }

    .container-title-content {
        height: auto;
        gap: 0px;
        justify-content: flex-start;
    }

    .container-video {
        margin-top: 20px;
        padding-right: 20px;
        padding-left: 20px;
    }

    .canal-yt {
        gap: 10px;
    }

    .canal-yt a {
        font-size: 0.5em;
        padding: 5px 10px;
    }

    .views p {
        font-size: 0.8em;
        margin-left: 5px;
    }

    .views img {
        width: 30px;
        height: 30px;
    }

    .canal-yt img {
        width: 23px;
        height: 23px;
    }

    .fundo-aovivo {
        margin-top: 30px;
        font-size: 4.5em;
    }

    /* Programas */
    .programas-title {
        font-size: 0.4em;
    }

    .last-videos {
        margin-top: 15px;
        padding-left: 30px;
    }

    .ultimos-programas {
        padding: 20px 20px 0 20px;
    }

    .last-video-box {
        width: 250px;
        height: 150px;
    }

    /* Principais Programas */
    .programas-top {
        margin-top: 5px;
        font-size: 0.7em;
    }

    .programas-top img {
        width: 40px;
        height: 40px;
    }

    .programas-box-left:first-child {
        align-self: flex-start;
    }

    .programa-box-right {
        padding-left: 0;
    }

    .programas-content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .programa-box-left img {
        width: 65%;
    }

    .programa-box-right img {
        width: 65%;
    }

    .start {
        align-self: flex-start;
    }

    .end {
        margin-top: 15px;
        align-self: flex-end;
    }

    .programas-top {
        font-size: 0.7em;
    }

    .programas-top img {
        width: 40px;
        height: 40px;
    }

    .fundo-quemsomos {
        font-size: 3.3em;
        line-height: 1.2;
        text-wrap: nowrap;
        height: 100%;
        line-height: 1.4;
    }

    .quem-somos-content {
        margin-top: 50px;
        flex-direction: row;
        font-size: 0.5em;
        align-items: center;
        margin-bottom: 30px;

    }

    .quem-somos {
        padding-bottom: 30px;
    }

    .quem-somos-text {
        margin-top: 0;
    }

    .quem-somos-text p {
        height: fit-content;
    }


    .fale-conosco-area {
        margin-right: 0px;
    }

    .fale-conosco {
        padding-top: 50px;
    }

    .fale-conosco-text {
        font-size: 0.7em
    }


    .app {
        padding-top: 20px;
        padding-right: 20px;
        padding-left: 20px;
        border-bottom: 70px solid #14150F;
    }

    .container-app {
        padding: 0px;
        flex-direction: row;
        justify-content: center;
        gap: 30px;
    }

    .fale-conosco-text {
        background-image: none;
    }

    .fale-conosco {
        background-image: url(images/logo/logo-back.png);

        background-repeat: no-repeat;
        background-size: 130% 90%;
        background-repeat: no-repeat;
        background-position: -100px;
    }

    .ao-vivo h2 {
        line-height: 2;
    }

    .programas-title h2 {
        line-height: 2;
    }

    .fale-conosco-area {
        padding-top: 40px;
    }

    .fale-conosco-text {
        height: auto;
        width: auto;
    }

    .text-app {
        padding: 20px 0 30px;
        width: auto;
    }

    .celulares {
        align-self: flex-end;
        display: flex;

    }

    .celulares img {
        height: 140px;
        max-width: 150px;
    }

    .app-destaque {
        font-size: 0.9em;
        margin-bottom: 0;
    }

    .app-destaque h2 {
        margin-bottom: 15px;
        font-size: 1em;
    }

    .app-destaque p {
        font-weight: 300;
    }

    .stores {
        margin-top: 5px;
        gap: 10px;
    }

    .stores a img {
        width: 85px;
    }

    .celulares {
        order: 0;
    }

    .download-area {
        margin-top: 20px;
    }

    .download-area p {
        font-size: 0.3em;
        font-weight: 200;
    }

    .app-destaque p {
        font-size: 0.6em;
    }

    .midia-kit-container {
        font-size: 0.5em;
    }

    .midia-kit-download {
        font-size: 1.8em;
        padding: 10px 20px
    }

    /* footer */
    .footer-container {
        display: none;
    }

    footer {
        padding: 20px 30px;
    }

    .menu-footer {
        display: flex;
        padding-right: 15px;
        padding-left: 15px;
        max-width: 100%;
        justify-content: space-between;
        gap: 10px;
        font-size: 0.6em;
    }

    .menu-footer li img {
        width: 20px;
        height: 20px;
    }

    #map {
        width: 100%;
        height: 50%;
    }

    .footer-container-mobile {
        display: flex;
        flex-direction: column;
    }

    .mobile-text-map {
        display: flex;
        justify-content: space-between;
        gap: 30px;
        margin-top: 30px;
    }

    .footer-container-mobile .box-logo-footer {
        width: 45%;
        font-size: 0.4em;
    }

    .mobile-text-map .box-logo-footer img {
        width: 100%;
    }

    .bottom-top {
        display: flex;
        justify-content: space-between;
        margin-top: 50px;
    }

    .bottom-top .box-redes-footer {
        align-items: flex-start;
        justify-content: flex-start;
    }

    .bottom-top .box-redes-footer a {
        width: 40%
    }

    .bottom-top .box-redes-footer {
        gap: 10px;
    }

    .bottom-top .box-map-info {
        flex: none;
        width: 130px;
        font-size: 0.6em
    }

    .bottom-bot {
        margin-top: 40px;
    }

    .bottom-bot .box-info {
        display: flex;
        font-size: 0.7em;
    }

    .box-info img {
        width: 24px;
        height: 24px;
    }

    .copyright-box {
        margin-top: 50px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .copyright-box p {
        font-size: 0.4em
    }

    .copyright-box img {
        width: 150px;
    }
}