/* =========================================================
   RESET / BASE
========================================================= */

:root {
    --yellow: #ffb000;
    --yellow-dark: #f39b00;
    --black: #050505;
    --dark: #111111;
    --gray: #666666;
    --light: #f8f8f8;
    --white: #ffffff;
    --border: #e8e8e8;

    --font: "Outfit", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 97px 0 0 0;
    font-family: var(--font);
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover, a:focus {
    text-decoration: none;
}

p:last-child {
    margin-bottom: 0;
}

.navbar:before,
.navbar:after,
.navbar .container-fluid:before,
.navbar .container-fluid:after {
    content: none;
}

 {
    content: " ";
    display: table;
}

.tab-programacao .nav{
    display: block;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, .99);
}

.navbar-collapse.collapse#mainMenu{
    align-items: center;
}

.site-header .navbar {
    min-height: unset;
    padding: 20px 0;
    margin: 0;
}

.site-header .navbar-nav {
    gap: 3px;
}

.d-contents .navbar-brand {
    float: unset; 
    padding: 0;
    height: unset; 
}

.site-header .nav-link {
    color: #fff !important;
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
    padding: 8px 15px !important;
    white-space: nowrap;
    transition: .2s ease;
}

.site-header .nav-link:hover {
    color: var(--yellow) !important;
    text-decoration: none;
}

.site-header .nav-link:hover,
.site-header .nav-link:focus {
    border: none;
}

.header-social {
    display: flex;
    gap: 10px;
    margin-right: 30px;
}

.header-social a img{
    max-height: 23px;
}

.live-button {
    display: flex;
    align-items: center;
    gap: 7px;
    border: 3px solid #fff;
    border-radius: 50px;
    padding: 7px 25px 7px 8px;
    color: #fff;
    line-height: 1;
}

.live-button:hover {
    color: #fff;
    border-color: var(--yellow);
}

.live-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.live-button img {
    max-width: 36px;
    margin-right: 15px;
}

.live-button strong,
.live-button small {
    display: block;
}

.live-button:hover strong,
.live-button:hover small {
    text-decoration: none;
}

.live-button strong {
    color: var(--yellow);
    font-size: 17px;
    font-weight: 500;
}

.live-button small {
    font-size: 13px;
    margin-top: 2px;
}

@media(min-width: 992px){
    .navbar-collapse.collapse#mainMenu{
        display: flex !important;
        padding: 0;
    }
}

@media(min-width: 768px){
    .navbar-collapse.collapse:not(.show) {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .bannerHome {
        display: block !important;
    }
}


/* =========================================================
   HERO
========================================================= */

.hero-section {
    min-height: 540px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;

    background-image:
        url("../img/hero.webp");

    background-size: cover;
    background-position: center center;
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        url("../img/hero.png");
    background-size: cover;
    background-position: center center;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,.58) 0%,
        rgba(0,0,0,.25) 55%,
        rgba(0,0,0,.05) 100%
    );
}

.hero-content {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    padding-top: 70px;
    display: flex;
    align-items: center;
    padding-bottom: 120px;
}

.hero-kicker {
    color: #fff !important;
    display: block;
    font-size: 36px;
    font-weight: 600 !important;
    line-height: 1;
    letter-spacing: normal;
    margin-bottom: 3px;
}

.hero-content h1 {
    color: #fff;
    font-size: 150px;
    line-height: .8;
    font-weight: 700;
    letter-spacing: -3px;
    margin: 0;
}

.hero-content h1 span {
    color: var(--yellow);
}

.hero-content h1 small {
    color: #fff;
    font-size: 36px;
    font-weight: 600☻;
    letter-spacing: 0;
    margin-left: 4px;
    vertical-align: baseline;
}

.hero-content h2 {
    color: #fff;
    font-size: 60px;
    line-height: 1;
    margin: 12px 0;
    font-weight: 600;
}

.hero-content p {
    color: #fff;
    font-size: 18px;
    line-height: 1.4;
    margin-top: 30px;
}

