:root {
    --text-color: #363435;
    --accent-color-1: #F9CB73;
    --accent-color-2: #F48A34;
    --background-color: #E7E8EA;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}
main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
    height: 100vh;
    position: relative;
    overflow: auto;
    background-image: url('https://images.unsplash.com/photo-1671394394688-e795f064fd3d?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(231, 232, 234, 0.85);
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

header {
    margin-bottom: 2rem;
}

.logo {
    max-width: 150px;
    width: 100%;
    height: auto;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 3rem;
    max-width: 700px;
    line-height: 1.6;
}


.countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.countdown-item {
    background-color: white;
    border-radius: 10px;
    padding: 1.5rem 1rem;
    min-width: 120px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.countdown-item span {
    display: block;
}

.countdown-item span:first-child {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color-2);
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
}

.contact {
    margin-bottom: 3rem;
}

.contact p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.whatsapp-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.whatsapp-btn {
    background-color: #2c2c2c;
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

footer {
    font-size: 0.9rem;
    margin-top: auto;
    padding-top: 2rem;
}

footer p {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {

    .container {
        padding: 1.5rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }

    .countdown {
        gap: 1.2rem;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 1rem 0.5rem;
    }
    
    .countdown-item span:first-child {
        font-size: 2rem;
    }
    
    .countdown-label {
        font-size: 0.8rem;
    }
    
    .whatsapp-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .whatsapp-btn {
        padding: 0.7rem 1rem;
    }
}