
:root {
    --primary: #FFD700; /* Ouro/Amarelo */
    --secondary: #222;
    --bg: #0a0a0a;
    --glass: rgba(255, 255, 255, 0.05);
    --text: #fff;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

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

/* Header Glassmorphism */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass);
}

nav { display: flex; justify-content: space-between; align-items: center; }

.logo { font-size: 1.5rem; font-weight: 900; letter-spacing: 2px; }
.logo span { color: var(--primary); }

.nav-links { display: flex; list-style: none; align-items: center; gap: 30px; }
.nav-links a { color: #ccc; text-decoration: none; transition: 0.3s; font-size: 0.9rem; }
.nav-links a:hover { color: var(--primary); }

.btn-contato {
    background: var(--primary);
    color: #000 !important;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
}

/* Hero Section */
.hero {
    height: 100vh; /* Mantém a altura total da tela */
    display: flex;
    align-items: center; /* Centraliza o conteúdo verticalmente */
    
    /* Configuração da Imagem de Fundo e Overlay Escuro */
    background-image: 
        /* Camada 1: Um gradiente preto sólido com 80% de opacidade (ajuste aqui) */
        linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
        /* Camada 2: A imagem de fundo */
        url('../background-radio.jpg'); /* RENOMEIE SUA IMAGEM PARA ESTE NOME NO PROJETO */
    
    background-size: cover; /* Faz a imagem cobrir toda a seção */
    background-position: center; /* Centraliza a imagem */
    background-repeat: no-repeat;
    
    position: relative;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 { font-size: 4rem; line-height: 1.1; margin-bottom: 20px; }
.hero h1 span { color: var(--primary); }
.hero p { font-size: 1.2rem; color: #ccc; margin-bottom: 30px; max-width: 600px; }

.badget {
    display: inline-block;
    background: rgba(255, 0, 0, 0.2);
    color: #ff4d4d;
    padding: 5px 15px;
    border-radius: 20px;
    border: 1px solid #ff4d4d;
    margin-bottom: 20px;
    font-size: 0.8rem;
    animation: pulse 2s infinite;
}

/* Botões */
.btn-primary {
    background: var(--primary);
    border: none;
    padding: 15px 40px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    margin-right: 15px;
}

/* Cards de Programação */
.grid-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; }

.card {
    background: var(--glass);
    border: 1px solid var(--glass);
    border-radius: 15px;
    overflow: hidden;
    transition: 0.4s;
}

.card:hover { transform: translateY(-10px); border-color: var(--primary); }

.card-img { height: 200px; background-size: cover; background-position: center; }

.card-body { padding: 20px; }
.tag { color: var(--primary); font-size: 0.8rem; font-weight: bold; }

/* Player Flutuante */
.floating-player {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 999;
}

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

.btn-secondary {
    background: rgba(255, 255, 255, 0.05); /* Fundo quase transparente */
    color: #fff;
    border: 2px solid rgba(255, 215, 0, 0.3); /* Borda dourada suave */
    padding: 15px 40px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px; /* Cantos levemente arredondados pra ar moderno */
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

/* Efeito de Hover */
.btn-secondary:hover {
    background: rgba(255, 215, 0, 0.1); /* Fica levemente amarelo */
    border-color: #FFD700; /* Borda acende */
    color: #FFD700;
    transform: translateY(-3px); /* Sobe um pouquinho */
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2); /* Brilho neon embaixo */
}

/* Efeito de Reflexo (Brilho passando) */
.btn-secondary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(30deg);
    transition: all 0.6s;
}

.btn-secondary:hover::after {
    left: 120%; /* O brilho atravessa o botão no hover */
}

/* Efeito de Clique */
.btn-secondary:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(255, 215, 0, 0.2);
}

.main-footer {
    background: #050505;
    padding: 80px 0 0 0;
    border-top: 1px solid var(--glass);
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
}

.footer-about p {
    color: #888;
    margin: 20px 0;
    line-height: 1.6;
}

