/* ============================================
   RÁDIO MARK - A RÁDIO DO SEU JEITO
   Design Moderno Web Rádio
   ============================================ */

/* === CSS Variables === */
:root {
    --primary: #E63946;
    --primary-dark: #C1121F;
    --primary-light: #FF6B6B;
    --secondary: #1D3557;
    --secondary-dark: #0D1B2A;
    --secondary-light: #457B9D;
    --accent: #F4A261;
    --accent-dark: #E76F51;
    --dark: #0A0A0A;
    --dark-light: #1A1A2E;
    --gray-900: #16213E;
    --gray-800: #1E2A45;
    --gray-700: #2B3A55;
    --gray-600: #3D5270;
    --gray-500: #6C7A89;
    --gray-400: #9EAAB5;
    --gray-300: #C5CED6;
    --gray-200: #E8ECF0;
    --gray-100: #F4F6F8;
    --white: #FFFFFF;
    --success: #2ECC71;
    --warning: #F39C12;
    --danger: #E74C3C;
    --info: #3498DB;
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --gradient-dark: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    --gradient-hero: linear-gradient(135deg, var(--secondary-dark) 0%, var(--primary-dark) 50%, var(--dark) 100%);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.2);
    --shadow-xl: 0 15px 50px rgba(0,0,0,0.3);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Bebas Neue', Impact, sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === Reset & Base === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: var(--gray-100);
    color: var(--gray-900);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === Top Bar === */
