/* ============================================================
   RÁDIO LEZÍRIA 89.1 FM — Design System
   Identity: Alegria · Esperança · Energia
   ============================================================ */

/* --- DESIGN TOKENS --- */
:root {
    /* Primary — Energia (warm orange/amber) */
    --primary: #F97316;
    --primary-light: #FDBA74;
    --primary-dark: #EA580C;
    --primary-50: #FFF7ED;
    --primary-100: #FFEDD5;
    --primary-600: #EA580C;
    --primary-700: #C2410C;

    /* Secondary — Esperança/Confiança (teal) */
    --secondary: #0D9488;
    --secondary-light: #5EEAD4;
    --secondary-dark: #0F766E;
    --secondary-50: #F0FDFA;

    /* Accent — Vida/Alegria (warm yellow) */
    --accent: #FACC15;
    --accent-light: #FEF08A;
    --accent-dark: #CA8A04;

    /* Base — Fundo claro */
    --bg: #FEFCF9;
    --bg-alt: #FFF8F0;
    --bg-card: #FFFFFF;
    --bg-dark: #1C1917;

    /* Text */
    --text: #292524;
    --text-muted: #78716C;
    --text-light: #A8A29E;
    --text-inverse: #FEFCF9;

    /* Borders */
    --border: #E7E5E4;
    --border-light: #F5F5F4;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, .05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, .07), 0 2px 4px -2px rgba(0, 0, 0, .05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, .08), 0 4px 6px -4px rgba(0, 0, 0, .04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, .15);
    --shadow-player: 0 -4px 30px rgba(249, 115, 22, .15), 0 -2px 10px rgba(0, 0, 0, .08);

    /* Radius */
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Spacing */
    --section-py: 80px;
    --container-px: 20px;
    --container-max: 1200px;

    /* Transition */
    --ease: cubic-bezier(.4, 0, .2, 1);
    --duration: .25s;

    /* Typography */
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Player height */
    --player-h: 72px;
    --player-margin: 30px;
}

/* --- RESET & BASE --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    padding-bottom: calc(var(--player-h) + var(--player-margin) + 20px);
    overflow-x: hidden;
}

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

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

ul,
ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-px);
}

/* --- UTILITIES --- */
.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pulse-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--secondary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    margin-right: 6px;
    vertical-align: middle;
}

.pulse-dot--red {
    background: #EF4444;
    animation: pulse-red 1.5s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .5;
        transform: scale(1.3);
    }
}

@keyframes pulse-red {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(239, 68, 68, .5);
    }

    50% {
        opacity: .8;
        box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
    }
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: .95rem;
    transition: all var(--duration) var(--ease);
    border: 2px solid transparent;
    text-align: center;
    justify-content: center;
    white-space: nowrap;
}

.btn__icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn--primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 4px 14px rgba(249, 115, 22, .3);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, .4);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.btn--secondary {
    background: var(--secondary);
    color: #fff;
    border-color: var(--secondary);
}

.btn--secondary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--text);
    border-color: var(--border);
}

.btn--outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-50);
}

.btn--lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn--block {
    width: 100%;
}

/* --- NAVBAR --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(254, 252, 249, .85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    transition: all var(--duration) var(--ease);
}

.navbar.scrolled {
    background: rgba(254, 252, 249, .95);
    box-shadow: var(--shadow);
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar__logo-icon {
    font-size: 1.6rem;
}

.navbar__logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.navbar__brand {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text);
}

.navbar__freq {
    font-size: .75rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: .5px;
}

.navbar__nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.navbar__link {
    padding: 8px 14px;
    border-radius: var(--radius-full);
    font-size: .875rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: all var(--duration) var(--ease);
}

.navbar__link:hover,
.navbar__link.active {
    color: var(--primary);
    background: var(--primary-50);
}

.navbar__link--cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff !important;
    font-weight: 600;
    padding: 8px 20px;
    margin-left: 8px;
}

.navbar__link--cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, .3);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.navbar__toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--duration) var(--ease);
}

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

.navbar__toggle.open span:nth-child(2) {
    opacity: 0;
}

.navbar__toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- HERO --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 70px;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1C1917 0%, #292524 30%, #44403C 60%, #1C1917 100%);
    /* Ready to replace with: background-image: url('hero-bg.jpg'); background-size: cover; background-position: center; */
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(28, 25, 23, .6) 0%,
            rgba(28, 25, 23, .4) 40%,
            rgba(28, 25, 23, .7) 100%);
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding: 60px 0;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: var(--radius-full);
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: fadeInDown .8s var(--ease);
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 20px;
    animation: fadeInUp .8s var(--ease) .1s both;
}

