/* ===== NAVBAR ===== */
.navbar-custom {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-custom.scrolled {
    background-color: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(15px);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: color 0.3s ease;
}

.navbar-custom.scrolled .navbar-brand {
    color: white;
}

.navbar-custom:not(.scrolled) .custom-logo-link img,
.navbar-custom.scrolled .custom-logo-link img {
    filter: brightness(0) invert(1);
}

.navbar-brand i {
    font-size: 1.8rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-custom.scrolled .nav-link {
    color: white !important;
}

.navbar-custom.scrolled .nav-link:hover {
    color: var(--primary) !important;
    opacity: 1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Adjustments for Navbar */
@media (max-width: 991px) {
    .navbar-toggler {
        border: none !important;
        padding: 0 !important;
        outline: none !important;
        box-shadow: none !important;
    }

    .navbar-toggler-icon {
        filter: brightness(0) invert(1);
        /* Hamburger branco */
    }

    .navbar-collapse {
        background-color: #050505 !important;
        /* Preto premium */
        margin-top: 1rem;
        padding: 1.5rem;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
    }

    .navbar-nav .nav-link {
        padding: 0.8rem 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }

    /* Submenus no Mobile */
    .dropdown-menu {
        background-color: #0A0A0A !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        padding-left: 1.5rem !important;
        box-shadow: none !important;
        margin-top: 0 !important;
    }

    .dropdown-item {
        color: rgba(255, 255, 255, 0.8) !important;
        padding: 0.75rem 0 !important;
        font-size: 0.95rem !important;
        font-weight: 500 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
        white-space: nowrap !important;
    }

    .dropdown-item:hover,
    .dropdown-item:focus {
        background: transparent !important;
        color: var(--primary) !important;
    }
}

/* Submenus no Desktop */
@media (min-width: 992px) {
    .dropdown-menu {
        background-color: #0A0A0A !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 12px !important;
        padding: 1rem !important;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5) !important;
        margin-top: 15px !important;
        min-width: 240px !important;
        animation: fadeInMenu 0.3s ease;
    }

    .dropdown-item {
        color: rgba(255, 255, 255, 0.8) !important;
        padding: 0.6rem 1rem !important;
        border-radius: 8px !important;
        transition: all 0.2s ease !important;
        white-space: nowrap !important;
    }

    .dropdown-item:hover {
        background-color: rgba(79, 70, 229, 0.1) !important;
        color: white !important;
        transform: translateX(5px);
    }

    @keyframes fadeInMenu {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}



/* ===== HERO CAROUSEL ===== */
.hero-carousel {
    position: relative;
    height: 750px;
    overflow: visible;
    /* Permitir que a ponte flutuante apareça */
    margin-bottom: 0;
}

.swiper-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* Manter slides contidos */
}

.swiper-slide {
    position: relative;
    overflow: hidden;
    height: 100%;
    background-color: #0F172A;
    /* Slate 900 fallback */
    background-image:
        radial-gradient(circle at 20% 30%, rgba(79, 70, 229, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
}

.swiper-slide .container-lg {
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
    z-index: 3;
}

.slide-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.8) 0%, rgba(10, 10, 10, 0.4) 60%, transparent 100%);
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 4;
    color: white;
    max-width: 800px;
    text-align: left;
    animation: slideInCenter 0.8s ease-out;
}

.slide-watermark {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%) rotate(-15deg);
    font-size: 45rem;
    color: white;
    opacity: 0.04;
    z-index: 1;
    pointer-events: none;
}

.slide-content h2 {
    color: white;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.slide-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 400;
    max-width: 600px;
}

@media (max-width: 768px) {
    .hero-carousel {
        height: 520px !important;
        /* Um pouco mais de espaço no mobile */
    }

    .swiper-slide .container-lg {
        padding-top: 8rem !important;
        /* Espaço para a logo/navbar fixed */
        align-items: flex-start !important;
    }

    .slide-content {
        padding-left: 0 !important;
        padding-right: 0 !important;
        text-align: left;
        padding-top: 0;
    }

    .slide-overlay {
        background: rgba(0, 0, 0, 0.82) !important; /* Ainda mais escuro para contraste total */
    }

    .slide-content h2 {
        font-size: 1.85rem !important;
        line-height: 1.2;
        margin-bottom: 1rem;
        text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8); /* Sombra para destacar as letras */
    }

    .slide-meta {
        margin-top: 0.5rem;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .meta-item {
        font-size: 0.9rem;
    }
}


.slide-meta {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    animation: slideInUp 0.8s ease-out 0.3s both;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.meta-item i {
    font-size: 1.3rem;
}

.slide-cta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    animation: slideInUp 0.8s ease-out 0.5s both;
}

.slide-cta .btn-primary-custom {
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
}

.slide-cta .btn-secondary-custom {
    background: transparent;
    border: none;
    color: white;
    font-weight: 600;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.slide-cta .btn-secondary-custom::after {
    content: '→';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.slide-cta .btn-secondary-custom:hover::after {
    transform: translateX(5px);
}

.swiper-pagination {
    bottom: 30px !important;
    z-index: 10;
}

.swiper-pagination-bullet {
    width: 14px !important;
    height: 14px !important;
    opacity: 0.5 !important;
    background-color: white !important;
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
    background-color: var(--primary) !important;
    width: 40px !important;
    border-radius: 10px !important;
}

/* ===== HERO FEATURES BRIDGE ===== */
.hero-features-bridge {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transform: translateY(50%);
}

.hero-features-inner {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-around;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 0 1.5rem;
    flex: 1;
    justify-content: center;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.hero-feature-item:last-child {
    border-right: none;
}

.hero-feature-item:hover {
    transform: translateY(-5px);
}

.hero-feature-item .icon {
    font-size: 2.2rem;
    color: var(--primary);
    background: rgba(79, 70, 229, 0.08);
    /* New Indigo Opacity */
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.hero-feature-item:hover .icon {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
}

.hero-feature-item .text {
    display: flex;
    flex-direction: column;
}

.hero-feature-item .text span {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 800;
    margin-bottom: 2px;
}

.hero-feature-item .text strong {
    font-size: 1.15rem;
    color: var(--text-dark);
    font-weight: 800;
    line-height: 1.2;
}

@media (max-width: 1200px) {
    .hero-feature-item {
        padding: 0 1rem;
    }

    .hero-feature-item .text strong {
        font-size: 1rem;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInCenter {
    from {
        opacity: 0;
        scale: 0.95;
    }

    to {
        opacity: 1;
        scale: 1;
    }
}


/* ===== SECTION ===== */
.section-padding {
    padding: 4rem 0;
}

#concursos {
    padding-top: 8rem !important;
    /* Espaço extra para a ponte flutuante */
}

.section-concursos {
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.section-concursos::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--primary);
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.card-date {
    display: inline-block;
    color: var(--primary);
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.news-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    flex-grow: 1;
}

.news-card p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 1rem;
    flex-grow: 1;
    line-height: 1.8;
}

.news-category {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 0.4rem 1.1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    width: fit-content;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.15);
    border: none;
    letter-spacing: 0.5px;
}


/* ===== NEWS EDITORIAL ===== */
.news-featured {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.news-featured:hover {
    border-color: var(--primary);
    box-shadow: 0 24px 48px rgba(125, 152, 161, 0.18);
    transform: translateY(-5px);
}

.news-featured-img {
    position: relative;
    height: 300px;
    overflow: hidden;
    flex-shrink: 0;
}

.news-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-featured:hover .news-featured-img img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: var(--primary);
    color: white;
    padding: 0.35rem 1rem;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.news-featured-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-featured-body h3 {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.news-featured-body p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    flex-grow: 1;
}

.news-read-more {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
    margin-top: auto;
}

.news-read-more:hover {
    color: var(--primary-dark);
    gap: 0.85rem;
}

.news-side-card {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.news-side-card:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 32px rgba(125, 152, 161, 0.15);
    transform: translateY(-3px);
}

.news-side-img {
    width: 140px;
    min-width: 140px;
    overflow: hidden;
}

.news-side-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-side-card:hover .news-side-img img {
    transform: scale(1.08);
}

.news-side-body {
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.4rem;
}

.news-side-body h4 {
    font-size: 1.05rem;
    line-height: 1.4;
    margin: 0;
    color: var(--text-dark);
}

.news-side-body p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-compact-card {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-compact-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(125, 152, 161, 0.15);
    transform: translateY(-3px);
}

.news-compact-accent {
    width: 5px;
    min-width: 5px;
    background-color: var(--primary);
    flex-shrink: 0;
}

.news-compact-body {
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.news-compact-body h4 {
    font-size: 1rem;
    line-height: 1.4;
    margin: 0;
    color: var(--text-dark);
}

.news-compact-body p {
    font-size: 0.88rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* ===== TIPS SECTION ===== */

.tip-card {
    background: var(--bg);
    border: 1.5px solid var(--border);
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.tip-card:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(125, 152, 161, 0.12);
    transform: translateY(-8px);
}

.tip-card i {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: block;
}

.tip-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.tip-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}


/* ===== COURSES ===== */
.course-card {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
}

.course-card:hover {
    border-color: var(--primary);
    box-shadow: 0 24px 48px rgba(125, 152, 161, 0.15);
    transform: translateY(-12px);
}

.course-header {
    background-color: var(--primary);
    color: white;
    padding: 2rem;
    text-align: center;
}

.course-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.course-header h3 {
    color: white;
    margin: 0;
    font-size: 1.6rem;
}

.course-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.course-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.8;
    font-size: 1.05rem;
}

.course-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.course-features li {
    padding: 0.7rem 0;
    color: var(--text-dark);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
}



.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border);
    gap: 1rem;
}

.course-level {
    display: inline-block;
    background-color: rgba(125, 152, 161, 0.12);
    color: var(--primary);
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 8px;
    text-transform: capitalize;
}

/* ===== PREMIUM FOOTER ===== */
footer {
    background-color: var(--text-dark);
    padding: 6rem 0 2rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
}

footer h5 {
    color: white;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
}

footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

footer p {
    line-height: 1.8;
    margin-bottom: 2rem;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    margin-bottom: 0.85rem;
}

footer ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

footer ul li a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    max-height: 50px;
    filter: brightness(0) invert(1);
    /* Logo branca */
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-5px);
    border-color: var(--primary);
}

