/* =========================================
   RESET E CONFIGURAÇÕES GERAIS
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #111;
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* =========================================
   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 & NAVEGAÇÃO
========================================= */
.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;
}

.btn-nav {
    border: 1px solid white;
    padding: 8px 18px;
    transition: 0.3s;
}

.btn-nav:hover {
    background: white;
    color: black;
}

/* =========================================
   HERO SECTION
========================================= */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    filter: brightness(50%);
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.8));
    z-index: 1;
}

.hero-content {

    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    animation: fadeInUp 1.5s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0.8;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 45px;
    font-weight: 400;
    margin-bottom: 10px;
}

.hero-main {
    font-family: 'Playfair Display', serif;
    font-size: 85px;
    font-weight: 700;
    letter-spacing: 5px;
    margin-bottom: 40px;
}

.hero-btn {
    padding: 15px 40px;
    background-color: white;
    color: black;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 2px;
    transition: 0.3s ease;
}

.hero-btn:hover {
    background-color: #c49b63;
    color: white;
}

/* =========================================
   SEÇÃO ESSÊNCIA & DESTAQUES
========================================= */
.essencia {
    padding: 100px 0;
    background-color: #0f0f0f;
}

.essencia-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.essencia-text span {
    color: #c49b63;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 3px;
}

.essencia-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin: 20px 0;
}

.experience-highlights {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.highlight h3 {
    font-size: 32px;
    color: #c49b63;
}

.highlight span {
    font-size: 14px;
    color: #888;
}

.essencia-img img {
    width: 100%;
    border-radius: 5px;
    filter: grayscale(30%);
}
/* =========================================
   AULAS E FAIXA ETÁRIA
========================================= */
.aulas {
    padding: 100px 0;
    background: #0f0f0f;
}

.aulas .titulo {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 15px;
}

.aulas .subtitulo {
    text-align: center;
    font-size: 18px;
    color: #c49b63;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.aulas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.aula-card {
    background: #151515;
    border: 1px solid #222;
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    transition: 0.3s;
}

.aula-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #c49b63;
    margin-bottom: 15px;
}

.aula-card p {
    color: #ccc;
    font-size: 15px;
    line-height: 1.7;
}

.aula-card:hover {
    transform: translateY(-5px);
    border-color: #ffe7c2;
}

.cta-aulas {
    text-align: center;
    margin-top: 50px;
}

.cta-aulas .btn-primary {
    background: #c49b63;
    color: black;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 40px;
    transition: 0.3s;
}

.cta-aulas .btn-primary:hover {
    background: #ffe7c2;
    color: black;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .aulas .titulo {
        font-size: 32px;
    }

    .aulas .subtitulo {
        font-size: 16px;
    }
}

/* =========================================
   ÚLTIMAS NOTÍCIAS
========================================= */

.noticias {
    padding: 100px 0;
    background: #0f0f0f;
}

.noticias-titulo {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 50px;
}

.noticias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.noticia-card {
    background: #151515;
    border: 1px solid #222;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s ease;
}

.noticia-card:hover {
    transform: translateY(-5px);
    border-color: #c49b63;
}

.noticia-card img {
    width: 45%;
    height: 220px;
    object-fit: cover;
}

.noticia-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin: 20px;
    color: #c49b63;
}

.noticia-card p {
    margin: 0 20px 20px;
    color: #ccc;
    line-height: 1.6;
}

.noticia-btn {
    display: inline-block;
    margin: 0 20px 25px;
    padding: 10px 20px;
    background: #c49b63;
    color: black;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s;
}

.noticia-btn:hover {
    background: white;
}

/* =========================================
   RESPONSIVO NOTÍCIAS
========================================= */

@media (max-width: 768px) {
    .noticia-card img {
        height: 180px;
    }
}
/* =========================================
   NOSSO ESTÚDIO
========================================= */
.studio {
    padding: 100px 0;
    background-color: #111;
}

.studio-text {
    text-align: center;
    margin-bottom: 50px;
}

.studio-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    margin-bottom: 10px;
}

.studio-text p {
    color: #aaa;
    font-size: 16px;
}

