/* Reset e Fontes */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow-x: hidden;
    background-color: #fff;
}

/* Fundo Fixo com Efeito Parallax */
.main-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    z-index: -2;
    transition: transform 0.1s ease-out;
}

.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.5); /* Suaviza o fundo */
    z-index: -1;
}

/* Header Luxuoso */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 25px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid #d4af37;
    z-index: 1000;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #b8860b;
    letter-spacing: -1px;
}

.nav-buttons {
    display: flex;
    gap: 20px;
}

.nav-buttons a {
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.4s ease;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
}

.btn-contact {
    border: 1px solid #d4af37;
    color: #d4af37;
}

.btn-contact:hover {
    background: #d4af37;
    color: #fff;
}

.btn-shop {
    background: linear-gradient(135deg, #d4af37 0%, #f9e29c 100%);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-shop:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

/* Container de Conteúdo */
main {
    padding: 150px 8% 50px;
}

/* Estilo dos Blocos (Glassmorphism) */
.glass-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 2px; /* Recorte mais seco e elegante */
    margin-bottom: 100px;
    overflow: hidden; /* Garante que a imagem se encaixe perfeitamente */
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.glass-card.reverse {
    flex-direction: row-reverse;
}

/* Ajuste das Imagens e Vídeo nos Blocos */
.card-img, .video-wrapper {
    flex: 1;
    height: 500px;
    overflow: hidden;
}

.card-img img, .video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Recorta para preencher o bloco */
    transition: transform 0.8s ease;
}

.glass-card:hover .card-img img {
    transform: scale(1.05);
}

/* Conteúdo de Texto */
.card-content {
    flex: 1;
    padding: 60px;
}

.card-content h2 {
    font-family: 'Playfair Display', serif;
    color: #b8860b;
    font-size: 1.8rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.card-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.card-content ul {
    list-style: none;
}

.card-content li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    font-size: 0.95rem;
}

.card-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

.highlight {
    margin-top: 30px;
    font-weight: 600;
    color: #b8860b;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Animação de Revelação */
[data-reveal] {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s cubic-bezier(0.2, 1, 0.3, 1);
}

[data-reveal].active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsividade */
@media (max-width: 1024px) {
    .glass-card, .glass-card.reverse {
        flex-direction: column;
    }
    .card-img, .video-wrapper {
        width: 100%;
        height: 400px;
    }
    header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}