.footer-bottom {
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-legal-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-legal-links a {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal-links a:hover {
    color: white;
}

.footer-legal-links a:hover {
    color: var(--primary);
}

.footer-trust-badges {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    opacity: 0.5;
    filter: grayscale(1) brightness(2);
    color: white;
}

.footer-trust-badges i {
    font-size: 1.5rem;
}


/* ===== NOTA MAXIMA SECTION ===== */
.nm-badge {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.nm-stats {
    display: flex;
    justify-content: center;
    gap: 3.5rem;
    margin: 3rem 0 4rem;
    flex-wrap: wrap;
}

.nm-stat-item {
    text-align: center;
}

.nm-stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1.1;
}

.nm-stat-label {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 0.3rem;
}

.nm-game-card {
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
}

.nm-game-card:hover {
    border-color: var(--primary);
    box-shadow: 0 24px 48px rgba(125, 152, 161, 0.15);
    transform: translateY(-10px);
}

.nm-game-icon {
    font-size: 4rem;
    margin-bottom: 1.25rem;
    display: block;
    color: var(--primary);
}

.nm-game-card h4 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.nm-game-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

.nm-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 1.75rem;
    transition: all 0.3s ease;
    height: 100%;
}

.nm-feature-card:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 32px rgba(125, 152, 161, 0.12);
    transform: translateY(-4px);
}

.nm-feature-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    background: rgba(125, 152, 161, 0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
}

.nm-feature-card h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--text-dark);
}

.nm-feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}

.nm-comparison {
    background: #EEF1EF;
    border-radius: 20px;
    padding: 3rem;
    margin: 1rem 0 3rem;
}

.nm-comparison-col {
    border-radius: 16px;
    padding: 2rem;
}

.nm-comparison-col.bad {
    background: #FEF2F2;
    border: 1.5px solid #FECACA;
}

.nm-comparison-col.good {
    background: #F0FDF4;
    border: 1.5px solid #BBF7D0;
}

.nm-comparison-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.nm-comparison-col.bad h4 {
    color: #DC2626;
}

.nm-comparison-col.good h4 {
    color: #16A34A;
}

.nm-comparison-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nm-comparison-col li {
    padding: 0.55rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.nm-cta {
    background-color: #1C2321;
    border-radius: 24px;
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.nm-cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.nm-cta::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.nm-cta-content {
    position: relative;
    z-index: 2;
}

.nm-cta h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1.25rem;
}

.nm-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}


/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    p {
        font-size: 1rem;
    }

    .hero-carousel {
        height: 450px;
    }

    .slide-content {
        padding: 1.5rem;
    }

    .slide-content h2 {
        font-size: 2.5rem;
    }

    .slide-content p {
        font-size: 1.1rem;
    }

    .section-padding {
        padding: 3rem 0;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }

    .slide-cta {
        flex-direction: column;
        align-items: center;
    }

    .slide-meta {
        gap: 0.75rem;
    }

    .swiper-pagination {
        bottom: 12px !important;
    }

    .nm-stats {
        gap: 2rem;
    }

    .nm-stat-number {
        font-size: 2rem;
    }

    .nm-comparison {
        padding: 1.5rem;
    }

    .nm-comparison-col {
        padding: 1.25rem;
    }

    .nm-cta {
        padding: 3rem 1.5rem;
    }

    .nm-cta h2 {
        font-size: 2rem;
    }
}


/* ===== PLATAFORMA HERO ===== */

.plataforma-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    border-radius: 32px;
    padding: 5rem 4rem;
    margin-bottom: 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.plataforma-hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.plataforma-hero .nm-badge {
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.20);
    color: white;
}

.plataforma-hero h2 {
    color: white;
    font-size: 3.8rem;
}

.plataforma-hero .section-subtitle {
    color: rgba(255, 255, 255, 0.80);
    margin-left: auto;
    margin-right: auto;
}

.plataforma-hero .nm-stats {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    padding-top: 2.5rem;
    margin-top: 3rem;
    margin-bottom: 0;
    gap: 0;
}

.plataforma-hero .nm-stat-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    height: 100%;
}

.plataforma-hero .nm-stat-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.plataforma-hero .nm-stat-item:last-child {
    /* override previous border-right rule if any */
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.plataforma-hero .nm-stat-number {
    color: white;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.plataforma-hero .nm-stat-label {
    color: rgba(255, 255, 255, 0.70);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .plataforma-hero {
        padding: 3rem 1.5rem 2.5rem;
        border-radius: 16px;
    }

    .plataforma-hero h2 {
        font-size: 2.4rem;
    }

    .plataforma-hero .nm-stat-item {
        padding: 0.5rem 1.5rem;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }

    .plataforma-hero .nm-stat-item:last-child {
        border-bottom: none;
    }

    .plataforma-hero .nm-stat-number {
        font-size: 2.4rem;
    }
}


/* ===== QUEM SOMOS ===== */

.qs-hero {
    background-color: #1C2321;
    background-image:
        linear-gradient(rgba(28, 35, 33, 0.78), rgba(28, 35, 33, 0.88)),
        url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 10rem 0 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.qs-hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.qs-hero .nm-badge {
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.20);
    color: white;
    margin-bottom: 1.5rem;
}

.qs-hero h1 {
    color: white;
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.qs-hero .section-subtitle {
    color: rgba(255, 255, 255, 0.80);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
}

.qs-hero-meta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.qs-hero-pill {
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.20);
    color: rgba(255, 255, 255, 0.85);
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.qs-stat-card {
    background: var(--bg-light);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
}

.qs-stat-card .qs-stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.qs-stat-card .qs-stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
}

.qs-problem-panel {
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
}

.qs-problem-panel__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    font-weight: 800;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.qs-problem-panel--sem {
    background: #FFF5F5;
    border: 1.5px solid #FCA5A5;
}

.qs-problem-panel--sem .qs-problem-panel__header {
    background: #FEE2E2;
    color: #DC2626;
}

.qs-problem-panel--com {
    background: #F0FDF4;
    border: 1.5px solid #BBF7D0;
}

.qs-problem-panel--com .qs-problem-panel__header {
    background: #DCFCE7;
    color: #16A34A;
}

.qs-problem-list {
    list-style: none;
    padding: 1.25rem 1.5rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.qs-problem-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

.qs-problem-panel--sem .qs-problem-list li i {
    color: #DC2626;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.qs-problem-panel--com .qs-problem-list li i {
    color: #16A34A;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.qs-science-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
}

.qs-science-card:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 32px rgba(125, 152, 161, 0.15);
    transform: translateY(-4px);
}

.qs-science-card__icon {
    width: 48px;
    height: 48px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--primary);
    font-size: 1.2rem;
}

.qs-science-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-family: 'Poppins', sans-serif;
}

.qs-science-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.qs-product-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.qs-product-card--primary {
    background: #1C2321;
    border-color: #1C2321;
}

.qs-product-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 1.25rem;
    background: var(--bg-light);
    color: var(--primary);
}

.qs-product-card--primary .qs-product-card__icon {
    background: rgba(255, 255, 255, 0.10);
    color: white;
}

.qs-product-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
}

.qs-product-card--primary h3 {
    color: white;
}

.qs-product-url {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.qs-product-card--primary .qs-product-url {
    color: rgba(255, 255, 255, 0.60);
}

.qs-product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.qs-product-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.92rem;
    color: var(--text-light);
    font-weight: 500;
}

.qs-product-card--primary .qs-product-features li {
    color: rgba(255, 255, 255, 0.75);
}

.qs-product-features li i {
    color: #16A34A;
    margin-top: 2px;
    flex-shrink: 0;
}

.qs-product-card--primary .qs-product-features li i {
    color: #4ADE80;
}

.qs-cta {
    background-color: #1C2321;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.qs-cta::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.qs-cta .nm-badge {
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.20);
    color: white;
    margin-bottom: 1.25rem;
}

.qs-cta h2 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 1.25rem;
}

.qs-cta p {
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.qs-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.qs-cta-btn-light {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.40);
    color: rgba(255, 255, 255, 0.85);
}

.qs-cta-btn-light:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: white;
    color: white;
}

@media (max-width: 768px) {
    .qs-hero h1 {
        font-size: 2.4rem;
    }

    .qs-cta h2 {
        font-size: 2rem;
    }
}


/* ===== BLOG ===== */

.blog-page-header {
    background-color: #1C2321;
    background-size: cover;
    background-position: center;
    padding: 8rem 0 3rem;
    /* Aumentado de 3rem para 8rem para compensar a navbar fixa */
    position: relative;
}

.blog-page-header h1 {
    color: white;
    font-size: 2.4rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.blog-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 600;
}

.blog-breadcrumb a {
    color: white !important;
    text-decoration: none;
    transition: all 0.2s;
}

.blog-breadcrumb a:hover {
    color: var(--primary) !important;
}

.blog-breadcrumb i {
    font-size: 0.45rem;
    vertical-align: middle;
}

.blog-hero-post {
    position: relative;
    min-height: 500px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    color: inherit;
}

.blog-hero-post__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.blog-hero-post:hover .blog-hero-post__bg {
    transform: scale(1.03);
}

.blog-hero-post__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 15, 13, 0.93) 0%, rgba(10, 15, 13, 0.45) 55%, rgba(10, 15, 13, 0.08) 100%);
}

.blog-hero-post__body {
    position: relative;
    padding: 2.5rem;
    width: 100%;
    max-width: 720px;
}

.blog-hero-post__title {
    color: white;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.blog-hero-post:hover .blog-hero-post__title {
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.4);
    text-underline-offset: 4px;
}

.blog-hero-post__excerpt {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.blog-hero-post__meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 600;
    flex-wrap: wrap;
}

.blog-hero-post__meta i {
    margin-right: 0.3rem;
}

.blog-cat {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    margin-bottom: 0.75rem;
    background: var(--primary);
    color: white;
}

.blog-cat--noticias {
    background: #E0E7FF;
    color: #4338CA;
}

.blog-cat--dicas {
    background: #DCFCE7;
    color: #15803D;
}

.blog-cat--editais {
    background: #FEF3C7;
    color: #B45309;
}

.blog-cat--aprovados {
    background: #EDE9FE;
    color: #6D28D9;
}