.footer-links h4 {
    color: var(--primary);
    margin-bottom: 25px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 12px; }
.footer-links ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.9rem;
}

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

.footer-bottom {
    background: #000;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid var(--glass);
}

.footer-bottom p { font-size: 0.8rem; color: #555; }
.footer-bottom strong { color: var(--primary); }

/* Responsivo */
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
}

/* CSS para o container de Ad */
.ad-container {
    width: 100%;
    margin: 40px 0;
    text-align: center;
}
.ad-container small { color: #444; font-size: 10px; text-transform: uppercase; }
.ad-box {
    background: #111;
    border: 1px dashed #333;
    min-height: 250px; /* Tamanho padrão de anúncio */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
}

/* Estilo para Anúncio no Meio dos Cards */
.ad-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255,215,0,0.05), rgba(0,0,0,0.2)) !important;
    border: 2px dashed var(--primary) !important;
}

.ad-box-mini { text-align: center; }
.ad-content { font-weight: 900; color: var(--primary); letter-spacing: 2px; }

/* Banner Horizontal Profissional */
.ad-horizontal-pro {
    background: #111;
    border: 1px solid var(--glass);
    padding: 10px;
    margin: 40px 0;
    text-align: center;
    border-radius: 8px;
}

.ad-placeholder-pro {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    font-weight: bold;
    border: 1px solid #222;
}

/* Botões Sociais no Footer */
.social-icons { display: flex; gap: 10px; margin-top: 15px; }
.social-btn {
    background: var(--glass);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.8rem;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}
.social-btn:hover { background: var(--primary); color: #000; }

/* Ajuste Footer Bottom */
.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .footer-bottom-flex { flex-direction: column; gap: 10px; }
}

