
/* ====== Estilo Premium Dark Mode com Animações ====== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: #d4af37; /* dourado */
    font-weight: 700;
    animation: fadeInDown 1s ease;
}

a, button {
    background: #00ff88;
    color: #0a0a0a;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    animation: fadeInUp 1.2s ease;
}

a:hover, button:hover {
    background: #d4af37;
    color: #0a0a0a;
    transform: scale(1.05);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    animation: fadeIn 1.5s ease;
}

.card {
    background: #121212;
    border-radius: 12px;
    padding: 20px;
    margin: 15px 0;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 25px rgba(0,0,0,0.8);
}

img {
    max-width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease;
    animation: fadeIn 1.6s ease;
}

img:hover {
    transform: scale(1.03);
}

footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    border-top: 1px solid #333;
    color: #888;
    font-size: 14px;
    animation: fadeInUp 1.8s ease;
}

/* ====== Keyframes ====== */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
