* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    background: #f7f8fc;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

.container {
    max-width: 1320px;
}

body {
    background: #f7f7fb;
    font-family: "Poppins", sans-serif;
}

/* TOPBAR */

/* ==========================
   TOP BAR
========================== */

.topbar {
    background: #07164f;

    color: #fff;

    height: 42px;

    display: flex;

    align-items: center;

    font-size: 13px;

    position: relative;

    z-index: 10000;
}

.topbar .container {
    display: flex;

    justify-content: space-between;

    align-items: center;
}

.topbar-left,
.topbar-right {
    display: flex;

    align-items: center;

    gap: 20px;
}

.topbar i {
    color: #ffcc00;

    margin-right: 5px;
}

.topbar-right a {
    color: white;

    transition: 0.3s;
}

.topbar-right a:hover {
    color: #ffcc00;
}

#darkMode {
    background: none;

    border: none;

    color: white;

    font-size: 16px;

    cursor: pointer;
}

/* NAVBAR */

.navbar {
    position: absolute;

    top: 25px;
    left: 0;

    width: 100%;

    background: transparent;
}

/* NAVBAR STICKY */

.navbar {
    transition: all 0.3s ease;

    z-index: 9999;
}

.navbar.sticky {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    background: #fff;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);

    backdrop-filter: blur(10px);
    animation: navbarFade 0.3s ease;
}

@keyframes navbarFade {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.navbar.sticky .navbar-brand img {
    height: 50px;
}

body.menu-padding {
    padding-top: 110px;
}

.navbar {
    background: #fff;
    padding: 20px 0;
}

.navbar-brand img {
    height: 75px;
    width: 100%;
}

.navbar-nav {
    gap: 35px;
}

.navbar-nav a {
    text-decoration: none;
    font-weight: 600;
    color: #18214d;
}

.navbar-nav .active {
    color: #5726ff;
    position: relative;
}

.navbar-nav .active:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 100%;
    height: 3px;
    background: #5726ff;
}

.search-btn {
    font-size: 20px;
    cursor: pointer;
}

/* HERO */

.hero-section {
    padding-bottom: 25px;
    padding-top: 115px;
}

.hero-player {
    height: 600px;
    border-radius: 15px;

    background: linear-gradient(135deg, #1e46ff, #5c0cf2);

    background-image: url("../images/slider2.jpg");

    background-size: cover;
    background-position: center;

    overflow: hidden;
    position: relative;
}

.hero-content {
    padding: 60px;
    color: #fff;
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 800;
}

.hero-section .row {
    align-items: stretch;
}

.hero-section .col-lg-3 {
    display: flex;
}

.play-circle {
    width: 110px;
    height: 110px;
    border: 3px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 30px 0;
}

.on-air {
    margin-top: 0px;

    background: rgba(255, 255, 255, 0.12);

    padding: 25px;

    border-radius: 20px;

    backdrop-filter: blur(10px);
}

.on-air span {
    background: #ff3b30;

    padding: 6px 12px;

    border-radius: 30px;

    font-size: 12px;

    font-weight: 700;
}

.on-air h2 {
    margin: 15px 0;

    font-size: 34px;

    font-weight: 800;
}

.on-air button {
    background: #fff;

    color: #5c22ff;

    border: none;

    padding: 12px 25px;

    border-radius: 50px;

    font-weight: 700;

    transition: 0.3s;
}

.on-air button:hover {
    transform: translateY(-3px);
}

.listeners {
    margin-top: 30px;
}

/* ADS */
.ads-card{
    background:red !important;
}

/* STATS */

.stats {
    margin-bottom: 40px;
}

.stat-box {
    background: #fff;
    border: 1px solid #ececec;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    height: 100%;
}

.stat-box i {
    font-size: 45px;
    color: #4d14ef;
}

.stat-box h3 {
    margin: 0;
    font-size: 28px;
    color: #3b2ab8;
}

.stat-box p {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
}

/* ==========================
   NEWS AREA
========================== */

.news-area {
    padding: 30px 0 50px;
}

.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-title h3 {
    font-size: 24px;
    font-weight: 700;
    color: #16214a;
    position: relative;
}

.section-title h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 60px;
    height: 3px;
    background: #5726ff;
}

.section-title a {
    text-decoration: none;
    color: #5726ff;
    font-size: 14px;
    font-weight: 600;
}

/* FEATURED */

.featured-news {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 520px;
}

.featured-news img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.92));
    color: #fff;
}

.category {
    background: #6829ff;
    padding: 7px 15px;
    border-radius: 5px;
    font-size: 13px;
}

.news-overlay h2 {
    font-size: 34px;
    margin: 20px 0;
    font-weight: 700;
}

.news-overlay p {
    font-size: 15px;
    opacity: 0.9;
}

.news-meta {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    font-size: 14px;
}

/* LATEST */

.latest-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.latest-item img {
    width: 120px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
}

.latest-item h5 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 5px;
}

.latest-item p {
    font-size: 13px;
    color: #777;
}

.text-purple {
    color: #6f31ff;
    font-weight: 700;
}

/* VIDEOS */

.featured-video {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 15px;
}

.featured-video img {
    width: 100%;
    display: block;
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5f2fff;
    font-size: 25px;
}