.hero__title .text-gradient {
    -webkit-text-fill-color: transparent;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
}

.hero__subtitle {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    max-width: 600px;
    margin: 0 auto 36px;
    opacity: .9;
    line-height: 1.6;
    animation: fadeInUp .8s var(--ease) .2s both;
}

.hero__ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
    animation: fadeInUp .8s var(--ease) .3s both;
}

.hero__ctas .btn--outline {
    color: #fff;
    border-color: rgba(255, 255, 255, .3);
}

.hero__ctas .btn--outline:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .5);
    color: #fff;
}

.hero__stats {
    display: flex;
    gap: 48px;
    justify-content: center;
    animation: fadeInUp .8s var(--ease) .4s both;
}

.hero__stat {
    text-align: center;
}

.hero__stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-light);
}

.hero__stat-label {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: .7;
}

.hero__scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, .5);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: .75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

.hero__scroll-hint svg {
    width: 20px;
    height: 20px;
}

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

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

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

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

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* --- SECTIONS GLOBAL --- */
.section {
    padding: var(--section-py) 0;
}

.section__header {
    text-align: center;
    margin-bottom: 48px;
}

.section__badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-50);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 12px;
}

.section__subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
}

.section__cta {
    text-align: center;
    margin-top: 36px;
}

.section--como-ouvir {
    background: var(--bg-alt);
}

.section--programacao {
    background: var(--bg);
}

.section--videos {
    background: var(--bg-alt);
}

.section--redes {
    background: var(--bg);
}

.section--anunciantes {
    background: var(--bg-alt);
}

.section--precos {
    background: var(--bg);
}

.section--sobre {
    background: var(--bg-alt);
}

.section--contactos {
    background: var(--bg);
}

/* --- COMO OUVIR --- */
.listen-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.listen-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all var(--duration) var(--ease);
    display: block;
}

.listen-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.listen-card__icon {
    width: 56px;
    height: 56px;
    background: var(--primary-50);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: all var(--duration) var(--ease);
}

.listen-card__icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.listen-card__icon--yt {
    background: #FEE2E2;
}

.listen-card__icon--yt svg {
    color: #DC2626;
}

.listen-card__icon--spotify {
    background: #D1FAE5;
}

.listen-card__icon--spotify svg {
    color: #059669;
}

.listen-card__icon--social {
    background: #DBEAFE;
}

.listen-card__icon--social svg {
    color: #2563EB;
}

.listen-card:hover .listen-card__icon {
    transform: scale(1.1);
}

.listen-card__title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.listen-card__desc {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* --- AGORA NO AR --- */
.section--now-playing {
    background: var(--bg);
    padding: 40px 0;
}

.now-playing-card {
    display: flex;
    align-items: center;
    gap: 40px;
    background: linear-gradient(135deg, var(--bg-dark), #292524);
    border-radius: var(--radius-xl);
    padding: 40px;
    color: #fff;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
}

.now-playing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249, 115, 22, .15), transparent 70%);
    border-radius: 50%;
}

.now-playing-card__visual {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.now-playing-card__album {
    width: 140px;
    height: 140px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.now-playing-card__album-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
}

.now-playing-card__album-placeholder svg {
    width: 48px;
    height: 48px;
    color: rgba(255, 255, 255, .6);
}

.now-playing-card__eq {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 3px;
    align-items: flex-end;
    height: 20px;
}

.now-playing-card__eq span {
    display: block;
    width: 4px;
    background: rgba(255, 255, 255, .7);
    border-radius: 2px;
    animation: eq 1s ease-in-out infinite;
}

.now-playing-card__eq span:nth-child(1) {
    height: 8px;
    animation-delay: 0s;
}

.now-playing-card__eq span:nth-child(2) {
    height: 16px;
    animation-delay: .15s;
}

.now-playing-card__eq span:nth-child(3) {
    height: 12px;
    animation-delay: .3s;
}

.now-playing-card__eq span:nth-child(4) {
    height: 18px;
    animation-delay: .45s;
}

.now-playing-card__eq span:nth-child(5) {
    height: 10px;
    animation-delay: .6s;
}

@keyframes eq {

    0%,
    100% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(.4);
    }
}

.now-playing-card__info {
    position: relative;
    z-index: 1;
}

.now-playing-card__badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 14px;
    background: rgba(239, 68, 68, .15);
    border: 1px solid rgba(239, 68, 68, .3);
    border-radius: var(--radius-full);
    font-size: .78rem;
    font-weight: 700;
    color: #FCA5A5;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.now-playing-card__title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.now-playing-card__host {
    font-size: .95rem;
    opacity: .8;
    margin-bottom: 4px;
}

.now-playing-card__time {
    font-size: .85rem;
    opacity: .6;
    margin-bottom: 20px;
}

