
/* HAMBURGER BUTTON (oculto em desktop) */
.navbar-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    z-index: 1001;
}
.navbar-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.navbar-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-hamburger.open span:nth-child(2) { opacity: 0; }
.navbar-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   BEM SERTANEJA - ESTILOS PROFISSIONAIS
   ============================================ */

:root {
    --color-bg-dark: #0c0700;
    --color-bg-secondary: #130c02;
    --color-gold: #e8a020;
    --color-green: #1a8c3a;
    --color-green-bright: #2ecc71;
    --color-white: #ffffff;
    --color-gray: #7a6040;
    --color-black: #000000;
    --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
    --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--color-bg-dark);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: rgba(8, 5, 1, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(232, 160, 32, 0.15);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 24px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    gap: 16px;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--color-white);
    transition: all 0.3s var(--ease-out);
    flex-shrink: 0;
}

.navbar-logo:hover {
    transform: translateY(-2px);
}

.navbar-logo-img {
    height: 44px;
    width: auto;
    display: block;
    transition: all 0.3s var(--ease-out);
}

.navbar-menu {
    display: flex;
    gap: 0;
    align-items: center;
    flex: 1;
    justify-content: center;
    flex-wrap: nowrap;
    overflow: hidden;
}

.nav-link {
    font-size: 10.5px;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    padding: 4px 14px 4px 14px;
    transition: all 0.2s var(--ease-out);
    letter-spacing: 0.4px;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--color-gold);
}

.nav-link.active {
    color: var(--color-gold);
    border-bottom-color: var(--color-gold);
}

.navbar-btn {
    background-color: var(--color-green);
    color: var(--color-white);
    border: none;
    padding: 9px 16px;
    font-size: 10.5px;
    text-transform: uppercase;
    font-weight: 800;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: all 0.2s var(--ease-out);
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 4px 15px rgba(27, 122, 56, 0.3);
    white-space: nowrap;
    flex-shrink: 0;
    min-width: fit-content;
}

.navbar-btn:hover {
    background-color: #0f5a2d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 122, 56, 0.4);
}

.navbar-btn:active {
    transform: translateY(0);
}

.play-icon {
    width: 12px;
    height: 12px;
    fill: var(--color-white);
}

/* ============================================
   MAIN CONTENT
   ============================================ */

.main-content {
    margin-top: 64px;
    margin-bottom: 70px;
}

.page {
    display: none;
    animation: fadeIn 0.4s var(--ease-out);
}

.page.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 60px;
    background-image: url('https://i.ibb.co/bjsGfQqn/radio-bem-sertaneja-1.avif');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, rgba(12, 7, 0, 0.97) 0%, rgba(12, 7, 0, 0.75) 45%, rgba(12, 7, 0, 0.1) 75%, rgba(12, 7, 0, 0) 100%),
        radial-gradient(ellipse 800px 600px at 70% 50%, rgba(160, 60, 5, 0.55) 0%, rgba(160, 60, 5, 0) 70%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 54px;
    color: var(--color-white);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 100px;
    color: var(--color-gold);
    text-shadow: 0 2px 20px rgba(232, 160, 32, 0.4);
    line-height: 1;
    display: block;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.hero-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.highlight {
    color: var(--color-green);
    font-weight: 700;
}

.hero-features {
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: nowrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s var(--ease-out);
    flex-shrink: 0;
}

.feature-item:hover {
    transform: translateX(3px);
}

.feature-icon {
    width: 32px;
    height: 32px;
    border: 2px solid var(--color-gold);
    background: rgba(232, 160, 32, 0.1);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 16px;
    height: 16px;
    fill: var(--color-gold);
}

.feature-item span {
    font-size: 8.5px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.4px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.3;
    max-width: 70px;
}

/* ============================================
   NOW PLAYING CARD
   ============================================ */

.now-playing-card {
    position: absolute;
    bottom: 30px;
    right: 50px;
    background: rgba(8, 5, 1, 0.93);
    border: 2px solid var(--color-gold);
    border-radius: 8px;
    padding: 14px 16px;
    width: 260px;
    backdrop-filter: blur(12px);
    z-index: 3;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

.now-playing-badge {
    display: inline-block;
    background-color: #ffc107;
    color: var(--color-black);
    padding: 3px 10px;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 2px;
    margin-bottom: 10px;
    letter-spacing: 1px;
    position: relative;
}

.now-playing-badge::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--color-black);
    border-radius: 50%;
    margin-left: 6px;
    animation: pulse 1s infinite;
}

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