:root {
    --primary: #FFD700;
    --bg: #0a0a0a;
    --glass: rgba(255, 255, 255, 0.05);
    --text: #fff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header */
header { position: fixed; width: 100%; top: 0; z-index: 1000; padding: 20px 0; transition: 0.3s; backdrop-filter: blur(10px); border-bottom: 1px solid var(--glass); }
nav { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 900; }
.logo span { color: var(--primary); }
.nav-links { display: flex; list-style: none; gap: 30px; }
.nav-links a { color: #ccc; text-decoration: none; font-size: 0.9rem; }
.btn-contato { background: var(--primary); color: #000 !important; padding: 10px 20px; border-radius: 5px; font-weight: bold; }


/* Botões */
.btn-primary { background: var(--primary); border: none; padding: 15px 40px; font-weight: bold; border-radius: 5px; margin-right: 15px; cursor: pointer; }
.btn-secondary { background: rgba(255,255,255,0.05); color: #fff; border: 2px solid rgba(255,215,0,0.3); padding: 15px 40px; font-weight: 700; border-radius: 8px; cursor: pointer; transition: 0.4s; }
.btn-secondary:hover { background: rgba(255,215,0,0.1); border-color: var(--primary); color: var(--primary); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(255,215,0,0.2); }

/* Ads */
.ad-horizontal-pro { background: #111; padding: 10px; margin: 40px 0; text-align: center; border-radius: 8px; border: 1px solid var(--glass); }
.ad-placeholder-pro { height: 90px; display: flex; align-items: center; justify-content: center; color: #444; border: 1px solid #222; }
.ad-card { border: 2px dashed var(--primary) !important; background: rgba(255,215,0,0.05) !important; display: flex; align-items: center; justify-content: center; }
.ad-content { font-weight: 900; color: var(--primary); }

/* Blog e Sidebar */
.blog-content { display: grid; grid-template-columns: 2fr 1fr; gap: 30px; margin-top: 50px; }
.news-placeholder { height: 300px; background: var(--glass); border-radius: 15px; display: flex; align-items: center; justify-content: center; border: 1px dashed #333; }
.ad-vertical-box { background: #111; height: 600px; display: flex; align-items: center; justify-content: center; color: #444; border-radius: 10px; border: 1px solid var(--glass); }

/* Sticky Ad */
.sticky-ad { position: fixed; bottom: 0; width: 100%; background: rgba(0,0,0,0.95); border-top: 2px solid var(--primary); padding: 10px 0; z-index: 2000; }
.close-ad { position: absolute; right: 10px; top: -30px; background: var(--primary); border: none; padding: 5px 10px; border-radius: 5px 5px 0 0; cursor: pointer; }

/* Cards */
.grid-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.card { background: var(--glass); border-radius: 15px; overflow: hidden; border: 1px solid var(--glass); transition: 0.4s; }
.card-img { height: 200px; background-size: cover; background-position: center; }
.card-body { padding: 20px; }

/* Player */
.floating-player { position: fixed; bottom: 80px; right: 30px; background: rgba(255,255,255,0.1); backdrop-filter: blur(15px); padding: 15px 25px; border-radius: 50px; display: flex; align-items: center; gap: 20px; z-index: 999; border: 1px solid var(--glass); }

@keyframes pulse { 0% {opacity: 1} 50% {opacity: 0.5} 100% {opacity: 1} }

@media (max-width: 768px) { .hero h1 { font-size: 2.5rem; } .blog-content { grid-template-columns: 1fr; } .sidebar-ad { display: none; } }

.radio-player {
    margin-top: 20px;
    padding: 16px;
    border-radius: 16px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    max-width: 420px;
}

.radio-status {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: #fff;
    font-weight: 600;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #666;
    display: inline-block;
}

.pulse-anim {
    animation: pulseDot 1.2s infinite;
}

@keyframes pulseDot {
    0% { box-shadow: 0 0 0 0 rgba(0,255,102,0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0,255,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(0,255,102,0); }
}

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

.play-btn,
.mute-btn {
    border: none;
    cursor: pointer;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 18px;
    font-weight: bold;
}

.play-btn {
    background: #fff;
    color: #000;
}

.mute-btn {
    background: #ffd700;
    color: #000;
}

.volume-box {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: #fff;
    min-width: 180px;
}

#volume-control {
    width: 180px;
    cursor: pointer;
}

/* ===================================== */
/* HEADER RESPONSIVO AJUSTADO */
/* ===================================== */

header {
    left: 0;
    width: 100%;
}

header .container {
    width: 100%;
}

nav.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}

/* Blog desabilitado */
.nav-disabled {
    opacity: 0.45;
    pointer-events: none;
    cursor: default;
}

.nav-disabled:hover {
    color: #ccc !important;
    padding-left: 0 !important;
    transform: none !important;
}

/* Desktop normal */
.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    flex-wrap: nowrap;
}

.nav-links li {
    list-style: none;
}

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

/* ===================================== */
/* TABLET / MOBILE */
/* ===================================== */
@media (max-width: 768px) {
    header {
        padding: 14px 0;
    }

    nav.container {
        flex-wrap: nowrap;
        align-items: center;
        gap: 10px;
    }

    .logo {
        font-size: 1.1rem;
        letter-spacing: 1px;
        flex-shrink: 0;
    }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 12px;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
        -ms-overflow-style: none;
        flex: 1;
        justify-content: flex-start;
        min-width: 0;
        padding-bottom: 2px;
    }

    .nav-links::-webkit-scrollbar {
        display: none;
    }

    .nav-links li {
        flex: 0 0 auto;
    }

    .nav-links a {
        font-size: 0.82rem;
        white-space: nowrap;
    }

    .btn-contato {
        padding: 8px 12px;
        font-size: 0.8rem;
        border-radius: 8px;
        flex: 0 0 auto;
    }
}

/* ===================================== */
/* CELULAR PEQUENO */
/* ===================================== */
@media (max-width: 520px) {
    nav.container {
        gap: 8px;
    }

    .logo {
        font-size: 1rem;
        max-width: 120px;
    }

    .nav-links {
        gap: 10px;
    }

    .nav-links a {
        font-size: 0.76rem;
    }

    .btn-contato {
        padding: 7px 10px;
        font-size: 0.74rem;
    }
}

/* ===================================== */
/* AJUSTE HERO PARA NÃO FICAR ATRÁS DO HEADER */
/* ===================================== */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        height: auto;
        padding-top: 110px;
        padding-bottom: 60px;
        align-items: flex-start;
    }

    .hero-content {
        width: 100%;
    }

    .hero h1 {
        font-size: 2.8rem;
        line-height: 1.05;
    }

    .hero p {
        font-size: 1rem;
        max-width: 100%;
    }

    .cta-group {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        margin-right: 0;
    }

    .radio-player {
        max-width: 100%;
    }
}

@media (max-width: 520px) {
    .hero h1 {
        font-size: 2.2rem;
    }
}

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

.sobre-zainer {
    padding: 120px 0 70px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at left center, rgba(255, 215, 0, 0.07), transparent 32%),
        radial-gradient(circle at right top, rgba(255, 215, 0, 0.04), transparent 26%);
}

.section-heading {
    max-width: 860px;
    margin-bottom: 54px;
}

.section-heading-centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-heading h2 {
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.05;
    margin-bottom: 18px;
    font-weight: 900;
}

.section-heading h2 span {
    color: var(--primary);
}

.section-heading p {
    color: #c8c8c8;
    font-size: 1.05rem;
    line-height: 1.9;
    max-width: 760px;
    margin: 0 auto;
}

.sobre-layout {
    display: flex;
    flex-direction: column;
    gap: 26px;
    align-items: center;
}

.sobre-row {
    display: grid;
    gap: 22px;
    width: 100%;
    justify-content: center;
}

.sobre-row-top {
    grid-template-columns: 0.9fr 1.05fr 0.9fr;
    max-width: 1160px;
}

.sobre-row-bottom {
    grid-template-columns: 0.95fr 1.15fr;
    max-width: 820px;
}

.sobre-card {
    position: relative;
    min-height: 300px;
    padding: 28px 24px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.09);
    box-shadow:
        0 18px 45px rgba(0,0,0,0.28),
        inset 0 1px 0 rgba(255,255,255,0.03);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    backdrop-filter: blur(10px);
}

.sobre-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(255, 215, 0, 0.22),
        rgba(255,255,255,0.04),
        rgba(255, 215, 0, 0.08)
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.sobre-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.28);
    box-shadow:
        0 24px 60px rgba(0,0,0,0.34),
        0 0 0 1px rgba(255, 215, 0, 0.08);
}