.top-bar {
    background: var(--secondary-dark);
    color: var(--gray-300);
    font-size: 0.8rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-left i {
    color: var(--primary);
    margin-right: 4px;
}

.top-bar-divider {
    color: var(--gray-600);
}

.social-links-top {
    display: flex;
    gap: 12px;
}

.social-links-top a {
    color: var(--gray-400);
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-links-top a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

/* === Header === */
.main-header {
    background: var(--gradient-dark);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: 0 0 20px rgba(230, 57, 70, 0.4);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(230, 57, 70, 0.4); }
    50% { box-shadow: 0 0 35px rgba(230, 57, 70, 0.7); }
}

.logo-text h1 {
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 1;
    color: var(--white);
    letter-spacing: 3px;
}

.logo-text h1 span {
    color: var(--primary);
}

.logo-text p {
    font-size: 0.65rem;
    color: var(--gray-400);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 500;
}

/* === Player Mini (Header) === */
.player-mini {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    padding: 8px 20px;
    backdrop-filter: blur(10px);
}

.player-status {
    display: flex;
    align-items: center;
    gap: 6px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.live-text {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
}

.player-track {
    font-size: 0.8rem;
    color: var(--gray-300);
    max-width: 200px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

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

.btn-player {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-player:hover {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 0 20px rgba(230, 57, 70, 0.5);
}

.btn-player.playing {
    background: var(--primary);
    color: var(--white);
    animation: pulse-glow 1.5s ease-in-out infinite;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-400);
}

.volume-slider {
    -webkit-appearance: none;
    width: 80px;
    height: 4px;
    border-radius: 2px;
    background: var(--gray-700);
    outline: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    transition: var(--transition);
}

.volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(230, 57, 70, 0.5);
}

/* === Menu Toggle (Mobile) === */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* === Navigation === */
.main-nav {
    background: var(--secondary);
    position: sticky;
    top: 85px;
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.nav-list {
    display: flex;
    align-items: stretch;
}

.nav-list > li {
    position: relative;
}

.nav-list > li > a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 16px;
    color: var(--gray-200);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-list > li > a i {
    font-size: 0.8rem;
    color: var(--primary-light);
}

.nav-list > li > a:hover,
.nav-list > li.active > a {
    background: var(--primary);
    color: var(--white);
}

.nav-list > li.active > a i,
.nav-list > li > a:hover i {
    color: var(--white);
}

/* Submenu */
.has-submenu::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid var(--white);
    opacity: 0;
    transition: var(--transition);
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--white);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1000;
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.has-submenu:hover::after {
    opacity: 1;
}

.submenu li a {
    display: block;
    padding: 10px 20px;
    color: var(--gray-700);
    font-size: 0.85rem;
    border-bottom: 1px solid var(--gray-100);
    transition: var(--transition);
}

.submenu li a:hover {
    background: var(--primary);
    color: var(--white);
    padding-left: 25px;
}

.submenu li:last-child a {
    border-bottom: none;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

/* === Flash Messages === */
.flash-message {
    padding: 12px 0;
    font-size: 0.9rem;
}

.flash-message .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flash-sucesso { background: var(--success); color: var(--white); }
.flash-erro { background: var(--danger); color: var(--white); }
.flash-info { background: var(--info); color: var(--white); }

.flash-message button {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 1.1rem;
}

/* === Main Content === */
.main-content {
    min-height: 60vh;
    padding-bottom: 80px;
}

/* === Hero Section === */
.hero-section {
    background: var(--gradient-hero);
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(230,57,70,0.05)" d="M0,128L48,138.7C96,149,192,171,288,165.3C384,160,480,128,576,128C672,128,768,160,864,170.7C960,181,1056,171,1152,149.3C1248,128,1344,96,1392,80L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h2 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.hero-text h2 span {
    color: var(--primary);
}

.hero-text p {
    color: var(--gray-300);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.5);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--white);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.8rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Hero Featured News */
.hero-featured {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-news-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 20px;
    transition: var(--transition);
    display: flex;
    gap: 15px;
    align-items: center;
}

.hero-news-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateX(5px);
    border-color: var(--primary);
}

.hero-news-card .card-badge {
    padding: 4px 10px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.hero-news-card h3 {
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 4px;
    line-height: 1.3;
}

.hero-news-card span {
    font-size: 0.75rem;
    color: var(--gray-400);
}

/* === Section Styles === */
.section {
    padding: 50px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--gray-200);
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--primary);
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--secondary-dark);
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-header h2 i {
    color: var(--primary);
    font-size: 1.5rem;
}

.section-header a {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.section-header a:hover {
    color: var(--primary-dark);
}

.section-dark {
    background: var(--gradient-dark);
    color: var(--white);
}

.section-dark .section-header {
    border-bottom-color: rgba(255,255,255,0.1);
}

.section-dark .section-header::after {
    background: var(--primary);
}

.section-dark .section-header h2 {
    color: var(--white);
}

/* === News Cards === */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.news-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.news-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.news-card-img .badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-card-body h3 {
    font-size: 1.1rem;
    color: var(--secondary-dark);
    margin-bottom: 8px;
    line-height: 1.4;
    transition: var(--transition);
}

.news-card:hover .news-card-body h3 {
    color: var(--primary);
}

.news-card-body p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 15px;
    flex: 1;
    line-height: 1.6;
}

.news-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--gray-500);
    padding-top: 12px;
    border-top: 1px solid var(--gray-200);
}

.news-card-footer i {
    margin-right: 4px;
    color: var(--primary);
}

/* Main News Featured */
.news-featured {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

.news-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 400px;
    background: var(--dark);
}

.news-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.news-main-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 40px 30px 30px;
}

.news-main-overlay .badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.news-main-overlay h2 {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.3;
}

.news-main-overlay p {
    color: var(--gray-300);
    font-size: 0.9rem;
}