/* No Hero Post do Blog (Fundo Escuro) */
.blog-hero-post .blog-cat {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.blog-filters {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.blog-filter {
    background: white;
    border: 1.5px solid var(--border);
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.88rem;
    padding: 0.45rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Poppins', sans-serif;
}

.blog-filter:hover,
.blog-filter.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.blog-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.blog-card:hover {
    border-color: var(--primary);
    box-shadow: 0 16px 40px rgba(125, 152, 161, 0.15);
    transform: translateY(-5px);
    color: inherit;
    text-decoration: none;
}

.blog-card__img-wrapper {
    overflow: hidden;
    flex-shrink: 0;
}

.blog-card__img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card__img {
    transform: scale(1.05);
}

.blog-card__body {
    padding: 1.25rem 1.35rem 1.35rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 0.6rem;
    font-family: 'Poppins', sans-serif;
    transition: color 0.2s;
}

.blog-card:hover .blog-card__title {
    color: var(--primary);
}

.blog-card__excerpt {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 1rem;
}

.blog-card__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
    border-top: 1px solid var(--border);
    padding-top: 0.85rem;
    flex-wrap: wrap;
}

.blog-card__meta i {
    color: var(--primary);
    margin-right: 0.25rem;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3.5rem;
}

.blog-pag-btn {
    min-width: 42px;
    height: 42px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    background: white;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
}

.blog-pag-btn:hover,
.blog-pag-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    text-decoration: none;
}

.blog-pag-btn:disabled,
.blog-pag-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

@media (max-width: 768px) {
    .blog-page-header h1 {
        font-size: 1.8rem;
    }

    .blog-hero-post {
        min-height: 360px;
    }

    .blog-hero-post__body {
        padding: 1.5rem;
    }

    .blog-hero-post__title {
        font-size: 1.4rem;
    }

    .blog-hero-post__excerpt {
        display: none;
    }
}


/* ===== SINGLE ARTICLE ===== */

.single-header {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.single-header__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.single-header__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 12, 10, 0.96) 0%, rgba(8, 12, 10, 0.55) 55%, rgba(8, 12, 10, 0.12) 100%);
}

.single-header__body {
    position: relative;
    width: 100%;
    padding: 3.5rem 0 3rem;
}

.single-header .blog-breadcrumb {
    margin-bottom: 1.25rem;
}

/* Breadcrumb dentro do hero escuro — forçar contraste branco */
.single-header .notamaxima-breadcrumb .breadcrumb {
    background: none;
    padding: 0;
    margin-bottom: 1.25rem;
}

.single-header .notamaxima-breadcrumb .breadcrumb-item,
.single-header .notamaxima-breadcrumb .breadcrumb-item a,
.single-header .notamaxima-breadcrumb .breadcrumb-item span,
.podcast-header .notamaxima-breadcrumb .breadcrumb-item,
.podcast-header .notamaxima-breadcrumb .breadcrumb-item a,
.radio-hero .notamaxima-breadcrumb .breadcrumb-item,
.radio-hero .notamaxima-breadcrumb .breadcrumb-item a,
.qs-hero .notamaxima-breadcrumb .breadcrumb-item,
.qs-hero .notamaxima-breadcrumb .breadcrumb-item a,
.page-header .notamaxima-breadcrumb .breadcrumb-item,
.page-header .notamaxima-breadcrumb .breadcrumb-item a,
.blog-page-header .notamaxima-breadcrumb .breadcrumb-item,
.blog-page-header .notamaxima-breadcrumb .breadcrumb-item a {
    color: white !important;
    font-size: 0.88rem;
    font-weight: 600;
}

.single-header .notamaxima-breadcrumb .breadcrumb-item a:hover {
    color: rgba(255, 255, 255, 0.75) !important;
    text-decoration: none;
}

.single-header .notamaxima-breadcrumb .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.80) !important;
}

.single-header .notamaxima-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.60);
}

.single-header h1 {
    color: white;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    font-family: 'Poppins', sans-serif;
    max-width: 820px;
}

.single-header-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.58);
    font-weight: 600;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.single-header-meta i {
    margin-right: 0.3rem;
}

.single-share {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.single-share-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.42);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.single-share-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.single-share-btn:hover {
    background: rgba(255, 255, 255, 0.20);
    color: white;
}

/* Article body typography */
.article-body {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-dark);
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body h2 {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 2.75rem 0 1rem;
    font-family: 'Poppins', sans-serif;
    line-height: 1.25;
}

.article-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 2rem 0 0.65rem;
    font-family: 'Poppins', sans-serif;
}

.article-body ul,
.article-body ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.article-body li {
    margin-bottom: 0.5rem;
}

.article-pullquote {
    border-left: 4px solid var(--primary);
    padding: 1.1rem 1.5rem;
    margin: 2.5rem 0;
    background: var(--bg-light);
    border-radius: 0 12px 12px 0;
}

.article-pullquote p {
    font-size: 1.15rem;
    font-weight: 700;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 0;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

.article-pullquote cite {
    display: block;
    font-size: 0.82rem;
    color: var(--text-light);
    font-style: normal;
    font-weight: 600;
    margin-top: 0.6rem;
}

.article-highlight-box {
    background: #EFF6FF;
    border: 1px solid #BFDBFE;
    border-radius: 12px;
    padding: 1.5rem 1.75rem;
    margin: 2rem 0;
}

.article-highlight-box h4 {
    font-size: 0.85rem;
    font-weight: 800;
    color: #2563EB;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.85rem;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-highlight-box ul {
    margin-bottom: 0;
    padding-left: 1.25rem;
}

.article-highlight-box li {
    color: #1E40AF;
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
}

.article-dica-box {
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    border-radius: 12px;
    padding: 1.5rem 1.75rem;
    margin: 2rem 0;
}

.article-dica-box h4 {
    font-size: 0.85rem;
    font-weight: 800;
    color: #16A34A;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.85rem;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-dica-box p {
    color: #166534;
    font-size: 0.97rem;
    margin-bottom: 0;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2.5rem 0 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.article-tag {
    background: var(--bg-light);
    border: 1px solid var(--border);
    color: var(--text-light);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.3rem 0.85rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s;
}

.article-tag:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 16px;
    border: 1.5px solid var(--border);
}

.article-author__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.2rem;
    font-family: 'Poppins', sans-serif;
    flex-shrink: 0;
}

.article-author__name {
    font-weight: 800;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.article-author__bio {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

/* Sidebar */
.single-sidebar {
    position: sticky;
    top: 90px;
}

.sidebar-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.sidebar-card h5 {
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 1.25rem;
    font-family: 'Poppins', sans-serif;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--border);
}

.sidebar-platform-cta {
    background: #1C2321;
    border-radius: 16px;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.sidebar-platform-cta .nm-badge {
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.20);
    color: white;
    margin-bottom: 1rem;
}

.sidebar-platform-cta h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0.65rem;
    line-height: 1.3;
}

.sidebar-platform-cta p {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.86rem;
    line-height: 1.55;
    margin-bottom: 1.35rem;
}

.sidebar-platform-cta .sidebar-features-list {
    margin-bottom: 1.35rem;
}

.sidebar-platform-cta .sidebar-feature-item {
    color: rgba(255, 255, 255, 0.80);
    font-size: 0.86rem;
    font-weight: 600;
    gap: 0.6rem;
}

.sidebar-platform-cta .sidebar-feature-item i {
    color: var(--primary);
    flex-shrink: 0;
}

.sidebar-platform-cta .sidebar-stats {
    border-color: rgba(255, 255, 255, 0.12);
    margin-bottom: 1.35rem;
}

.sidebar-platform-cta .sidebar-stat {
    border-right-color: rgba(255, 255, 255, 0.12);
}

.sidebar-platform-cta .sidebar-stat__number {
    color: white;
}

.sidebar-platform-cta .sidebar-stat__label {
    color: rgba(255, 255, 255, 0.50);
}

.sidebar-platform-cta .btn-primary-custom {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
}

.sidebar-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.sidebar-feature-item__icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.9rem;
    flex-shrink: 0;
    border: 1px solid var(--border);
}

.sidebar-feature-item__text strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0.15rem;
}

.sidebar-feature-item__text span {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.4;
}

.sidebar-stats {
    display: flex;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.sidebar-stat {
    flex: 1;
    text-align: center;
    padding: 1rem 0.5rem;
    border-right: 1px solid var(--border);
}

.sidebar-stat:last-child {
    border-right: none;
}

.sidebar-stat__number {
    font-size: 1.45rem;
    font-weight: 900;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.sidebar-stat__label {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

.sidebar-related-item {
    display: flex;
    gap: 0.85rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    align-items: flex-start;
    transition: opacity 0.2s;
}

.sidebar-related-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.sidebar-related-item:hover {
    opacity: 0.80;
}

.sidebar-related-item img {
    width: 70px;
    height: 54px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.sidebar-related-item__title {
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    line-height: 1.35;
    transition: color 0.2s;
    display: block;
    margin-top: 0.2rem;
}

.sidebar-related-item:hover .sidebar-related-item__title {
    color: var(--primary);
}

.sidebar-newsletter input[type="email"] {
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 0.65rem 0.9rem;
    font-size: 0.9rem;
    width: 100%;
    margin-bottom: 0.65rem;
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.2s;
}

.sidebar-newsletter input[type="email"]:focus {
    border-color: var(--primary);
}

.sidebar-newsletter .btn-primary-custom {
    width: 100%;
    text-align: center;
    padding: 0.65rem;
    font-size: 0.88rem;
}

@media (max-width: 991px) {
    .single-sidebar {
        position: static;
        margin-top: 2.5rem;
    }

    .single-header h1 {
        font-size: 1.8rem;
    }

    .single-header {
        min-height: 380px;
    }

    .single-header__bg {
        background-attachment: scroll;
    }
}


/* ===== PAGE TEMPLATE ===== */

.page-header {
    background-color: #1C2321;
    background-image:
        linear-gradient(rgba(28, 35, 33, 0.80), rgba(28, 35, 33, 0.88)),
        url('https://images.unsplash.com/photo-1507842217343-583bb7270b66?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 8rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.page-header .blog-breadcrumb {
    margin-bottom: 1.1rem;
}

.page-header h1 {
    color: white;
    font-size: 2.4rem;
    font-weight: 900;
    margin-bottom: 0.65rem;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

.page-header__desc {
    color: rgba(255, 255, 255, 0.58);
    font-size: 1rem;
    margin: 0;
    max-width: 580px;
    line-height: 1.6;
}

/* Page content typography */
.page-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.page-content p {
    margin-bottom: 1.35rem;
    color: var(--text-light);
}

.page-content h2 {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 2.5rem 0 0.85rem;
    font-family: 'Poppins', sans-serif;
    line-height: 1.25;
    scroll-margin-top: 100px;
}

.page-content h2:first-child {
    margin-top: 0;
}

.page-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 1.75rem 0 0.6rem;
    font-family: 'Poppins', sans-serif;
}

.page-content ul,
.page-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.35rem;
    color: var(--text-light);
}

.page-content li {
    margin-bottom: 0.45rem;
}

.page-content strong {
    color: var(--text-dark);
    font-weight: 700;
}

.page-content a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.page-content a:hover {
    opacity: 0.80;
}

.page-content hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 2rem 0;
}

/* Section divider with label */
.page-section-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    scroll-margin-top: 100px;
}

.page-section-label span {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--primary);
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
}

.page-section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

/* FAQ accordion */
.page-faq-group {
    margin-bottom: 2.5rem;
}

.page-faq-group:last-child {
    margin-bottom: 0;
}

.accordion-item {
    border: 1.5px solid var(--border) !important;
    border-radius: 12px !important;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.accordion-button {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.97rem;
    color: var(--text-dark);
    background: white;
    padding: 1.1rem 1.35rem;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--primary);
    background: var(--bg-light);
}

.accordion-button::after {
    color: var(--primary);
}

.accordion-body {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.75;
    padding: 0.85rem 1.35rem 1.25rem;
    border-top: 1px solid var(--border);
}

.accordion-body a {
    color: var(--primary);
    font-weight: 600;
}

/* Table of contents sidebar */
.page-sidebar {
    position: sticky;
    top: 90px;
}

.page-toc-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.page-toc-card h5 {
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 1.1rem;
    font-family: 'Poppins', sans-serif;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--border);
}

