/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #111;
    color: white;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ================= GLASSMORPHISM ================= */
.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%;
    padding: 20px 0;
    z-index: 100;
    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;
    transition: 0.3s;
}

nav a:hover,
nav .active {
    color: #c49b63;
}

.btn-nav {
    border: 1px solid white;
    padding: 8px 18px;
}

.btn-nav:hover {
    background: white;
    color: black;
}

/* ================= PÁGINA ================= */
.pagina {
    padding: 120px 0 80px;
    background-color: #0f0f0f;
}

.titulo {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 10px;
}

.subtitulo {
    text-align: center;
    color: #c49b63;
    font-size: 18px;
    margin-bottom: 50px;
}

/* ================= CARDS ================= */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: #151515;
    border: 1px solid #222;
    border-radius: 10px;
    overflow: hidden;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    border-color: #c49b63;
}

.card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: transform 0.4s, filter 0.4s;
}

.card:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #c49b63;
    margin-bottom: 5px;
}

.card span {
    display: block;
    font-size: 14px;
    color: #aaa;
    margin-bottom: 15px;
    font-weight: 500;
}

.card p {
    font-size: 15px;
    color: #ccc;
    line-height: 1.6;
}

/* =========================================
   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;
    }
}


/* ================= RESPONSIVO ================= */
@media (max-width: 900px) {
    .cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .cards {
        grid-template-columns: 1fr;
    }

    .card img {
        height: 220px;
    }
}