.hero-buttons {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.hero-buttons .btn-primary-site,
.hero-buttons .btn-outline-site{
    margin-top: 25px;
}

.btn-primary-site,
.btn-outline-site {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
    border-radius: 50px;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    transition: all .25s ease;
    margin-top: 40px;
}

.btn-primary-site {
    border: 3px solid var(--yellow);
}

.btn-outline-site {
    color: #fff;
    border: 3px solid #fff;
}

.btn-primary-site .btn-inner {
    color: #fff;
    background: #000;
    padding: 15px 60px;
    border-radius: 50px;
}

.btn-outline-site .btn-inner {
    color: #fff;
    background: transparent;
    padding: 15px 60px;
    border-radius: 50px;
}

.btn-primary-site:hover .btn-inner {
    color: #000;
    background: var(--yellow);
}

.btn-outline-site:hover .btn-inner {
    color: #fff;
    background: #000;
}

#banner.bannerHome .carousel-indicators li {
    width: 75px !important;
    height: 10px !important;
    background-color: rgba(0, 0, 0, .3);
    border-radius: 7px;
    opacity: 2;
    border: none;
    margin: 0 10px;
}

#banner.bannerHome .carousel-indicators li.active {
    background-color: #ffb000 !important;
}

#banner.bannerHome img{
    width: 100%;
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.section-padding {
    padding: 72px 0;
}

.section-kicker {
    display: block;
    color: var(--yellow-dark);
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 5px;
}

.section-title {
    font-size: 72px;
    font-weight: 700;
    line-height: .98;
    margin: 0 0 40px;
}


.section-title2 {
    font-size: 60px;
    font-weight: 700;
    line-height: .98;
    margin: 0 0 40px;
}


.section-title strong,
.center-title strong {
    color: var(--yellow);
}

.center-title {
    text-align: center;
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
    background: #fff;
}

.about-section.section-padding {
    padding: 120px 0 72px 0;
}

.about-logo {
    max-width: 360px;
    max-height: 230px;
    object-fit: contain;
}

.about-section p {
    color: #7e7e7e;
    font-size: 16px;
    line-height: 1.5;
}


/* =========================================================
   FEATURES
========================================================= */

.features-section {
    position: relative;
    z-index: 5;
    margin-top: 100px;
    margin-bottom: -120px;
}

.feature-card {
    position: relative;
    padding: 60px 25px 45px 25px;
    background: var(--yellow);
    border-radius: 15px;
    text-align: center;
}

.feature-icon {
    position: absolute;
    width: 70px;
    height: 70px;
    top: -35px;
    left: 50%;
    padding: 10px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: #000;
    border: 5px solid #fff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.feature-card h3 {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.05;
    color: #fff;
    margin: 0 0 6px;
}

.feature-card p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.25;
    color: #fff;
    margin-top: 30px;
}


/* =========================================================
   TOP 10
========================================================= */

.top10-section {
    min-height: 430px;
    position: relative;
    padding: 200px 0 80px;
    background-image:
        url("../img/site-2026/background_top10.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
}

.top10-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.72);
}

.top10-section p {
    font-size: 14px;
    margin: 0;
}

.top10-section p a {
    color: #fff;
    font-weight: 500;
    margin-top: 15px;
}

.top10-section p a img{
    margin-right: 5px;
}

.top10-section .top-musicas-lista .imagem-musica img,
.top10-section .top-musicas-lista .imagem-musica div{
    border-radius: 7px;
    width: 85px;
    height: 85px;
    margin-right: 15px;
}

.top-musicas-lista .bloco-musica {
    display: flex;
    align-items: center;
}

.white-title {
    color: #fff;
    font-size: 60px;
    font-weight: 600;
    line-height: 1;
    margin: 0 0 30px 0;
}

.white-title strong {
    color: var(--yellow);
}

.music-item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 72px;
}

.music-item img {
    width: 55px;
    height: 55px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.music-item span,
.music-item strong,
.music-item small {
    display: block;
}

.music-item span {
    color: var(--yellow);
    font-size: 7px;
}

.music-item strong {
    font-size: 10px;
    line-height: 1.1;
    color: #fff;
}

.music-item small {
    color: #ddd;
    font-size: 7px;
    line-height: 1.2;
}


/* =========================================================
   PARTNERS
========================================================= */

#apoio.section-padding {
    padding: 120px 0 72px 0;
}

.partners-section {
    background: #fff;
}

.partners-section h2.section-title {
    font-size: 60px;
}

.partners-grid {
    margin: 80px auto 40px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.partner-card {
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 2px 12px rgba(0,0,0,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    transition: .25s ease;
    overflow: hidden;
}

.partner-card:hover {
    transform: translateY(-3px);
}

.partner-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* =========================================================
   MESSAGE
========================================================= */

#recados.message-section {
    padding: 60px 0 120px;
}

.message-box {
    position: relative;
    border-radius: 50px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("../img/site-2026/background_recados.png");
    background-size: cover;
    background-position: center;
    padding: 120px 30px;
}

.message-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255,174,0,.90);
    z-index: 1;
}