/* Now playing schedule blocks */
.now-schedule {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.now-schedule__item {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius);
    padding: 12px 16px;
    flex: 1;
    min-width: 160px;
}

.now-schedule__label {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: .5;
    margin-bottom: 4px;
    display: block;
}

.now-schedule__name {
    font-weight: 600;
    font-size: .9rem;
}

/* --- PROGRAMAÇÃO --- */
.program-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.program-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all var(--duration) var(--ease);
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity var(--duration) var(--ease);
}

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

.program-card:hover::before {
    opacity: 1;
}

.program-card__time {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.program-card__badge {
    display: inline-block;
    padding: 3px 10px;
    background: var(--secondary-50);
    color: var(--secondary);
    border-radius: var(--radius-full);
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 12px;
}

.program-card__badge--weekend {
    background: var(--accent-light);
    color: var(--accent-dark);
}

.program-card__badge--energy {
    background: #FEE2E2;
    color: #DC2626;
}

.program-card__badge--community {
    background: #DBEAFE;
    color: #2563EB;
}

.program-card__badge--hits {
    background: var(--accent-light);
    color: var(--accent-dark);
}

.program-card__badge--chill {
    background: #E0E7FF;
    color: #4338CA;
}

.program-card__badge--drive {
    background: #D1FAE5;
    color: #059669;
}

.program-card__badge--top {
    background: #FCE7F3;
    color: #DB2777;
}

.program-card__badge--nonstop {
    background: var(--primary-100);
    color: var(--primary-dark);
}

.program-card__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 6px;
    color: var(--text);
}

.program-card__host {
    font-size: .82rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.program-card__desc {
    font-size: .875rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* --- VÍDEOS --- */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.video-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all var(--duration) var(--ease);
}

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

.video-card__thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-card__thumb-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #292524, #44403C);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-card__thumb-placeholder svg {
    width: 48px;
    height: 48px;
    color: rgba(255, 255, 255, .4);
    transition: all var(--duration) var(--ease);
}

.video-card:hover .video-card__thumb-placeholder svg {
    color: var(--primary);
    transform: scale(1.15);
}

.video-card__duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, .75);
    color: #fff;
    font-size: .75rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
}

.video-card__info {
    padding: 18px 20px;
}

.video-card__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .95rem;
    margin-bottom: 6px;
    line-height: 1.4;
}

.video-card__meta {
    font-size: .8rem;
    color: var(--text-light);
}

/* --- REDES SOCIAIS --- */
.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 36px 24px;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all var(--duration) var(--ease);
}

.social-card svg {
    width: 36px;
    height: 36px;
    transition: transform var(--duration) var(--ease);
}

.social-card span {
    font-weight: 600;
    font-size: .95rem;
}

.social-card:hover svg {
    transform: scale(1.15);
}

.social-card--fb:hover {
    border-color: #3B82F6;
    color: #3B82F6;
    background: #EFF6FF;
}

.social-card--ig:hover {
    border-color: #E1306C;
    color: #E1306C;
    background: #FDF2F8;
}

.social-card--yt:hover {
    border-color: #DC2626;
    color: #DC2626;
    background: #FEF2F2;
}

.social-card--spotify:hover {
    border-color: #059669;
    color: #059669;
    background: #ECFDF5;
}

/* --- ANUNCIANTES --- */
.advertiser-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.advertiser-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all var(--duration) var(--ease);
    text-align: center;
}

.advertiser-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.advertiser-card__icon {
    width: 64px;
    height: 64px;
    background: var(--primary-50);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.advertiser-card__icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.advertiser-card__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.advertiser-card__desc {
    font-size: .9rem;
    color: var(--text-muted);
    margin-bottom: 18px;
    line-height: 1.55;
}

.advertiser-card__link {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: .9rem;
    transition: color var(--duration) var(--ease);
}

.advertiser-card__link:hover {
    color: var(--primary-dark);
}

/* --- PREÇOS --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    transition: all var(--duration) var(--ease);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.pricing-card--featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-md), 0 0 0 1px var(--primary);
    transform: scale(1.03);
}

.pricing-card--featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.pricing-card__popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    padding: 5px 20px;
    border-radius: var(--radius-full);
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    white-space: nowrap;
}

.pricing-card__header {
    margin-bottom: 24px;
}

.pricing-card__name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 6px;
}

.pricing-card__desc {
    font-size: .88rem;
    color: var(--text-muted);
}

.pricing-card__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 28px;
}

.pricing-card__currency {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-muted);
}

.pricing-card__amount {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--text);
    line-height: 1;
}

.pricing-card__period {
    font-size: .9rem;
    color: var(--text-muted);
}

.pricing-card__label {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 28px;
}

.pricing-card__features {
    text-align: left;
    margin-bottom: 28px;
}

.pricing-card__features li {
    padding: 8px 0;
    font-size: .9rem;
    color: var(--text);
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-card__features li::before {
    content: '✓';
    color: var(--secondary);
    font-weight: 700;
    font-size: .85rem;
    flex-shrink: 0;
}

.pricing-card__features li:last-child {
    border-bottom: none;
}

.pricing-custom {
    margin-top: 36px;
}

.pricing-custom__inner {
    background: linear-gradient(135deg, var(--primary-50), var(--accent-light));
    border: 1px solid var(--primary-light);
    border-radius: var(--radius-xl);
    padding: 36px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.pricing-custom__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 6px;
}

.pricing-custom__desc {
    font-size: .95rem;
    color: var(--text-muted);
}

/* --- SOBRE --- */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}