.now-playing-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.now-playing-locutor {
    font-size: 11px;
    color: var(--color-gray);
    margin-bottom: 10px;
}

.equalizer {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 28px;
    flex-shrink: 0;
}

.equalizer-bar {
    width: 3px;
    background-color: #2ecc71;
    border-radius: 2px;
    animation: equalize 0.6s ease-in-out infinite;
}

.equalizer-bar:nth-child(1)  { height: 6px;  animation-delay: 0s; }
.equalizer-bar:nth-child(2)  { height: 14px; animation-delay: 0.1s; }
.equalizer-bar:nth-child(3)  { height: 20px; animation-delay: 0.2s; }
.equalizer-bar:nth-child(4)  { height: 12px; animation-delay: 0.3s; }
.equalizer-bar:nth-child(5)  { height: 18px; animation-delay: 0.4s; }
.equalizer-bar:nth-child(6)  { height: 10px; animation-delay: 0.5s; }
.equalizer-bar:nth-child(7)  { height: 16px; animation-delay: 0.6s; }
.equalizer-bar:nth-child(8)  { height: 8px;  animation-delay: 0.7s; }
.equalizer-bar:nth-child(9)  { height: 14px; animation-delay: 0.8s; }
.equalizer-bar:nth-child(10) { height: 20px; animation-delay: 0.9s; }
.equalizer-bar:nth-child(11) { height: 10px; animation-delay: 1s; }
.equalizer-bar:nth-child(12) { height: 16px; animation-delay: 1.1s; }

@keyframes equalize {
    0%, 100% { height: 4px; opacity: 0.7; }
    50% { height: 26px; opacity: 1; }
}

.now-playing-btn {
    width: 100%;
    background-color: var(--color-green);
    color: var(--color-white);
    border: none;
    padding: 10px 14px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s var(--ease-out);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

.now-playing-btn svg {
    width: 14px;
    height: 14px;
    fill: var(--color-white);
    flex-shrink: 0;
}

.now-playing-btn:hover {
    background-color: #0f5a2d;
}

.now-playing-btn:active {
    transform: scale(0.97);
}

/* ============================================
   MAIN GRID
   ============================================ */

.main-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 0.8fr;
    background-color: var(--color-bg-secondary);
    border-top: 2px solid var(--color-gold);
    min-height: auto;
}

.grid-column {
    padding: 24px 20px;
    border-right: 1px solid rgba(232, 160, 32, 0.1);
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.grid-column:last-child {
    border-right: none;
}

.column-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    color: var(--color-white);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-gold);
    letter-spacing: 2px;
}

/* ============================================
   CAROUSEL
   ============================================ */

.carousel {
    margin-bottom: 16px;
    position: relative;
}

.carousel-slides {
    position: relative;
    height: 380px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0;
}

.carousel-slide {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: fadeIn 0.3s var(--ease-out);
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.88) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

.carousel-tag {
    background-color: var(--color-green);
    color: var(--color-white);
    padding: 3px 10px;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 2px;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    width: fit-content;
}

.carousel-content h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 10px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.carousel-btn {
    background-color: transparent;
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
    padding: 5px 14px;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.2s var(--ease-out);
    font-family: 'Montserrat', sans-serif;
    width: fit-content;
}

.carousel-btn:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
}

/* Setas sobrepostas sobre a imagem, verticalmente centradas */
.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8px;
    pointer-events: none;
    z-index: 2;
}

.carousel-arrow {
    background: rgba(0, 0, 0, 0.45);
    border: none;
    color: var(--color-white);
    width: 30px;
    height: 30px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.2s var(--ease-out);
    font-weight: bold;
    pointer-events: all;
}

.carousel-arrow:hover {
    background: rgba(0, 0, 0, 0.75);
}

/* Dots embaixo da imagem */
.carousel-dots {
    display: flex;
    gap: 6px;
    justify-content: center;
    padding: 10px 0 0 0;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(232, 160, 32, 0.35);
    cursor: pointer;
    transition: all 0.2s var(--ease-out);
    border: none;
}

.carousel-dot.active {
    background-color: var(--color-gold);
    width: 20px;
    border-radius: 4px;
}