.video-duration {
    position: absolute;
    right: 15px;
    bottom: 15px;
    background: #000;
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 4px;
}

.video-caption {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: #fff;
    font-weight: 600;
}

.video-small {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.video-small img {
    width: 95px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
}

.video-small h6 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.video-small p {
    font-size: 12px;
    color: #777;
}

/* ==========================
   PROGRAMAÇÃO
========================== */

.programacao-section {
    padding: 40px 0;
}

.program-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #ececec;
    height: 100%;
    transition: 0.3s;
}

.program-card:hover {
    transform: translateY(-5px);
}

.program-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.program-content {
    padding: 15px;
}

.program-content h5 {
    font-size: 18px;
    font-weight: 700;
    color: #19214f;
}

.program-content span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin: 10px 0;
}

.program-content p {
    font-size: 14px;
    color: #666;
}

.program-content button {
    width: 100%;
    border: 1px solid #6a2eff;
    background: #fff;
    color: #6a2eff;
    padding: 10px;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.3s;
}

.program-content button:hover {
    background: #6a2eff;
    color: #fff;
}

/* NEWSLETTER */

.newsletter-card {
    background: linear-gradient(135deg, #2b45ff, #7a18ff);

    padding: 30px;
    border-radius: 15px;
    height: 100%;
    color: #fff;
}

.newsletter-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.newsletter-card h4 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.newsletter-card p {
    opacity: 0.9;
    margin-bottom: 25px;
}

.newsletter-card input {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 8px;
    padding: 0 15px;
    margin-bottom: 15px;
}

.newsletter-card button {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    background: #fff;
    color: #5c22ff;
}

/* EMPRESA */

.empresa-section {
    padding: 20px 0 50px;
}

.empresa-box {
    background: #fff;
    border-radius: 15px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid #ececec;
}

.empresa-title h3 {
    font-size: 34px;
    font-weight: 800;
    color: #1c2352;
    margin: 0;
}

.empresa-features {
    display: flex;
    gap: 35px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature i {
    font-size: 28px;
    color: #5b21ff;
}

.feature span {
    font-size: 13px;
    font-weight: 700;
    color: #1f2754;
}

.empresa-contacto button {
    border: none;
    background: #ff9800;
    color: #fff;
    padding: 18px 30px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
}

/* RESPONSIVO */

@media (max-width: 992px) {
    .empresa-box {
        flex-direction: column;
        text-align: center;
    }

    .empresa-features {
        flex-direction: column;
    }
}

/* ==========================
   PARTNERS
========================== */

.partners-section {
    padding: 20px 0 40px;
}

.section-title.center {
    justify-content: center;
}

.partners-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
}

.partner-item {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-item img {
    max-height: 55px;
    max-width: 140px;
    filter: grayscale(0%);
    transition: 0.3s;
}

.partner-item img:hover {
    transform: scale(1.05);
}

.partner-nav {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: #f0f0f5;
}

/* ==========================
   FOOTER
========================== */

.main-footer {
    background: linear-gradient(180deg, #07164f, #05103d);

    padding-top: 60px;
    color: #fff;
}

.footer-logo img {
    height: 100px;
    margin-bottom: 20px;
}

.footer-logo p {
    opacity: 0.9;
    font-size: 14px;
}

.main-footer h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    opacity: 0.85;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-contact p {
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-contact i {
    width: 25px;
    color: #9db1ff;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.footer-social a {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #1b2b75;

    border-radius: 50%;

    color: #fff;
    text-decoration: none;

    transition: 0.3s;
}

.footer-social a:hover {
    background: #5f2eff;
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-buttons img {
    width: 160px;
}

.footer-bottom {
    margin-top: 50px;

    padding: 20px 0;

    text-align: center;

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    font-size: 14px;

    opacity: 0.8;
}

/* RESPONSIVO */

@media (max-width: 992px) {
    .partners-wrapper {
        flex-wrap: wrap;
    }

    .partner-item {
        width: 45%;
    }

    .main-footer .row {
        row-gap: 40px;
    }

    .footer-social {
        justify-content: center;
    }

    .app-buttons {
        align-items: center;
    }
}

.dark-mode {
    background: #121212;
    color: white;
}

.dark-mode .navbar {
    background: #1e1e1e;
}

.dark-mode .program-card {
    background: #222;
}

.radio-bar {
    position: fixed;

    bottom: 0;
    left: 0;

    width: 100%;

    height: 80px;

    background: #09164f;

    color: white;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 25px;

    z-index: 99999;
}

.radio-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

#radioToggle {
    width: 50px;
    height: 50px;

    border: none;

    border-radius: 50%;

    background: #5d23ff;
    color: white;

    font-size: 20px;
}

.live-badge {
    background: red;

    padding: 4px 10px;

    border-radius: 4px;

    font-size: 12px;

    font-weight: 700;
}

.radio-center {
    width: 300px;
}he

#backToTop {
    position: fixed;

    bottom: 100px;
    right: 20px;

    width: 50px;
    height: 50px;

    border: none;

    border-radius: 50%;

    background: #5c22ff;

    color: #fff;

    display: none;

    z-index: 9999;
}