.about-text p {
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
}

.about-location {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
}

.about-location svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
    flex-shrink: 0;
}

.about-location p {
    font-size: .9rem;
    color: var(--text-muted);
    margin: 0;
}

.about-map__placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--border-light), var(--bg-alt));
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-light);
}

.about-map__placeholder svg {
    width: 40px;
    height: 40px;
}

.about-map__placeholder span {
    font-size: .9rem;
}

/* --- CONTACTOS --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
}

.contact-form {
    background: var(--bg-card);
    padding: 36px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.form-group label {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg);
    color: var(--text);
    transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, .12);
}

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

.form-group--checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-group--checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--primary);
}

.form-group--checkbox label {
    font-size: .82rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 0;
}

.form-group--checkbox a {
    color: var(--primary);
    text-decoration: underline;
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px;
}

.form-success.show {
    display: block;
}

.form-success__icon {
    font-size: 3rem;
    margin-bottom: 12px;
}

.form-success__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.form-success__text {
    color: var(--text-muted);
    font-size: .95rem;
}

.contact-info__card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.contact-info__item {
    display: flex;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border-light);
}

.contact-info__item:last-child {
    border-bottom: none;
}

.contact-info__item svg {
    width: 22px;
    height: 22px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info__item strong {
    display: block;
    font-size: .9rem;
    margin-bottom: 2px;
}

.contact-info__item p {
    font-size: .88rem;
    color: var(--text-muted);
    margin: 0;
}

/* --- FOOTER --- */
.footer {
    background: var(--bg-dark);
    color: var(--text-inverse);
    padding: 64px 0 0;
}

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

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer__tagline {
    font-size: .9rem;
    opacity: .6;
    margin-bottom: 24px;
    line-height: 1.6;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .06);
    transition: all var(--duration) var(--ease);
}

.footer__social a:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.footer__social svg {
    width: 18px;
    height: 18px;
}

.footer__links h4 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .95rem;
    margin-bottom: 18px;
    color: var(--text-inverse);
}

.footer__links a,
.footer__links p {
    display: block;
    font-size: .88rem;
    opacity: .6;
    margin-bottom: 10px;
    transition: opacity var(--duration) var(--ease);
    line-height: 1.5;
}

.footer__links a:hover {
    opacity: 1;
    color: var(--primary-light);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    padding: 24px 0;
    font-size: .8rem;
    opacity: .4;
}

/* --- FLOATING PLAYER --- */
.floating-player {
    position: fixed;
    bottom: var(--player-margin);
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    width: calc(100% - 40px);
    max-width: 900px;
}

.floating-player__inner {
    background: linear-gradient(135deg, #1C1917, #292524);
    border-radius: var(--radius-xl);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: var(--shadow-player);
    border: 1px solid rgba(255, 255, 255, .06);
    backdrop-filter: blur(20px);
}

.floating-player__status {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex-shrink: 0;
}

.floating-player__on-air {
    display: inline-flex;
    align-items: center;
    font-size: .7rem;
    font-weight: 800;
    color: #FCA5A5;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.floating-player__station {
    font-size: .75rem;
    color: rgba(255, 255, 255, .4);
}

.floating-player__controls {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.floating-player__play {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--duration) var(--ease);
    box-shadow: 0 4px 12px rgba(249, 115, 22, .4);
}

.floating-player__play:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(249, 115, 22, .5);
}

.floating-player__play svg {
    width: 20px;
    height: 20px;
    color: #fff;
}