/* ============================================
   SCHEDULE
   ============================================ */

.schedule-item {
    padding: 10px 0;
    border-bottom: 1px solid rgba(232, 160, 32, 0.08);
    transition: all 0.2s var(--ease-out);
}

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

.schedule-item.current {
    background: none;
    padding: 10px 0;
    margin: 0;
    border-left: none;
}

.schedule-time {
    color: #2ecc71;
    font-weight: 800;
    font-size: 11px;
    margin-bottom: 2px;
    letter-spacing: 0.5px;
}

.schedule-program {
    color: var(--color-white);
    font-weight: 700;
    font-size: 11px;
    margin-bottom: 1px;
}

.schedule-locutor {
    color: var(--color-gray);
    font-size: 10px;
}

/* ============================================
   NEWS
   ============================================ */

.news-list {
    list-style: none;
}

.news-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(232, 160, 32, 0.1);
    align-items: flex-start;
    min-height: 0;
}

.news-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.news-thumbnail {
    width: 70px;
    height: 60px;
    border-radius: 4px;
    background: linear-gradient(135deg, rgba(80, 40, 20, 0.8) 0%, rgba(150, 80, 30, 0.8) 100%);
    flex-shrink: 0;
    overflow: hidden;
}

.news-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-content h4 {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 6px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-thumbnail {
    width: 70px;
    min-width: 70px;
    height: 60px;
}

.news-link {
    font-size: 10px;
    color: var(--color-green);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s var(--ease-out);
}

.news-link:hover {
    color: var(--color-gold);
}

/* ============================================
   TOP LIST
   ============================================ */

.top-list {
    list-style: none;
}

.top-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(232, 160, 32, 0.1);
    transition: all 0.2s var(--ease-out);
}

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

.top-item:hover {
    background-color: rgba(232, 160, 32, 0.05);
    padding-left: 8px;
}

.top-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    color: var(--color-gold);
    font-weight: 700;
    min-width: 30px;
    line-height: 1;
}

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

.top-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 2px;
    overflow-wrap: break-word;
    white-space: normal;
}

.top-artist {
    font-size: 10px;
    color: var(--color-gray);
    overflow-wrap: break-word;
    white-space: normal;
}

/* ============================================
   COLUMN BUTTONS
   ============================================ */

.column-btn {
    width: 100%;
    background-color: transparent;
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
    padding: 10px;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    margin-top: 16px;
    transition: all 0.2s var(--ease-out);
    font-family: 'Montserrat', sans-serif;
}

.column-btn:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
}

/* ============================================
   PAGE HEADER & CONTENT
   ============================================ */

.page-header {
    background-color: var(--color-bg-secondary);
    border-top: 2px solid var(--color-gold);
    padding: 40px 60px;
    border-bottom: 1px solid rgba(232, 160, 32, 0.1);
}

.page-header h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: var(--color-white);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
}

.page-content {
    background-color: var(--color-bg-secondary);
    padding: 40px 60px;
    min-height: calc(100vh - 196px);
}

.content-text {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 30px;
}

.content-text p {
    margin-bottom: 15px;
}

.content-image {
    margin-top: 30px;
    border-radius: 4px;
    overflow: hidden;
}

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

/* ============================================
   NEWS GRID
   ============================================ */

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    background-color: rgba(232, 160, 32, 0.05);
    padding: 20px;
    border-radius: 4px;
    border-left: 4px solid var(--color-gold);
    transition: all 0.3s var(--ease-out);
}

.news-card:hover {
    background-color: rgba(232, 160, 32, 0.1);
    transform: translateY(-5px);
}

.news-category {
    font-size: 12px;
    color: var(--color-green);
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.news-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.news-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
}

.read-more {
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s var(--ease-out);
}

.read-more:hover {
    color: var(--color-green);
}

/* ============================================
   ARTISTS GRID
   ============================================ */

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.artist-card {
    background-color: rgba(232, 160, 32, 0.05);
    padding: 20px;
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s var(--ease-out);
}

.artist-card:hover {
    background-color: rgba(232, 160, 32, 0.1);
    transform: translateY(-5px);
}

.artist-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 12px;
}

.artist-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.artist-card p {
    font-size: 12px;
    color: var(--color-gray);
}

/* ============================================
   EVENTS LIST
   ============================================ */

.events-list {
    display: grid;
    gap: 20px;
}

