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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #000000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#home-page {
    cursor: pointer;
}

.container {
    text-align: center;
    padding: 40px 20px;
}

.logo-container {
    margin-bottom: 40px;
}

.logo-container img {
    display: block;
    margin: 0 auto;
    max-width: 300px;
    max-height: 150px;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.cta-container {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
}

.instagram-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(188, 24, 136, 0.4);
    transition: all 0.3s ease;
}

.instagram-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(188, 24, 136, 0.6);
}

.instagram-icon {
    width: 24px;
    height: 24px;
}

.enter-container {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.enter-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 24px 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 28px;
    font-weight: 700;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.enter-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.7);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.enter-button:active {
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .logo-container img {
        max-width: 200px;
    }

    .whatsapp-button {
        font-size: 16px;
        padding: 14px 28px;
    }

    .instagram-button {
        font-size: 16px;
        padding: 14px 28px;
    }

    .enter-button {
        font-size: 20px;
        padding: 20px 50px;
        letter-spacing: 1px;
    }
}