.floating-player__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.floating-player__title {
    font-weight: 700;
    font-size: .9rem;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.floating-player__subtitle {
    font-size: .78rem;
    color: rgba(255, 255, 255, .4);
}

.floating-player__volume {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.floating-player__vol-btn {
    padding: 4px;
    color: rgba(255, 255, 255, .5);
    transition: color var(--duration) var(--ease);
}

.floating-player__vol-btn:hover {
    color: #fff;
}

.floating-player__vol-btn svg {
    width: 20px;
    height: 20px;
}

.floating-player__volume-slider {
    width: 80px;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, .15);
    border-radius: 2px;
    outline: none;
}

.floating-player__volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 0 6px rgba(249, 115, 22, .4);
}

/* --- PLAYER: Loading Spinner --- */
.player-spinner {
    width: 20px;
    height: 20px;
    border: 2.5px solid rgba(255, 255, 255, .25);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin .7s linear infinite;
}

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

/* --- PLAYER: Toggle Minimize/Expand Button --- */
.floating-player__toggle {
    padding: 6px;
    color: rgba(255, 255, 255, .4);
    transition: color var(--duration) var(--ease);
    flex-shrink: 0;
}

.floating-player__toggle:hover {
    color: #fff;
}

.floating-player__toggle svg {
    width: 18px;
    height: 18px;
}

/* --- PLAYER: Minimized State --- */
.floating-player.minimized .floating-player__status,
.floating-player.minimized .floating-player__volume,
.floating-player.minimized .floating-player__subtitle {
    display: none;
}

.floating-player.minimized .floating-player__inner {
    padding: 10px 16px;
}

.floating-player.minimized .floating-player__title {
    font-size: .8rem;
}

/* --- PLAYER: State-based Badge --- */
.floating-player[data-state="stopped"] .floating-player__on-air .pulse-dot {
    animation: none;
    opacity: .4;
}

.floating-player[data-state="loading"] .floating-player__on-air .pulse-dot {
    background: var(--accent);
}

.floating-player[data-state="playing"] .floating-player__on-air .pulse-dot {
    background: #EF4444;
}

.floating-player[data-state="offline"] .floating-player__on-air {
    display: none;
}

/* --- PLAYER: Offline Message --- */
.floating-player__offline {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 6px 0 0;
    color: rgba(255, 255, 255, .6);
    font-size: .82rem;
}

.floating-player__offline svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #FCA5A5;
}

.floating-player[data-state="offline"] .floating-player__offline {
    display: flex !important;
}

.floating-player[data-state="offline"] .floating-player__controls {
    opacity: .4;
    pointer-events: none;
}

/* --- LEGAL PAGES --- */
.legal-page {
    padding: 120px 0 80px;
}

.legal-page h1 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.legal-page .legal-updated {
    font-size: .88rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 32px 0 12px;
}

.legal-page p,
.legal-page li {
    font-size: .95rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 12px;
}

.legal-page ul {
    padding-left: 24px;
}

.legal-page ul li {
    list-style: disc;
}

.legal-page a {
    color: var(--primary);
    text-decoration: underline;
}

/* --- PLAYER: Audio Visualizer Canvas --- */
.floating-player__visualizer {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    /* Decorativo: pointer-events off para não bloquear cliques */
    pointer-events: none;
    user-select: none;
}

.visualizer-canvas {
    display: block;
    height: 36px;
    width: 100%;
    /* Sem max-width — ocupa todo o espaço disponível */
}

/* Esconder em mobile pequeno para ganhar espaço */
@media (max-width: 600px) {
    .floating-player__visualizer {
        display: none;
    }
}