.message-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.message-content > span {
    display: block;
    font-size: 24px;
    font-weight: 500;
}

.message-content h2 {
    margin: 2px 0 8px;
    font-size: 60px;
    font-weight: 600;
    line-height: 1;
}

.message-content p {
    margin: 0 auto 15px;
    font-size: 18px;
}

.message-box .btn-primary-site{
    border-color: #fff;
}


/* =========================================================
   CONTACT BANNER
========================================================= */

.contact-banner {
    position: relative;
    padding: 120px 0;
    background-image: url("../img/site-2026/background_contato.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.contact-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.83);
}

.contact-banner .content span {
    color: #fff;
    font-size: 24px;
}

.contact-banner .content h2 {
    color: #fff;
    font-size: 60px;
    font-weight: 600;
    line-height: 1;
    margin: 4px 0 0;
}

.contact-banner .btn-primary-site .btn-inner {
    background: var(--yellow);
}

.contact-banner .btn-primary-site:hover .btn-inner {
    background: #000;
    color: #fff;
}

.contact-banner .btn-primary-site{
    border-color: #fff;
}


/* =========================================================
   NEWS
========================================================= */
#noticias.section-padding{
    padding-top: 120px;
}

.news-section .section-title {
    font-size: 60px;
    margin-bottom: 60px;
}

.news-card {
    height: 100%;
}

.news-card > a {
    display: block;
    overflow: hidden;
    border-radius: 5px;
}

.news-card img {
    width: 100%;
    height: 150px;
    border-radius: 15px;
    object-fit: cover;
    transition: transform .35s ease;
}

.news-card:hover img {
    transform: scale(1.04);
}

.news-category {
    display: block;
    color: var(--yellow-dark);
    font-size: 8px;
    margin-top: 10px;
}

.news-card h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.15;
    margin: 30px 0 7px;
}

.news-card:hover h3 {
    color: #ffb000;
}

.news-card p {
    color: #7e7e7e;
    font-size: 14px;
    line-height: 1.35;
}


/* =========================================================
   GALLERY
========================================================= */

#galeria.section-padding{
    padding-bottom: 120px;
}

.gallery-section .section-title {
    font-size: 60px;
    margin-bottom: 80px;
}

.gallery-section .btn-primary-site {
    margin-top: 30px;
}

.gallery-card {
    text-align: center;
}

.gallery-card > a {
    display: block;
    overflow: hidden;
    border-radius: 6px;
}

.gallery-card img {
    display: block;
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform .35s ease;
    border-radius: 15px;
    margin-bottom: 30px;
}

.gallery-card:hover img {
    transform: scale(1.03);
}

.gallery-card h3 {
    font-size: 30px;
    font-weight: 600;
    margin: 9px 0 3px;
}

.gallery-card:hover h3 {
    color: #ffb000;
}

.gallery-card p {
    color: #888;
    font-size: 8px;
    line-height: 1.4;
    margin-bottom: 10px;
}

.btn-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 90px;
    padding: 7px 16px;
    color: #fff;
    background: #000;
    border: 1px solid var(--yellow);
    border-radius: 20px;
    font-size: 7px;
}

.btn-small:hover {
    color: #000;
    background: var(--yellow);
}


/* =========================================================
   FAQ
========================================================= */

.faq-section {
    background: #f8f8f8;
}

.faq-accordion {
    max-width: 850px;
}

.faq-accordion .accordion-item {
    border: 0;
    margin-bottom: 7px;
    border-radius: 7px !important;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    font-family: var(--font);
    font-size: 13px;
    font-weight: 500;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: #000;
    background: var(--yellow);
}

.faq-accordion .accordion-body {
    font-size: 11px;
    color: #666;
    background: #fff;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    background: #030303;
    color: #fff;
    padding-top: 60px;
    padding-bottom: 0;
}

.footer-description {
    max-width: 90%;
    color: #aaa;
    font-size: 8px;
    line-height: 1.45;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.footer-social a {
    font-size: 14px;
    color: #fff;
}

.footer-social a:hover {
    color: var(--yellow);
}

.site-footer h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 13px;
}

.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer li {
    margin-bottom: 4px;
}

.site-footer li a,
.site-footer p {
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
}

.site-footer li a:hover {
    color: var(--yellow);
}