.news-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-sidebar-item {
    display: flex;
    gap: 12px;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.news-sidebar-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.news-sidebar-item img {
    width: 100px;
    height: 80px;
    object-fit: cover;
    flex-shrink: 0;
}

.news-sidebar-item-body {
    padding: 10px 10px 10px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-sidebar-item-body h4 {
    font-size: 0.85rem;
    color: var(--secondary-dark);
    line-height: 1.3;
    margin-bottom: 4px;
}

.news-sidebar-item-body span {
    font-size: 0.7rem;
    color: var(--gray-500);
}

/* === Schedule Section === */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.schedule-day {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.schedule-day-header {
    background: var(--secondary);
    color: var(--white);
    text-align: center;
    padding: 12px 8px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.schedule-day.today .schedule-day-header {
    background: var(--primary);
}

.schedule-program {
    padding: 10px;
    border-bottom: 1px solid var(--gray-100);
    transition: var(--transition);
}

.schedule-program:hover {
    background: var(--gray-100);
}

.schedule-program .time {
    font-size: 0.7rem;
    color: var(--primary);
    font-weight: 700;
}

.schedule-program .name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--secondary-dark);
    margin-top: 2px;
}

.schedule-program .host {
    font-size: 0.7rem;
    color: var(--gray-500);
}

/* === Team Section === */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

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

.team-card-img {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.team-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.team-card-body {
    padding: 20px;
}

.team-card-body h3 {
    font-size: 1.1rem;
    color: var(--secondary-dark);
    margin-bottom: 4px;
}

.team-card-body .cargo {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
}

.team-card-body p {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* === Podcast Section === */
.podcast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.podcast-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    transition: var(--transition);
}

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

.podcast-card-clickable {
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: flex;
}

.podcast-card-img {
    width: 140px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.podcast-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.podcast-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.podcast-card:hover .podcast-play-overlay {
    opacity: 1;
}

.podcast-play-overlay i {
    font-size: 2rem;
    color: var(--white);
}

.podcast-card-body {
    padding: 20px;
    flex: 1;
}

.podcast-card-body .badge {
    display: inline-block;
    padding: 3px 8px;
    background: var(--primary-light);
    color: var(--white);
    font-size: 0.65rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.podcast-card-body h3 {
    font-size: 1rem;
    color: var(--secondary-dark);
    margin-bottom: 6px;
}

.podcast-card-body p {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-bottom: 10px;
}

.podcast-meta {
    display: flex;
    gap: 15px;
    font-size: 0.75rem;
    color: var(--gray-500);
}

.podcast-meta i {
    color: var(--primary);
    margin-right: 4px;
}

/* === Gallery Section === */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 250px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent 50%, rgba(0,0,0,0.8));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-item-overlay h4 {
    color: var(--white);
    font-size: 0.9rem;
}

.gallery-item-overlay p {
    color: var(--gray-300);
    font-size: 0.75rem;
}

/* === Spirituality / Horoscope === */
.horoscope-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
}

.horoscope-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}

.horoscope-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.horoscope-card .signo-icon {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.horoscope-card h4 {
    font-size: 0.85rem;
    color: var(--secondary-dark);
}

.horoscope-card .periodo {
    font-size: 0.7rem;
    color: var(--gray-500);
}

/* === Music Request Section === */
.request-section {
    background: var(--gradient-hero);
    padding: 60px 0;
}

.request-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.request-form {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 30px;
    backdrop-filter: blur(10px);
}

.request-form h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-300);
    margin-bottom: 6px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.08);
    color: var(--white);
    font-size: 0.9rem;
    font-family: var(--font-main);
    transition: var(--transition);
}

.form-control::placeholder {
    color: var(--gray-500);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.2);
}

textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

/* Light form controls */
.form-light .form-control {
    background: var(--white);
    border: 1px solid var(--gray-200);
    color: var(--gray-900);
}

.form-light .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

.form-light label {
    color: var(--gray-700);
}

/* === Chat Section === */
.chat-container {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.chat-header {
    background: var(--primary);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-header i {
    font-size: 1.2rem;
}

.chat-header h3 {
    font-size: 1rem;
    color: var(--white);
}

.chat-header .online-count {
    margin-left: auto;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
}

.chat-messages {
    height: 350px;
    overflow-y: auto;
    padding: 15px;
}

.chat-message {
    margin-bottom: 12px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--primary);
}

.chat-message .author {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 3px;
}

.chat-message .text {
    font-size: 0.85rem;
    color: var(--gray-300);
}

.chat-message .time {
    font-size: 0.65rem;
    color: var(--gray-500);
    margin-top: 3px;
}

.chat-input {
    display: flex;
    gap: 10px;
    padding: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.chat-input input {
    flex: 1;
}

/* === Ad Banners === */
.ad-banner {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin: 20px 0;
    text-align: center;
    position: relative;
}

.ad-banner img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
}

.ad-label {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 0.6rem;
    color: var(--gray-500);
    background: rgba(255,255,255,0.8);
    padding: 2px 6px;
    border-radius: 3px;
}

/* Sponsors Section */
.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    padding: 30px 0;
    max-width: 400px;
    margin: 0 auto;
}