/* Minimized: também esconder */
.floating-player.minimized .floating-player__visualizer {
    display: none;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .program-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card--featured {
        grid-column: 1 / -1;
        max-width: 400px;
        justify-self: center;
    }

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

@media (max-width: 768px) {
    :root {
        --section-py: 56px;
    }

    .navbar__nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(254, 252, 249, .98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 4px;
        transform: translateX(100%);
        transition: transform .35s var(--ease);
    }

    .navbar__nav.open {
        transform: translateX(0);
    }

    .navbar__toggle {
        display: flex;
    }

    .navbar__link {
        padding: 14px 20px;
        font-size: 1rem;
        width: 100%;
        border-radius: var(--radius-sm);
    }

    .navbar__link--cta {
        margin-left: 0;
        margin-top: 12px;
        text-align: center;
        justify-content: center;
    }

    .hero__stats {
        gap: 28px;
    }

    .hero__stat-number {
        font-size: 1.5rem;
    }

    .listen-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .now-playing-card {
        flex-direction: column;
        text-align: center;
        padding: 28px;
        gap: 24px;
    }

    .now-playing-card__album {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }

    .now-schedule {
        flex-direction: column;
    }

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

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

    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .pricing-card--featured {
        max-width: none;
        transform: none;
    }

    .pricing-card--featured:hover {
        transform: translateY(-4px);
    }

    .pricing-custom__inner {
        flex-direction: column;
        text-align: center;
        padding: 28px;
    }

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

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

    .contact-form {
        padding: 24px;
    }

    .contact-form__row {
        grid-template-columns: 1fr;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .floating-player {
        width: calc(100% - 24px);
        bottom: 16px;
    }

    .floating-player__inner {
        padding: 12px 16px;
        gap: 12px;
        flex-wrap: wrap;
    }

    .floating-player__status {
        display: none;
    }

    .floating-player__volume-slider {
        width: 60px;
    }
}

@media (max-width: 480px) {
    .listen-grid {
        grid-template-columns: 1fr;
    }

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

    .hero__ctas {
        flex-direction: column;
        align-items: center;
    }

    .hero__ctas .btn {
        width: 100%;
        max-width: 280px;
    }

    .floating-player__volume {
        display: none;
    }
}

/* --- ANIMATIONS ON SCROLL (JS adds .animate) --- */
.section__header,
.listen-card,
.program-card,
.video-card,
.social-card,
.advertiser-card,
.pricing-card,
.now-playing-card,
.about-grid,
.contact-grid {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
}

.animate {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.listen-card:nth-child(2),
.program-card:nth-child(2),
.social-card:nth-child(2) {
    transition-delay: .08s;
}

.listen-card:nth-child(3),
.program-card:nth-child(3),
.social-card:nth-child(3) {
    transition-delay: .16s;
}

.listen-card:nth-child(4),
.program-card:nth-child(4),
.social-card:nth-child(4) {
    transition-delay: .24s;
}

.program-card:nth-child(5) {
    transition-delay: .32s;
}

.program-card:nth-child(6) {
    transition-delay: .4s;
}

.program-card:nth-child(7) {
    transition-delay: .48s;
}

.program-card:nth-child(8) {
    transition-delay: .56s;
}

/* ═══════════════════════════════════════════════════════
   PROMPT #07 — Micro-interações, YouTube Modal, SEO/A11y
   ═══════════════════════════════════════════════════════ */

/* --- SKIP TO CONTENT (acessibilidade teclado) --- */
.skip-link {
    position: fixed;
    top: -100px;
    left: 20px;
    z-index: 9999;
    padding: 10px 20px;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: .9rem;
    transition: top .2s var(--ease);
}

.skip-link:focus {
    top: 10px;
}

/* --- FOCUS VISIBLE — acessibilidade teclado global --- */
:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 3px;
    border-radius: 4px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 3px;
}

/* --- VIDEO CARDS — thumbnail lazy com botão play --- */
.video-card__thumb {
    position: relative;
    display: block;
    aspect-ratio: 16/9;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
    background: #1C1917;
    cursor: pointer;
}

/* Imagem lazy-loaded */
.video-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s var(--ease), filter .4s var(--ease);
}

.video-card__thumb:hover img,
.video-card__thumb:focus img {
    transform: scale(1.04);
    filter: brightness(.85);
}

/* Overlay de brilho ao hover */
.video-card__thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, .08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .3s var(--ease);
    pointer-events: none;
}

.video-card__thumb:hover::after,
.video-card__thumb:focus::after {
    opacity: 1;
}

/* Placeholder enquanto não há img */
.video-card__thumb-placeholder {
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #292524, #44403C);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-card__thumb-placeholder svg {
    width: 48px;
    height: 48px;
    color: rgba(255, 255, 255, .2);
}

/* Botão play central */
.video-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.video-play-btn__circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(249, 115, 22, .92);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(249, 115, 22, .5);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
    backdrop-filter: blur(4px);
}

.video-play-btn__circle svg {
    width: 22px;
    height: 22px;
    color: #fff;
    margin-left: 3px;
}

.video-card__thumb:hover .video-play-btn__circle,
.video-card__thumb:focus .video-play-btn__circle {
    transform: scale(1.12);
    background: var(--primary);
    box-shadow: 0 6px 28px rgba(249, 115, 22, .65);
}

/* Duration badge */
.video-card__duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, .75);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    letter-spacing: .3px;
    z-index: 3;
}

/* Badge placeholder YouTube */
.video-card__thumb-placeholder--yt {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
}

.video-card__thumb-placeholder--yt svg {
    color: rgba(255, 255, 255, .15);
}

/* --- YOUTUBE MODAL LEVE --- */
.yt-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.yt-modal.open {
    display: flex;
}

.yt-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .88);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    cursor: pointer;
    animation: fadeIn .2s var(--ease);
}

.yt-modal__box {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 900px;
    background: #000;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, .6);
    animation: scaleUp .25s var(--ease);
}

