:root {
            --primary-blue: #0B2F5B;
            /* Azul Marinho (para uso moderado) */
            --light-blue-accent: #ADD8E6;
            /* Azul Claro (para uso ainda mais moderado) */
            --white: #ffffff;
            --gold: #D4AF37;
            /* Dourado */
            --black: #1A1A1A;
            /* Preto principal */
            --darker-black: #000000;
            /* Preto mais intenso */
            --dark-grey: #333333;
            /* Cinza escuro */
            --medium-grey: #777777;
            /* Cinza médio */
            --light-grey: #F0F0F0;
            /* Cinza claro */
            --gradient-start: #333333;
            /* Degradê inicial preto/cinza */
            --gradient-end: #1A1A1A;
            /* Degradê final preto */
        }

        body {
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: var(--dark-grey);
            background-color: var(--light-grey);
        }

        .navbar {
            background-color: var(--white);
            box-shadow: 0 3px 10px rgba(0, 0, 0, .08);
        }

        .navbar-brand {
            font-weight: 700;
            color: var(--primary-blue) !important;
            font-size: 1.6rem;
            display: flex;
            /* Para alinhar o logo e o texto */
            align-items: center;
        }

        /* Destaque para o nome do podcast na navbar */
        .podcast-brand-name .gold-text {
            color: var(--gold);
            font-weight: 800;
            /* Mais forte */
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .podcast-brand-name .black-text {
            color: var(--black);
            font-weight: 800;
            /* Mais forte */
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-left: 5px;
            /* Espaço entre "PODCAST" e "ENERGIA EMPRESARIAL" */
        }

        .nav-link {
            color: var(--black) !important;
            /* Links da navbar em preto */
            font-weight: 500;
            transition: color 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .nav-link:hover {
            color: var(--primary-blue) !important;
            /* Hover dos links ainda em azul para indicar interação */
        }

        .hero-section {
            background: var(--darker-black);
            /* Fundo preto intenso */
            color: var(--white);
            padding: 120px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
            border-bottom-left-radius: 60px;
            border-bottom-right-radius: 60px;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 10%, transparent 70%);
            transform: rotate(45deg);
            animation: pulse-glow 15s infinite alternate;
        }

        @keyframes pulse-glow {
            0% {
                transform: scale(1) rotate(45deg);
                opacity: 0.2;
            }

            100% {
                transform: scale(1.2) rotate(45deg);
                opacity: 0.4;
            }
        }

        .hero-section h1 {
            font-size: 3.8rem;
            font-weight: 700;
            margin-bottom: 25px;
            animation: fadeInDown 1s ease-out;
            line-height: 1.2;
            /* Para melhor espaçamento entre as linhas do título */
        }

        /* Destaque para o nome do podcast no Hero */
        .hero-section h1 .podcast-title-gold {
            color: var(--gold);
            display: block;
            /* Garante que 'Podcast' fique em uma linha separada se houver quebra */
            margin-bottom: 10px;
            /* Espaçamento entre "Podcast" e "Energia Empresarial" */
            font-size: 4.5rem;
            /* Um pouco maior para o destaque */
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
            /* Sombra mais forte sobre fundo preto */
        }

        .hero-section h1 .podcast-title-black {
            color: var(--white);
            /* Texto 'ENERGIA EMPRESARIAL' agora branco para contraste no fundo preto */
            -webkit-text-stroke: 1px var(--gold);
            /* Contorno dourado */
            text-stroke: 1px var(--gold);
            display: block;
            /* Garante que 'Energia Empresarial' fique em uma linha separada */
            font-size: 3.5rem;
            /* Ajuste para o subtítulo */
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
            /* Sombra mais forte sobre fundo preto */
        }

        .hero-section p {
            font-size: 1.4rem;
            max-width: 900px;
            margin: 0 auto 50px;
            animation: fadeInUp 1.2s ease-out;
            opacity: 0.9;
        }

        .btn-primary-custom {
            background-color: var(--gold);
            /* Botão primário dourado */
            color: var(--black);
            /* Texto do botão em preto */
            border: none;
            padding: 18px 35px;
            font-size: 1.2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.4s ease;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
            animation: zoomIn 1.5s ease-out;
        }

        .btn-primary-custom:hover {
            background-color: var(--light-blue-accent);
            /* Hover do botão (pode ser alterado para um ton de dourado claro ou cinza) */
            color: var(--primary-blue);
            /* Cor do texto no hover (também pode ser alterado) */
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
        }

        /* New rules for the problematic button */
        .hero-section #heroParticiparBtn {
            position: relative;
            /* Essential for z-index to work */
            z-index: 10;
            /* Ensures it's above other elements in the hero-section */
            pointer-events: auto !important;
            /* Force enable pointer events */
        }

        section {
            padding: 90px 0;
            background-color: var(--black);
            /* Fundo das seções em preto */
            color: var(--white);
            /* Texto das seções em branco */
            margin-bottom: 40px;
            border-radius: 12px;
            box-shadow: 0 0 25px rgba(0, 0, 0, .06);
        }

        section:nth-of-type(odd) {
            background-color: var(--darker-black);
            /* Seções alternadas em preto mais intenso */
        }

        h2 {
            font-size: 3rem;
            font-weight: 700;
            color: var(--gold);
            /* Títulos das seções em dourado */
            margin-bottom: 50px;
            text-align: center;
            position: relative;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        h2::after {
            content: '';
            width: 100px;
            height: 5px;
            background-color: var(--gold);
            /* Linha abaixo dos títulos em dourado */
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 3px;
        }

        .feature-box {
            text-align: center;
            padding: 40px;
            border-radius: 12px;
            background-color: var(--darker-black);
            /* Feature boxes em preto mais intenso */
            color: var(--white);
            /* Texto das feature boxes em branco */
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
            transition: all 0.4s ease;
            margin-bottom: 30px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border: 1px solid rgba(255, 255, 255, 0.05);
            /* Borda sutil branca/cinza */
        }

        .feature-box:hover {
            transform: translateY(-12px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
            border-color: var(--gold);
            /* Borda dourada no hover */
        }

        .feature-box h3 {
            font-size: 1.8rem;
            color: var(--gold);
            /* Títulos das feature boxes em dourado */
            margin-bottom: 20px;
            font-weight: 600;
        }

        .feature-box p {
            font-size: 1.1rem;
            color: var(--medium-grey);
            /* Texto das feature boxes em cinza médio */
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            margin-bottom: 30px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.05);
            /* Borda sutil branca/cinza */
        }

        .gallery-item img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.15);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(26, 26, 26, 0.85);
            /* Overlay preto */
            color: var(--white);
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.5s ease;
            cursor: pointer;
            text-align: center;
            padding: 20px;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay h4 {
            font-size: 1.8rem;
            margin: 0;
            font-weight: 600;
            color: var(--gold);
            /* Título na galeria em dourado */
        }

        .cta-section {
            background: linear-gradient(45deg, var(--gradient-end) 0%, var(--gradient-start) 100%);
            /* Degradê de preto */
            color: var(--white);
            text-align: center;
            padding: 100px 0;
            border-radius: 12px;
            margin-top: 50px;
            margin-bottom: 50px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .cta-section h2 {
            color: var(--gold);
            /* Título da CTA em dourado */
            margin-bottom: 40px;
        }

        .cta-section h2::after {
            background-color: var(--gold);
            /* Linha abaixo do título da CTA em dourado */
        }

        .footer {
            background-color: var(--darker-black);
            /* Fundo do footer preto intenso */
            color: var(--medium-grey);
            /* Texto do footer em cinza médio */
            padding: 60px 0;
            text-align: center;
        }

        .footer p {
            margin-bottom: 15px;
            font-size: 1rem;
        }

        .footer p.copyright {
            color: var(--white);
            /* Copyright em branco */
        }

        .social-icons a {
            color: var(--white);
            font-size: 2rem;
            margin: 0 18px;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .social-icons a:hover {
            color: var(--gold);
            /* Ícones sociais em dourado no hover */
            transform: translateY(-3px);
        }

        /* Animações com jQuery (serão ativadas pelo JS) */
        .animated {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 1s ease-out, transform 1s ease-out;
        }

        .animated.fadeInUp {
            transform: translateY(0);
            opacity: 1;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-70px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(70px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes zoomIn {
            from {
                opacity: 0;
                transform: scale(0.7);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Estilos do Modal */
        .modal-content {
            background-color: var(--darker-black);
            color: var(--white);
            border-radius: 12px;
            border: 1px solid var(--gold);
        }

        .modal-header {
            border-bottom: 1px solid var(--gold);
        }

        .modal-title {
            color: var(--gold);
            font-weight: 700;
        }

        .modal-header .btn-close {
            filter: invert(1);
            /* Para o 'x' ficar branco */
        }

        .form-label {
            color: var(--white);
            font-weight: 500;
        }

        .form-control {
            background-color: var(--black);
            color: var(--white);
            border: 1px solid var(--medium-grey);
            padding: 10px 15px;
            border-radius: 8px;
        }

        .form-control:focus {
            background-color: var(--dark-grey);
            color: var(--white);
            border-color: var(--gold);
            box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
            /* Sombra dourada */
        }

        .btn-secondary-custom {
            background-color: var(--medium-grey);
            color: var(--white);
            border: none;
            padding: 10px 20px;
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        .btn-secondary-custom:hover {
            background-color: var(--dark-grey);
            color: var(--white);
        }