.event-card {
    background-color: rgba(232, 160, 32, 0.05);
    padding: 20px;
    border-radius: 4px;
    border-left: 4px solid var(--color-gold);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s var(--ease-out);
}

.event-card:hover {
    background-color: rgba(232, 160, 32, 0.1);
    transform: translateX(5px);
}

.event-date {
    font-size: 14px;
    color: var(--color-gold);
    font-weight: 800;
    margin-bottom: 8px;
}

.event-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.event-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.event-btn {
    background-color: var(--color-green);
    color: var(--color-white);
    border: none;
    padding: 10px 20px;
    font-weight: 800;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s var(--ease-out);
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
}

.event-btn:hover {
    background-color: #0f5a2d;
}

/* EQUIPE */
.equipe-card {
    align-items: center;
}

.equipe-cargo {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
}

.equipe-badge {
    background: rgba(232, 160, 32, 0.15);
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.equipe-badge--marketing {
    background: rgba(99, 102, 241, 0.15);
    color: #a5b4fc;
    border-color: #a5b4fc;
}

.equipe-badge--diretor {
    background: rgba(232, 160, 32, 0.25);
    color: var(--color-gold);
    border-color: var(--color-gold);
    font-size: 11px;
}

/* ============================================
   CONTACT
   ============================================ */

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form {
    display: grid;
    gap: 16px;
}

.form-group {
    display: grid;
    gap: 6px;
}

.form-group label {
    font-weight: 700;
    color: var(--color-gold);
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    background-color: rgba(232, 160, 32, 0.1);
    border: 1px solid var(--color-gold);
    color: var(--color-white);
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-green);
    box-shadow: 0 0 10px rgba(27, 122, 56, 0.3);
}

.submit-btn {
    background-color: var(--color-green);
    color: var(--color-white);
    border: none;
    padding: 12px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.2s var(--ease-out);
}

.submit-btn:hover {
    background-color: #0f5a2d;
}

.contact-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-gold);
}

.contact-info p {
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.6;
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(232, 160, 32, 0.1);
    border-radius: 50%;
    color: var(--color-gold);
    text-decoration: none;
    transition: all 0.2s var(--ease-out);
    font-weight: bold;
}

.social-links a:hover {
    background-color: rgba(232, 160, 32, 0.3);
    transform: translateY(-2px);
}

/* ============================================
   SCHEDULE TABLE
   ============================================ */

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.schedule-table thead {
    background-color: rgba(232, 160, 32, 0.1);
    border-bottom: 2px solid var(--color-gold);
}

.schedule-table th {
    padding: 12px;
    color: var(--color-gold);
    font-weight: 800;
    text-align: left;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.schedule-table td {
    padding: 12px;
    border-bottom: 1px solid rgba(232, 160, 32, 0.1);
    font-size: 14px;
}

.schedule-table td.time {
    color: var(--color-green);
    font-weight: 800;
}

.schedule-table tr.current {
    background-color: rgba(232, 160, 32, 0.05);
}

.schedule-table tr:hover {
    background-color: rgba(232, 160, 32, 0.08);
}

/* ============================================
   PLAYER FIXO
   ============================================ */

.player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background-color: #000000;
    border-top: 2px solid var(--color-gold);
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 0;
    z-index: 999;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.7);
    box-sizing: border-box;
    width: 100%;
}

/* --- ESQUERDA: ocupa espaço disponível, não empurra o centro --- */
.player-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    padding-right: 12px;
}

/* Capa do álbum no player (substitui play branco) */
.album-cover-wrap {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--color-gold);
    background: #1a1a1a;
    box-shadow: 0 0 12px rgba(232,160,32,0.35);
    transition: box-shadow 0.3s;
}

.album-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.album-cover.loaded { opacity: 1; }

.album-cover-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, #2a1a00 0%, #0c0700 100%);
    transition: opacity 0.4s;
}

.album-cover-wrap.has-cover .album-cover-placeholder { opacity: 0; pointer-events: none; }

.album-cover-placeholder svg {
    width: 22px;
    height: 22px;
    fill: var(--color-gold);
    opacity: 0.7;
}

.player-artist {
    font-size: 10px;
    color: var(--color-gray);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 2px;
}

.player-play-icon {
    width: 18px;
    height: 18px;
    fill: var(--color-gold);
}