.sponsor-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: block;
    overflow: hidden;
    width: 100%;
}

.sponsor-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.sponsor-item img {
    width: 100%;
    height: auto;
    display: block;
}

.sponsor-item span {
    display: block;
    padding: 30px;
    text-align: center;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--secondary);
}

/* === Commercial Section === */
.commercial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.commercial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

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

.commercial-card .icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--white);
}

.commercial-card h3 {
    font-size: 1.2rem;
    color: var(--secondary-dark);
    margin-bottom: 10px;
}

.commercial-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 20px;
}

/* === Article Page === */
.article-page {
    padding: 40px 0;
}

.article-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.article-main {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.article-hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.article-body {
    padding: 35px;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: var(--gray-500);
    flex-wrap: wrap;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-meta i {
    color: var(--primary);
}

.article-body h1 {
    font-size: 2rem;
    color: var(--secondary-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.article-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-700);
}

.article-content p {
    margin-bottom: 18px;
}

.article-content img {
    border-radius: var(--radius-md);
    margin: 20px 0;
}

.article-content h2, .article-content h3 {
    color: var(--secondary-dark);
    margin: 25px 0 15px;
}

.article-content blockquote {
    border-left: 4px solid var(--primary);
    padding: 15px 20px;
    background: var(--gray-100);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 20px 0;
    font-style: italic;
    color: var(--gray-600);
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.widget-header {
    background: var(--secondary);
    padding: 15px 20px;
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.widget-header i {
    color: var(--primary);
}

.widget-body {
    padding: 15px;
}

.widget-news-item {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
}

.widget-news-item:last-child {
    border-bottom: none;
}

.widget-news-item img {
    width: 70px;
    height: 55px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.widget-news-item h5 {
    font-size: 0.8rem;
    color: var(--secondary-dark);
    line-height: 1.3;
    margin-bottom: 3px;
}

.widget-news-item span {
    font-size: 0.7rem;
    color: var(--gray-500);
}

/* === Player Bar (Bottom) === */
.player-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    border-top: 2px solid var(--primary);
    padding: 10px 0;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
}

.player-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.player-bar-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.equalizer {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 25px;
}

.equalizer span {
    width: 3px;
    background: var(--primary);
    border-radius: 1px;
    height: 5px;
    transition: height 0.2s;
}

.equalizer.active span {
    animation: equalize 0.8s ease-in-out infinite;
}

.equalizer.active span:nth-child(1) { animation-delay: 0s; }
.equalizer.active span:nth-child(2) { animation-delay: 0.1s; }
.equalizer.active span:nth-child(3) { animation-delay: 0.2s; }
.equalizer.active span:nth-child(4) { animation-delay: 0.3s; }
.equalizer.active span:nth-child(5) { animation-delay: 0.4s; }

@keyframes equalize {
    0%, 100% { height: 5px; }
    50% { height: 25px; }
}

.player-bar-details strong {
    display: block;
    color: var(--white);
    font-size: 0.85rem;
}

.player-bar-details span {
    color: var(--gray-500);
    font-size: 0.75rem;
}

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

.btn-player-bar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-player-bar:hover,
.btn-player-bar.playing {
    background: var(--primary);
    color: var(--white);
}

.volume-control-bar {
    display: flex;
    align-items: center;
    gap: 8px;
}

.volume-control-bar button {
    background: none;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    font-size: 1rem;
}

/* === Pagination === */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 40px;
}

.pagination a, .pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.pagination a {
    background: var(--white);
    color: var(--gray-700);
    box-shadow: var(--shadow-sm);
}

.pagination a:hover {
    background: var(--primary);
    color: var(--white);
}

.pagination .active {
    background: var(--primary);
    color: var(--white);
}

/* === Page Header === */
.page-header {
    background: var(--gradient-hero);
    padding: 40px 0;
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--white);
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.page-header p {
    color: var(--gray-400);
    font-size: 1rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 0.85rem;
}

.breadcrumb a {
    color: var(--gray-400);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb span {
    color: var(--gray-500);
}

.breadcrumb .current {
    color: var(--primary);
}

/* === WhatsApp Float === */
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9998;
    transition: var(--transition);
    animation: bounce-float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes bounce-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* === Footer === */
.main-footer {
    background: var(--secondary-dark);
    color: var(--gray-300);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-logo i {
    font-size: 2rem;
    color: var(--primary);
}

.footer-logo h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    letter-spacing: 2px;
}

.footer-logo h3 span {
    color: var(--primary);
}

.footer-logo p {
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray-500);
}

.footer-about {
    font-size: 0.85rem;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 20px;
}

.social-links-footer {
    display: flex;
    gap: 12px;
}

.social-links-footer a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    transition: var(--transition);
}

.social-links-footer a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--gray-400);
    font-size: 0.85rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
}