.page-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.page-toc-list a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 0.75rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-light);
    text-decoration: none;
    border-radius: 8px;
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
    line-height: 1.35;
}

.page-toc-list a:hover {
    color: var(--primary);
    background: var(--bg-light);
    border-left-color: var(--primary);
}

.page-toc-list a.active {
    color: var(--primary);
    background: var(--bg-light);
    border-left-color: var(--primary);
    font-weight: 700;
}

.page-toc-list a i {
    font-size: 0.5rem;
    opacity: 0.5;
    flex-shrink: 0;
}

/* Sidebar CTA (reuse sidebar-platform-cta from single) */
.page-sidebar .sidebar-platform-cta {
    margin-bottom: 1.5rem;
}

.page-sidebar .sidebar-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.page-sidebar .sidebar-card h5 {
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 1.1rem;
    font-family: 'Poppins', sans-serif;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--border);
}

.page-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.page-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.88rem;
    color: var(--text-light);
}

.page-contact-list li i {
    color: var(--primary);
    width: 16px;
    text-align: center;
    margin-top: 3px;
    flex-shrink: 0;
}

.page-contact-list a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.page-contact-list a:hover {
    text-decoration: underline;
}

@media (max-width: 991px) {
    .page-sidebar {
        position: static;
        margin-top: 2.5rem;
    }

    .page-header h1 {
        font-size: 1.9rem;
    }
}


/* ===== 404 PAGE ===== */

.error-page {
    background-color: #1C2321;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.error-page::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.error-page::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(125, 152, 161, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.error-code {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(7rem, 20vw, 14rem);
    font-weight: 900;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.12);
    letter-spacing: -0.02em;
    margin-bottom: -1rem;
    position: relative;
    z-index: 1;
    user-select: none;
}

.error-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.error-title {
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 900;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.error-description {
    color: rgba(255, 255, 255, 0.58);
    font-size: 1rem;
    line-height: 1.75;
    max-width: 480px;
    margin: 0 auto 2.5rem;
    position: relative;
    z-index: 1;
}

.error-actions {
    display: flex;
    justify-content: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.error-btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.20);
    color: rgba(255, 255, 255, 0.80);
    font-family: 'Poppins', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    padding: 0.7rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.error-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.40);
    color: white;
}

.error-divider {
    width: 48px;
    height: 2px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 2px;
    margin: 2.5rem auto;
    position: relative;
    z-index: 1;
}

.error-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.error-links a {
    color: rgba(255, 255, 255, 0.40);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.error-links a:hover {
    color: rgba(255, 255, 255, 0.80);
}


/* ===== PAGE CONCURSOS ===== */

/* Search box */
.pcon-search-wrapper {
    position: relative;
}

.pcon-search-wrapper i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 0.9rem;
    pointer-events: none;
}

.pcon-search-input {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.2s;
    background: white;
}

.pcon-search-input:focus {
    border-color: var(--primary);
}

.pcon-search-input::placeholder {
    color: var(--text-light);
}

/* Filter sidebar */
.pcon-filter-sidebar {
    position: sticky;
    top: 90px;
}

.pcon-filter-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.pcon-filter-header {
    padding: 1.1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
}

.pcon-filter-header h5 {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pcon-filter-header h5 i {
    color: var(--primary);
    font-size: 0.85rem;
}

.pcon-filter-clear {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    transition: opacity 0.2s;
}

.pcon-filter-clear:hover {
    opacity: 0.70;
}

.pcon-filter-section {
    padding: 1.1rem 1.25rem;
    border-bottom: 1px solid var(--border);
}

.pcon-filter-section:last-child {
    border-bottom: none;
}

.pcon-filter-section__title {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0.85rem;
}

.pcon-check-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: var(--text-light);
    font-weight: 500;
    cursor: pointer;
    padding: 0.3rem 0;
    transition: color 0.15s;
    user-select: none;
}

.pcon-check-label:hover {
    color: var(--text-dark);
}

.pcon-check-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    accent-color: var(--primary);
    cursor: pointer;
    flex-shrink: 0;
}

.pcon-check-label .pcon-check-count {
    margin-left: auto;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-light);
    background: var(--bg-light);
    border-radius: 20px;
    padding: 0.1rem 0.5rem;
}

/* Mobile filter toggle */
.pcon-filter-toggle {
    display: none;
    width: 100%;
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 0.75rem 1.1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    transition: all 0.2s;
}

.pcon-filter-toggle:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Active filters pills */
.pcon-active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    min-height: 0;
}

.pcon-active-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--bg-light);
    border: 1px solid var(--border);
    color: var(--text-dark);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.3rem 0.65rem;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
}

.pcon-active-pill button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--text-light);
    font-size: 0.72rem;
    line-height: 1;
    transition: color 0.15s;
    display: flex;
    align-items: center;
}

.pcon-active-pill button:hover {
    color: #DC2626;
}

/* Results bar */
.pcon-results-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.pcon-results-count {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

.pcon-results-count strong {
    color: var(--text-dark);
    font-weight: 800;
}

.pcon-sort-select {
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 0.45rem 0.85rem;
    font-size: 0.85rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
    background: white;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s;
}

.pcon-sort-select:focus {
    border-color: var(--primary);
}

/* Concurso list cards */
.pcon-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.25s ease;
    margin-bottom: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.pcon-card:last-child {
    margin-bottom: 0;
}

.pcon-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 28px rgba(125, 152, 161, 0.14);
    transform: translateX(4px);
    color: inherit;
    text-decoration: none;
}

.pcon-card--encerrado {
    opacity: 0.60;
}

.pcon-card--encerrado:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--border);
}

.pcon-card__main {
    flex: 1;
    min-width: 0;
}

.pcon-card__top {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.35rem;
    flex-wrap: wrap;
}

.pcon-card__orgao {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-family: 'Poppins', sans-serif;
}

.pcon-card__cargo {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.6rem;
    transition: color 0.2s;
}

.pcon-card:hover .pcon-card__cargo {
    color: var(--primary);
}

.pcon-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.1rem;
}

.pcon-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.82rem;
    color: var(--text-light);
    font-weight: 600;
}

.pcon-card__meta i {
    color: var(--primary);
    font-size: 0.75rem;
    width: 12px;
    text-align: center;
}

.pcon-card__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.6rem;
    flex-shrink: 0;
}

.pcon-card__prazo {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-light);
    white-space: nowrap;
    text-align: right;
}

.pcon-card__prazo.urgente {
    color: #DC2626;
}

/* No results */
.pcon-no-results {
    text-align: center;
    padding: 4rem 2rem;
    display: none;
}

.pcon-no-results i {
    font-size: 3rem;
    color: var(--border);
    margin-bottom: 1rem;
    display: block;
}

.pcon-no-results p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

.pcon-no-results strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
    font-family: 'Poppins', sans-serif;
}

@media (max-width: 991px) {
    .pcon-filter-sidebar {
        position: static;
    }

    .pcon-filter-toggle {
        display: flex;
    }

    .pcon-card {
        flex-wrap: wrap;
    }

    .pcon-card__right {
        flex-direction: row;
        align-items: center;
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 576px) {
    .pcon-card {
        padding: 1rem 1.1rem;
        gap: 1rem;
    }
}


/* ===== SINGLE CONCURSO ===== */

/* Header — reuses single-header pattern with concurso overlays */
.sc-header {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    padding: 5rem 0 3rem;
    overflow: hidden;
}

.sc-header__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.45) saturate(0.7);
}

.sc-header__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28, 35, 33, 0.95) 0%, rgba(28, 35, 33, 0.55) 60%, rgba(28, 35, 33, 0.25) 100%);
}

.sc-header__body {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Orgão logo badge */
.sc-orgao-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 8px;
    padding: 0.35rem 0.85rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(6px);
}

.sc-orgao-badge__icon {
    width: 28px;
    height: 28px;
    background: var(--primary);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    flex-shrink: 0;
}

.sc-orgao-badge__name {
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.sc-header h1 {
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 900;
    color: white;
    margin-bottom: 1.25rem;
    line-height: 1.25;
}

/* Key stat pills row under title */
.sc-header-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.sc-stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    padding: 0.38rem 0.85rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.90);
    font-family: 'Poppins', sans-serif;
    backdrop-filter: blur(4px);
}