.yt-modal__ratio {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.yt-modal__ratio iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.yt-modal__close {
    position: absolute;
    top: -44px;
    right: 0;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    border-radius: var(--radius-full);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background .2s var(--ease), transform .2s var(--ease);
}

.yt-modal__close:hover {
    background: rgba(255, 255, 255, .25);
    transform: rotate(90deg);
}

@keyframes scaleUp {
    from {
        transform: scale(.93);
        opacity: 0;
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* --- CARD MICRO-INTERAÇÕES melhoradas --- */

/* Program cards — destaque ao activo/hover */
.program-card {
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}

.program-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

/* Destaque do programa actual (hora actual) */
.program-card--active {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 2px rgba(249, 115, 22, .18), var(--shadow-md) !important;
    background: linear-gradient(135deg, rgba(249, 115, 22, .04), transparent) !important;
}

.program-card--active .program-card__time {
    color: var(--primary);
}

/* Advertiser cards */
.advertiser-card {
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.advertiser-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

/* Pricing cards */
.pricing-card {
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.pricing-card:not(.pricing-card--featured):hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

/* Social cards */
.social-card {
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), filter .25s var(--ease);
}

.social-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-md);
}

/* --- HERO — preparação para imagem do cliente --- */
/*
   Para substituir o fundo do hero pela imagem do cliente:
   1. Substituir "hero__bg-placeholder" em index.html por:
      <img src="hero-bg.webp" alt="" class="hero__bg-img" fetchpriority="high">
   2. Adicionar ao CSS:
      .hero__bg-img { width:100%; height:100%; object-fit:cover; object-position:center top; }
   3. O overlay .hero__overlay já garante o contraste do texto.
   Suporte multi-formato (WebP/AVIF) via <picture>:
      <picture>
        <source srcset="hero-bg.avif" type="image/avif">
        <source srcset="hero-bg.webp" type="image/webp">
        <img src="hero-bg.jpg" alt="" class="hero__bg-img">
      </picture>
*/
.hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}/* ============================================================
   BLOG — Estilos adicionais para Blog, Post e Sidebar.
   Integrado com o design system existente da Rádio Lezíria.
   NÃO ALTERA NENHUM CSS EXISTENTE.
   ============================================================ */

/* ───────────────────────────────────────────
   BLOG CARDS
   ─────────────────────────────────────────── */
.blog-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all var(--duration) var(--ease);
}

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

.blog-card__link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.blog-card__image {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, #1C1917 0%, #292524 100%);
}

.blog-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s var(--ease);
}

.blog-card:hover .blog-card__img {
    transform: scale(1.05);
}

.blog-card__img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #292524, #44403C);
}

.blog-card__img-placeholder svg {
    width: 48px;
    height: 48px;
    color: var(--text-muted);
    opacity: .4;
}

.blog-card__category {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius-full);
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.blog-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.blog-card__meta {
    font-size: .78rem;
    color: var(--text-muted);
    font-weight: 500;
}

.blog-card__title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card__excerpt {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card__cta {
    font-size: .85rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: auto;
    padding-top: 4px;
    transition: color var(--duration) var(--ease);
}

.blog-card:hover .blog-card__cta {
    color: var(--primary-dark);
}

/* ───────────────────────────────────────────
   BLOG GRID
   ─────────────────────────────────────────── */
.blog-grid {
    display: grid;
    gap: 28px;
}

.blog-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.blog-grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 900px) {
    .blog-grid--3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .blog-grid--3,
    .blog-grid--2 {
        grid-template-columns: 1fr;
    }
}

/* ───────────────────────────────────────────
   BLOG EMPTY STATE
   ─────────────────────────────────────────── */
.blog-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.blog-empty__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    opacity: .4;
    color: var(--primary);
}

.blog-empty__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.blog-empty__text {
    font-size: 1rem;
    margin-bottom: 24px;
}

/* ───────────────────────────────────────────
   BLOG PAGE HEADER
   ─────────────────────────────────────────── */
.section--blog-page {
    padding-top: calc(70px + var(--section-py));
}

.blog-page__header {
    margin-bottom: 40px;
}

/* ───────────────────────────────────────────
   PAGINATION
   ─────────────────────────────────────────── */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.pagination__pages {
    display: flex;
    gap: 4px;
}

.pagination__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: var(--radius);
    font-size: .88rem;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--surface);
    border: 1px solid var(--border);
    text-decoration: none;
    transition: all var(--duration) var(--ease);
}

.pagination__link:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-50);
}

.pagination__link--active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.pagination__link--active:hover {
    background: var(--primary-dark);
    color: #fff;
}

/* ───────────────────────────────────────────
   POST LAYOUT (content + sidebar)
   ─────────────────────────────────────────── */
.section--post {
    padding-top: calc(70px + var(--section-py));
}

