/* GLASSMORPHISM CSS */
.glass-element {
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 0px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

/* Fallback para navegadores antigos */
@supports not (backdrop-filter: blur(1px)) {
    .glass-element {
        background: rgba(15, 15, 15, 0.95);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
}

/* Para melhor performance em mobile */
@supports (backdrop-filter: blur(1px)) {
    .glass-element {
        background: rgba(255, 255, 255, 0);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
}

/* HEADER */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 20px 0;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    text-decoration: none;
    color: white;
    margin: 0;
}

.logo span {
    color: #c49b63;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 25px;
    font-size: 15px;
    transition: 0.3s;
}

nav a:hover {
    color: #c49b63;
}

/* PÁGINA NOTÍCIA */
body {
    font-family: 'Poppins', sans-serif;
    background: #111;
    color: #eee;
    line-height: 1.7;
    margin: 0;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

.pagina-noticia {
    padding: 100px 0 80px 0;
}

.noticia-header {
    margin-bottom: 40px;
}

.noticia-data {
    color: #c49b63; /* COR ORIGINAL */
    letter-spacing: 2px;
    font-size: 14px;
    text-transform: uppercase;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin: 10px 0;
    color: #fff;
}

/* GRID LADO A LADO */
.noticia-grid {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.coluna-conteudo {
    flex: 1;
}

.coluna-imagem {
    flex: 0 0 420px;
}

/* INFO DESTAQUE */
.noticia-info {
    background: #1a1a1a;
    padding: 25px;
    border-left: 4px solid #c49b63; /* COR ORIGINAL */
    margin-bottom: 30px;
}

.noticia-info p {
    margin: 5px 0;
}

/* IMAGEM */
.imagem-noticia {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    display: block;
}

/* Adicione ou atualize estas regras no seu noticia3.css */

.programacao li {
    margin-bottom: 25px;
    padding-left: 15px;
    border-left: 2px solid #333; /* Linha sutil para separar os dias */
}

.programacao li strong {
    color: #c49b63; /* A MESMA COR CORRETA */
    display: block;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.programacao li small {
    display: block;
    color: #bbb;
    font-size: 15px;
    line-height: 1.5;
}

/* BOTÕES */
.botoes-noticia {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-inscrever {
    background: #c49b63;
    color: #111;
    padding: 16px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-inscrever:hover {
    background: #e0b47a;
    transform: translateY(-2px);
}

.btn-voltar {
    border: 1px solid #c49b63;
    padding: 16px 30px;
    color: #c49b63;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-voltar:hover {
    background: #c49b63;
    color: #111;
}

/* RESPONSIVIDADE */
@media (max-width: 992px) {
    .noticia-grid {
        flex-direction: column;
    }
    .coluna-imagem {
        flex: 0 0 auto;
        width: 100%;
        order: -1; /* Imagem no topo */
    }
    h1 { font-size: 32px; }
}