.sc-stat-pill i {
    color: var(--primary);
    font-size: 0.75rem;
    width: 14px;
    text-align: center;
}

/* Header action row */
.sc-header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.sc-btn-inscricao {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    padding: 0.7rem 1.75rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.sc-btn-inscricao:hover {
    background: #5a7f8c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(125, 152, 161, 0.35);
}

.sc-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.80);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}

.sc-share-btn:hover {
    background: rgba(255, 255, 255, 0.20);
    color: white;
}

/* Info stat cards strip */
.sc-info-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.sc-info-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 1.1rem 1.25rem;
    text-align: center;
    transition: border-color 0.2s;
}

.sc-info-card:hover {
    border-color: var(--primary);
}

.sc-info-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(125, 152, 161, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.6rem;
    color: var(--primary);
    font-size: 1rem;
}

.sc-info-card__value {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    line-height: 1.1;
    margin-bottom: 0.2rem;
}

.sc-info-card__label {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Content section headings */
.sc-section-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1.1rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.sc-section-title i {
    color: var(--primary);
    font-size: 1rem;
}

/* Vagas table */
.sc-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    margin-bottom: 0;
}

.sc-table thead th {
    background: var(--bg-light);
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    padding: 0.7rem 1rem;
    border-bottom: 2px solid var(--border);
    text-align: left;
}

.sc-table tbody td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
    color: var(--text-dark);
    font-weight: 600;
    vertical-align: middle;
}

.sc-table tbody tr:last-child td {
    border-bottom: none;
}

.sc-table tbody tr:hover td {
    background: rgba(125, 152, 161, 0.04);
}

.sc-table-wrapper {
    border: 1.5px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
}

/* Cronograma / Timeline */
.sc-timeline {
    position: relative;
    padding-left: 2rem;
}

.sc-timeline::before {
    content: '';
    position: absolute;
    left: 0.55rem;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 2px;
    background: var(--border);
}

.sc-timeline-item {
    position: relative;
    padding-bottom: 1.75rem;
    display: flex;
    gap: 1rem;
}

.sc-timeline-item:last-child {
    padding-bottom: 0;
}

.sc-timeline-dot {
    position: absolute;
    left: -1.83rem;
    top: 0.25rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--border);
    border: 2px solid white;
    box-shadow: 0 0 0 2px var(--border);
    flex-shrink: 0;
    transition: background 0.2s;
}

.sc-timeline-item.done .sc-timeline-dot {
    background: #16a34a;
    box-shadow: 0 0 0 2px #16a34a;
}

.sc-timeline-item.active .sc-timeline-dot {
    background: var(--primary);
    box-shadow: 0 0 0 2px var(--primary);
    animation: pulse-dot 1.6s infinite;
}

.sc-timeline-item.urgente .sc-timeline-dot {
    background: #DC2626;
    box-shadow: 0 0 0 2px #DC2626;
    animation: pulse-dot 1.2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        box-shadow: 0 0 0 2px currentColor;
    }

    50% {
        box-shadow: 0 0 0 5px rgba(125, 152, 161, 0.20);
    }
}

.sc-timeline-content {
    flex: 1;
}

.sc-timeline-date {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.15rem;
}

.sc-timeline-item.done .sc-timeline-date {
    color: #16a34a;
}

.sc-timeline-item.urgente .sc-timeline-date {
    color: #DC2626;
}

.sc-timeline-label {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0.15rem;
}

.sc-timeline-desc {
    font-size: 0.82rem;
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.5;
}

/* Steps — Como se inscrever */
.sc-steps {
    counter-reset: sc-step;
    list-style: none;
    padding: 0;
    margin: 0;
}

.sc-steps li {
    counter-increment: sc-step;
    display: flex;
    gap: 1rem;
    padding-bottom: 1.25rem;
    align-items: flex-start;
}

.sc-steps li:last-child {
    padding-bottom: 0;
}

.sc-step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.sc-step-body strong {
    display: block;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0.2rem;
    font-size: 0.95rem;
}

.sc-step-body p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
}

.sc-step-body a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

.sc-step-body a:hover {
    text-decoration: underline;
}

/* Sidebar countdown widget */
.sc-countdown-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    text-align: center;
}

.sc-countdown-label {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1rem;
}

.sc-countdown-digits {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.sc-countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.sc-countdown-num {
    background: var(--text-dark);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 1.6rem;
    line-height: 1;
    padding: 0.45rem 0.7rem;
    border-radius: 8px;
    min-width: 52px;
    text-align: center;
}

.sc-countdown-sep {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--border);
    line-height: 2.5rem;
}

.sc-countdown-unit span:last-child {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    color: var(--text-light);
}

.sc-countdown-bar {
    height: 6px;
    background: var(--border);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.sc-countdown-bar__fill {
    height: 100%;
    border-radius: 10px;
    background: var(--primary);
    transition: width 0.6s ease;
}

.sc-countdown-note {
    font-size: 0.78rem;
    color: var(--text-light);
    font-weight: 600;
}

.sc-countdown-note strong {
    color: #DC2626;
}

/* Sidebar CTA de inscrição */
.sc-sidebar-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    background: var(--primary);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    padding: 0.9rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    margin-bottom: 1.25rem;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.sc-sidebar-cta-btn:hover {
    background: #5a7f8c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(125, 152, 161, 0.30);
}

/* Responsive */
@media (max-width: 991px) {
    .sc-info-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .sc-header {
        padding: 4rem 0 2rem;
        min-height: 320px;
    }
}

@media (max-width: 576px) {
    .sc-info-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .sc-header-stats {
        gap: 0.4rem;
    }

    .sc-stat-pill {
        font-size: 0.75rem;
        padding: 0.3rem 0.65rem;
    }

    .sc-countdown-num {
        font-size: 1.2rem;
        min-width: 42px;
        padding: 0.35rem 0.5rem;
    }
}


/* ===== PAGE CURSOS ===== */

/* Category filter tabs — reutiliza padrão blog-filters */
.cursos-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.cursos-filter {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 1rem;
    border-radius: 8px;
    border: 1.5px solid var(--border);
    background: white;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.cursos-filter:hover,
.cursos-filter.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* Featured course banner */
.curso-destaque {
    display: flex;
    background: #1C2321;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 2.5rem;
    min-height: 240px;
    position: relative;
}

.curso-destaque__thumb {
    width: 42%;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.curso-destaque__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
    transition: transform 0.4s ease;
}

.curso-destaque:hover .curso-destaque__thumb img {
    transform: scale(1.04);
}

.curso-destaque__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
}

.curso-destaque__play i {
    font-size: 3rem;
    color: white;
    opacity: 0.85;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
    transition: transform 0.2s, opacity 0.2s;
}

.curso-destaque:hover .curso-destaque__play i {
    transform: scale(1.12);
    opacity: 1;
}

.curso-destaque__body {
    flex: 1;
    padding: 2rem 2rem 2rem 2.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.curso-destaque__label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.20);
    color: rgba(255, 255, 255, 0.80);
    font-size: 0.72rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 0.25rem 0.65rem;
    border-radius: 6px;
    margin-bottom: 0.75rem;
    width: fit-content;
}

.curso-destaque__title {
    font-size: clamp(1.1rem, 2vw, 1.55rem);
    font-weight: 900;
    color: white;
    font-family: 'Poppins', sans-serif;
    line-height: 1.25;
    margin-bottom: 0.6rem;
}

.curso-destaque__desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.60);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.curso-destaque__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.1rem;
    margin-bottom: 1.5rem;
}

.curso-destaque__meta span {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.curso-destaque__meta i {
    color: var(--primary);
    font-size: 0.75rem;
}

.curso-destaque__price-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.curso-destaque__price {
    font-size: 1.7rem;
    font-weight: 900;
    color: white;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

.curso-destaque__price-original {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: line-through;
}

.curso-destaque__discount {
    background: #16a34a;
    color: white;
    font-size: 0.72rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
}

/* Course card */
.curso-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.25s ease;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.curso-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(125, 152, 161, 0.16);
    transform: translateY(-4px);
    color: inherit;
    text-decoration: none;
}

.curso-card__thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: #1C2321;
}

.curso-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    opacity: 0.85;
}

.curso-card:hover .curso-card__thumb img {
    transform: scale(1.06);
}

.curso-card__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.20);
    opacity: 0;
    transition: opacity 0.25s;
}

.curso-card:hover .curso-card__play {
    opacity: 1;
}

.curso-card__play i {
    font-size: 2rem;
    color: white;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.5));
}

/* Category & level badges on card */
.curso-card__badge {
    position: absolute;
    top: 0.65rem;
    left: 0.65rem;
    font-size: 0.68rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.2rem 0.55rem;
    border-radius: 5px;
    backdrop-filter: blur(4px);
}

.curso-card__badge--bestseller {
    background: #f59e0b;
    color: white;
}

.curso-card__badge--novo {
    background: #16a34a;
    color: white;
}

.curso-card__badge--destaque {
    background: var(--primary);
    color: white;
}

