* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0f0f0f;
    color: #f5f5f5;
    line-height: 1.8;
}

.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 */
.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: 28px;
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover,
nav .active {
    color: #c49b63;
}

.btn-nav {
    border: 1px solid white;
    padding: 8px 18px;
    border-radius: 30px;
}

.btn-nav:hover {
    background: white;
    color: black;
}

/* HERO */
.hero-sobre {
    height: 100vh;
    background: url("imagem4.jpkg") center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.85));
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
}

.hero-content p {
    color: #c49b63;
    letter-spacing: 4px;
}

/* SOBRE */
.sobre {
    padding: 120px 0;
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

.sobre-texto span {
    color: #c49b63;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 3px;
}

.sobre-texto h2 {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    margin: 25px 0;
}

.sobre-texto p {
    color: #ccc;
    margin-bottom: 22px;
    font-size: 17px;
}

.frase-final {
    font-weight: 600;
    color: #c49b63;
    font-size: 18px;
}

.sobre-img img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

/* Destaques */
.destaques {
    display: flex;
    gap: 50px;
    margin-top: 50px;
}

.destaque-item h3 {
    font-size: 36px;
    color: #c49b63;
}

.destaque-item span {
    font-size: 14px;
    color: #aaa;
}

/* VALORES */
.valores {
    padding: 120px 0;
    background: #141414;
}

.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 70px;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.valor-card {
    background: #1a1a1a;
    padding: 45px;
    border-radius: 12px;
    border: 1px solid #222;
    transition: 0.4s;
}

.valor-card:hover {
    transform: translateY(-8px);
    border-color: #c49b63;
}

.valor-card h3 {
    font-family: 'Playfair Display', serif;
    color: #c49b63;
    margin-bottom: 20px;
}

/* =========================================
   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: 900px) {
    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-content h2 {
        font-size: 38px;
    }

    .destaques {
        flex-direction: column;
        gap: 20px;
    }
}