.player-info {
    min-width: 0;
    overflow: hidden;
}

.player-status {
    font-size: 9px;
    color: var(--color-green-bright);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.8px;
    margin-bottom: 2px;
    white-space: nowrap;
}

.player-program {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 6px;
    overflow: hidden;
    min-width: 0;
}

.player-program #playerSongTitle {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex-shrink: 1;
    min-width: 0;
}

.player-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background-color: var(--color-green);
    color: var(--color-white);
    padding: 2px 6px;
    font-size: 7px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 2px;
    letter-spacing: 0.3px;
    flex-shrink: 0;
    white-space: nowrap;
}

/* barrinhas ao vivo */
.player-live-bars {
    display: inline-flex;
    align-items: flex-end;
    gap: 1.5px;
    height: 10px;
}
.player-live-bars span {
    display: block;
    width: 2px;
    background: rgba(255,255,255,0.9);
    border-radius: 1px;
    animation: livebar 0.7s ease-in-out infinite;
}
.player-live-bars span:nth-child(1) { height: 4px; animation-delay: 0s; }
.player-live-bars span:nth-child(2) { height: 8px; animation-delay: 0.15s; }
.player-live-bars span:nth-child(3) { height: 5px; animation-delay: 0.3s; }
@keyframes livebar {
    0%, 100% { transform: scaleY(0.4); }
    50%       { transform: scaleY(1); }
}

/* --- CENTRO: tamanho fixo, não cresce nem encolhe --- */
.player-center {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    padding: 0 8px;
}

.player-control {
    background: none;
    border: none;
    color: rgba(255,255,255,0.8);
    cursor: pointer;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    padding: 0;
    flex-shrink: 0;
}
.player-control:hover { color: var(--color-gold); transform: scale(1.15); }
.player-control svg { width: 20px; height: 20px; fill: currentColor; }

.player-pause-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--color-gold);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(232,160,32,0.45);
    flex-shrink: 0;
}
.player-pause-btn:hover { transform: scale(1.08); }
.player-pause-btn:active { transform: scale(0.95); }

.player-volume-slider {
    width: 80px;
    height: 4px;
    border-radius: 2px;
    background: rgba(232,160,32,0.25);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    flex-shrink: 0;
}
.player-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 13px; height: 13px;
    border-radius: 50%;
    background: var(--color-gold);
    cursor: pointer;
}
.player-volume-slider::-moz-range-thumb {
    width: 13px; height: 13px;
    border-radius: 50%;
    background: var(--color-gold);
    border: none;
}

/* --- DIREITA: encolhe quando não há espaço --- */
.player-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 1;
    min-width: 0;
    padding-left: 12px;
    overflow: hidden;
}

.player-social-label {
    font-size: 8px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.6px;
    white-space: nowrap;
    flex-shrink: 0;
}

.player-social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-shrink: 1;
}

