:root {
    --primary-color: #0d6efd; /* Azul primário do Bootstrap, bom para a LinkWS */
    --secondary-color: #343a40; /* Cinza escuro para textos e fundos */
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    font-family: var(--font-family);
    background-color: var(--white);
    color: var(--secondary-color);
}

.navbar-brand img {
    max-height: 40px;
}

.hero-section {
    background-image: url('/podcast/images/bg-hero.png');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 6rem 0;
    text-align: center;
    color: white;
}

.hero-section h1, .hero-section p {
    color: white;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.hero-section img {
    max-width: 300px;
    width: 100%;
    margin-bottom: 1.5rem;
}

.section-title {
    margin-bottom: 3rem;
    text-align: center;
}

.episode-card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.episode-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.episode-card .card-img-top {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

/* Página de Detalhes */
.episode-detail-header {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.article-section {
    background-color: #f8f9fa; /* Light Gray */
    color: #212529; /* Dark Gray */
    padding: 2rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
}

.article-section .section-title {
    color: #EAA636; /* Mustard Orange */
    border-bottom: 2px solid #dee2e6; /* Light Gray Border */
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.article-section p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.article-section h1, .article-section h2, .article-section h3, .article-section h4, .article-section h5, .article-section h6 {
    color: #343a40; /* Darker Gray for headings */
    margin-top: 1.5rem;
}

.transcription-section {
    background-color: #2c2c2c;
    color: #f1f1f1;
    padding: 2rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
}

/* Title of the section */
.transcription-section .section-title {
    color: #EAA636; /* Mustard Orange */
    border-bottom: 2px solid #444;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.transcription-section p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Headings inside the transcription content */
.transcription-section h2,
.transcription-section h3,
.transcription-section h4,
.transcription-section h5,
.transcription-section h6 {
    color: #f8f9fa; /* Light gray/off-white */
    margin-top: 1.5rem;
}

.product-card {
    background: linear-gradient(145deg, var(--primary-color), #0056b3);
    color: var(--white);
    padding: 2rem;
    border-radius: 0.75rem;
}

.product-card img {
    max-width: 120px;
    border-radius: 0.5rem;
    background: var(--white);
    padding: 0.5rem;
}

.product-card .btn-light {
    font-weight: bold;
}

footer {
    background-color: var(--secondary-color);
    color: var(--light-gray);
    padding: 2rem 0;
    margin-top: 4rem;
}

footer img {
    max-height: 30px;
    filter: brightness(0) invert(1);
}

.embed-responsive iframe {
    width: 100% !important;
}