.site-footer p {
    margin-bottom: 7px;
}

.site-footer p i {
    color: var(--yellow);
    margin-right: 4px;
}

.footer-bottom {
    font-size: 16px;
    font-weight: 600;
    color: #4c4c4c;
    margin-top: 60px;
    margin-bottom: 0;
    padding: 12px 0;
    background-color: #191919;
}

.footer-bottom a img {
    filter: grayscale(1) opacity(0.25);
    transition: all linear .2s;
}

.footer-bottom a:hover img {
    filter: grayscale(0) opacity(1);
}


/* =========================================================
   FLOATING PLAYER
========================================================= */

.floating-player {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #000;
    color: #fff;
    padding: 7px 14px 7px 7px;
    border-radius: 30px;
    border: 2px solid var(--yellow);
    box-shadow: 0 5px 25px rgba(0,0,0,.25);
}

.floating-player > i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--yellow);
    color: #000;
    font-size: 15px;
}

.floating-player strong,
.floating-player small {
    display: block;
}

.floating-player strong {
    font-size: 8px;
}

.floating-player small {
    color: #aaa;
    font-size: 7px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .site-header .nav-link {
        font-size: 7px;
        padding-left: 4px !important;
        padding-right: 4px !important;
    }

    .header-social {
        margin-right: 7px;
    }

    .live-button {
        padding-right: 8px;
    }

    .hero-content h1 {
        font-size: 80px;
    }

}


@media (max-width: 991px) {

    .section-title,
    .section-title2,
    .white-title {
        font-size: 48px;
    }

    .site-header {
        position: absolute;
    }

    .site-header .navbar-collapse {
        margin-top: 10px;
        padding: 15px;
        background: rgba(0,0,0,.98);
        border-radius: 5px;
    }

    .site-header .navbar-nav {
        gap: 0;
    }

    .site-header .nav-link {
        font-size: 12px;
        padding: 8px 4px !important;
    }

    .header-social {
        margin: 10px 0;
    }

    .hero-section {
        min-height: 600px;
    }

    .hero-content {
        padding-top: 100px;
    }

    .hero-content h1 {
        font-size: 60px;
    }

    .hero-content h1 .hero-kicker {
        font-size: 24px;
    }

    .hero-content h2{
        font-size: 36px;
    }

    .about-section.section-padding {
        padding: 80px 0 0 0;
    }

    .about-section {
        text-align: center;
    }

    .about-section img {
        max-width: 75%;
        margin-bottom: 30px;
    }

    .about-section h2,
    .contact-banner .content h2,
    .news-section .section-title,
    .gallery-section .section-title,
    .white-title {
        font-size: 48px;
    }

    .news-section .section-title{
        margin-bottom: 30px;
    }

    .gallery-card img{
        margin-top: 45px;
    }

    #galeria.section-padding {
        padding: 30px 0 60px 0;
    }

    .features-section {
        margin-bottom: 0;
        padding: 30px 0 80px 0;
    }

    .top10-section {
        padding: 30px 0 60px 0;
    }

    #apoio.section-padding {
        padding: 60px 0 60px 0;
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 550px;
    }

    #recados.message-section {
        padding: 0px 0 60px;
    }

    .contact-banner {
        text-align: center;
    }

    .contact-banner .btn-primary-site {
        margin-top: 25px;
    }

    #noticias.section-padding {
        padding-top: 60px;
    }

    .noticia p.desc {
        display: block;
    }

    footer {
        text-align: center;
    }

    footer .footer-social{
        justify-content: center;
    }

    .footer-description {
        max-width: 100%;
    }

    .footer-bottom {
        font-size: 12px;
    }

}