.studio-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.studio-card {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    height: 280px;
}

.studio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
    filter: brightness(80%);
}

.studio-card:hover img {
    transform: scale(1.05);
    filter: brightness(100%);
}

/* Responsivo Estúdio */
@media (max-width: 768px) {
    .studio-card {
        height: 220px;
    }
}

/* =========================================
   FAQ
========================================= */
.faq-accordion {
    max-width: 800px;
    margin: auto;
}

.faq-item {
    background: #1a1a1a;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid #222;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: white;
    text-align: left;
    padding: 20px;
    font-size: 18px;
    cursor: pointer;
    font-weight: 500;
    position: relative;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 22px;
    transition: 0.3s;
}

.faq-item.active .faq-question::after {
    content: "-";
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #111;
    padding: 0 20px;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 20px;
}

/* =========================================
   COOKIE BAR
========================================= */
.cookie-bar {
    background: rgba(0,0,0,0.25);
    padding: 15px 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(6px);
}

.cookie-bar p {
    font-size: 13px;
    max-width: 80%;
}

.cookie-btn {
    background: white;
    border: none;
    padding: 10px 20px;
    color: black;
    cursor: pointer;
    font-weight: 700;
    border-radius: 4px;
    transition: 0.3s;
}

.cookie-btn:hover {
    background: #ffe3b3;
}

/* =========================================
   FOOTER DANCE4LOVE
========================================= */
.footer-dance4love {
    background: linear-gradient(135deg, #c49b63, #8a5a44, #2b1a14);
    background-size: 200% 200%;
    animation: footerGradient 12s ease infinite;
    padding-top: 80px;
    color: white;
    border-top: 1px solid rgba(255,255,255,0.15);
}

@keyframes footerGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    margin-bottom: 15px;
}

.footer-desc {
    max-width: 380px;
    margin-bottom: 20px;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-copy,
.footer-dev {
    margin-bottom: 10px;
    opacity: 0.85;
}

.footer-links a {
    color: #ffe7c2;
    text-decoration: none;
    margin-right: 15px;
    font-size: 13px;
    font-weight: 600;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-lang {
    margin-top: 15px;
    opacity: 0.85;
}

.footer-right h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.footer-email {
    font-size: 16px;
    font-weight: 600;
}

.footer-social-text {
    opacity: 0.85;
    margin-bottom: 10px;
}

.footer-social a img {
    width: 30px;
    margin-right: 12px;
    filter: brightness(90%);
    transition: 0.3s;
}

.footer-social a img:hover {
    filter: brightness(120%);
}

/* ============================
   RESPONSIVO
============================ */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cookie-bar {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}
/* ===============================
   PÁGINAS DE NOTÍCIA
=================================*/

.pagina-noticia {
    background: #0f0f0f;
    padding: 80px 0;
    color: #f5f5f5;
}

.pagina-noticia .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Data da notícia */
.noticia-data {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c49b63;
    margin-bottom: 15px;
}

/* Título */
.pagina-noticia h1 {
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: 600;
}

/* Caixa de informações (data, hora, local) */
.noticia-info {
    background: #181818;
    padding: 20px 25px;
    border-left: 4px solid #c49b63;
    border-radius: 8px;
    margin-bottom: 30px;
}

.noticia-info p {
    margin: 8px 0;
    font-size: 15px;
    color: #ddd;
}

.noticia-info strong {
    color: #ffffff;
}

/* Imagem */
.pagina-noticia img {
    width: 100%;
    border-radius: 10px;
    margin: 25px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* Conteúdo do texto */
.noticia-conteudo p {
    line-height: 1.8;
    margin-bottom: 18px;
    font-size: 16px;
    color: #ccc;
}

.noticia-conteudo ul {
    margin: 20px 0 20px 25px;
}

.noticia-conteudo li {
    margin-bottom: 10px;
    color: #ddd;
}

/* Botão voltar */
.btn-voltar {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 25px;
    background: #c49b63;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: 0.3s ease;
}

.btn-voltar:hover {
    background: #e6b87d;
    transform: translateY(-3px);
}