/* CHRYSTAL APLICADORA - PROPRIETARY DESIGN SYSTEM */
:root {
    --gold: #C0A062;
    --gold-light: #E8D5B5;
    --dark: #121212;
    --dark-offset: #1a1a1a;
    --white: #ffffff;
    --stone: #a8a29e;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background-color: var(--dark); color: var(--stone); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, .font-serif { font-family: 'Playfair Display', serif; color: var(--white); }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-gradient { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* Navigation */
nav { position: fixed; width: 100%; z-index: 1000; padding: 20px 0; background: rgba(18, 18, 18, 0.8); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255,255,255,0.05); transition: 0.3s; }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { text-decoration: none; color: var(--white); text-transform: uppercase; font-size: 12px; letter-spacing: 2px; transition: 0.3s; }
.nav-links a:hover { color: var(--gold); }

/* Hero */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1513519245088-0e12902e5a38?auto=format&fit=crop&q=80'); background-size: cover; background-position: center; }

/* Grid System */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; padding: 60px 0; }
.card-premium { background: var(--dark-offset); padding: 40px; border-radius: 15px; border: 1px solid rgba(255,255,255,0.05); transition: 0.4s; }
.card-premium:hover { border-color: var(--gold); transform: translateY(-10px); }

/* Botão WhatsApp */
.wa-float { position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 999; box-shadow: 0 10px 20px rgba(0,0,0,0.4); }

/* Animação para Ícones Chrystal */
.icon-container {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(192, 160, 98, 0.1);
    border-radius: 50%;
    color: var(--gold);
    margin-bottom: 20px;
    transition: 0.4s ease;
}

.card-premium:hover .icon-container {
    background: var(--gold);
    color: var(--dark);
    transform: rotateY(180deg);
}

.icon-svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

/* --- ATUALIZAÇÃO LOGO (COR ORIGINAL FORÇADA) --- */

/* Logo do Menu (Topo) */
.logo-img {
    max-height: 50px;
    width: auto;
    display: block;
    transition: 0.3s;
}

/* Logo do Rodapé (Footer) - CORRIGIDO COM PRIORIDADE MÁXIMA */
.logo-footer {
    max-height: 70px;
    width: auto;
    margin-bottom: 25px;
    filter: none !important; /* O !important garante que nada sobrescreva isso */
    opacity: 1 !important;   /* Garante visibilidade total */
}