/* Educadora 103 FM — protótipo visual */
:root {
    --bg: #080b10;
    --bg-2: #0d1219;
    --text: #f8f8f5;
    --muted: #a9afb8;
    --yellow: #ffce00;
    --yellow-2: #ffb900;
    --red: #ff1f2d;
    --light: #f4f4f0;
    --ink: #12161b;
    --line: rgba(255,255,255,.12);
    --radius: 24px;
    --shadow: 0 24px 70px rgba(0,0,0,.28);
    --shell: 1180px;
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "Inter", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body.modal-open { overflow: hidden; }

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

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

button, input, textarea { font: inherit; }

button { cursor: pointer; }

.shell {
    width: min(calc(100% - 48px), var(--shell));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(8,11,16,.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.header-inner {
    min-height: 92px;
    display: grid;
    grid-template-columns: 190px 1fr auto;
    align-items: center;
    gap: 34px;
}

.brand img {
    width: 150px;
    max-height: 78px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
}

.main-nav a {
    color: #e6e8eb;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .035em;
    position: relative;
    padding: 34px 0 31px;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 24px;
    width: 0;
    height: 3px;
    border-radius: 999px;
    background: var(--yellow);
    transition: width .25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }

.btn {
    min-height: 48px;
    border-radius: 999px;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 22px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .02em;
    font-size: 13px;
    transition: transform .2s ease, filter .2s ease, background .2s ease;
}

.btn:hover { transform: translateY(-2px); filter: brightness(1.04); }

.btn-primary { background: linear-gradient(135deg, var(--yellow), var(--yellow-2)); color: #0d1116; }
.btn-danger { background: linear-gradient(135deg, #ff2735, #e90010); color: white; box-shadow: 0 10px 32px rgba(255,31,45,.26); }

.btn-outline {
    color: var(--yellow);
    border: 2px solid var(--yellow);
    background: transparent;
}

.hero {
    min-height: 650px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: #080b10;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .12;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to right, #000 0%, #000 35%, transparent 85%);
}

.hero::after {
    content: "";
    position: absolute;
    width: 470px;
    height: 470px;
    border: 1px solid rgba(255,206,0,.16);
    border-radius: 50%;
    left: -230px;
    top: 95px;
    z-index: -1;
    box-shadow:
        0 0 0 64px rgba(255,206,0,.018),
        0 0 0 128px rgba(255,206,0,.012);
}


.hero-photo {
    position: absolute;
    inset: 0;
    z-index: -4;
    background: url("../img/fundo_destaques.png") center 45% / cover no-repeat;
    transform: scale(1.015);
}

.hero-photo-shade {
    position: absolute;
    inset: 0;
    z-index: -3;
    background:
        linear-gradient(90deg,
            rgba(5,8,12,.96) 0%,
            rgba(5,8,12,.90) 25%,
            rgba(5,8,12,.61) 48%,
            rgba(5,8,12,.70) 72%,
            rgba(5,8,12,.93) 100%),
        linear-gradient(180deg,
            rgba(5,8,12,.14) 0%,
            rgba(5,8,12,.04) 45%,
            rgba(5,8,12,.58) 100%);
}

.hero-badge {
    margin-top: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d9dde2;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.hero-badge span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 5px rgba(255,31,45,.13);
}

.hero-grid {
    min-height: 650px;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 66px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.eyebrow, .section-kicker {
    color: var(--yellow);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .18em;
}

.hero-copy h1 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(52px, 5.3vw, 82px);
    line-height: .94;
    letter-spacing: -.055em;
    text-transform: uppercase;
    margin: 18px 0 24px;
    max-width: 590px;
    text-shadow: 0 8px 28px rgba(0,0,0,.38);
}

.hero-copy h1 span { color: var(--yellow); }

.hero-copy p {
    margin: 0;
    color: #d8dbe0;
    font-size: 19px;
    line-height: 1.65;
    max-width: 500px;
    text-shadow: 0 3px 18px rgba(0,0,0,.45);
}

.hero-mobile-actions { display: none; }

.live-panel {
    background: linear-gradient(145deg, rgba(7,10,15,.84), rgba(13,18,25,.73));
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 28px;
    padding: 22px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.live-options {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 20px;
    align-items: stretch;
}

.live-divider { background: rgba(255,255,255,.18); }

.live-card {
    min-height: 282px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    padding: 9px 10px;
}

.live-label {
    display: block;
    color: var(--yellow);
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
}

.live-card small { display: block; color: #d9dde2; margin-top: 6px; }

.live-icon {
    width: 104px;
    height: 104px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 2px solid var(--yellow);
    color: var(--yellow);
    font-size: 45px;
    position: relative;
}

.live-icon::before {
    content: "";
    position: absolute;
    inset: -9px;
    border: 1px solid rgba(255,206,0,.22);
    border-radius: 50%;
}

.live-icon-video {
    border-color: var(--red);
    color: white;
    background: rgba(255,31,45,.13);
}

.live-icon-video::before { border-color: rgba(255,31,45,.25); }

.on-air {
    margin-top: 18px;
    min-height: 116px;
    border-radius: 20px;
    background: linear-gradient(120deg, #090d13, #131a23);
    border: 1px solid rgba(255,255,255,.1);
    display: grid;
    grid-template-columns: 1fr 88px auto;
    align-items: center;
    gap: 18px;
    padding: 15px 18px 15px 22px;
}

.on-air-copy { min-width: 0; }

.tag {
    display: inline-flex;
    background: var(--yellow);
    color: #111;
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.on-air-copy strong {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 23px;
    text-transform: uppercase;
    margin: 7px 0 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.on-air-copy span { color: #d7dbe0; font-size: 13px; }
.on-air-copy small { color: var(--yellow); font-weight: 800; display: block; margin-top: 4px; }

.on-air-photo {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--yellow);
    background: #151b22;
}

.on-air-photo img { width: 100%; height: 100%; object-fit: cover; }
.on-air-logo img { object-fit: contain; padding: 9px; }

.on-air-link {
    color: var(--yellow);
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 900;
    white-space: nowrap;
}

.channels {
    background: var(--light);
    color: var(--ink);
    padding: 30px 0;
}

.channel-grid {
    display: grid;
    grid-template-columns: .86fr 1fr 1fr 1fr;
    gap: 18px;
    align-items: stretch;
}

.channel-title {
    border-right: 1px solid #d8d8d1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 24px;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    font-size: 24px;
    line-height: 1.08;
}

.channel-title span { color: #d6a800; margin-top: 5px; }

.channel-card {
    border: 0;
    background: transparent;
    color: inherit;
    text-align: left;
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 16px;
    align-items: start;
    padding: 12px;
    border-radius: 16px;
    transition: background .2s ease, transform .2s ease;
}

.channel-card:hover { background: white; transform: translateY(-2px); }

.channel-card > i { font-size: 38px; margin-top: 2px; }
.channel-instagram { color: #d5298a; }
.channel-youtube { color: #f10d1d; }
.channel-radio { color: #151515; }

.channel-card strong { display: block; text-transform: uppercase; font-size: 13px; }
.channel-card p { font-size: 12px; line-height: 1.5; margin: 5px 0 7px; color: #474b51; }
.channel-card span { font-size: 10px; font-weight: 800; color: #b68e00; }

.channel-button { width: 100%; cursor: pointer; }

.sports {
    position: relative;
    overflow: hidden;
    min-height: 290px;
    background:
        radial-gradient(circle at 82% 28%, rgba(255,206,0,.16), transparent 20%),
        linear-gradient(120deg, #07111b 0%, #0b1723 45%, #111821 100%);
}

.sports::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .09;
    background-image: radial-gradient(circle, #fff 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: linear-gradient(to right, transparent 0%, black 55%, black 100%);
}

.sports-grid {
    min-height: 290px;
    display: grid;
    grid-template-columns: .8fr 1fr .8fr;
    gap: 44px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.sports h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 50px;
    line-height: .96;
    margin: 10px 0 0;
    text-transform: uppercase;
    letter-spacing: -.045em;
}

.sports h2 span { color: var(--yellow); }

.sports-copy p {
    color: #d8dde3;
    font-size: 16px;
    line-height: 1.65;
    max-width: 400px;
    margin: 0 0 24px;
}

.sports-art {
    justify-self: end;
    width: 220px;
    height: 220px;
    display: grid;
    place-items: center;
    position: relative;
}

.sports-art::before,
.sports-art::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,206,0,.35);
}

.sports-art::before { inset: 0; }
.sports-art::after { inset: 28px; }

.sport-ball {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--yellow);
    color: #0a0e14;
    font-family: "Montserrat", sans-serif;
    font-size: 36px;
    font-weight: 900;
    display: grid;
    place-items: center;
    transform: rotate(-10deg);
    box-shadow: 0 0 70px rgba(255,206,0,.18);
}

.section-light { background: #f7f7f4; color: var(--ink); }

.schedule, .moments { padding: 64px 0; }

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 28px;
}

.section-kicker.dark { color: #a57e00; }

.section-head h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 35px;
    text-transform: uppercase;
    letter-spacing: -.03em;
    margin: 7px 0 0;
}

.section-head > a {
    color: #a98000;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 900;
}

.schedule-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 22px;
}

.current-show {
    min-height: 205px;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    padding: 24px;
    background: linear-gradient(130deg, #e4ddcd, #f4f1e9);
}

.current-show h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 25px;
    text-transform: uppercase;
    margin: 12px 0 4px;
    max-width: 230px;
}

.current-show p { margin: 0; font-size: 13px; }
.current-show > strong { display: block; font-size: 12px; margin-top: 10px; }

.current-show > img {
    position: absolute;
    width: 150px;
    height: 205px;
    object-fit: cover;
    right: 0;
    bottom: 0;
    mask-image: linear-gradient(to left, black 70%, transparent 100%);
}

.next-shows {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid #dddcd7;
    border-radius: 22px;
    overflow: hidden;
    background: white;
}

.next-shows article {
    padding: 29px 20px;
    border-right: 1px solid #e4e3de;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.next-shows article:last-child { border-right: 0; }

.next-shows time { font-size: 13px; font-weight: 600; color: #54595f; }
.next-shows strong { text-transform: uppercase; font-size: 14px; margin: 9px 0 5px; }
.next-shows span { color: #6b7076; font-size: 11px; line-height: 1.45; }

.team {
    background: linear-gradient(120deg, #09101a, #07111b);
    padding: 58px 0 64px;
}

.section-head-dark h2 { color: white; }
.section-head-dark > a { color: var(--yellow); }

.team-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.team-card { text-align: center; }

.team-photo {
    width: 118px;
    height: 118px;
    margin: 0 auto 14px;
    border-radius: 50%;
    overflow: hidden;
    background: #131b25;
    border: 2px solid rgba(255,206,0,.28);
}

.team-photo img { width: 100%; height: 100%; object-fit: cover; }

.team-card strong {
    display: block;
    font-size: 13px;
    line-height: 1.35;
}

.team-card span {
    color: #aeb5bd;
    font-size: 11px;
    display: block;
    margin-top: 4px;
}

.moments-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 230px;
    gap: 14px;
}

.moment-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: #ddd;
}

.moment-card:nth-child(1) { grid-column: span 4; }
.moment-card:nth-child(2) { grid-column: span 3; }
.moment-card:nth-child(3) { grid-column: span 2; }
.moment-card:nth-child(4) { grid-column: span 3; }
.moment-card:nth-child(5) { grid-column: span 5; }

.moment-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.moment-card:hover img { transform: scale(1.035); }

.moment-card::after {
    content: "";
    position: absolute;
    inset: 45% 0 0;
    background: linear-gradient(transparent, rgba(0,0,0,.78));
}

.moment-card span {
    position: absolute;
    z-index: 2;
    left: 16px;
    right: 16px;
    bottom: 14px;
    color: white;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.35;
}

.history {
    background:
        linear-gradient(90deg, rgba(255,206,0,.04), transparent 26%),
        #080b10;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.history-grid {
    min-height: 215px;
    display: grid;
    grid-template-columns: 190px 180px 1fr 170px;
    gap: 34px;
    align-items: center;
}

.history-year span {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 900;
}

.history-year strong {
    color: var(--yellow);


    font-family: "Montserrat", sans-serif;
    font-size: 52px;
    line-height: 1;
}

.history-wave {
    color: var(--yellow);
    font-size: 80px;
    text-align: center;
    opacity: .85;
}

.history-copy p {
    margin: 0;
    color: #d0d5da;
    font-size: 14px;
    line-height: 1.7;
}

.history-logo { width: 150px; justify-self: end; }

.site-footer {
    background: #05080c;
    padding: 52px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr 1.25fr .75fr;
    gap: 48px;
}

.footer-brand img { width: 180px; }

.footer-grid > div > strong {
    color: var(--yellow);
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-grid a,
.footer-grid p {
    display: block;
    color: #ced3d9;
    font-size: 12px;
    line-height: 1.7;
    margin: 0 0 5px;
}

.footer-grid a i,
.footer-grid p i { color: white; margin-right: 8px; }

.socials { display: flex; gap: 10px; }

.socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #111821;
    font-size: 17px;
    transition: transform .2s ease, color .2s ease;
}

.socials a:hover { transform: translateY(-2px); color: var(--yellow); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 36px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.08);
    color: #7f8790;
    font-size: 10px;
}

.footer-bottom strong { color: #aeb5bd; }

/* Player */
.player-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .22s ease, visibility .22s ease;
}

.player-modal.open { opacity: 1; visibility: visible; }

.player-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(1,3,6,.82);
    backdrop-filter: blur(10px);
}

.player-dialog {
    width: min(calc(100% - 32px), 780px);
    max-height: calc(100vh - 40px);
    overflow: auto;
    position: relative;
    z-index: 2;
    background: #0b1017;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 26px;
    box-shadow: 0 32px 90px rgba(0,0,0,.55);
}

.player-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
    color: white;
    display: grid;
    place-items: center;
    z-index: 3;
}

.player-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px 70px 18px 24px;
}

.player-header img { width: 74px; height: 64px; object-fit: contain; }

.live-dot {
    color: #bec5cd;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: .12em;
    font-weight: 800;
}

.live-dot i {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
    margin-right: 6px;
    box-shadow: 0 0 0 5px rgba(255,31,45,.12);
}

.player-header h2 {
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    margin: 4px 0 0;
    font-size: 20px;
}

.player-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.player-tab {
    border: 0;
    background: transparent;
    color: #9fa7b0;
    padding: 16px;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 12px;
}

.player-tab.active { color: var(--yellow); background: rgba(255,206,0,.05); }

.player-content { padding: 24px; }
.player-pane { display: none; }
.player-pane.active { display: block; }

.player-pane[data-player-pane="audio"] {
    text-align: center;
    padding: 18px 0 8px;
}

.audio-visual {
    width: 126px;
    height: 126px;
    margin: 0 auto 20px;
    border-radius: 50%;
    border: 2px solid var(--yellow);
    display: grid;
    place-items: center;
    color: var(--yellow);
    font-size: 58px;
    box-shadow: 0 0 0 11px rgba(255,206,0,.03), 0 0 50px rgba(255,206,0,.08);
}

.player-pane[data-player-pane="audio"] > strong {
    display: block;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    font-size: 23px;
}

.player-pane[data-player-pane="audio"] > span {
    display: block;
    color: #aeb5bd;
    margin: 4px 0 22px;
}

audio { width: min(100%, 520px); }

.video-frame {
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
}

.video-frame iframe { width: 100%; height: 100%; border: 0; }

.empty-state {
    grid-column: 1 / -1;
    padding: 30px;
    text-align: center;
    color: #aeb5bd;
    border: 1px dashed rgba(255,255,255,.16);
    border-radius: 18px;
}

.empty-state.light {
    color: #646970;
    border-color: #d4d4ce;
}

.nav-toggle { display: none; }

@media (max-width: 1040px) {
    .header-inner { grid-template-columns: 155px 1fr auto; gap: 20px; }
    .main-nav { gap: 20px; }
    .main-nav a { font-size: 11px; }
    .btn-whatsapp span { display: none; }

    .hero-grid { grid-template-columns: .82fr 1.18fr; gap: 34px; }
    .hero-copy h1 { font-size: clamp(46px, 5vw, 64px); }

    .channel-grid { grid-template-columns: 1fr 1fr 1fr; }
    .channel-title { grid-column: 1 / -1; border-right: 0; border-bottom: 1px solid #ddd; padding: 0 0 18px; }

    .team-grid { grid-template-columns: repeat(3, 1fr); row-gap: 34px; }

    .history-grid { grid-template-columns: 160px 120px 1fr; }
    .history-logo { display: none; }

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


@media (max-width: 820px) {
    .hero-photo {
        background-position: 64% 46%;
    }

    .hero-photo-shade {
        background:
            linear-gradient(180deg,
                rgba(5,8,12,.90) 0%,
                rgba(5,8,12,.70) 37%,
                rgba(5,8,12,.91) 100%),
            linear-gradient(90deg,
                rgba(5,8,12,.78),
                rgba(5,8,12,.36));
    }
}

@media (max-width: 820px) {
    .shell { width: min(calc(100% - 32px), var(--shell)); }

    .header-inner {
        min-height: 78px;
        grid-template-columns: 1fr auto;
    }

    .brand img { width: 120px; max-height: 66px; }

    .nav-toggle {
        display: flex;
        width: 46px;
        height: 46px;
        border: 0;
        border-radius: 50%;
        background: rgba(255,255,255,.06);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
    }

    .nav-toggle span { width: 19px; height: 2px; background: white; border-radius: 999px; }

    .main-nav {
        position: absolute;
        left: 16px;
        right: 16px;
        top: 70px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #0c1118;
        border: 1px solid rgba(255,255,255,.1);
        border-radius: 18px;
        padding: 10px;
        box-shadow: var(--shadow);
    }

    .main-nav.open { display: flex; }

    .main-nav a {
        padding: 15px 14px;
        border-radius: 10px;
    }

    .main-nav a::after { display: none; }
    .main-nav a:hover { background: rgba(255,255,255,.05); }

    .btn-whatsapp { display: none; }

    .hero { min-height: auto; }
    .hero-grid {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 62px 0 42px;
    }

    .hero-copy { text-align: center; }
    .hero-copy h1 { max-width: 650px; margin-left: auto; margin-right: auto; }
    .hero-copy p { margin-left: auto; margin-right: auto; }

    .live-panel { padding: 16px; }
    .live-options { gap: 12px; }
    .live-card { min-height: 255px; }

    .on-air { grid-template-columns: 1fr 72px; }
    .on-air-link { display: none; }
    .on-air-photo { width: 66px; height: 66px; }

    .sports-grid { grid-template-columns: 1fr 1fr; padding: 54px 0; }
    .sports-art { display: none; }

    .schedule-grid { grid-template-columns: 1fr; }
    .next-shows { grid-template-columns: repeat(2, 1fr); }
    .next-shows article:nth-child(2) { border-right: 0; }
    .next-shows article:nth-child(-n+2) { border-bottom: 1px solid #e4e3de; }

    .moments-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
    .moment-card:nth-child(n) { grid-column: span 1; }
    .moment-card:nth-child(1) { grid-column: 1 / -1; }

    .history-grid { grid-template-columns: 150px 1fr; gap: 20px; padding: 40px 0; }
    .history-wave { display: none; }

    .footer-grid { gap: 34px; }
}


@media (max-width: 560px) {
    .hero-photo {
        background-position: 70% 45%;
    }

    .hero-photo-shade {
        background:
            linear-gradient(180deg,
                rgba(5,8,12,.92) 0%,
                rgba(5,8,12,.73) 35%,
                rgba(5,8,12,.93) 100%);
    }

    .hero-badge {
        justify-content: center;
    }
}

@media (max-width: 560px) {
    .hero-grid { padding-top: 46px; }
    .hero-copy h1 { font-size: 48px; }
    .hero-copy p { font-size: 16px; }

    .live-panel { background: transparent; padding: 0; border: 0; box-shadow: none; }
    .live-options {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .live-divider { display: none; }
    .live-card {
        min-height: auto;
        border-radius: 18px;
        border: 1px solid rgba(255,255,255,.1);
        background: rgba(255,255,255,.035);
        padding: 18px 12px;
        gap: 14px;
    }
    .live-label { font-size: 14px; }
    .live-icon { width: 72px; height: 72px; font-size: 30px; }
    .live-card .btn { width: 100%; font-size: 10px; padding: 0 10px; }

    .on-air {
        margin-top: 12px;
        min-height: 98px;
        padding: 13px 14px;
        gap: 10px;
    }
    .on-air-copy strong { font-size: 17px; }
    .on-air-copy span { font-size: 11px; }

    .channel-grid { grid-template-columns: 1fr; }
    .channel-card { background: white; }

    .sports-grid { grid-template-columns: 1fr; gap: 24px; }
    .sports h2 { font-size: 42px; }

    .section-head { align-items: flex-start; flex-direction: column; gap: 10px; }
    .section-head h2 { font-size: 29px; }

    .next-shows { grid-template-columns: 1fr; }
    .next-shows article { border-right: 0; border-bottom: 1px solid #e4e3de; }
    .next-shows article:last-child { border-bottom: 0; }

    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .team-photo { width: 104px; height: 104px; }

    .moments-grid { grid-template-columns: 1fr; }
    .moment-card:nth-child(n) { grid-column: 1; }

    .history-grid { grid-template-columns: 1fr; }
    .history-copy { border-top: 1px solid rgba(255,255,255,.08); padding-top: 18px; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; }

    .player-content { padding: 18px; }
}


/* =========================
   V3 — POLIMENTO FINAL
   ========================= */

/* Hero: mais respiro para a fotografia e painel um pouco mais contido */
@media (min-width: 1041px) {
    .hero-grid {
        grid-template-columns: 1fr 1.04fr;
        gap: 72px;
    }

    .live-panel {
        max-width: 650px;
        width: 100%;
        justify-self: end;
        transform: scale(.97);
        transform-origin: right center;
    }
}

/* Canais: cards com maior hierarquia visual */
.channels {
    padding: 38px 0;
}

.channel-grid {
    gap: 20px;
}

.channel-card {
    position: relative;
    min-height: 138px;
    padding: 20px 18px;
    background: rgba(255,255,255,.72);
    border: 1px solid #e5e3dc;
    box-shadow: 0 8px 28px rgba(15,18,22,.035);
    align-items: center;
}

.channel-card::after {
    content: "→";
    position: absolute;
    right: 17px;
    bottom: 14px;
    color: #b68e00;
    font-weight: 900;
    opacity: 0;
    transform: translateX(-5px);
    transition: opacity .2s ease, transform .2s ease;
}

.channel-card:hover {
    background: #fff;
    border-color: #d9d6cd;
    box-shadow: 0 14px 36px rgba(15,18,22,.08);
}

.channel-card:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.channel-card > i {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 5px 18px rgba(0,0,0,.06);
    font-size: 31px;
}

.channel-card strong {
    font-size: 14px;
}

.channel-card p {
    min-height: 36px;
    margin-top: 7px;
}

.channel-card span {
    display: inline-block;
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: .025em;
}

.channel-title {
    padding-right: 28px;
}

/* Programação: os próximos programas ocupam sempre toda a largura disponível */
.next-shows {
    display: flex;
}

.next-shows article {
    flex: 1 1 0;
    min-width: 0;
}

/* Equipe: pequenos ajustes de acabamento */
.team {
    padding-top: 64px;
    padding-bottom: 70px;
}

.team-grid {
    align-items: start;
}

.team-card {
    padding: 4px 6px;
}

.team-photo {
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.team-card:hover .team-photo {
    transform: translateY(-4px);
    border-color: var(--yellow);
    box-shadow: 0 12px 32px rgba(0,0,0,.24);
}

/* Tablet/mobile */
@media (max-width: 820px) {
    .channel-grid {
        grid-template-columns: 1fr;
    }

    .channel-title {
        grid-column: auto;
        padding: 0 0 18px;
        border-right: 0;
        border-bottom: 1px solid #ddd;
    }

    .channel-card {
        min-height: 116px;
    }

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

@media (max-width: 560px) {
    .channels {
        padding: 30px 0;
    }

    .channel-card {
        min-height: auto;
        padding: 17px 15px;
    }

    .channel-card p {
        min-height: 0;
    }

    .next-shows {
        grid-template-columns: 1fr;
    }

    .team {
        padding-top: 52px;
        padding-bottom: 58px;
    }
}


/* =========================
   V4 — NOTÍCIAS DO INSTAGRAM
   ========================= */

.instagram-news {
    background: #f7f7f4;
    color: var(--ink);
    padding: 54px 0 58px;
    border-bottom: 1px solid #e5e4de;
}

.news-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 25px;
}

.news-header h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -.035em;
    margin: 7px 0 0;
}

.news-header > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #a98000;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.news-card {
    min-width: 0;
    overflow: hidden;
    background: white;
    border: 1px solid #e1e0da;
    border-radius: 18px;
    box-shadow: 0 10px 34px rgba(15,18,22,.055);
    display: flex;
    flex-direction: column;
    transition: transform .22s ease, box-shadow .22s ease;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(15,18,22,.10);
}

.news-image {
    position: relative;
    display: block;
    aspect-ratio: 1.28 / 1;
    overflow: hidden;
    background: #10151b;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

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

.news-video-icon {
    position: absolute;
    right: 13px;
    top: 13px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(5,8,12,.82);
    border: 1px solid rgba(255,255,255,.24);
    color: white;
    font-size: 20px;
    backdrop-filter: blur(7px);
}

.news-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 18px 18px 17px;
}

.news-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 11px;
}

.news-category {
    color: #ad8500;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.news-meta time {
    color: #858a90;
    font-size: 10px;
    font-weight: 600;
}

.news-card h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: -.012em;
    margin: 0 0 10px;
}

.news-card h3 a {
    transition: color .18s ease;
}

.news-card h3 a:hover {
    color: #a98000;
}

.news-card p {
    color: #686d72;
    font-size: 11.5px;
    line-height: 1.55;
    margin: 0 0 17px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #11161c;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.news-link i {
    color: #b68e00;
}

/* A faixa de redes vem imediatamente depois das notícias */
.instagram-news + .channels {
    border-top: 0;
}

@media (max-width: 980px) {
    .news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .instagram-news {
        padding: 42px 0 44px;
    }

    .news-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .news-header h2 {
        font-size: 28px;
    }

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

    .news-image {
        aspect-ratio: 16 / 10;
    }

    .news-card h3 {
        font-size: 16px;
    }
}


/* =========================
   V5 — AJUSTE DINÂMICO DA GRADE DE NOTÍCIAS
   ========================= */

/* Até quatro cards, sempre com composição equilibrada */
.news-grid {
    justify-content: center;
}

.news-grid.news-count-1 {
    grid-template-columns: minmax(0, 360px);
}

.news-grid.news-count-2 {
    grid-template-columns: repeat(2, minmax(0, 360px));
}

.news-grid.news-count-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news-grid.news-count-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Um único card ganha um pouco mais de presença sem virar banner */
.news-grid.news-count-1 .news-card {
    width: 100%;
}

.news-grid.news-count-1 .news-image {
    aspect-ratio: 1.28 / 1;
}

/* Dois cards ficam centralizados e proporcionais */
.news-grid.news-count-2 .news-card {
    width: 100%;
}

/* Tablet */
@media (max-width: 980px) {
    .news-grid.news-count-1,
    .news-grid.news-count-2,
    .news-grid.news-count-3,
    .news-grid.news-count-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .news-grid.news-count-1 {
        grid-template-columns: minmax(0, 420px);
    }
}

/* Mobile */
@media (max-width: 560px) {
    .news-grid.news-count-1,
    .news-grid.news-count-2,
    .news-grid.news-count-3,
    .news-grid.news-count-4 {
        grid-template-columns: 1fr;
    }
}
/* =========================================================
   V6 — NOVO VISUAL DOS CARDS DE NOTÍCIAS
   Imagem > título > resumo > data > botão Instagram
   ========================================================= */

.instagram-news {
    background: #f7f7f4;
    color: var(--ink);
    padding: 54px 0 62px;
}

.news-grid {
    gap: 22px;
    align-items: stretch;
}

/* CARD */
.news-card {
    min-width: 0;
    height: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e4e3de;
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(15, 18, 22, .07);
    display: flex;
    flex-direction: column;
    transition:
        transform .22s ease,
        box-shadow .22s ease;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 38px rgba(15, 18, 22, .12);
}

/* IMAGEM */
.news-image {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #10151b;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

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

/* PLAY PARA REELS/VÍDEOS */
.news-video-icon {
    position: absolute;
    top: 14px;
    right: 14px;

    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 50%;
    background: rgba(8, 11, 16, .82);
    border: 1px solid rgba(255, 255, 255, .28);

    color: #fff;
    font-size: 22px;

    backdrop-filter: blur(7px);
}

/* CONTEÚDO */
.news-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 21px 20px 20px;
}

/* TÍTULO */
.news-card h3 {
    margin: 0 0 11px;

    font-family: "Montserrat", sans-serif;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: -.018em;
    text-transform: none;

    color: #161a20;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card h3 a {
    color: inherit;
    transition: color .18s ease;
}

.news-card h3 a:hover {
    color: #a98000;
}

/* RESUMO */
.news-card .news-excerpt {
    margin: 0 0 18px;

    color: #666b71;
    font-size: 12.5px;
    line-height: 1.58;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* DATA */
.news-date {
    display: flex;
    align-items: center;
    gap: 7px;

    margin-top: auto;
    margin-bottom: 16px;

    padding-top: 15px;
    border-top: 1px solid #eeeeea;

    color: #85898e;
    font-size: 11px;
    font-weight: 600;
}

.news-date i {
    color: #a98000;
    font-size: 13px;
}

/* BOTÃO INSTAGRAM */
.news-instagram-button {
    width: 100%;
    min-height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 0 16px;

    border-radius: 11px;

    background:
        linear-gradient(
            100deg,
            #833ab4 0%,
            #c13584 28%,
            #e1306c 52%,
            #f56040 76%,
            #fcaf45 100%
        );

    color: #fff !important;

    font-size: 11px;
    font-weight: 900;
    letter-spacing: .025em;
    text-transform: uppercase;

    box-shadow: 0 7px 20px rgba(193, 53, 132, .20);

    transition:
        transform .18s ease,
        filter .18s ease,
        box-shadow .18s ease;
}

.news-instagram-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.04);
    box-shadow: 0 10px 25px rgba(193, 53, 132, .28);
}

.news-instagram-button .bi-instagram {
    font-size: 17px;
}

.news-instagram-button .bi-arrow-right {
    margin-left: auto;
    font-size: 14px;
}

/* MANTÉM A GRADE DINÂMICA */
.news-grid.news-count-1 {
    grid-template-columns: minmax(0, 360px);
}

.news-grid.news-count-2 {
    grid-template-columns: repeat(2, minmax(0, 360px));
}

.news-grid.news-count-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news-grid.news-count-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* TABLET */
@media (max-width: 980px) {

    .news-grid.news-count-1 {
        grid-template-columns: minmax(0, 420px);
    }

    .news-grid.news-count-2,
    .news-grid.news-count-3,
    .news-grid.news-count-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* CELULAR */
@media (max-width: 560px) {

    .instagram-news {
        padding: 42px 0 46px;
    }

    .news-grid.news-count-1,
    .news-grid.news-count-2,
    .news-grid.news-count-3,
    .news-grid.news-count-4 {
        grid-template-columns: 1fr;
    }

    .news-card h3 {
        font-size: 16px;
    }

    .news-card .news-excerpt {
        font-size: 12px;
    }

    .news-instagram-button {
        min-height: 48px;
    }
}
/* Ajuste de enquadramento das imagens das notícias */
.news-image img {
    object-position: center center;
}
/* Tratamento específico para Reels/vídeos */
.news-image-video {
    background: #11161c;
}

.news-image-video img {
    object-fit: contain;
    object-position: center center;
}

/* Imagens normais continuam preenchendo o card */
.news-image:not(.news-image-video) img {
    object-fit: cover;
    object-position: center center;
}
/* =========================================================
   AJUSTE HERO — MAIS COMPACTO NO DESKTOP
   ========================================================= */

@media (min-width: 1041px) {

    .hero {
        min-height: 460px;
    }

    .hero-grid {
        min-height: 460px;
        gap: 45px;
    }

    .hero-copy h1 {
        font-size: clamp(44px, 4vw, 62px);
        margin: 10px 0 14px;
    }

    .hero-copy p {
        font-size: 16px;
        line-height: 1.4;
    }

    .live-panel {
        padding: 14px;
        transform: scale(.86);
        transform-origin: right center;
    }
}

/* =========================================================
   AJUSTE FINAL HERO — PLAYER COMPACTO E PROPORCIONAL
   ========================================================= */
@media (min-width: 1041px) {

    .hero {
        min-height: 460px;
    }

    .hero-grid {
        min-height: 460px;
        gap: 45px;
        align-items: center;
    }

    .hero-copy h1 {
        font-size: clamp(44px, 4vw, 62px);
        margin: 10px 0 14px;
    }

    .hero-copy p {
        font-size: 16px;
        line-height: 1.4;
    }

    .live-panel {
        max-width: 650px;
        width: 100%;
        justify-self: end;
        padding: 12px;
        transform: scale(.78);
        transform-origin: center center;
    }

    .live-options {
        gap: 14px;
    }

    .live-card {
        min-height: 190px;
        padding: 18px 14px;
    }

    .live-label {
        font-size: 16px;
    }

    .live-card small {
        font-size: 12px;
        margin-top: 4px;
    }

    .live-icon {
        width: 70px;
        height: 70px;
        font-size: 29px;
    }

    .live-icon::before {
        inset: -7px;
    }

    .live-card .btn {
        min-height: 42px;
        padding: 0 18px;
        font-size: 11px;
    }

    .on-air {
        min-height: 82px;
        margin-top: 10px;
        padding: 10px 14px;
        gap: 12px;
        grid-template-columns: 1fr 62px auto;
    }

    .tag {
        padding: 4px 9px;
        font-size: 9px;
    }

    .on-air-copy strong {
        font-size: 17px;
        margin: 5px 0 1px;
    }

    .on-air-copy span {
        font-size: 11px;
    }

    .on-air-copy small {
        font-size: 11px;
        margin-top: 2px;
    }

    .on-air-photo {
        width: 55px;
        height: 55px;
    }

    .on-air-link {
        font-size: 10px;
    }
}

/* =========================================================
   HERO V2 — PAINEL AO VIVO REFORMULADO SEM SCALE
   ========================================================= */
@media (min-width: 1041px) {

    .hero {
        min-height: 460px;
    }

    .hero-grid {
        min-height: 460px;
        grid-template-columns: 1fr 1fr;
        gap: 44px;
        align-items: center;
    }

    .live-panel {
        max-width: 560px;
        width: 100%;
        justify-self: end;
        padding: 16px;
        transform: none !important;
        border-radius: 24px;
    }

    .live-options {
        grid-template-columns: 1fr 1px 1fr;
        gap: 14px;
        align-items: stretch;
    }

    .live-card {
        min-height: 150px;
        padding: 10px 12px;
        justify-content: center;
        gap: 9px;
    }

    .live-label {
        font-size: 16px;
        line-height: 1.1;
    }

    .live-card small {
        font-size: 11px;
        margin-top: 0;
    }

    .live-icon {
        width: 62px;
        height: 62px;
        font-size: 26px;
        margin: 4px 0 2px;
    }

    .live-icon::before {
        inset: -6px;
    }

    .live-card .btn {
        min-height: 38px;
        padding: 0 16px;
        font-size: 10px;
    }

    .on-air {
        min-height: 78px;
        margin-top: 12px;
        padding: 10px 12px 10px 14px;
        grid-template-columns: 1fr 58px auto;
        gap: 12px;
        border-radius: 16px;
    }

    .tag {
        padding: 4px 8px;
        font-size: 8px;
    }

    .on-air-copy strong {
        font-size: 16px;
        margin: 4px 0 1px;
    }

    .on-air-copy span {
        font-size: 11px;
    }

    .on-air-copy small {
        font-size: 10px;
        margin-top: 1px;
    }

    .on-air-photo {
        width: 52px;
        height: 52px;
    }

    .on-air-link {
        font-size: 9px;
    }
}

/* =========================================================
   HERO V3 — "NO AR" EM LINHA ÚNICA, SEM FOTO/SEM LINK
   ========================================================= */
@media (min-width: 1041px) {

    .hero {
        min-height: 430px;
    }

    .hero-grid {
        min-height: 430px;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .live-panel {
        max-width: 540px;
        padding: 14px;
        transform: none !important;
    }

    .live-card {
        min-height: 138px;
        padding: 8px 10px;
        gap: 7px;
    }

    .live-icon {
        width: 58px;
        height: 58px;
        font-size: 24px;
    }

    .live-card .btn {
        min-height: 36px;
        padding: 0 15px;
        font-size: 9px;
    }

    .on-air {
        min-height: 48px;
        margin-top: 10px;
        padding: 8px 12px;
        display: block;
        border-radius: 14px;
    }

    .on-air-copy {
        display: flex;
        align-items: center;
        gap: 7px;
        min-width: 0;
        white-space: nowrap;
        overflow: hidden;
    }

    .tag {
        flex: 0 0 auto;
        padding: 4px 8px;
        font-size: 8px;
    }

    .on-air-copy strong,
    .on-air-copy span,
    .on-air-copy small {
        display: inline;
        margin: 0;
        line-height: 1;
        white-space: nowrap;
    }

    .on-air-copy strong {
        flex: 0 1 auto;
        min-width: 0;
        font-size: 14px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .on-air-copy span {
        flex: 0 1 auto;
        color: #d7dbe0;
        font-size: 10px;
    }

    .on-air-copy span::before {
        content: "com ";
        color: #9fa7b0;
    }

    .on-air-copy small {
        flex: 0 0 auto;
        color: var(--yellow);
        font-size: 10px;
        font-weight: 800;
    }

    .on-air-copy small::before {
        content: "— ";
        color: #7f8790;
    }

    .on-air-photo,
    .on-air-link {
        display: none !important;
    }
}

/* =========================================================
   HERO V4 — CORREÇÃO "NO AR AGORA"
   ========================================================= */
@media (min-width: 1041px) {

    .on-air-copy .tag::before,
    .on-air-copy .tag::after {
        content: none !important;
    }

    .on-air-copy .tag {
        color: #111 !important;
        background: var(--yellow) !important;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: .03em;
    }

    .on-air-copy .tag,
    .on-air-copy .tag * {
        color: #111 !important;
    }

    .on-air-copy {
        display: flex;
        align-items: center;
        gap: 7px;
        white-space: nowrap;
        overflow: hidden;
    }
} 
/* HERO V5 — redução adicional da altura */
@media (min-width: 1041px) {
    .hero {
        min-height: auto !important;
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }
}

/* =========================================================
   V11 — EDUCATORA EM TODO LUGAR
   ========================================================= */
.listen-everywhere {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 34%, rgba(255,206,0,.15), transparent 22%),
        linear-gradient(120deg, #07111b 0%, #0b1723 48%, #111821 100%);
    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.listen-everywhere::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .08;
    background-image: radial-gradient(circle, #fff 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: linear-gradient(to right, transparent 0%, black 52%, black 100%);
    pointer-events: none;
}

.listen-everywhere-grid {
    min-height: 260px;
    display: grid;
    grid-template-columns: 1fr 1.12fr .92fr;
    gap: 44px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 34px 0;
}

.listen-everywhere-title .section-kicker {
    display: block;
    margin-bottom: 8px;
}

.listen-everywhere-title h2 {
    margin: 0;
    max-width: 330px;
    font-family: "Montserrat", sans-serif;
    font-size: 42px;
    line-height: .98;
    text-transform: uppercase;
    letter-spacing: -.04em;
}

.listen-everywhere-title h2 span { color: var(--yellow); }

.listen-everywhere-copy p {
    margin: 0 0 20px;
    max-width: 470px;
    color: #d8dde3;
    font-size: 15px;
    line-height: 1.6;
}

.app-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.store-button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0 16px;
    border-radius: 999px;
    background: var(--yellow);
    color: #101318;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .02em;
    transition: transform .2s ease, filter .2s ease;
}

.store-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.04);
}

.store-button i { font-size: 17px; }

.alexa-card {
    justify-self: end;
    width: 100%;
    max-width: 320px;
    padding: 22px 24px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.11);
    background: rgba(8,12,18,.58);
    box-shadow: 0 18px 46px rgba(0,0,0,.18);
    backdrop-filter: blur(12px);
}

.alexa-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 12px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 2px solid var(--yellow);
    color: var(--yellow);
    font-size: 24px;
}

.alexa-card strong {
    display: block;
    color: var(--yellow);
    font-family: "Montserrat", sans-serif;
    font-size: 17px;
    text-transform: uppercase;
    margin-bottom: 7px;
}

.alexa-card p {
    margin: 0;
    color: #eef0f2;
    font-size: 13px;
    line-height: 1.5;
}

.alexa-command {
    display: block;
    margin-top: 8px;
    color: #fff;
    font-weight: 800;
}

@media (max-width: 980px) {
    .listen-everywhere-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .alexa-card {
        grid-column: 1 / -1;
        justify-self: stretch;
        max-width: none;
    }
}

@media (max-width: 560px) {
    .listen-everywhere-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 36px 0;
    }

    .listen-everywhere-title h2 { font-size: 34px; }
    .listen-everywhere-copy p { font-size: 14px; }
    .app-buttons { flex-direction: column; }

    .store-button {
        width: 100%;
        justify-content: center;
    }

    .alexa-card {
        grid-column: auto;
        padding: 20px;
    }
}


/* V10 — HISTÓRIA EM FUNDO CLARO / GALERIA REMOVIDA */
.history.history-light {
    background: radial-gradient(circle at 12% 50%, rgba(255,206,0,.10), transparent 24%), #f7f7f4;
    color: var(--ink);
    border-top: 1px solid #e5e4de;
    border-bottom: 1px solid #e5e4de;
}
.history.history-light .history-year span { color: #11161c; }
.history.history-light .history-year strong,
.history.history-light .history-wave { color: #c99d00; }
.history.history-light .history-copy p { color: #4f555b; }
.history.history-light .history-logo { filter: drop-shadow(0 8px 18px rgba(15,18,22,.08)); }
@media (max-width: 560px) {
    .history.history-light .history-copy { border-top: 1px solid #deddd7; }
}

/* =========================
   V11 — AGENDA EDUCADORA
   ========================= */

.agenda {
    padding: 62px 0 66px;
    border-top: 1px solid #e5e4de;
}

.agenda-head {
    align-items: end;
}

.agenda-intro {
    max-width: 430px;
    color: #666c72;
    font-size: 13px;
    line-height: 1.55;
    text-align: right;
}

.agenda-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.agenda-card {
    min-width: 0;
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 16px;
    align-items: start;
    padding: 20px;
    background: #fff;
    border: 1px solid #e1e0da;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(15,18,22,.045);
    transition: transform .22s ease, box-shadow .22s ease;
}

.agenda-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(15,18,22,.085);
}

.agenda-date {
    width: 74px;
    min-height: 82px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: linear-gradient(145deg, var(--yellow), var(--yellow-2));
    color: #11161c;
}

.agenda-date strong {
    font-family: "Montserrat", sans-serif;
    font-size: 29px;
    line-height: 1;
}

.agenda-date span {
    margin-top: 5px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .10em;
}

.agenda-content {
    min-width: 0;
}

.agenda-type {
    display: inline-block;
    margin-bottom: 8px;
    color: #a57e00;
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.agenda-card h3 {
    margin: 0 0 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    line-height: 1.28;
    text-transform: uppercase;
}

.agenda-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #62686e;
    font-size: 10.5px;
    line-height: 1.4;
}

.agenda-meta i {
    color: #b68e00;
    margin-right: 4px;
}

.agenda-city {
    margin: 8px 0 0;
    color: #33383d;
    font-size: 10.5px;
    font-weight: 700;
}

.agenda-description {
    margin: 9px 0 0;
    color: #777c81;
    font-size: 10.5px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 980px) {
    .agenda-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .agenda-intro {
        text-align: left;
    }
}

@media (max-width: 560px) {
    .agenda {
        padding: 46px 0 50px;
    }

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

    .agenda-card {
        grid-template-columns: 64px 1fr;
        padding: 16px;
    }

    .agenda-date {
        width: 64px;
        min-height: 72px;
    }

    .agenda-date strong {
        font-size: 25px;
    }

    .agenda-intro {
        max-width: none;
    }
}



/* =========================================================
   V12 — NOTÍCIAS: IMAGEM PREENCHENDO TODO O CARD
   Remove as faixas pretas dos Reels/vídeos.
   ========================================================= */
.news-image-video {
    background: #10151b;
}

.news-image-video img,
.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    object-position: center center !important;
}


/* =========================================================
   TESTE V13 — NOTÍCIAS EM FORMATO 4:5
   Mais adequado para Reels e fotos verticais.
   ========================================================= */

.news-image,
.news-grid.news-count-1 .news-image {
    aspect-ratio: 4 / 5 !important;
    background: #10151b;
}

.news-image img,
.news-image-video img,
.news-image:not(.news-image-video) img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    object-position: center center !important;
}

/* Conteúdo um pouco mais compacto para equilibrar a nova altura da imagem */
.news-body {
    padding: 17px 17px 16px !important;
}

.news-card h3 {
    font-size: 15.5px !important;
    line-height: 1.28 !important;
    margin-bottom: 8px !important;
    -webkit-line-clamp: 3;
}

.news-card .news-excerpt {
    font-size: 11.5px !important;
    line-height: 1.48 !important;
    margin-bottom: 14px !important;
    -webkit-line-clamp: 3;
}

.news-date {
    margin-bottom: 13px !important;
    padding-top: 12px !important;
}

.news-instagram-button {
    min-height: 43px !important;
}

/* No celular, mantém o 4:5 para preservar o enquadramento do Instagram */
@media (max-width: 560px) {
    .news-image,
    .news-grid.news-count-1 .news-image {
        aspect-ratio: 4 / 5 !important;
    }
}


/* =========================================================
   V14 — NOTÍCIAS SEM BOTÃO "VEJA NO INSTAGRAM"
   ========================================================= */
.news-date {
    margin-bottom: 0 !important;
}

.news-body {
    padding-bottom: 18px !important;
}


/* =========================================================
   V15 — PÁGINAS INTERNAS
   ========================================================= */

.inner-hero {
    padding: 58px 0 54px;
    background:
        radial-gradient(circle at 78% 32%, rgba(255,206,0,.11), transparent 25%),
        linear-gradient(120deg, #07111b 0%, #0a131d 55%, #111821 100%);
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.inner-hero h1 {
    margin: 9px 0 12px;
    max-width: 780px;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1;
    letter-spacing: -.045em;
    text-transform: uppercase;
}

.inner-hero p {
    margin: 0;
    max-width: 680px;
    color: #c9ced4;
    font-size: 15px;
    line-height: 1.65;
}

.inner-section {
    padding: 58px 0 72px;
}

.inner-section-head {
    margin-bottom: 17px;
    padding-bottom: 12px;
    border-bottom: 1px solid #dddcd7;
}

.inner-section-head span {
    color: #a57e00;
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
}

.inner-empty {
    padding: 28px;
    border: 1px dashed #d3d2cc;
    border-radius: 16px;
    color: #666c72;
    text-align: center;
}

/* Programação completa */
.program-full-group + .program-full-group {
    margin-top: 42px;
}

.program-full-list {
    display: grid;
    gap: 12px;
}

.program-full-card {
    min-height: 118px;
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 22px;
    align-items: center;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid #e3e2dc;
    border-radius: 17px;
    box-shadow: 0 8px 25px rgba(15,18,22,.045);
}

.program-full-time {
    min-height: 78px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 20px;
    border-right: 1px solid #ecebe6;
}

.program-full-time strong {
    color: #b58b00;
    font-family: "Montserrat", sans-serif;
    font-size: 27px;
    line-height: 1;
}

.program-full-time span {
    margin-top: 5px;
    color: #777d82;
    font-size: 10px;
}

.program-full-content h2 {
    margin: 0 0 6px;
    color: #151a20;
    font-family: "Montserrat", sans-serif;
    font-size: 17px;
    text-transform: uppercase;
}

.program-full-host {
    margin: 0 0 6px;
    color: #a57e00;
    font-size: 11px;
    font-weight: 800;
}

.program-full-description {
    max-width: 720px;
    color: #666c72;
    font-size: 11.5px;
    line-height: 1.55;
}

.program-full-image {
    width: 92px;
    height: 78px;
    overflow: hidden;
    border-radius: 12px;
    background: #ecece8;
}

.program-full-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Equipe completa */
.team-full-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.team-full-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid #e3e2dc;
    border-radius: 18px;
    box-shadow: 0 9px 28px rgba(15,18,22,.055);
}

.team-full-photo {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #141b24;
}

.team-full-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-full-body {
    padding: 17px 18px 19px;
}

.team-full-body > span {
    color: #a57e00;
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.team-full-body h2 {
    margin: 6px 0 12px;
    color: #151a20;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    text-transform: uppercase;
}

.team-full-body a,
.team-full-body p {
    margin: 4px 0 0;
    color: #686d72;
    font-size: 10.5px;
    line-height: 1.45;
}

.team-full-body i {
    color: #b58b00;
    margin-right: 5px;
}

/* Agenda completa */
.agenda-intro-home {
    margin: -12px 0 24px;
    max-width: 520px;
    color: #666c72;
    font-size: 12px;
    line-height: 1.55;
}

.agenda-full-list {
    display: grid;
    gap: 14px;
}

.agenda-full-card {
    display: grid;
    grid-template-columns: 94px 1fr;
    gap: 22px;
    align-items: center;
    padding: 20px 22px;
    background: #fff;
    border: 1px solid #e2e1db;
    border-radius: 18px;
    box-shadow: 0 8px 27px rgba(15,18,22,.05);
}

.agenda-full-date {
    min-height: 96px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: linear-gradient(145deg, var(--yellow), var(--yellow-2));
    color: #11161c;
}

.agenda-full-date strong {
    font-family: "Montserrat", sans-serif;
    font-size: 31px;
    line-height: 1;
}

.agenda-full-date span {
    margin-top: 4px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .09em;
}

.agenda-full-date small {
    margin-top: 2px;
    font-size: 9px;
    font-weight: 700;
}

.agenda-full-content h2 {
    margin: 5px 0 9px;
    color: #151a20;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    text-transform: uppercase;
}

.agenda-full-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 18px;
    color: #62686e;
    font-size: 11px;
}

.agenda-full-meta i {
    color: #b58b00;
    margin-right: 4px;
}

.agenda-full-content p {
    margin: 11px 0 0;
    color: #6b7075;
    font-size: 12px;
    line-height: 1.55;
}

@media (max-width: 980px) {
    .team-full-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .program-full-card {
        grid-template-columns: 90px 1fr;
    }

    .program-full-image {
        display: none;
    }
}

@media (max-width: 560px) {
    .inner-hero {
        padding: 42px 0 40px;
    }

    .inner-section {
        padding: 42px 0 52px;
    }

    .team-full-grid {
        grid-template-columns: 1fr;
    }

    .program-full-card {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .program-full-time {
        min-height: 0;
        padding: 0 0 11px;
        border-right: 0;
        border-bottom: 1px solid #ecebe6;
    }

    .program-full-time strong {
        font-size: 23px;
    }

    .agenda-full-card {
        grid-template-columns: 74px 1fr;
        gap: 14px;
        padding: 16px;
    }

    .agenda-full-date {
        min-height: 82px;
    }

    .agenda-full-date strong {
        font-size: 26px;
    }

    .agenda-full-content h2 {
        font-size: 15px;
    }
}

/* V16 — AJUSTES FINAIS TIAGO */
.hero-slogan { margin:16px 0 0!important; max-width:610px!important; text-transform:uppercase; }
.hero-slogan-main,.hero-slogan-brush { display:block; }
.hero-slogan-main {
    font-family:"Montserrat",sans-serif;
    font-size:clamp(54px,5.4vw,82px);
    line-height:.94;
    font-weight:900;
    letter-spacing:-.055em;
    color:#fff;
}
.hero-slogan-main em { color:var(--yellow); font-style:normal; }
.hero-slogan-brush {
    margin-top:7px;
    color:#fff;
    font-family:"Permanent Marker","Montserrat",sans-serif;
    font-size:clamp(42px,4.25vw,65px);
    line-height:1;
    font-weight:400;
    letter-spacing:-.035em;
    transform:rotate(-1.2deg);
    transform-origin:left center;
}
.hero-slogan-brush::after {
    content:"";
    display:block;
    width:72%;
    height:7px;
    margin:8px 0 0 12%;
    border-radius:999px;
    background:var(--yellow);
    transform:rotate(-2deg);
}
.channel-radio { color:#c99d00!important; }

.alexa-card.alexa-card-highlight {
    max-width:350px;
    min-height:190px;
    display:grid;
    grid-template-columns:1fr 112px;
    gap:12px;
    align-items:center;
    padding:20px 16px 18px 22px;
    overflow:hidden;
    background:radial-gradient(circle at 82% 76%,rgba(255,255,255,.34),transparent 27%),
               linear-gradient(145deg,#ffd91a 0%,#ffbd00 100%);
    border:1px solid rgba(255,255,255,.62);
    box-shadow:0 0 0 2px rgba(255,206,0,.12),0 13px 38px rgba(255,206,0,.27),0 0 34px rgba(255,206,0,.18);
    color:#11161c;
}
.alexa-card-highlight .alexa-icon {
    width:48px;height:48px;margin:0 0 10px;
    border-color:#11161c;color:#11161c;background:rgba(255,255,255,.16);
}
.alexa-card-highlight strong { color:#11161c;font-size:16px;line-height:1.1;margin-bottom:8px; }
.alexa-card-highlight p { color:#232323;font-size:11.5px;line-height:1.45; }
.alexa-card-highlight .alexa-command { margin-top:7px;color:#11161c;font-weight:900; }
.alexa-device-wrap { align-self:end;display:flex;justify-content:center;align-items:end;min-width:0; }
.alexa-device {
    width:118px;max-width:none;display:block;object-fit:contain;
    filter:drop-shadow(0 12px 15px rgba(0,0,0,.23));
    mix-blend-mode:multiply;
}
@media (max-width:980px){ .alexa-card.alexa-card-highlight{max-width:none;} }
@media (max-width:560px){
    .hero-slogan-main{font-size:48px;}
    .hero-slogan-brush{font-size:39px;}
    .alexa-card.alexa-card-highlight{grid-template-columns:1fr 96px;min-height:175px;padding:18px 14px 16px 18px;}
    .alexa-device{width:102px;}
}


/* =========================================================
   V17 — AJUSTE DO HERO CONFORME REFERÊNCIA DO TIAGO
   ========================================================= */

.hero-copy .hero-slogan {
    margin: 14px 0 0 !important;
    max-width: 680px !important;
    font-family: "Caveat Brush", cursive !important;
    font-weight: 400 !important;
    text-transform: uppercase !important;
    letter-spacing: -0.035em !important;
    line-height: .86 !important;
    color: #fff !important;
}

.hero-copy .hero-slogan .hero-line {
    display: block !important;
    font-family: "Caveat Brush", cursive !important;
    font-weight: 400 !important;
    text-transform: uppercase !important;
}

.hero-copy .hero-slogan .hero-line-top {
    display: flex !important;
    align-items: baseline !important;
    gap: 16px !important;
    white-space: nowrap !important;
    font-size: clamp(68px, 6vw, 104px) !important;
    line-height: .82 !important;
}

.hero-copy .hero-slogan .hero-white {
    color: #fff !important;
}

.hero-copy .hero-slogan .hero-yellow {
    color: #ffcc00 !important;
    font-size: 1.20em !important;
    transform: rotate(-3deg);
    transform-origin: center;
}

.hero-copy .hero-slogan .hero-line-bottom {
    margin-top: 8px !important;
    color: #fff !important;
    font-size: clamp(56px, 5vw, 88px) !important;
    line-height: .82 !important;
    transform: rotate(-2deg);
    transform-origin: left center;
    white-space: nowrap;
}

.hero-copy .hero-slogan .hero-line-bottom::after {
    content: "";
    display: block;
    width: 78%;
    height: 8px;
    margin: 11px auto 0;
    border-radius: 999px;
    background: #ffcc00;
    transform: rotate(-3deg);
}

/* Sobrescreve regras antigas do hero que deixavam spans amarelos */
.hero h1.hero-slogan span {
    font-family: inherit !important;
}

.hero h1.hero-slogan > span {
    color: inherit !important;
}

.hero h1.hero-slogan .hero-yellow {
    color: #ffcc00 !important;
}

/* Cabeçalho com identificação da rádio ao lado do logo, como na referência */
.brand {
    display: flex !important;
    align-items: center !important;
    gap: 14px;
}

.brand::after {
    content: "EDUCADORA 103 FM\A LARANJEIRAS DO SUL";
    white-space: pre;
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    line-height: 1.45;
    font-weight: 800;
    letter-spacing: .02em;
}

/* Ícone do canal Rádio 103 FM */
.channel-radio {
    color: #c99d00 !important;
}

/* Alexa amarela em destaque */
.listen-everywhere .alexa-card.alexa-card-highlight {
    background: linear-gradient(145deg, #ffd91a 0%, #ffc400 100%) !important;
    border: 1px solid rgba(255,255,255,.68) !important;
    color: #111 !important;
    box-shadow:
        0 0 0 2px rgba(255,204,0,.20),
        0 15px 40px rgba(255,195,0,.30),
        0 0 32px rgba(255,204,0,.18) !important;
}

.listen-everywhere .alexa-card-highlight strong,
.listen-everywhere .alexa-card-highlight p,
.listen-everywhere .alexa-card-highlight .alexa-command {
    color: #111 !important;
}

.listen-everywhere .alexa-card-highlight .alexa-icon {
    border-color: #111 !important;
    color: #111 !important;
}

@media (max-width: 980px) {
    .brand::after {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero-copy .hero-slogan .hero-line-top {
        gap: 8px !important;
        font-size: 54px !important;
    }

    .hero-copy .hero-slogan .hero-line-bottom {
        font-size: 44px !important;
        white-space: normal;
    }
}


/* =========================================================
   V18 — SLOGAN REFINADO CONFORME REFERÊNCIA DO TIAGO
   ========================================================= */

.hero-copy .hero-slogan {
    margin: 14px 0 0 !important;
    max-width: 710px !important;
    color: #fff !important;
    text-transform: uppercase !important;
    line-height: 1 !important;
}

.hero-copy .hero-top {
    display: flex !important;
    align-items: flex-end !important;
    gap: 18px !important;
    white-space: nowrap !important;
}

.hero-copy .hero-ta-na {
    display: inline-block !important;
    color: #fff !important;
    font-family: "Oswald", "Arial Narrow", sans-serif !important;
    font-size: clamp(68px, 6.1vw, 104px) !important;
    font-weight: 700 !important;
    line-height: .88 !important;
    letter-spacing: -.045em !important;
    transform: skewX(-6deg) rotate(-1deg) !important;
    transform-origin: left bottom !important;
}

.hero-copy .hero-103 {
    display: inline-block !important;
    color: #ffcc00 !important;
    font-family: "Caveat Brush", cursive !important;
    font-size: clamp(92px, 8vw, 136px) !important;
    font-weight: 400 !important;
    line-height: .75 !important;
    letter-spacing: -.045em !important;
    transform: rotate(-4deg) !important;
    transform-origin: center bottom !important;
    margin-bottom: -5px !important;
}

.hero-copy .hero-bom-demais {
    display: block !important;
    margin-top: 8px !important;
    color: #fff !important;
    font-family: "Caveat Brush", cursive !important;
    font-size: clamp(58px, 5.4vw, 90px) !important;
    font-weight: 400 !important;
    line-height: .86 !important;
    letter-spacing: -.025em !important;
    white-space: nowrap !important;
    transform: rotate(-2.2deg) !important;
    transform-origin: left center !important;
}

.hero-copy .hero-bom-demais::after {
    content: "";
    display: block;
    width: 73%;
    height: 8px;
    margin: 11px 0 0 19%;
    border-radius: 999px;
    background: #ffcc00;
    transform: rotate(-3deg);
}

/* Cabeçalho — texto institucional ao lado do logo */
.brand {
    display: flex !important;
    align-items: center !important;
    gap: 13px !important;
    position: relative;
}

.brand::after {
    content: "LARANJEIRAS DO SUL";
    white-space: nowrap !important;
    color: #fff !important;
    font-family: "Inter", sans-serif !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    letter-spacing: .01em !important;
    position: absolute;
    left: calc(100% + 13px);
    top: 34px;
}

.brand::before {
    content: "EDUCADORA 103 FM";
    white-space: nowrap !important;
    color: #ffcc00 !important;
    font-family: "Inter", sans-serif !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    letter-spacing: .01em !important;
    position: absolute;
    left: calc(100% + 13px);
    top: 15px;
}

@media (max-width: 980px) {
    .brand::before,
    .brand::after {
        display: none !important;
    }
}

@media (max-width: 640px) {
    .hero-copy .hero-top {
        gap: 8px !important;
    }

    .hero-copy .hero-ta-na {
        font-size: 52px !important;
    }

    .hero-copy .hero-103 {
        font-size: 68px !important;
    }

    .hero-copy .hero-bom-demais {
        font-size: 43px !important;
        white-space: normal !important;
    }
}


/* =========================
   ALEXA — BANNER COMPLETO
   ========================= */
.alexa-card.alexa-card-image {
    padding: 0 !important;
    min-height: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    overflow: hidden;
    border-radius: 22px;
    display: block !important;
}

.alexa-card.alexa-card-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 22px;
}

@media (max-width: 560px) {
    .alexa-card.alexa-card-image,
    .alexa-card.alexa-card-image img {
        border-radius: 18px;
    }
}


/* =========================
   PROMOÇÕES NO MENU — SEM DESCONFIGURAR O HEADER
   ========================= */

.main-nav .nav-promo {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 16px;
    margin-left: 4px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
    color: #11161c;
    box-shadow: 0 7px 20px rgba(255, 206, 0, .14);
}

.main-nav .nav-promo::after {
    display: none;
}

.main-nav .nav-promo:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
}

.main-nav .nav-promo i {
    font-size: 14px;
}

@media (max-width: 1040px) {
    .main-nav {
        gap: 16px;
    }

    .main-nav .nav-promo {
        padding: 10px 13px;
        font-size: 10px;
    }
}

@media (max-width: 820px) {
    .main-nav .nav-promo {
        margin-left: 0;
        justify-content: center;
    }
}


/* =========================================================
   CORREÇÃO DEFINITIVA DO HEADER COM PROMOÇÕES
   O texto institucional ao lado da logo é absoluto e não
   ocupava espaço no grid. Reservamos esse espaço aqui.
   ========================================================= */

@media (min-width: 1041px) {
    .header-inner {
        grid-template-columns: 305px 1fr auto !important;
        gap: 26px !important;
    }

    .main-nav {
        gap: 24px !important;
        justify-content: center !important;
        min-width: 0;
    }

    .main-nav a {
        white-space: nowrap;
    }

    .main-nav .nav-promo {
        flex: 0 0 auto;
        margin-left: 2px !important;
        padding: 11px 16px !important;
    }

    .btn-whatsapp {
        flex: 0 0 auto;
    }
}

@media (min-width: 821px) and (max-width: 1040px) {
    .header-inner {
        grid-template-columns: 255px 1fr auto !important;
        gap: 16px !important;
    }

    .main-nav {
        gap: 14px !important;
    }

    .main-nav a {
        font-size: 10px !important;
        white-space: nowrap;
    }

    .main-nav .nav-promo {
        padding: 9px 11px !important;
        font-size: 9px !important;
    }
}


/* =========================================================
   HEADER V2 — CORREÇÃO REAL DE SOBREPOSIÇÃO
   ========================================================= */

.brand::before,
.brand::after {
    content: none !important;
    display: none !important;
}

.header-inner {
    grid-template-columns: 300px minmax(0, 1fr) auto !important;
    gap: 26px !important;
}

.brand {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    min-width: 0;
}

.brand img {
    width: 118px !important;
    max-height: 76px !important;
    object-fit: contain !important;
    flex: 0 0 auto;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
    line-height: 1.1;
    text-transform: uppercase;
}

.brand-copy strong {
    color: var(--yellow);
    font-size: 11px;
    font-weight: 900;
    white-space: nowrap;
}

.brand-copy small {
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    margin-top: 4px;
    white-space: nowrap;
}

.main-nav {
    min-width: 0;
    gap: 22px !important;
    justify-content: center !important;
}

.main-nav a {
    white-space: nowrap;
}

.main-nav .nav-promo {
    margin-left: 2px !important;
    flex: 0 0 auto;
}

.btn-whatsapp {
    flex: 0 0 auto;
}

@media (max-width: 1100px) and (min-width: 821px) {
    .header-inner {
        grid-template-columns: 260px minmax(0, 1fr) auto !important;
        gap: 16px !important;
    }

    .brand img {
        width: 100px !important;
    }

    .brand-copy strong {
        font-size: 10px;
    }

    .brand-copy small {
        font-size: 9px;
    }

    .main-nav {
        gap: 14px !important;
    }

    .main-nav a {
        font-size: 10px !important;
    }

    .main-nav .nav-promo {
        padding: 9px 12px !important;
        font-size: 9px !important;
    }

    .btn-whatsapp {
        padding: 0 16px !important;
    }
}

@media (max-width: 820px) {
    .header-inner {
        grid-template-columns: 1fr auto !important;
    }

    .brand-copy {
        display: none;
    }
}

