* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #fff;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://images.unsplash.com/photo-1548625361-625bd5259168?auto=format&fit=crop&q=80&w=1920') no-repeat center center/cover;
    overflow: hidden;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 20px;
}

.logo {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #d4af37; /* Tom dourado */
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

h2 {
    font-weight: 300;
    margin-bottom: 20px;
    color: #ddd;
}

#countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.time-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    min-width: 100px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.time-box span {
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
}

.time-box p {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #d4af37;
}

footer {
    margin-top: 50px;
    font-size: 0.9rem;
    opacity: 0.7;
}

@media (max-width: 600px) {
    #countdown { gap: 10px; }
    .time-box { min-width: 70px; padding: 10px; }
    h1 { font-size: 1.8rem; }
}