:root {
    --primary-hero: #fcb103; /* Amarelo forte do ícone */
    --primary-player: #fcb103; /* Amarelo forte do ícone */
    --primary-btn: #ff0000; /* Vermelho YouTube */
    --text-white: #ffffff;
    --text-main: #000000; /* Letras pretas */
    --text-muted: #333333;
    --bg-white: #fffbe6; /* Amarelo claro da tela do aplicativo */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Nunito Sans', 'Open Sans', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-main);
    line-height: 1.6;
    padding-bottom: 80px; /* space for audio player */
}

a {
    text-decoration: none;
    color: inherit;
}

/* Layout Container */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HERO SECTION */
.hero {
    background: var(--bg-white);
    color: var(--text-main);
    padding: 30px 0 60px 0;
}

.main-nav {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 40px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-nav a {
    font-weight: 800;
    font-size: 1.1rem;
    transition: opacity 0.2s;
}

.main-nav a:hover {
    opacity: 0.8;
}

.nav-search-form {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 20px;
    padding: 2px 10px;
    transition: box-shadow 0.2s;
}

.nav-search-form:focus-within {
    box-shadow: 0 0 0 2px var(--primary-hero);
    border-color: var(--primary-hero);
}

.nav-search-input {
    border: none;
    background: transparent;
    outline: none;
    padding: 5px;
    font-size: 0.9rem;
    font-family: inherit;
    color: var(--text-main);
    width: 120px;
    transition: width 0.3s;
}

.nav-search-input:focus {
    width: 180px;
}

.nav-search-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
}
.nav-search-btn:hover {
    color: var(--primary-hero);
}

.hero-body {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 10px;
}

.hero-text h2 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    opacity: 0.9;
}

.hero-text p {
    font-size: 1.1rem;
    line-height: 1.5;
    max-width: 550px;
}

.hero-media {
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cover-image {
    width: 100%;
    border-radius: 12px;
}

.subscription-badges {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.badge {
    background: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.2s;
}

.badge:hover {
    transform: scale(1.05);
}

.badge-text {
    text-align: left;
}

.badge-text small {
    display: block;
    font-size: 0.6rem;
    text-transform: uppercase;
    line-height: 1;
}

.badge-text strong {
    font-size: 0.9rem;
    line-height: 1.2;
}

.rss-link {
    color: var(--text-main);
    margin-left: 10px;
}

/* EPISODES SECTION */
.episodes-section {
    padding: 60px 0;
    background: transparent;
}

.episodes-section .container {
    background-color: var(--bg-white);
    border: 2px solid var(--primary-hero);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 40px;
}

.episode-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.episode {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.play-btn {
    flex: 0 0 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-btn);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding-left: 4px; /* optical center adjustment */
    transition: background-color 0.2s, transform 0.2s;
}

.play-btn:hover {
    background-color: #d8a53e; /* Darker gold */
    transform: scale(1.05);
}

.play-icon {
    width: 24px;
    height: 24px;
}

.episode-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.episode-content p {
    font-size: 1.05rem;
    color: var(--text-main);
    margin-bottom: 20px;
}

.episode-meta {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
}

.see-more {
    color: var(--primary-btn);
    font-weight: 800;
}

/* AUDIO PLAYER (STICKY) */
.audio-player {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-player);
    color: var(--text-main);
    z-index: 1000;
    padding: 10px 0;
}

.player-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
}

.player-art {
    width: 40px;
    height: 40px;
    border-radius: 4px;
}

.player-controls {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
}

.time {
    font-size: 0.85rem;
    font-weight: 700;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(0,0,0,0.2);
    border-radius: 3px;
    position: relative;
    cursor: pointer;
}

.progress {
    height: 100%;
    background: var(--text-main);
    border-radius: 3px;
}

.player-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.player-btn {
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-btn svg {
    transition: transform 0.2s;
}

.player-btn:hover svg {
    transform: scale(1.1);
}

.main-play {
    background: var(--primary-btn);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .hero-body {
        flex-direction: column;
    }
    .hero-media {
        flex: 0 0 auto;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
}

/* SITE FOOTER */
.site-footer {
    text-align: center;
    padding: 15px 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(0,0,0,0.1);
    margin: 20px auto 0;
    max-width: 800px;
}
.site-footer p {
    margin-bottom: 2px;
}
