/* Reset e configurações base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* Container principal */
.container {
    text-align: center;
    padding: 20px;
    max-width: 600px;
    width: 100%;
}

/* Título */
h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Informação do evento */
.evento-info {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* Texto Falta/Faltam */
.texto-falta {
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 500;
    opacity: 0.95;
}

/* Container do contador */
.contador {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: nowrap;
    margin-bottom: 30px;
    width: 100%;
}

/* Itens de tempo */
.tempo-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px 15px;
    min-width: 100px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.tempo-item:hover {
    transform: translateY(-5px);
}

/* Números grandes */
.numero {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Labels */
.label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Separador */
.separador {
    font-size: 2rem;
    font-weight: bold;
    opacity: 0.7;
}

/* Mensagem */
.mensagem {
    font-size: 1.1rem;
    margin-top: 20px;
    opacity: 0.9;
}

/* Responsividade para tablets */
@media (max-width: 768px) and (min-width: 481px) {
    h1 {
        font-size: 2rem;
    }
    
    .numero {
        font-size: 2.2rem;
    }
    
    .tempo-item {
        min-width: 90px;
        padding: 20px 12px;
    }
    
    .contador {
        gap: 10px;
    }
    
    .separador {
        font-size: 1.5rem;
        margin: 0 5px;
    }
}

/* Responsividade para mobile */
@media (max-width: 480px) {
    .container {
        padding: 15px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .evento-info {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .contador {
        flex-direction: column;
        gap: 15px;
    }
    
    .tempo-item {
        width: 100%;
        min-width: 200px;
        padding: 20px;
    }
    
    .numero {
        font-size: 2rem;
    }
    
    .label {
        font-size: 1rem;
    }
    
    .separador {
        display: none;
    }
} 