@media (max-width: 767px) {
    
    header .logo {
        margin-top: 0px;
    }

    .section-padding {
        padding: 55px 0;
    }

    .hero-section {
        min-height: 620px;
        background-position: 60% center;
    }

    .hero-content {
        padding-top: 110px;
    }

    .hero-content h1 {
        font-size: 65px;
    }

    .hero-content h2 {
        font-size: 28px;
    }

    .hero-content h1,
    .hero-content h2,
    .hero-content p {
        text-align: center;
    }

    .hero-buttons {
        /*flex-direction: column;*/
        /*align-items: flex-start;*/
        align-items: center;
        justify-content: center;
    }

    .hero-buttons .btn-primary-site,
    .hero-buttons .btn-outline-site {
        /*min-width: 160px;*/
        font-size: 12px;
    }

    .about-section {
        text-align: center;
    }

    .about-section .btn-primary-site {
        margin-top: 10px;
    }

    .about-logo {
        max-width: 280px;
    }

    .feature-card {
        min-height: 140px;
    }

    .top10-section {
        padding-bottom: 55px;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-section h2,
    .contact-banner .content h2,
    .message-content h2,
    .news-section .section-title,
    .gallery-section .section-title,
    .white-title,
    .section-title,
    .section-title2 {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .message-box {
        padding: 60px 30px;
    }

    .contact-banner{
        padding: 60px 0;
    }

    .contact-banner h2 {
        font-size: 29px;
    }

    .btn-primary-site,
    .btn-outline-site{
        margin-top: 20px;
    }

    .message-content h2{
        font-size: 48px;
    }

    .news-card {
        margin-bottom: 10px;
    }

    .news-card img {
        height: 200px;
    }

    .gallery-card img {
        height: auto;
        aspect-ratio: 16 / 10;
    }

    .floating-player {
        right: 10px;
        bottom: 10px;
    }

}


@media (max-width: 480px) {

    .hero-section {
        min-height: 590px;
    }

    .hero-content h1 {
        font-size: 58px;
    }

    .hero-content h2 {
        font-size: 25px;
    }

    /*.hero-content p {
        max-width: 280px;
    }*/

    .hero-buttons .btn-primary-site,
    .hero-buttons .btn-outline-site{
        font-size: 10px;
        margin-top: 10px;
    }

    .btn-primary-site .btn-inner,
    .btn-outline-site .btn-inner{
        padding: 10px 30px;
    }

    .hero-dots {
        gap: 4px;
    }

    .hero-dots span {
        width: 18px;
    }

    .partners-grid {
        gap: 7px;
    }

    .partner-card {
       border-radius: 15px;
    }

    .music-item {
        gap: 6px;
    }

    .music-item img {
        width: 48px;
        height: 48px;
    }

    .music-item strong {
        font-size: 9px;
    }

    .music-item small {
        font-size: 6px;
    }

    .floating-player {
        padding-right: 9px;
    }

}


@media (max-width: 354px) {

    .hero-buttons {
        flex-direction: column;
    }

}

/* =========================================================
   SCROLL REVEAL
========================================================= */

.element-hidden {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity .55s ease,
        transform .55s ease;
}

.element-visible {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   HEADER SCROLL
========================================================= */

.site-header.header-scrolled {
    position: fixed;
    background: rgba(0, 0, 0, .97);
    box-shadow: 0 3px 20px rgba(0, 0, 0, .18);
}

.site-header.header-scrolled .navbar {
    min-height: 58px;
}


/* =========================================================
   LIGHTBOX
========================================================= */

.simple-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.simple-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .92);
}

.simple-lightbox-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    max-height: 90vh;
}

.simple-lightbox-content img {
    display: block;
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 5px;
}

.simple-lightbox-close {
    position: absolute;
    right: -15px;
    top: -15px;
    z-index: 3;
    width: 35px;
    height: 35px;
    border: 0;
    border-radius: 50%;
    background: var(--yellow);
    color: #000;
    font-size: 25px;
    line-height: 1;
    cursor: pointer;
}

@media (max-width: 767px) {

    .simple-lightbox {
        padding: 15px;
    }

    .simple-lightbox-close {
        right: -5px;
        top: -45px;
    }

}

/*Páginas Internas*/

.pad-int {
    padding: 120px 0;
}

.pad-int img {
    border-radius: 15px;
}

.pad-int .main-tit{
    font-size: 60px;
    font-weight: 700;
    text-align: center;
    matgin-top: 0;
    margin-bottom: 60px;
}

.pad-int h4 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 30px;
}

.pad-int p {
    color: #7e7e7e;
    font-size: 16px;
    line-height: 1.5;
}

.bloco-equipe img {
    box-shadow: none;
    margin-bottom: 0px;
}

.bloco-equipe p.nome {
    color: #000;
}

.border-img {
    border: 3px solid #eea400;
    border-radius: 20px;
    padding: 5px;
    transition: all linear .2s;
}

.border-img:hover {
    padding: 0px;
    border-radius: 18px;
}

.programa p.nome {
    margin-bottom: 0 !important;
}

.programa p.locutor {
    margin-top: 5px !important;
}

.programa .horario {
    border-radius: 15px 0 0 15px;
}