.sobre-card h3 {
    color: var(--primary);
    font-size: 1.45rem;
    line-height: 1.2;
    margin-bottom: 18px;
    font-weight: 800;
}

.sobre-card p {
    color: #dddddd;
    font-size: 1rem;
    line-height: 1.9;
    max-width: 95%;
}

.card-small {
    min-height: 380px;
}

.card-featured {
    min-height: 380px;
    transform: translateY(-6px);
}

.card-medium {
    min-height: 240px;
}

.card-large {
    min-height: 240px;
}

.sobre-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 800;
    font-size: 0.98rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.sobre-link::after {
    content: "→";
    transition: transform 0.3s ease;
}

.sobre-link:hover {
    color: #fff;
    transform: translateX(2px);
}

.sobre-link:hover::after {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .sobre-row-top,
    .sobre-row-bottom {
        grid-template-columns: 1fr 1fr;
        max-width: 900px;
    }

    .card-featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .sobre-zainer {
        padding: 90px 0 40px;
    }

    .section-heading h2 {
        font-size: 2.3rem;
    }

    .section-heading p {
        font-size: 0.98rem;
    }

    .sobre-row-top,
    .sobre-row-bottom {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .sobre-card,
    .card-small,
    .card-featured,
    .card-medium,
    .card-large {
        min-height: auto;
    }

    .sobre-card {
        padding: 24px 20px;
        border-radius: 20px;
    }

    .sobre-card h3 {
        font-size: 1.2rem;
    }

    .sobre-card p {
        max-width: 100%;
        font-size: 0.96rem;
        line-height: 1.8;
    }
}