.footer-contact li i {
    color: var(--primary);
    margin-top: 3px;
    width: 16px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 0.8rem;
    color: var(--gray-500);
}

.footer-bottom a {
    color: var(--gray-500);
}

.footer-bottom a:hover {
    color: var(--primary);
}

/* === Motivational Message === */
.motivational-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
    border-left: 4px solid var(--accent);
    transition: var(--transition);
}

.motivational-card:hover {
    box-shadow: var(--shadow-md);
}

.motivational-card .quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 10px;
}

.motivational-card .author {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
}

/* === Video Gallery === */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.video-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.video-card .video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-card .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-card-body {
    padding: 15px;
}

.video-card-body h3 {
    font-size: 0.95rem;
    color: var(--secondary-dark);
    margin-bottom: 5px;
}

.video-card-body p {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* === Agenda Cultural === */
.agenda-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.agenda-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    transition: var(--transition);
}

.agenda-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.agenda-date {
    background: var(--primary);
    color: var(--white);
    padding: 15px 20px;
    text-align: center;
    min-width: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.agenda-date .day {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.agenda-date .month {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.agenda-body {
    padding: 15px 20px;
    flex: 1;
}

.agenda-body h3 {
    font-size: 1rem;
    color: var(--secondary-dark);
    margin-bottom: 5px;
}

.agenda-body p {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.agenda-body .local {
    font-size: 0.8rem;
    color: var(--primary);
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* === Placeholder / Empty State === */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray-500);
}

.empty-state i {
    font-size: 4rem;
    color: var(--gray-300);
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 1.3rem;
    color: var(--gray-600);
    margin-bottom: 10px;
}

.empty-state p {
    font-size: 0.9rem;
}

/* === Responsive === */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-featured {
        display: none;
    }
    
    .schedule-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .article-container {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .news-featured {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .main-header {
        top: 0;
    }
    
    .main-nav {
        top: 85px;
    }
    
    .player-mini {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: var(--secondary-dark);
        transition: var(--transition);
        z-index: 10000;
        overflow-y: auto;
        padding-top: 80px;
    }
    
    .main-nav.open {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
    }
    
    .nav-list > li > a {
        padding: 14px 25px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    
    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0,0,0,0.2);
        border-radius: 0;
        display: none;
    }
    
    .has-submenu.open .submenu {
        display: block;
    }
    
    .submenu li a {
        padding: 10px 40px;
        color: var(--gray-300);
        border-bottom-color: rgba(255,255,255,0.05);
    }
    
    .submenu li a:hover {
        background: var(--primary);
    }
    
    .hero-text h2 {
        font-size: 2.5rem;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
    }
    
    .request-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .podcast-card {
        flex-direction: column;
    }
    
    .podcast-card-img {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .logo-text h1 {
        font-size: 1.5rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .horoscope-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .commercial-grid {
        grid-template-columns: 1fr;
    }
}

/* === Nav Overlay (Mobile) === */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* === Scrollbar === */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-200);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-500);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* === Selection === */
::selection {
    background: var(--primary);
    color: var(--white);
}

/* === Loading === */
.loading-spinner {
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 3px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   FLUTUANTE — SEJA ASSOCIADO
   ============================================ */
.assoc-float {
    position: fixed;
    left: 20px;
    bottom: 90px;
    z-index: 9990;
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--secondary-dark);
    border: 2px solid var(--primary);
    border-radius: 60px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.45), 0 0 0 0 rgba(230,57,70,0.4);
    text-decoration: none;
    overflow: hidden;
    max-width: 56px;
    transition: max-width 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s ease, border-color 0.3s ease;
    animation: assoc-pulse 3.5s ease-in-out infinite;
}

.assoc-float:hover {
    max-width: 260px;
    box-shadow: 0 12px 36px rgba(230,57,70,0.45);
    border-color: var(--primary-light);
    animation: none;
}

@keyframes assoc-pulse {
    0%, 100% { box-shadow: 0 8px 28px rgba(0,0,0,0.45), 0 0 0 0 rgba(230,57,70,0.4); }
    50%       { box-shadow: 0 8px 28px rgba(0,0,0,0.45), 0 0 0 10px rgba(230,57,70,0); }
}

.assoc-float-avatar {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
    border-radius: 50%;
    margin: 0;
    overflow: visible;
    position: relative;
}

.assoc-float-svg {
    width: 38px;
    height: 43px;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
    transition: transform 0.3s ease;
}

.assoc-float:hover .assoc-float-svg {
    transform: scale(1.08) translateY(-2px);
}

.assoc-float-label {
    display: flex;
    flex-direction: column;
    padding: 0 4px 0 10px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.25s ease 0.1s, transform 0.25s ease 0.1s;
    pointer-events: none;
}

.assoc-float:hover .assoc-float-label {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.assoc-float-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.assoc-float-sub {
    font-size: 0.7rem;
    color: var(--primary-light);
    font-weight: 500;
    line-height: 1.3;
}

.assoc-float-arrow {
    padding: 0 14px 0 6px;
    color: var(--primary);
    font-size: 0.85rem;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.25s ease 0.15s, transform 0.25s ease 0.15s;
    flex-shrink: 0;
}

.assoc-float:hover .assoc-float-arrow {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 480px) {
    .assoc-float {
        left: 12px;
        bottom: 80px;
    }
}

/* ============================================
   CARTEIRINHA — Página Dedicada
   ============================================ */
.cart-page-section {
    padding: 50px 0 70px;
    background: var(--gray-100);
}

.cart-page-wrap {
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 40px;
    align-items: start;
}

/* Info box */
.cart-info-box {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    padding: 28px 26px;
    margin-bottom: 28px;
}

.cart-info-icon {
    width: 52px;
    height: 52px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 16px;
}

.cart-info-box h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 1px;
    color: var(--secondary-dark);
    margin-bottom: 10px;
}

.cart-info-box p {
    color: var(--gray-500);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 18px;
}

.cart-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--gray-700);
    font-weight: 500;
}