.programa .prog {
    border-radius: 0 15px 15px 0;
}

.tab-programacao .nav-tabs-justified,
.tab-programacao .nav-tabs.nav-justified{
    border-radius: 15px;
}

.tab-programacao .nav-tabs li span {
    border-radius: 0 0 15px 15px;
}

.tab-programacao li:first-child a {
    border-radius: 0 0 0 15px;
}

.tab-programacao li:last-child a {
    border-radius: 0 0 15px 0;
}

.pad-int .tit-galeria {
    display: block;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    color: #000;
    margin-top: 20px;
}

.pad-int .tit-galeria:hover {
    color: #ffb000;
}

.pad-int .bloco-contatos {
    background-color: #f6aa00;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 12px;
    border-radius: 15px;
    border: none;
    padding: 30px 0;
    text-align: center;
    color: #fff;
}

.pad-int .bloco-contatos h3 {
    font-weight: 600;
    margin-bottom: 30px;
}

.pad-int .bloco-contatos p {
    color: #fff;
}

.pad-int form .form-control {
    background-color: #ebebeb;
    color: #fff;
    border-radius: 7px;
    border: none;
    box-shadow: none;
    padding: 12px 15px;
    height: unset;
}

.pad-int form textarea.form-control {
    height: 150px;
}

.pad-int form input[type=submit] {
    color: #fff;
    padding: 15px 60px;
    margin-top: 0;
    transition: all linear .2s;
}

.pad-int form input[type=submit]:hover {
    background-color: #ffb000;
}

.pad-int .noticia h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.15;
    margin: 30px 0 7px;
}

.pad-int .noticia:hover h3 {
    color: #ffb000;
}

.pad-int .pagination>li>a,
.pad-int .pagination>li>span {
    border-radius: 12px !important;
    font-weight: 500;
    margin: 0 3px;
    background-color: #dbdbdb;
    color: #666;
    font-size: 18px;
}

.pad-int .pagination>li>a:hover,
.pad-int .pagination>li>span:hover,
.pad-int .pagination>li.active>a,
.pad-int .pagination>li.active>span,
.pad-int .pagination>li.active>a:hover,
.pad-int .pagination>li.active>span:hover {
    border: 1px #fff solid;
    background-color: #ffb000;
    color: #fff;
}

.mapa iframe {
    height: 450px; 
}

.tab-programacao .programa .horario{
    display: flex;
    align-items: center;
    justify-content: center;
}

.galeria-int h1.main-tit {
    text-align: left;
    margin: 0;
}
.galeria-int .btn-primary-site {
    margin: 0;
    float: right;
}
.galeria-int .galerias .flexslider {
    margin-top: 30px;
    margin-bottom: 30px;
}
.galerias #galeria2 li:hover {
    cursor: pointer;
}

@media (max-width: 992px) {
    .pad-int {
        padding: 80px 0;
    }
    .pad-int .main-tit{
        font-size: 48px;
        margin-bottom: 45px;
    }
    .pad-int.contato{
        text-align: center;
    }
    .pad-int.contato form {
        margin-top: 30px;
    }
    .navbar-collapse{
        overflow-y: auto;
        height: 100dvh;
        text-align: center;
        max-height: unset;
    }
    .header-social {
        margin: 30px 0;
        justify-content: center;
    }
    .live-button {
        display: inline-flex;
        text-align: left;
        padding-right: 30px;
    }
}

@media (max-width: 768px) {
    .pad-int {
        padding: 60px 0;
    }
    .pad-int .main-tit{
        font-size: 36px;
        margin-bottom: 30px;
    }
    .bloco-equipe {
        margin: 30px 0 0 0;
        text-align: center;
    }
    .tab-programacao .nav-tabs li a{
        border-radius: 15px !important;
    }
    .tab-programacao .nav-tabs li span {
        margin-top: -22px;
    }
    .form-contato-comercial {
        margin: 0 0 50px 0;
    }
    form .btn-primary-site{
        margin-left: auto;
        margin-right: auto;
        display: table;
    }
    .form-group input{
        margin: 10px 0 0 0;
    }
    .pagina-noticias .noticia{
        margin: 0;
    }

    .galeria-int {
        text-align: center;
    }

    .galeria-int .galerias {
        margin: 0;
    }

    .galeria-int h1.main-tit {
        text-align: center;
        margin: 0 0 30px 0;
    }

    .galeria-int .btn-primary-site {
        margin: 0 0 30px 0;
        float: unset;
    }
}