* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background: url('../images/oraculo1_background.jpeg?v=1765658546') center center / cover no-repeat fixed;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 600px;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.screen {
    display: none;
    animation: fadeIn 0.5s ease-in;
}

.screen.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.content {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.title {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 30px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    letter-spacing: 3px;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 10px rgba(255, 215, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.3); }
    to { text-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.5), 0 0 40px rgba(255, 215, 0, 0.3); }
}

.message {
    font-size: 1.5rem;
    color: #e0e0e0;
    margin-bottom: 50px;
    line-height: 1.6;
    font-style: italic;
}

.destino-button {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a2e;
    font-size: 2rem;
    font-weight: bold;
    padding: 20px 60px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.destino-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.6);
}

.countdown {
    font-size: 15rem;
    color: #ffd700;
    font-weight: bold;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.8), 0 0 60px rgba(255, 215, 0, 0.5);
    animation: pulse 1s ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(0.5); opacity: 0; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

.card-container {
    margin-bottom: 30px;
    animation: cardReveal 1s ease-out;
}

@keyframes cardReveal {
    0% { transform: rotateY(180deg) scale(0.5); opacity: 0; }
    60% { transform: rotateY(0deg) scale(1.1); }
    100% { transform: rotateY(0deg) scale(1); opacity: 1; }
}

.card-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 215, 0, 0.3);
    border: 3px solid #ffd700;
}

.nova-consulta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nova-consulta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.6);
}

@media (max-width: 768px) {
    .title { font-size: 2rem; }
    .message { font-size: 1.2rem; }
    .destino-button { font-size: 1.5rem; padding: 15px 40px; }
    .countdown { font-size: 10rem; }
    .content { padding: 30px 20px; }
}

@media (max-width: 480px) {
    .title { font-size: 1.5rem; letter-spacing: 2px; }
    .message { font-size: 1rem; margin-bottom: 30px; }
    .destino-button { font-size: 1.2rem; padding: 12px 30px; letter-spacing: 2px; }
    .countdown { font-size: 8rem; }
}

/* Footer */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    z-index: 1000;
}

.footer p {
    margin: 0;
    color: #ffffff;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.footer a {
    color: #ffd700;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.footer a:hover {
    color: #ffed4e;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

@media (max-width: 480px) {
    .footer p {
        font-size: 0.75rem;
    }
}