.cart-benefits li i {
    color: var(--success);
    font-size: 0.8rem;
    flex-shrink: 0;
    background: rgba(46,204,113,0.12);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mockup card */
.cart-mockup-wrap {
    perspective: 1200px;
}

.cart-mockup-card {
    position: relative;
    background: radial-gradient(circle at 18% 18%, #2a3f77 0%, #1a1a2e 46%, #46001a 74%, #800000 100%);
    color: #fff;
    border-radius: 22px;
    overflow: hidden;
    padding: 20px 18px 16px;
    box-shadow: 0 22px 48px rgba(0,0,0,0.5);
    transform: rotateY(-8deg) rotateX(4deg);
    transition: transform 0.4s ease;
    border: 1px solid rgba(255,255,255,0.18);
}

.cart-mockup-card:hover {
    transform: rotateY(-2deg) rotateX(1deg);
}

.cart-mockup-ribbon {
    position: absolute;
    right: -44px;
    top: 20px;
    transform: rotate(35deg);
    font-size: 0.55rem;
    letter-spacing: 2px;
    font-weight: 700;
    padding: 5px 42px;
    color: #1a2238;
    background: linear-gradient(115deg, #f7fbff 0%, #dce6f0 24%, #93a4b9 44%, #f5fdff 60%, #d2dbe8 78%, #f8fbff 100%);
    border: 1px solid rgba(255,255,255,0.7);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.cart-mockup-wave {
    position: absolute;
    left: 0; right: 0;
    pointer-events: none;
    opacity: 0.14;
}

.cart-mockup-wave svg { width: 100%; height: 100%; display: block; }
.cart-mockup-wave-top { top: 10px; height: 44px; }
.cart-mockup-wave-bottom { bottom: 6px; height: 42px; opacity: 0.11; }

.cart-mockup-logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
    line-height: 1;
}

.cart-mockup-logo span {
    background: linear-gradient(120deg, #ffccd2 0%, #ffe2e6 46%, #ff9ba7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.cart-mockup-sub {
    font-size: 0.58rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.85;
    color: #dbe3ff;
    margin: 2px 0 12px;
    position: relative;
    z-index: 2;
}

.cart-mockup-body {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 12px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cart-mockup-avatar-final {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cart-logo-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 50%;
    border: 4px solid #111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    color: #fff;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.25), 0 8px 20px rgba(0,0,0,0.5);
    flex-shrink: 0;
}

.cart-mockup-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #c1121f;
    border: 4px solid #111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
}

.cart-mockup-avatar::before {
    display: none;
}


.cart-avatar-logo-img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    display: block;
}

.cart-av-head {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: rgba(90,67,38,0.45);
    margin: 0 auto 4px;
    position: relative; z-index: 1;
}

.cart-av-torso {
    width: 38px; height: 32px;
    border-radius: 45% 45% 40% 40%;
    background: rgba(90,67,38,0.45);
    margin: 0 auto;
    position: relative; z-index: 1;
}

.cart-mockup-glass {
    background: rgba(255,255,255,0.13);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 16px;
    padding: 12px 14px;
    backdrop-filter: blur(10px);
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.2);
}

.cart-mockup-field {
    font-size: 0.75rem;
    color: #e8ebff;
    line-height: 1.7;
}

.cart-mockup-field strong {
    color: #f7f8ff;
    font-weight: 700;
}

.cart-mockup-legend {
    text-align: center;
    font-size: 0.76rem;
    color: var(--gray-500);
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.cart-mockup-legend i { color: var(--primary); }

/* Form card */
.cart-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    padding: 32px 28px;
    position: sticky;
    top: 100px;
}

.cart-form-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 1px;
    color: var(--secondary-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-form-card h3 i { color: var(--primary); }

.cart-form-card > p {
    color: var(--gray-500);
    font-size: 0.88rem;
    margin-bottom: 22px;
    line-height: 1.6;
}

.cart-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.cart-msg {
    margin-top: 14px;
    padding: 13px 16px;
    border-radius: var(--radius-md);
    font-size: 0.88rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
}

.cart-msg-success {
    background: rgba(46,204,113,0.12);
    border: 1px solid rgba(46,204,113,0.4);
    color: #156b38;
}

.cart-msg-error {
    background: rgba(230,57,70,0.08);
    border: 1px solid rgba(230,57,70,0.3);
    color: var(--primary-dark);
}

/* Responsive */
@media (max-width: 960px) {
    .cart-page-wrap {
        grid-template-columns: 1fr;
    }
    .cart-form-card {
        position: static;
    }
    .cart-mockup-card {
        transform: none;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 560px) {
    .cart-form-row {
        grid-template-columns: 1fr;
    }
    .cart-mockup-body {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .cart-mockup-avatar {
        margin: 0 auto;
    }
}

/* ============================================
   PODCAST — Página do Episódio
   ============================================ */
.pod-single-section {
    padding: 50px 0 70px;
}

.pod-single-wrap {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}

.pod-single-header {
    margin-bottom: 22px;
}

.pod-single-header h2 {
    font-size: 1.6rem;
    color: var(--secondary-dark);
    margin: 10px 0 12px;
    line-height: 1.3;
}

.pod-single-meta {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--gray-500);
}

.pod-single-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Embeds */
.pod-embed-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 30px;
}

.pod-embed-video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: var(--dark);
}

.pod-embed-video iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: 0;
}

.pod-embed-spotify iframe {
    width: 100%;
    height: 232px;
    border-radius: var(--radius-lg);
    border: 0;
}

.pod-embed-audio {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    padding: 30px;
}

.pod-audio-player {
    width: 100%;
    height: 54px;
    border-radius: var(--radius-md);
}

.pod-embed-external {
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.pod-external-box {
    padding: 50px 30px;
    text-align: center;
}

.pod-ext-icon {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 16px;
    display: block;
}

.pod-external-box p {
    color: var(--gray-500);
    margin-bottom: 20px;
    font-size: 1rem;
}

/* Description */
.pod-single-desc {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 24px 26px;
}

.pod-single-desc h4 {
    font-size: 1rem;
    color: var(--secondary-dark);
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.pod-single-desc p {
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.8;
}

/* Sidebar */
.pod-single-sidebar {
    position: sticky;
    top: 100px;
}

.pod-single-sidebar > h4 {
    font-size: 1rem;
    color: var(--secondary-dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
}

.pod-sidebar-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 10px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: 10px;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.pod-sidebar-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.pod-sidebar-thumb {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

.pod-sidebar-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pod-sidebar-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 1.4rem;
}

.pod-sidebar-info {
    flex: 1;
    min-width: 0;
}

.pod-sidebar-info strong {
    display: block;
    font-size: 0.82rem;
    color: var(--secondary-dark);
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pod-sidebar-info span {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.pod-sidebar-all {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    margin-top: 6px;
    transition: var(--transition);
}

.pod-sidebar-all:hover {
    background: var(--primary);
    color: var(--white);
}

@media (max-width: 900px) {
    .pod-single-wrap {
        grid-template-columns: 1fr;
    }
    .pod-single-sidebar {
        position: static;
    }
}

/* ============================================
   ASSOCIADOS — Página Pública
   ============================================ */
.assoc-list-section { padding: 50px 0 70px; }

.assoc-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 16px;
    margin-bottom: 30px;
}

.assoc-list-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
    border-left: 4px solid var(--primary);
}

.assoc-list-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.assoc-list-icon {
    width: 52px;
    height: 52px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    flex-shrink: 0;
}

.assoc-list-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.assoc-list-info strong {
    font-size: 0.95rem;
    color: var(--secondary-dark);
}

.assoc-list-info span {
    font-size: 0.82rem;
    color: var(--gray-500);
}

.assoc-list-info small {
    font-size: 0.76rem;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 4px;
}

.assoc-list-info small i { color: var(--primary); }

.assoc-list-badge {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    flex-shrink: 0;
}

.assoc-list-badge code {
    background: var(--gray-100);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--secondary-dark);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.assoc-list-badge span {
    font-size: 0.7rem;
    color: var(--success);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.assoc-list-total {
    text-align: center;
    color: var(--gray-500);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.assoc-list-total i { color: var(--success); }

@media (max-width: 600px) {
    .assoc-list-grid { grid-template-columns: 1fr; }
    .assoc-list-card { flex-wrap: wrap; }
}

/* === Utility Classes === */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-white { color: var(--white); }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.p-2 { padding: 20px; }
.p-3 { padding: 30px; }
.bg-white { background: var(--white); }
.rounded { border-radius: var(--radius-lg); }
.shadow { box-shadow: var(--shadow-md); }