/* Card body */
.curso-card__body {
    padding: 1.1rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.curso-card__cat {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0.3rem;
}

.curso-card__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    line-height: 1.35;
    margin-bottom: 0.4rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.curso-card:hover .curso-card__title {
    color: var(--primary);
}

.curso-card__instructor {
    font-size: 0.78rem;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.curso-card__rating {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.6rem;
}

.curso-card__stars {
    color: #f59e0b;
    font-size: 0.72rem;
    letter-spacing: 0.5px;
}

.curso-card__rating-num {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
}

.curso-card__rating-count {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
}

.curso-card__info {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem 0.9rem;
    margin-bottom: 0.9rem;
    margin-top: auto;
    padding-top: 0.6rem;
}

.curso-card__info span {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.curso-card__info i {
    color: var(--primary);
    font-size: 0.68rem;
}

.curso-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    border-top: 1px solid var(--border);
    padding-top: 0.9rem;
    flex-wrap: wrap;
}

.curso-card__price-block {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.curso-card__price {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

.curso-card__price-original {
    font-size: 0.82rem;
    color: var(--text-light);
    text-decoration: line-through;
    font-weight: 500;
}

.curso-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--primary);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    padding: 0.45rem 0.9rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

.curso-card__cta:hover {
    background: #5a7f8c;
    color: white;
}

/* Guarantee strip */
.cursos-garantia {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    padding: 2rem;
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    margin-top: 2.5rem;
}

.cursos-garantia__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-align: left;
}

.cursos-garantia__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(125, 152, 161, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.cursos-garantia__text strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 0.1rem;
}

.cursos-garantia__text span {
    font-size: 0.78rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 991px) {
    .curso-destaque {
        flex-direction: column;
    }

    .curso-destaque__thumb {
        width: 100%;
        height: 200px;
    }

    .curso-destaque__body {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .cursos-garantia {
        gap: 1.25rem;
        padding: 1.25rem;
    }

    .cursos-garantia__item {
        width: 100%;
    }
}


/* ===== SINGLE CURSO — LANDING PAGE ===== */

/* Minimal navbar variant for landing pages */
.lp-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 0;
    transition: box-shadow 0.3s;
}

.lp-navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.lp-navbar__brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--text-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lp-navbar__brand i {
    color: var(--primary);
}

.lp-navbar__back {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.2s;
}

.lp-navbar__back:hover {
    color: var(--primary);
}

/* ── Hero section ── */
.lp-hero {
    background-color: #1C2321;
    background-image:
        linear-gradient(rgba(28, 35, 33, 0.82), rgba(28, 35, 33, 0.88)),
        url('https://images.unsplash.com/photo-1501504905252-473c47e087f8?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 7rem 0 4rem;
    /* top offset for fixed navbar */
    position: relative;
    overflow: hidden;
}

.lp-hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(125, 152, 161, 0.10) 0%, transparent 70%);
    pointer-events: none;
}

.lp-hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(125, 152, 161, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

/* Live counter badge */
.lp-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(220, 38, 38, 0.15);
    border: 1px solid rgba(220, 38, 38, 0.30);
    border-radius: 8px;
    padding: 0.35rem 0.85rem;
    margin-bottom: 1.25rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    color: #fca5a5;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.lp-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ef4444;
    animation: live-pulse 1.4s infinite;
    flex-shrink: 0;
}

@keyframes live-pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.75);
    }
}

.lp-hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.8rem);
    font-weight: 900;
    color: white;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.lp-hero h1 em {
    font-style: normal;
    color: var(--primary);
}

.lp-hero__subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 1.75rem;
    max-width: 520px;
}

/* Social proof numbers under headline */
.lp-social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.lp-social-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lp-social-item__num {
    font-size: 1.3rem;
    font-weight: 900;
    color: white;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

.lp-social-item__label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.50);
    font-weight: 600;
    line-height: 1.3;
}

/* What's included checklist */
.lp-includes {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lp-includes li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.80);
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 0.6rem;
}

.lp-includes li:last-child {
    margin-bottom: 0;
}

.lp-includes li i {
    color: var(--primary);
    font-size: 0.85rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* ── Lead capture form card ── */
.lp-form-card {
    background: white;
    border-radius: 20px;
    padding: 2rem 2rem 2.25rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    position: relative;
}

.lp-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #a8c5cc);
    border-radius: 20px 20px 0 0;
}

.lp-form-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.lp-form-header__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(125, 152, 161, 0.10);
    border: 1px solid rgba(125, 152, 161, 0.25);
    border-radius: 6px;
    padding: 0.25rem 0.65rem;
    font-size: 0.72rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 0.65rem;
}

.lp-form-header h2 {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
    margin-bottom: 0.35rem;
}

.lp-form-header p {
    font-size: 0.82rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

/* Waitlist counter inside form */
.lp-waitlist-count {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(220, 38, 38, 0.06);
    border: 1px solid rgba(220, 38, 38, 0.15);
    border-radius: 8px;
    padding: 0.6rem 1rem;
    margin-bottom: 1.25rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: #b91c1c;
    font-family: 'Poppins', sans-serif;
}

.lp-waitlist-count i {
    color: #ef4444;
}

/* Form elements */
.lp-form-group {
    margin-bottom: 1rem;
}

.lp-form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.lp-form-group label span {
    color: #ef4444;
}

.lp-input {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 0.72rem 1rem;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--text-dark);
    background: white;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    appearance: none;
}

.lp-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(125, 152, 161, 0.15);
}

.lp-input::placeholder {
    color: #b0bec5;
    font-weight: 400;
}

.lp-input-icon-wrap {
    position: relative;
}

.lp-input-icon-wrap .lp-input {
    padding-left: 2.5rem;
}

.lp-input-icon-wrap i {
    position: absolute;
    left: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 0.85rem;
    pointer-events: none;
}

.lp-input-icon-wrap .lp-input:focus+i,
.lp-input-icon-wrap:focus-within i {
    color: var(--primary);
}

/* Submit button */
.lp-submit-btn {
    width: 100%;
    background: var(--primary);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 1rem;
    padding: 0.95rem 1.5rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: all 0.2s;
    margin-top: 0.5rem;
}

.lp-submit-btn:hover {
    background: #5a7f8c;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(125, 152, 161, 0.35);
}

.lp-submit-btn:active {
    transform: translateY(0);
}

.lp-form-disclaimer {
    text-align: center;
    font-size: 0.72rem;
    color: var(--text-light);
    margin-top: 0.85rem;
    line-height: 1.5;
}

.lp-form-disclaimer i {
    color: #16a34a;
}

/* ── Success state ── */
.lp-success {
    display: none;
    text-align: center;
    padding: 1rem 0;
}

.lp-success__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(22, 163, 74, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.75rem;
    color: #16a34a;
}

.lp-success h3 {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0.5rem;
}

.lp-success p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ── Course details strip ── */
.lp-detail-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 4rem;
}

.lp-detail-item {
    background: white;
    padding: 1.25rem;
    text-align: center;
}

.lp-detail-item i {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: block;
}

.lp-detail-item__value {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    line-height: 1.1;
    margin-bottom: 0.2rem;
}

.lp-detail-item__label {
    font-size: 0.73rem;
    color: var(--text-light);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

/* ── Modules accordion ── */
.lp-module-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.lp-module-num {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: var(--primary);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lp-module-meta {
    margin-left: auto;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    white-space: nowrap;
}

.lp-lesson-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lp-lesson-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--text-dark);
    font-weight: 500;
}

.lp-lesson-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.lp-lesson-list li i {
    color: var(--primary);
    font-size: 0.78rem;
    width: 14px;
    flex-shrink: 0;
}

.lp-lesson-list li span {
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
}

/* ── Instructor ── */
.lp-instructor {
    display: flex;
    gap: 1.75rem;
    align-items: flex-start;
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 18px;
    padding: 2rem;
    margin-bottom: 4rem;
}

.lp-instructor__avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid var(--border);
}

.lp-instructor__avatar-placeholder {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #1C2321;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    flex-shrink: 0;
    border: 3px solid var(--border);
}

.lp-instructor__name {
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0.2rem;
}

.lp-instructor__role {
    font-size: 0.82rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.lp-instructor__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 1.25rem;
    margin-bottom: 0.75rem;
}