.post-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}

@media (max-width: 960px) {
    .post-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ── Breadcrumb ── */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .84rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--duration) var(--ease);
}

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

.breadcrumb__sep {
    opacity: .4;
}

.breadcrumb__current {
    color: var(--text);
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 400px;
}

/* ── Post Content ── */
.post-content__header {
    margin-bottom: 28px;
}

.post-content__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .82rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.post-content__category {
    padding: 3px 10px;
    background: var(--primary-50);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-size: .72rem;
}

.post-content__title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
}

.post-content__featured-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 32px;
}

.post-content__featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ── WordPress Content Rendering ── */
.wp-content {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text);
}

.wp-content h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 32px 0 12px;
    color: var(--text);
}

.wp-content h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 24px 0 8px;
    color: var(--text);
}

.wp-content p {
    margin-bottom: 16px;
}

.wp-content ul,
.wp-content ol {
    margin: 16px 0;
    padding-left: 24px;
}

.wp-content li {
    margin-bottom: 6px;
}

.wp-content a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-color: var(--primary-light);
    text-underline-offset: 2px;
    transition: color var(--duration) var(--ease);
}

.wp-content a:hover {
    color: var(--primary-dark);
}

.wp-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin: 20px 0;
}

.wp-content blockquote {
    border-left: 4px solid var(--primary);
    padding: 16px 20px;
    margin: 24px 0;
    background: var(--primary-50);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--text);
}

.wp-content figure {
    margin: 24px 0;
}

.wp-content figcaption {
    font-size: .84rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 8px;
}

.wp-content pre,
.wp-content code {
    background: var(--bg-dark);
    color: var(--primary-light);
    border-radius: var(--radius-sm);
    font-size: .9rem;
}

.wp-content pre {
    padding: 16px;
    overflow-x: auto;
    margin: 20px 0;
}

.wp-content code {
    padding: 2px 6px;
}

.post-content__footer {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

/* ───────────────────────────────────────────
   SIDEBAR
   ─────────────────────────────────────────── */
.post-sidebar {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-block {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.sidebar-block__title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-50);
}

.sidebar-block__text {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ── Sidebar Social ── */
.sidebar-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.sidebar-social__link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: var(--radius-full);
    font-size: .78rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: all var(--duration) var(--ease);
}

.sidebar-social__link svg {
    width: 16px;
    height: 16px;
}

.sidebar-social__link--fb {
    background: #1877F2;
}

.sidebar-social__link--fb:hover {
    background: #166CD5;
}

.sidebar-social__link--ig {
    background: linear-gradient(45deg, #F77737, #E1306C, #C13584);
}

.sidebar-social__link--ig:hover {
    opacity: .9;
}

.sidebar-social__link--yt {
    background: #FF0000;
}

.sidebar-social__link--yt:hover {
    background: #CC0000;
}

/* ── Sidebar CTA ── */
.sidebar-block--cta {
    background: linear-gradient(135deg, var(--bg-dark), #292524);
    border-color: rgba(249, 115, 22, .2);
    color: #fff;
}

.sidebar-block--cta .sidebar-block__title {
    color: #fff;
    border-bottom-color: rgba(249, 115, 22, .3);
}

.sidebar-block--cta .sidebar-block__text {
    color: rgba(255, 255, 255, .75);
}

.sidebar-listen-btn {
    margin-top: 12px;
}

/* ── Sidebar Recent Posts ── */
.sidebar-recent {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-recent__link {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
    transition: color var(--duration) var(--ease);
}

.sidebar-recent__link:hover .sidebar-recent__title {
    color: var(--primary);
}

.sidebar-recent__thumb {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    flex-shrink: 0;
}

.sidebar-recent__title {
    font-size: .85rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color var(--duration) var(--ease);
}

.sidebar-recent__date {
    font-size: .72rem;
    color: var(--text-muted);
    display: block;
    margin-top: 2px;
}

/* ── AdSense Placeholders ── */
.sidebar-block--ad {
    background: transparent;
    border-style: dashed;
    border-color: var(--border);
}

.adsense-placeholder {
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: repeating-linear-gradient(45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, .02) 10px,
            rgba(255, 255, 255, .02) 20px);
    border-radius: var(--radius);
}

.adsense-placeholder__label {
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    opacity: .5;
}

.adsense-placeholder--inline {
    min-height: 120px;
    margin: 32px 0;
    border: 1px dashed var(--border);
    border-radius: var(--radius);
}

/* ───────────────────────────────────────────
   SECTION BLOG (Home preview)
   ─────────────────────────────────────────── */
.section--blog {
    background: linear-gradient(180deg, transparent 0%, var(--primary-50) 50%, transparent 100%);
}