 :root {
     --primary: #6366f1;
     --primary-dark: #4f46e5;
     --secondary: #ec4899;
     --dark: #0f172a;
     --gray: #64748b;
     --light: #f8fafc;
     --gradient: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
     --card-bg: #ffffff;
     --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
     --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
 }

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

 body {
     font-family: 'Inter', sans-serif;
     background: var(--light);
     color: var(--dark);
     line-height: 1.6;
 }

 /* Navigation */
 .navbar {
     position: fixed;
     top: 0;
     width: 100%;
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(10px);
     z-index: 1000;
     border-bottom: 1px solid rgba(0, 0, 0, 0.05);
     padding: 1rem 0;
 }

 .nav-container {
     max-width: 1400px;
     margin: 0 auto;
     padding: 0 2rem;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .logo {
     font-family: 'Space Grotesk', sans-serif;
     font-size: 1.5rem;
     font-weight: 700;
     background: var(--gradient);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     text-decoration: none;
 }

 .nav-links {
     display: flex;
     gap: 2.5rem;
     list-style: none;
     align-items: center;
 }

 .nav-links a {
     text-decoration: none;
     color: var(--gray);
     font-weight: 500;
     transition: color 0.3s;
     position: relative;
 }

 .nav-links a:hover,
 .nav-links a.active {
     color: var(--primary);
 }

 .nav-links a.active::after {
     content: '';
     position: absolute;
     bottom: -25px;
     left: 0;
     right: 0;
     height: 3px;
     background: var(--gradient);
     border-radius: 3px 3px 0 0;
 }

 .btn-subscribe {
     background: var(--gradient);
     color: white;
     padding: 0.6rem 1.5rem;
     border-radius: 50px;
     text-decoration: none;
     font-weight: 600;
     transition: transform 0.3s, box-shadow 0.3s;
 }

 .btn-subscribe:hover {
     transform: translateY(-2px);
     box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
 }

 /* Hero Section */
 .hero-episodes {
     margin-top: 80px;
     background: var(--dark);
     color: white;
     padding: 4rem 2rem;
     position: relative;
     overflow: hidden;
 }

 .hero-episodes::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background:
         radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.3) 0%, transparent 50%),
         radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.2) 0%, transparent 50%);
 }

 .hero-content {
     max-width: 1400px;
     margin: 0 auto;
     position: relative;
     z-index: 1;
 }

 .hero-episodes h1 {
     font-family: 'Space Grotesk', sans-serif;
     font-size: 3.5rem;
     margin-bottom: 1rem;
     background: linear-gradient(to right, #fff, #a5b4fc);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .hero-stats {
     display: flex;
     gap: 3rem;
     margin-top: 2rem;
     flex-wrap: wrap;
 }

 .stat-item {
     display: flex;
     align-items: center;
     gap: 0.75rem;
 }

 .stat-item i {
     font-size: 1.5rem;
     color: var(--primary);
 }

 .stat-item div {
     display: flex;
     flex-direction: column;
 }

 .stat-number {
     font-size: 1.5rem;
     font-weight: 700;
     color: white;
 }

 .stat-label {
     font-size: 0.875rem;
     color: #94a3b8;
 }

 /* Search & Filter Section */
 .filter-section {
     background: white;
     padding: 2rem;
     border-bottom: 1px solid #e2e8f0;
     position: sticky;
     top: 73px;
     z-index: 100;
     box-shadow: var(--shadow);
 }

 .filter-container {
     max-width: 1400px;
     margin: 0 auto;
     display: flex;
     gap: 1rem;
     flex-wrap: wrap;
     align-items: center;
     justify-content: space-between;
 }

 .search-box {
     position: relative;
     flex: 1;
     min-width: 300px;
     max-width: 500px;
 }

 .search-box i {
     position: absolute;
     left: 1rem;
     top: 50%;
     transform: translateY(-50%);
     color: var(--gray);
 }

 .search-box input {
     width: 100%;
     padding: 0.875rem 1rem 0.875rem 2.75rem;
     border: 2px solid #e2e8f0;
     border-radius: 12px;
     font-size: 1rem;
     transition: all 0.3s;
 }

 .search-box input:focus {
     outline: none;
     border-color: var(--primary);
     box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
 }

 .filter-tags {
     display: flex;
     gap: 0.75rem;
     flex-wrap: wrap;
 }

 .filter-tag {
     padding: 0.5rem 1.25rem;
     background: #f1f5f9;
     border: 2px solid transparent;
     border-radius: 50px;
     font-size: 0.875rem;
     font-weight: 500;
     color: var(--gray);
     cursor: pointer;
     transition: all 0.3s;
     text-decoration: none;
 }

 .filter-tag:hover,
 .filter-tag.active {
     background: rgba(99, 102, 241, 0.1);
     border-color: var(--primary);
     color: var(--primary);
 }

 /* Episodes Grid */
 .episodes-section {
     max-width: 1400px;
     margin: 90px auto  90px auto;
     padding: 3rem 2rem;
 }

 .section-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 2rem;
 }

 .section-header h2 {
     font-family: 'Space Grotesk', sans-serif;
     font-size: 1.5rem;
     display: flex;
     align-items: center;
     gap: 0.75rem;
 }

 .view-toggle {
     display: flex;
     gap: 0.5rem;
     background: #f1f5f9;
     padding: 0.25rem;
     border-radius: 10px;
 }

 .view-btn {
     padding: 0.5rem 1rem;
     border: none;
     background: transparent;
     border-radius: 8px;
     cursor: pointer;
     color: var(--gray);
     transition: all 0.3s;
 }

 .view-btn.active {
     background: white;
     color: var(--primary);
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
 }

 /* Grid Layout */
 .episodes-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
     gap: 2rem;
 }

 /* Episode Card */
 .episode-card {
     background: var(--card-bg);
     border-radius: 20px;
     overflow: hidden;
     box-shadow: var(--shadow);
     transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     display: flex;
     flex-direction: column;
     position: relative;
     border: 1px solid rgba(0, 0, 0, 0.04);
 }

 .episode-card:hover {
     transform: translateY(-8px);
     box-shadow: var(--shadow-lg);
 }

 .episode-card.featured {
     grid-column: span 2;
     display: grid;
     grid-template-columns: 1fr 1fr;
 }

 .episode-image {
     position: relative;
     height: 220px;
     overflow: hidden;
 }

 .episode-card.featured .episode-image {
     height: 100%;
 }

 .episode-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s;
 }

 .episode-card:hover .episode-image img {
     transform: scale(1.05);
 }

 .episode-overlay {
     position: absolute;
     inset: 0;
     background: linear-gradient(to top, rgba(15, 23, 42, 0.8), transparent);
     display: flex;
     align-items: flex-end;
     padding: 1.5rem;
 }

 .play-overlay {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 70px;
     height: 70px;
     background: var(--gradient);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 1.75rem;
     opacity: 0;
     transition: all 0.3s;
     cursor: pointer;
     border: 3px solid white;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
 }

 .episode-card:hover .play-overlay {
     opacity: 1;
     transform: translate(-50%, -50%) scale(1);
 }

 .episode-badge {
     position: absolute;
     top: 1rem;
     left: 1rem;
     background: rgba(255, 255, 255, 0.95);
     padding: 0.4rem 1rem;
     border-radius: 50px;
     font-size: 0.75rem;
     font-weight: 700;
     color: var(--primary);
     text-transform: uppercase;
     letter-spacing: 0.5px;
     backdrop-filter: blur(10px);
 }

 .episode-duration {
     position: absolute;
     top: 1rem;
     right: 1rem;
     background: rgba(0, 0, 0, 0.7);
     color: white;
     padding: 0.35rem 0.75rem;
     border-radius: 8px;
     font-size: 0.875rem;
     font-weight: 600;
     display: flex;
     align-items: center;
     gap: 0.35rem;
 }

 .episode-content {
     padding: 1.5rem;
     flex: 1;
     display: flex;
     flex-direction: column;
 }

 .episode-meta {
     display: flex;
     gap: 1rem;
     margin-bottom: 0.75rem;
     font-size: 0.875rem;
     color: var(--gray);
 }

 .episode-meta span {
     display: flex;
     align-items: center;
     gap: 0.35rem;
 }

 .episode-content h3 {
     font-family: 'Space Grotesk', sans-serif;
     font-size: 1.25rem;
     margin-bottom: 0.75rem;
     line-height: 1.4;
     color: var(--dark);
 }

 .episode-content p {
     color: var(--gray);
     font-size: 0.95rem;
     line-height: 1.6;
     margin-bottom: 1rem;
     display: -webkit-box;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
     overflow: hidden;
 }

 .episode-tags {
     display: flex;
     gap: 0.5rem;
     flex-wrap: wrap;
     margin-top: auto;
 }

 .episode-tag {
     padding: 0.35rem 0.75rem;
     background: #f1f5f9;
     border-radius: 20px;
     font-size: 0.75rem;
     color: var(--gray);
     text-decoration: none;
     transition: all 0.3s;
 }

 .episode-tag:hover {
     background: var(--primary);
     color: white;
 }

 .episode-actions {
     display: flex;
     gap: 0.75rem;
     padding: 1rem 1.5rem;
     border-top: 1px solid #f1f5f9;
 }

 .action-btn {
     flex: 1;
     padding: 0.75rem;
     border: 2px solid #e2e8f0;
     background: white;
     border-radius: 10px;
     font-size: 0.875rem;
     font-weight: 600;
     color: var(--gray);
     cursor: pointer;
     transition: all 0.3s;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 0.5rem;
     text-decoration: none;
 }

 .action-btn:hover {
     border-color: var(--primary);
     color: var(--primary);
     background: rgba(99, 102, 241, 0.05);
 }

 .action-btn.primary {
     background: var(--gradient);
     border-color: transparent;
     color: white;
 }

 .action-btn.primary:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
 }

 /* List View */
 .episodes-list {
     display: none;
     flex-direction: column;
     gap: 1rem;
 }

 .episodes-list.active {
     display: flex;
 }

 .episode-list-item {
     background: white;
     border-radius: 16px;
     padding: 1.25rem;
     display: flex;
     align-items: center;
     gap: 1.5rem;
     box-shadow: var(--shadow);
     transition: all 0.3s;
 }

 .episode-list-item:hover {
     transform: translateX(8px);
     box-shadow: var(--shadow-lg);
 }

 .list-image {
     width: 100px;
     height: 100px;
     border-radius: 12px;
     object-fit: cover;
     flex-shrink: 0;
 }

 .list-content {
     flex: 1;
 }

 .list-content h4 {
     font-family: 'Space Grotesk', sans-serif;
     margin-bottom: 0.5rem;
 }

 .list-play {
     width: 60px;
     height: 60px;
     background: var(--gradient);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 1.5rem;
     cursor: pointer;
     transition: transform 0.3s;
     flex-shrink: 0;
 }

 .list-play:hover {
     transform: scale(1.1);
 }

 /* Pagination */
 .pagination {
     display: flex;
     justify-content: center;
     gap: 0.5rem;
     margin-top: 4rem;
     padding-top: 2rem;
     border-top: 1px solid #e2e8f0;
 }

 .page-btn {
     width: 45px;
     height: 45px;
     display: flex;
     align-items: center;
     justify-content: center;
     border: 2px solid #e2e8f0;
     background: white;
     border-radius: 12px;
     font-weight: 600;
     color: var(--gray);
     cursor: pointer;
     transition: all 0.3s;
     text-decoration: none;
 }

 .page-btn:hover,
 .page-btn.active {
     background: var(--primary);
     border-color: var(--primary);
     color: white;
 }

 .page-btn.next {
     width: auto;
     padding: 0 1.5rem;
     gap: 0.5rem;
 }

 /* Newsletter Section */
 .newsletter-section {
     background: var(--dark);
     padding: 4rem 2rem;
     margin-top: 4rem;
     position: relative;
     overflow: hidden;
 }

 .newsletter-section::before {
     content: '';
     position: absolute;
     top: -50%;
     right: -10%;
     width: 600px;
     height: 600px;
     background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
 }

 .newsletter-content {
     max-width: 600px;
     margin: 0 auto;
     text-align: center;
     position: relative;
     z-index: 1;
     color: white;
 }

 .newsletter-content h2 {
     font-family: 'Space Grotesk', sans-serif;
     font-size: 2rem;
     margin-bottom: 1rem;
 }

 .newsletter-form {
     display: flex;
     gap: 1rem;
     margin-top: 2rem;
 }

 .newsletter-form input {
     flex: 1;
     padding: 1rem 1.5rem;
     border: none;
     border-radius: 12px;
     font-size: 1rem;
 }

 .newsletter-form button {
     padding: 1rem 2rem;
     background: var(--gradient);
     border: none;
     border-radius: 12px;
     color: white;
     font-weight: 600;
     cursor: pointer;
     transition: transform 0.3s;
 }

 .newsletter-form button:hover {
     transform: translateY(-2px);
 }

 /* Responsive */
 @media (max-width: 1024px) {
     .episode-card.featured {
         grid-column: span 1;
         grid-template-columns: 1fr;
     }

     .hero-episodes h1 {
         font-size: 2.5rem;
     }
 }

 @media (max-width: 768px) {
     .nav-links {
         display: none;
     }

     .hero-episodes h1 {
         font-size: 2rem;
     }

     .hero-stats {
         gap: 1.5rem;
     }

     .filter-container {
         flex-direction: column;
         align-items: stretch;
     }

     .search-box {
         max-width: 100%;
     }

     .episodes-grid {
         grid-template-columns: 1fr;
     }

     .episode-list-item {
         flex-direction: column;
         text-align: center;
     }

     .list-image {
         width: 100%;
         height: 200px;
     }

     .newsletter-form {
         flex-direction: column;
     }
 }

 /* Animations */
 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(30px);
     }

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

 .episode-card {
     animation: fadeInUp 0.6s ease forwards;
 }

 .col-md-6:nth-child(1) .episode-card {
     animation-delay: 0.1s;
 }

 .col-md-6:nth-child(2) .episode-card {
     animation-delay: 0.2s;
 }

 .col-md-6:nth-child(3) .episode-card {
     animation-delay: 0.3s;
 }

 .col-md-6:nth-child(4) .episode-card {
     animation-delay: 0.4s;
 }

 .col-md-6:nth-child(5) .episode-card {
     animation-delay: 0.5s;
 }

 .col-md-6:nth-child(6) .episode-card {
     animation-delay: 0.6s;
 }




 /* =========================================================
   SUMMERNOTE - corrigir reset global (* {margin:0;padding:0})
   Reativa espaçamentos e marcadores somente no editor
========================================================= */

 .note-editor .note-editable {
     line-height: 1.7;
     font-size: 14px;
     color: inherit;
 }

 /* Parágrafos */
 .note-editor .note-editable p {
     margin: 0 0 12px 0 !important;
 }

 /* Cabeçalhos */
 .note-editor .note-editable h1 {
     font-size: 28px !important;
     font-weight: 800 !important;
     margin: 16px 0 10px !important;
     line-height: 1.2 !important;
 }

 .note-editor .note-editable h2 {
     font-size: 22px !important;
     font-weight: 800 !important;
     margin: 14px 0 10px !important;
     line-height: 1.25 !important;
 }

 .note-editor .note-editable h3 {
     font-size: 18px !important;
     font-weight: 800 !important;
     margin: 12px 0 8px !important;
     line-height: 1.25 !important;
 }

 .note-editor .note-editable h4 {
     font-size: 16px !important;
     font-weight: 800 !important;
     margin: 10px 0 8px !important;
     line-height: 1.3 !important;
 }

 /* Listas (marcadores/numeração) */
 .note-editor .note-editable ul,
 .note-editor .note-editable ol {
     margin: 0 0 12px 0 !important;
     padding-left: 26px !important;
     list-style-position: outside !important;
 }

 .note-editor .note-editable ul {
     list-style-type: disc !important;
 }

 .note-editor .note-editable ol {
     list-style-type: decimal !important;
 }

 .note-editor .note-editable li {
     margin: 4px 0 !important;
 }

 /* Links/ênfase */
 .note-editor .note-editable a {
     text-decoration: underline;
 }

 .note-editor .note-editable strong,
 .note-editor .note-editable b {
     font-weight: 700;
 }