.social-icon {
    width: 18px; height: 18px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.social-icon svg { width: 100%; height: 100%; fill: rgba(255,255,255,0.75); transition: all 0.2s; }
.social-icon:hover svg       { fill: var(--color-gold); transform: scale(1.15); }
.facebook-icon:hover svg     { fill: #1877F2; }
.instagram-icon:hover svg    { fill: #E4405F; }
.youtube-icon:hover svg      { fill: #FF0000; }
.tiktok-icon:hover svg       { fill: #69C9D0; }
.whatsapp-icon:hover svg     { fill: #25D366; }

.social-link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(232, 160, 32, 0.1);
    border-radius: 50%;
    color: var(--color-gold);
    text-decoration: none;
    transition: all 0.2s var(--ease-out);
    font-weight: bold;
}

.social-link-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--color-gold);
    transition: all 0.2s var(--ease-out);
}

.social-link-icon:hover {
    background-color: rgba(232, 160, 32, 0.3);
    transform: translateY(-2px);
}

.social-link-icon:hover svg {
    fill: var(--color-white);
}

/* ============================================
   RESPONSIVO
   ============================================ */

/* Telas grandes mas não enormes — reduz gap dos links */
@media (max-width: 1280px) {
    .nav-link {
        padding: 4px 10px;
        font-size: 10px;
        letter-spacing: 0.2px;
    }

    .navbar-btn {
        padding: 8px 12px;
        font-size: 10px;
    }

    .navbar-logo-img {
        height: 40px;
    }
}

/* Telas médias — comprime mais */
@media (max-width: 1100px) {
    .nav-link {
        padding: 4px 8px;
        font-size: 9.5px;
    }

    .navbar-btn {
        padding: 7px 10px;
        font-size: 9.5px;
        gap: 5px;
    }

    .play-icon {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 1024px) {
    .hero {
        padding: 30px;
    }

    .now-playing-card {
        position: static;
        margin-top: 20px;
        width: 100%;
    }

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

    .grid-column {
        padding: 20px 16px;
    }

    .carousel-slides {
        height: 260px;
    }
}

@media (max-width: 900px) {
    .navbar-menu {
        gap: 0;
    }

    .nav-link {
        padding: 4px 6px;
        font-size: 9px;
    }
}

@media (max-width: 768px) {
    /* NAVBAR */
    .navbar-hamburger { display: flex; }
    .navbar-menu {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: #0d0d0d;
        flex-direction: column;
        padding: 12px 0 20px;
        z-index: 1000;
        border-bottom: 2px solid var(--primary-color, #e8a020);
        box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    }
    .navbar-menu.open { display: flex; }
    .navbar-menu .nav-link {
        padding: 12px 24px;
        font-size: 1rem;
        border-bottom: 0.5px solid rgba(255,255,255,0.07);
    }
    .navbar-menu .nav-link:last-child { border-bottom: none; }
    .navbar-container { padding: 0 15px; }
    .navbar-logo-img { height: 38px; }

    /* HERO */
    .hero {
        padding: 20px 16px;
        height: auto;
        min-height: 320px;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    .hero-content { max-width: 100%; }

    .hero-title {
        font-size: 28px;
        margin-bottom: 4px;
    }

    .hero-subtitle {
        font-size: 56px;
        margin-bottom: 8px;
    }

    .hero-description {
        font-size: 13px;
        margin-bottom: 16px;
    }

    /* features em 2x2 no mobile */
    .hero-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-bottom: 16px;
        flex-wrap: wrap;
    }

    .feature-item span { max-width: none; font-size: 8px; }

    /* card no ar agora — dentro do hero em mobile */
    .now-playing-card {
        position: static;
        width: 100%;
        margin-top: 16px;
    }

    /* GRID */
    .main-grid { grid-template-columns: 1fr; }
    .grid-column {
        border-right: none;
        border-bottom: 1px solid rgba(232, 160, 32, 0.1);
        padding: 20px 16px;
    }

    /* PLAYER — linha única compacta no mobile */
    .player {
        height: auto;
        min-height: 60px;
        padding: 8px 12px;
        gap: 8px;
        flex-wrap: nowrap;
        overflow: hidden;
    }

    .player-left {
        gap: 8px;
        flex: 1;
        min-width: 0;
        max-width: none;
        overflow: hidden;
    }

    .player-play-btn {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }

    .player-play-icon { width: 16px; height: 16px; }

    .player-status { font-size: 8px; }

    .player-program {
        font-size: 10px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .player-badge { font-size: 7px; padding: 2px 5px; }

    /* Centro — só botão pause + volume */
    .player-center {
        gap: 10px;
        flex-shrink: 0;
    }

    /* Esconder favoritar, anterior, próximo no mobile */
    .player-center .player-control:nth-child(1),
    .player-center .player-control:nth-child(2),
    .player-center .player-control:nth-child(4) {
        display: none;
    }

    .player-pause-btn {
        width: 38px;
        height: 38px;
    }

    .player-volume-slider { width: 60px; }

    /* Esconder redes sociais no mobile */
    .player-right { display: none; }

    /* OUTROS */
    .page-content, .page-header { padding: 20px 16px; }
    .contact-content { grid-template-columns: 1fr; }
    .event-card { flex-direction: column; align-items: flex-start; }
    .event-btn { width: 100%; }
}

@media (max-width: 480px) {
    .navbar-logo-img { height: 28px; }
    .navbar-btn { 
        padding: 6px 10px; 
        font-size: 8px; 
        gap: 4px;
    }
    .navbar-btn svg {
        width: 10px;
        height: 10px;
    }

    .hero-title { font-size: 22px; }
    .hero-subtitle { font-size: 44px; }

    .carousel-slides { height: 200px; }
    .column-title { font-size: 17px; }

    .player-program { font-size: 9px; }
    .player-play-btn { width: 36px; height: 36px; }
    .player-pause-btn { width: 34px; height: 34px; }
    .player-volume-slider { width: 50px; }
}

/* ============================================================
   MODAL PLAYER
   ============================================================ */

.pmodal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
    animation: pmodal-fadein 0.25s ease;
}

.pmodal-overlay.active {
    display: flex;
}

@keyframes pmodal-fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.pmodal-box {
    position: relative;
    width: 820px;
    max-width: calc(100vw - 32px);
    height: 500px;
    max-height: calc(100vh - 60px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.07);
    animation: pmodal-slidein 0.3s cubic-bezier(.4,0,.2,1);
}

@keyframes pmodal-slidein {
    from { transform: translateY(30px) scale(0.97); opacity: 0; }
    to   { transform: translateY(0)    scale(1);    opacity: 1; }
}

.pmodal-box iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.pmodal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.55);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    backdrop-filter: blur(4px);
}

.pmodal-close:hover {
    background: rgba(192, 57, 43, 0.85);
    transform: scale(1.1);
}

.pmodal-close svg {
    width: 18px;
    height: 18px;
}

/* Mobile */
@media (max-width: 760px) {
    .pmodal-box {
        width: 100vw;
        max-width: 100vw;
        height: 100dvh;
        max-height: 100dvh;
        border-radius: 0;
    }
}


/* ===== RODAPÉ ===== */
.site-footer {
    background: var(--color-bg-dark);
    color: var(--color-white);
    padding: 0;
}

/* --- Seção App --- */
.footer-app-section {
    padding: 20px 40px;
    border-top: 1px solid rgba(232,160,32,0.2);
}
.footer-app-inner {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}
.footer-app-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 160px;
}
.footer-app-device-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    fill: none;
    stroke: var(--color-gold);
    stroke-width: 1.5;
}
.footer-app-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: var(--color-gold);
    line-height: 1.2;
}
.footer-app-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: var(--color-gray);
    line-height: 1.2;
}