.lp-instructor__stats span {
    font-size: 0.78rem;
    color: var(--text-light);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.lp-instructor__stats i {
    color: var(--primary);
    font-size: 0.72rem;
}

.lp-instructor__bio {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* ── Testimonials ── */
.lp-testimonial {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    height: 100%;
}

.lp-testimonial__stars {
    color: #f59e0b;
    font-size: 0.82rem;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.lp-testimonial__text {
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.1rem;
    position: relative;
}

.lp-testimonial__text::before {
    content: '\201C';
    font-size: 2.5rem;
    color: var(--border);
    font-family: Georgia, serif;
    line-height: 0;
    vertical-align: -0.6rem;
    margin-right: 0.1rem;
}

.lp-testimonial__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lp-testimonial__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
    flex-shrink: 0;
    border: 1.5px solid var(--border);
}

.lp-testimonial__name {
    font-weight: 800;
    font-size: 0.88rem;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

.lp-testimonial__detail {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ── Bottom CTA ── */
.lp-bottom-cta {
    background: #1C2321;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.lp-bottom-cta::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(125, 152, 161, 0.10) 0%, transparent 70%);
    pointer-events: none;
}

.lp-bottom-cta h2 {
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 900;
    color: white;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.lp-bottom-cta p {
    color: rgba(255, 255, 255, 0.60);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 991px) {
    .lp-hero {
        padding-bottom: 2.5rem;
    }

    .lp-form-card {
        margin-top: 2rem;
    }

    .lp-detail-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-instructor {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .lp-instructor__stats {
        justify-content: center;
    }

    .lp-bottom-cta {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .lp-detail-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-social-row {
        gap: 1rem;
    }
}


/* ===== PODCAST ===== */

/* Hero header — extends blog-page-header */
.podcast-header {
    background-color: #1C2321;
    background-image:
        linear-gradient(rgba(28, 35, 33, 0.78), rgba(28, 35, 33, 0.88)),
        url('https://images.unsplash.com/photo-1478737270239-2f02b77fc618?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 8rem 0 3.5rem;
    position: relative;
    overflow: hidden;
}

.podcast-header::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(125, 152, 161, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.podcast-header::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(125, 152, 161, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.podcast-header__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

/* Podcast cover art */
.podcast-cover {
    width: 160px;
    height: 160px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, #3d6b76 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.40);
    position: relative;
    overflow: hidden;
}

.podcast-cover::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg,
            rgba(255, 255, 255, 0.03) 0px,
            rgba(255, 255, 255, 0.03) 1px,
            transparent 1px,
            transparent 8px);
}

.podcast-cover i {
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.90);
    position: relative;
    z-index: 1;
}

.podcast-header__meta {
    flex: 1;
}

.podcast-header__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(125, 152, 161, 0.20);
    border: 1px solid rgba(125, 152, 161, 0.35);
    border-radius: 6px;
    padding: 0.25rem 0.7rem;
    font-size: 0.72rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-bottom: 0.75rem;
}

.podcast-header h1 {
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    font-weight: 900;
    color: white;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    margin-bottom: 0.6rem;
}

.podcast-header__desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.60);
    line-height: 1.65;
    margin-bottom: 1.25rem;
    max-width: 520px;
}

.podcast-header__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    margin-bottom: 1.5rem;
}

.podcast-header__stats span {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.podcast-header__stats i {
    color: var(--primary);
    font-size: 0.72rem;
}

/* Platform buttons */
.podcast-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.podcast-platform-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.95rem;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.podcast-platform-btn--spotify {
    background: rgba(29, 185, 84, 0.15);
    border-color: rgba(29, 185, 84, 0.30);
    color: #1DB954;
}

.podcast-platform-btn--spotify:hover {
    background: #1DB954;
    color: white;
    border-color: #1DB954;
}

.podcast-platform-btn--apple {
    background: rgba(191, 90, 242, 0.15);
    border-color: rgba(191, 90, 242, 0.30);
    color: #BF5AF2;
}

.podcast-platform-btn--apple:hover {
    background: #BF5AF2;
    color: white;
    border-color: #BF5AF2;
}

.podcast-platform-btn--youtube {
    background: rgba(255, 0, 0, 0.12);
    border-color: rgba(255, 0, 0, 0.25);
    color: #ff4444;
}

.podcast-platform-btn--youtube:hover {
    background: #FF0000;
    color: white;
    border-color: #FF0000;
}

.podcast-platform-btn--amazon {
    background: rgba(0, 168, 224, 0.12);
    border-color: rgba(0, 168, 224, 0.25);
    color: #00A8E0;
}

.podcast-platform-btn--amazon:hover {
    background: #00A8E0;
    color: white;
    border-color: #00A8E0;
}

.podcast-platform-btn--deezer {
    background: rgba(254, 170, 45, 0.12);
    border-color: rgba(254, 170, 45, 0.25);
    color: #d4840a;
}

.podcast-platform-btn--deezer:hover {
    background: #FEAA2D;
    color: white;
    border-color: #FEAA2D;
}

/* Waveform animation */
.podcast-wave {
    display: flex;
    align-items: center;
    gap: 2px;
    height: 20px;
}

.podcast-wave span {
    display: block;
    width: 3px;
    border-radius: 3px;
    background: var(--primary);
    animation: wave-bar 1.2s ease-in-out infinite;
}

.podcast-wave span:nth-child(1) {
    height: 8px;
    animation-delay: 0s;
}

.podcast-wave span:nth-child(2) {
    height: 16px;
    animation-delay: 0.1s;
}

.podcast-wave span:nth-child(3) {
    height: 12px;
    animation-delay: 0.2s;
}

.podcast-wave span:nth-child(4) {
    height: 20px;
    animation-delay: 0.3s;
}

.podcast-wave span:nth-child(5) {
    height: 10px;
    animation-delay: 0.4s;
}

.podcast-wave span:nth-child(6) {
    height: 18px;
    animation-delay: 0.15s;
}

.podcast-wave span:nth-child(7) {
    height: 14px;
    animation-delay: 0.25s;
}

@keyframes wave-bar {

    0%,
    100% {
        transform: scaleY(0.4);
    }

    50% {
        transform: scaleY(1);
    }
}

/* Featured episode */
.podcast-featured {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    margin-bottom: 2rem;
    transition: all 0.25s ease;
    text-decoration: none;
    color: inherit;
}

.podcast-featured:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 35px rgba(125, 152, 161, 0.15);
    color: inherit;
    text-decoration: none;
}

.podcast-featured__thumb {
    width: 260px;
    flex-shrink: 0;
    position: relative;
    background: #1C2321;
    overflow: hidden;
}

.podcast-featured__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.70;
    transition: transform 0.4s ease, opacity 0.3s;
}

.podcast-featured:hover .podcast-featured__thumb img {
    transform: scale(1.05);
    opacity: 0.55;
}

.podcast-featured__play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
}

.podcast-featured__play-btn i {
    font-size: 3rem;
    color: white;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
    transition: transform 0.2s;
}

.podcast-featured:hover .podcast-featured__play-btn i {
    transform: scale(1.12);
}

.podcast-featured__ep-num {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--primary);
    color: white;
    font-size: 0.68rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.2rem 0.55rem;
    border-radius: 5px;
}

.podcast-featured__body {
    flex: 1;
    padding: 1.75rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.podcast-featured__label {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.podcast-featured__title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
    margin-bottom: 0.6rem;
    transition: color 0.2s;
}

.podcast-featured:hover .podcast-featured__title {
    color: var(--primary);
}

.podcast-featured__desc {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 1.1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.podcast-featured__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1.25rem;
}

.podcast-featured__meta span {
    font-size: 0.78rem;
    color: var(--text-light);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.podcast-featured__meta i {
    color: var(--primary);
    font-size: 0.72rem;
}

/* Episode list card */
.podcast-episode {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 1.1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1.1rem;
    transition: all 0.22s ease;
    text-decoration: none;
    color: inherit;
    margin-bottom: 0.65rem;
}

.podcast-episode:last-child {
    margin-bottom: 0;
}

.podcast-episode:hover {
    border-color: var(--primary);
    box-shadow: 0 6px 22px rgba(125, 152, 161, 0.13);
    transform: translateX(4px);
    color: inherit;
    text-decoration: none;
}

.podcast-episode__num {
    font-size: 0.72rem;
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
    color: var(--text-light);
    min-width: 28px;
    text-align: center;
    flex-shrink: 0;
}

.podcast-episode__thumb {
    width: 68px;
    height: 68px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
    background: #1C2321;
    position: relative;
    overflow: hidden;
}

.podcast-episode__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.80;
    transition: opacity 0.2s;
}

.podcast-episode:hover .podcast-episode__thumb img {
    opacity: 0.60;
}

.podcast-episode__play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
    background: rgba(0, 0, 0, 0.30);
}

.podcast-episode:hover .podcast-episode__play-overlay {
    opacity: 1;
}

.podcast-episode__play-overlay i {
    font-size: 1.2rem;
    color: white;
}

.podcast-episode__main {
    flex: 1;
    min-width: 0;
}

.podcast-episode__cat {
    font-size: 0.68rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0.2rem;
}

.podcast-episode__title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.3rem;
    transition: color 0.2s;
}

.podcast-episode:hover .podcast-episode__title {
    color: var(--primary);
}

.podcast-episode__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 0.9rem;
}

.podcast-episode__meta span {
    font-size: 0.74rem;
    color: var(--text-light);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.podcast-episode__meta i {
    color: var(--primary);
    font-size: 0.65rem;
}

.podcast-episode__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    flex-shrink: 0;
}

.podcast-episode__duration {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
}

.podcast-episode__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(125, 152, 161, 0.10);
    border: 1.5px solid var(--border);
    color: var(--primary);
    font-size: 0.75rem;
    transition: all 0.2s;
    flex-shrink: 0;
}

.podcast-episode:hover .podcast-episode__btn {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Season divider */
.podcast-season {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0 1.25rem;
}

.podcast-season::before,
.podcast-season::after {
    content: '';
    flex: 1;
    height: 1.5px;
    background: var(--border);
}

.podcast-season__label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    white-space: nowrap;
    padding: 0.3rem 0.85rem;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    background: white;
}

/* Subscribe CTA card */
.podcast-subscribe {
    background: #1C2321;
    border-radius: 18px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 2.5rem;
}

.podcast-subscribe::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(125, 152, 161, 0.10) 0%, transparent 70%);
    pointer-events: none;
}

.podcast-subscribe h3 {
    font-size: 1.35rem;
    font-weight: 900;
    color: white;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0.5rem;
}

.podcast-subscribe p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.65;
}

/* Responsive */
@media (max-width: 991px) {
    .podcast-header__inner {
        flex-direction: column;
        text-align: center;
    }

    .podcast-header__stats {
        justify-content: center;
    }

    .podcast-platforms {
        justify-content: center;
    }

    .podcast-featured {
        flex-direction: column;
    }

    .podcast-featured__thumb {
        width: 100%;
        height: 200px;
    }

    .podcast-featured__body {
        padding: 1.25rem 1.5rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .podcast-cover {
        width: 120px;
        height: 120px;
    }

    .podcast-cover i {
        font-size: 2.5rem;
    }

    .podcast-episode {
        flex-wrap: wrap;
    }

    .podcast-episode__right {
        flex-direction: row;
        align-items: center;
        width: 100%;
        justify-content: space-between;
    }
}


/* ===== ESTAÇÃO NOTA MÁXIMA — RÁDIO ===== */

/* ── Hero ── */
.radio-hero {
    background-color: #111816;
    background-image: url('https://images.unsplash.com/photo-1598488035139-bdbb2231ce04?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    padding: 8rem 0 0;
    position: relative;
    overflow: hidden;
}

.radio-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 50%, rgba(125, 152, 161, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 50% 60% at 80% 50%, rgba(125, 152, 161, 0.08) 0%, transparent 70%),
        linear-gradient(to bottom, rgba(17, 24, 22, 0.82) 0%, rgba(17, 24, 22, 0.75) 60%, rgba(17, 24, 22, 0.90) 100%);
    pointer-events: none;
}

/* ── Main player card ── */
.radio-player-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    gap: 2.5rem;
    align-items: center;
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    backdrop-filter: blur(12px);
}

/* ── Cover art ── */
.radio-cover {
    width: 180px;
    height: 180px;
    border-radius: 20px;
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.50);
}

.radio-cover__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary) 0%, #2a4a52 100%);
    transition: opacity 0.5s;
}

.radio-cover__art {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s;
}

.radio-cover__art.visible {
    opacity: 0.70;
}

.radio-cover__icon {
    position: relative;
    z-index: 2;
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.75);
    transition: opacity 0.3s;
}

/* Pulse ring when playing */
.radio-cover.playing::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 28px;
    border: 2px solid rgba(125, 152, 161, 0.30);
    animation: cover-pulse 2s ease-in-out infinite;
}

@keyframes cover-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.04);
        opacity: 0;
    }
}

/* Spin when playing */
.radio-cover.playing .radio-cover__icon {
    animation: cover-spin 12s linear infinite;
}

@keyframes cover-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ── Player body ── */
.radio-player-body {
    flex: 1;
    min-width: 0;
}

.radio-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(220, 38, 38, 0.15);
    border: 1px solid rgba(220, 38, 38, 0.30);
    border-radius: 6px;
    padding: 0.22rem 0.65rem;
    font-size: 0.7rem;
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
    color: #fca5a5;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 0.85rem;
}

