:root {
    --bg-color: #27373B;
    --primary-color: #04F652;
    --text-color: #FFFFFF;
    --font-family: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-family);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow-x: hidden;
    text-align: center;
}

.container {
    width: 100%;
    max-width: 450px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    justify-content: center;
}

.logo-container {
    margin-bottom: 3rem;
    animation: fadeInScale 1.2s ease-out;
}

.main-logo {
    max-width: 280px;
    width: 80%;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(4, 246, 82, 0.3));
    transition: transform 0.5s ease;
}

.main-logo:hover {
    transform: scale(1.05);
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}

.headline {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
    max-width: 320px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: slideUp 1s ease-out;
    margin-bottom: 1rem;
}

.cta-button {
    background-color: var(--primary-color);
    color: var(--text-color);
    text-decoration: none;
    padding: 18px 45px;
    border-radius: 100px; /* Como solicitado 100% de raio para efeito pílula */
    font-weight: 700;
    font-size: 1rem;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(4, 246, 82, 0.2);
    border: 2px solid transparent;
}

.cta-button:hover {
    background-color: #FFFFFF;
    color: #27373B;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 25px rgba(255, 255, 255, 0.2);
}

.app-stores {
    margin-top: 1rem;
    animation: fadeIn 1.5s ease-out;
}

.store-badge {
    max-width: 250px;
    width: 100%;
    height: auto;
}

.coming-soon {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    opacity: 0.8;
    margin-top: 0.5rem;
}

/* Animações */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsividade para Desktop */
@media (min-width: 768px) {
    .container {
        max-width: 600px;
    }
    .headline {
        font-size: 1.4rem;
        max-width: 450px;
    }
    .main-logo {
        max-width: 350px;
    }
}