/* Botões de loja */
.footer-store-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    border: 1px solid rgba(232,160,32,0.3);
    background: #000000;
    transition: border-color 0.2s, opacity 0.2s;
    width: 160px;
    box-sizing: border-box;
}
.footer-store-btn:hover {
    border-color: var(--color-gold);
    opacity: 0.85;
}
.footer-store-btn svg {
    flex-shrink: 0;
    opacity: 0.9;
}
.footer-store-btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.footer-store-btn-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer-store-btn-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: var(--color-white);
}

/* --- Seção Parceiros --- */
.footer-partners-section {
    padding: 24px 40px 20px;
    border-top: 1px solid rgba(232,160,32,0.2);
    overflow: hidden;
}
.footer-partners-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 18px;
}
.footer-partners-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    color: var(--color-gold);
    letter-spacing: 4px;
    margin: 0;
}
.partners-carousel-wrap {
    overflow: hidden;
    width: 100%;
}
.partners-carousel {
    display: flex;
    gap: 14px;
    width: max-content;
    will-change: transform;
}
.partner-item {
    display: block;
    width: 150px;
    height: 84px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(232,160,32,0.2);
    flex-shrink: 0;
    transition: border-color 0.2s;
}
.partner-item:hover { border-color: var(--color-gold); }
.partner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Texto final + copyright --- */
.footer-bottom {
    padding: 24px 40px 28px;
    text-align: center;
    border-top: 1px solid rgba(232,160,32,0.2);
    max-width: 780px;
    margin: 0 auto;
}
.footer-tagline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    color: var(--color-gold);
    letter-spacing: 2px;
    margin: 0 0 10px;
}
.footer-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: var(--color-gray);
    line-height: 1.8;
    margin: 0 0 14px;
}
.footer-desc strong { color: var(--color-gold); }
.footer-copy {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: rgba(122,96,64,0.6);
    margin: 0;
}

/* Mobile */
@media (max-width: 640px) {
    .footer-app-section  { padding: 16px 20px; }
    .footer-app-inner    { gap: 12px; }
    .footer-store-btn    { padding: 7px 11px; }
    .footer-store-btn-name { font-size: 12px; }
    .footer-partners-section { padding: 20px 20px 16px; }
    .footer-bottom       { padding: 20px 20px 24px; }
    .partner-item        { width: 120px; height: 67px; }
}