.radio-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ef4444;
    animation: live-pulse 1.4s infinite;
    flex-shrink: 0;
}

.radio-station-name {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 0.3rem;
}

.radio-track-title {
    font-size: clamp(1.1rem, 2.5vw, 1.75rem);
    font-weight: 900;
    color: white;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    margin-bottom: 0.3rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.radio-track-subtitle {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.50);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

/* ── Equalizer bars ── */
.radio-eq {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 32px;
    margin-bottom: 1.5rem;
}

.radio-eq span {
    display: block;
    width: 4px;
    border-radius: 3px;
    background: var(--primary);
    transition: background 0.3s;
}

.radio-eq.playing span {
    animation: eq-bar 0.8s ease-in-out infinite alternate;
}

.radio-eq.paused span {
    height: 3px !important;
    animation: none;
}

.radio-eq span:nth-child(1) {
    height: 12px;
    animation-delay: 0.0s;
}

.radio-eq span:nth-child(2) {
    height: 24px;
    animation-delay: 0.1s;
}

.radio-eq span:nth-child(3) {
    height: 18px;
    animation-delay: 0.2s;
}

.radio-eq span:nth-child(4) {
    height: 30px;
    animation-delay: 0.05s;
}

.radio-eq span:nth-child(5) {
    height: 10px;
    animation-delay: 0.15s;
}

.radio-eq span:nth-child(6) {
    height: 26px;
    animation-delay: 0.3s;
}

.radio-eq span:nth-child(7) {
    height: 20px;
    animation-delay: 0.08s;
}

.radio-eq span:nth-child(8) {
    height: 14px;
    animation-delay: 0.25s;
}

.radio-eq span:nth-child(9) {
    height: 28px;
    animation-delay: 0.12s;
}

.radio-eq span:nth-child(10) {
    height: 16px;
    animation-delay: 0.35s;
}

.radio-eq span:nth-child(11) {
    height: 22px;
    animation-delay: 0.07s;
}

.radio-eq span:nth-child(12) {
    height: 8px;
    animation-delay: 0.28s;
}

.radio-eq span:nth-child(13) {
    height: 19px;
    animation-delay: 0.18s;
}

.radio-eq span:nth-child(14) {
    height: 25px;
    animation-delay: 0.04s;
}

.radio-eq span:nth-child(15) {
    height: 13px;
    animation-delay: 0.22s;
}

@keyframes eq-bar {
    0% {
        transform: scaleY(0.3);
        opacity: 0.6;
    }

    100% {
        transform: scaleY(1);
        opacity: 1;
    }
}

/* ── Controls ── */
.radio-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.radio-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    background: none;
    color: rgba(255, 255, 255, 0.60);
    font-size: 1.1rem;
    padding: 0;
}

.radio-btn:hover {
    color: white;
}

.radio-btn--play {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-size: 1.3rem;
}

.radio-btn--play:hover {
    background: #5a7f8c;
    transform: scale(1.06);
    box-shadow: 0 8px 24px rgba(125, 152, 161, 0.40);
    color: white;
}

.radio-btn--play:active {
    transform: scale(0.97);
}

.radio-volume-wrap {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-left: auto;
}

.radio-volume-wrap i {
    color: rgba(255, 255, 255, 0.50);
    font-size: 0.9rem;
    width: 16px;
    cursor: pointer;
    transition: color 0.2s;
}

.radio-volume-wrap i:hover {
    color: white;
}

.radio-volume {
    -webkit-appearance: none;
    appearance: none;
    width: 100px;
    height: 4px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.15);
    outline: none;
    cursor: pointer;
    transition: background 0.2s;
}

.radio-volume::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    transition: transform 0.15s;
}

.radio-volume::-webkit-slider-thumb:hover {
    transform: scale(1.25);
}

/* ── Bottom wave decoration ── */
.radio-hero__wave {
    width: 100%;
    display: block;
    margin-top: 0;
    line-height: 0;
}

/* ── Section tabs (matéria / tema) ── */
.radio-tab-group {
    display: flex;
    border-bottom: 2px solid var(--border);
    margin-bottom: 1.75rem;
    gap: 0;
}

.radio-tab {
    padding: 0.6rem 1.25rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-light);
    border: none;
    background: none;
    cursor: pointer;
    border-bottom: 2.5px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
    white-space: nowrap;
}

.radio-tab:hover {
    color: var(--text-dark);
}

.radio-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

/* ── Station cards grid ── */
.radio-stations {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
    margin-bottom: 2.5rem;
}

.radio-station-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 1.1rem 1rem;
    cursor: pointer;
    transition: all 0.22s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.radio-station-card:hover {
    border-color: var(--primary);
    box-shadow: 0 6px 20px rgba(125, 152, 161, 0.14);
    transform: translateY(-3px);
}

.radio-station-card.active {
    border-color: var(--primary);
    background: rgba(125, 152, 161, 0.06);
    box-shadow: 0 6px 20px rgba(125, 152, 161, 0.16);
}

.radio-station-card.active::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 0.55rem;
    right: 0.65rem;
    font-size: 0.65rem;
    color: white;
    background: var(--primary);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 18px;
    text-align: center;
}

.radio-station-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.radio-station-card__name {
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

.radio-station-card__genre {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 600;
}

/* ── Track list ── */
.radio-track-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: background 0.15s;
    border-radius: 6px;
    padding-left: 0.3rem;
}

.radio-track-item:last-child {
    border-bottom: none;
}

.radio-track-item:hover {
    background: rgba(125, 152, 161, 0.05);
}

.radio-track-item.playing .radio-track-item__num {
    display: none;
}

.radio-track-item.playing .radio-track-item__mini-eq {
    display: flex;
}

.radio-track-item__num {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-light);
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.radio-track-item__mini-eq {
    display: none;
    align-items: flex-end;
    gap: 1.5px;
    height: 14px;
    width: 18px;
    flex-shrink: 0;
}

.radio-track-item__mini-eq span {
    display: block;
    width: 2.5px;
    border-radius: 2px;
    background: var(--primary);
    animation: eq-bar 0.7s ease-in-out infinite alternate;
}

.radio-track-item__mini-eq span:nth-child(1) {
    height: 6px;
    animation-delay: 0s;
}

.radio-track-item__mini-eq span:nth-child(2) {
    height: 12px;
    animation-delay: 0.15s;
}

.radio-track-item__mini-eq span:nth-child(3) {
    height: 8px;
    animation-delay: 0.3s;
}

.radio-track-item__mini-eq span:nth-child(4) {
    height: 14px;
    animation-delay: 0.1s;
}

.radio-track-item__thumb {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--bg-light);
}

.radio-track-item__info {
    flex: 1;
    min-width: 0;
}

.radio-track-item__title {
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.1rem;
    transition: color 0.2s;
}

.radio-track-item:hover .radio-track-item__title,
.radio-track-item.playing .radio-track-item__title {
    color: var(--primary);
}

.radio-track-item__artist {
    font-size: 0.73rem;
    color: var(--text-light);
    font-weight: 500;
}

.radio-track-item__dur {
    font-size: 0.73rem;
    font-weight: 700;
    color: var(--text-light);
    flex-shrink: 0;
}

/* ── Info cards row ── */
.radio-info-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
    margin-bottom: 2.5rem;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .radio-player-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .radio-cover {
        width: 140px;
        height: 140px;
    }

    .radio-stations {
        grid-template-columns: repeat(3, 1fr);
    }

    .radio-info-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== PRE-FOOTER CTA ===== */
.pre-footer-cta {
    background: linear-gradient(135deg, #4f46e5 0%, #3730a3 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    color: white;
    text-align: center;
}

.pre-footer-cta::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.pre-footer-cta h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    color: white;
    font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
}

.pre-footer-cta p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    color: white;
}

.btn-pre-footer {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: white;
    color: var(--primary) !important;
    padding: 1.25rem 3.5rem;
    border-radius: 14px;
    font-weight: 800;
    font-size: 1.15rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.btn-pre-footer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(79, 70, 229, 0) 0%,
        rgba(79, 70, 229, 0.08) 50%,
        rgba(79, 70, 229, 0) 100%
    );
    transform: rotate(25deg);
    transition: all 0.6s ease;
}

.btn-pre-footer:hover::after {
    left: 150%;
}

.btn-pre-footer:hover {
    transform: translateY(-5px) scale(1.02);
    background: #f8fafc;
    color: var(--primary-dark) !important;
}

.btn-pre-footer i {
    transition: transform 0.3s ease;
}

.btn-pre-footer:hover i {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .pre-footer-cta h2 {
        font-size: 2.25rem;
    }

    .pre-footer-cta p {
        font-size: 1.1rem;
    }
}

@media (max-width: 767px) {
    .radio-stations {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .radio-player-card {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .radio-cover {
        width: 110px;
        height: 110px;
    }

    .radio-track-title {
        font-size: 1.1rem;
    }

    .radio-stations {
        grid-template-columns: repeat(2, 1fr);
    }

    .radio-volume {
        width: 70px;
    }

    .radio-info-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- Landing Pages & Conversion Headers --- */
.landing-header {
    background: linear-gradient(135deg, var(--text-dark) 0%, #1e293b 100%);
    padding: 10rem 0 6rem 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: white !important;
}

.landing-header h1,
.landing-header h2,
.landing-header h3,
.landing-header h4,
.landing-header h5,
.landing-header h6 {
    color: white !important;
}

.landing-header .text-lead {
    color: rgba(255, 255, 255, 0.8) !important;
}

.landing-header--curso {
    background: #050505;
}

.landing-header__glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.conversion-card {
    position: sticky;
    top: 120px;
    border: 2px solid var(--primary);
    padding: 2.5rem;
    background: white;
    box-shadow: 0 30px 60px rgba(79, 70, 229, 0.15);
    border-radius: 24px;
    z-index: 10;
}

.conversion-card--dark {
    background: #0F172A;
    color: white;
    border: none;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

.conversion-card .form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.conversion-card--dark .form-label {
    color: rgba(255, 255, 255, 0.8);
}

.conversion-card input {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    border: 1.5px solid var(--border);
    transition: all 0.3s ease;
    font-size: 1rem;
}

.conversion-card--dark input {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.success-icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
}

.success-icon-box--green {
    background: #DCFCE7;
    color: #16A34A;
}

.success-icon-box--glow {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}