:root {
    --rosa: #f4a6b5;
    --rosa-escuro: #e98fa3;
    --dourado: #d4a373;
    --cinza: #8c7f77;
    --bg: #f7f2ef;
}

html,
body{
    overflow: hidden;
}

body {
    background: linear-gradient(180deg, var(--bg), #ffffff);
    font-family: 'Montserrat', sans-serif;
    height: 100vh;
    margin: 0;
}

.main {
    min-height: 100vh;
}

.logo {
    max-width: 260px;
    margin-bottom: 25px;
    animation: fadeUp 1s ease forwards;
}

h1 {
    font-family: 'Playfair Display', serif;
    color: var(--rosa-escuro);
    font-size: 28px;
    animation: fadeUp 1.2s ease forwards;
}

p {
    color: var(--cinza);
    margin-bottom: 30px;
    animation: fadeUp 1.4s ease forwards;
}

.btn-custom {
    border-radius: 50px;
    padding: 12px 22px;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 220px;
}

.btn-android {
    background: var(--rosa);
    color: #fff;
}

.btn-android:hover {
    background: var(--rosa-escuro);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-ios {
    border: 2px solid var(--dourado);
    color: var(--dourado);
    background: transparent;
}

.btn-ios:hover {
    background: var(--dourado);
    color: #fff;
    transform: translateY(-2px);
}

footer {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
    font-size: 12px;
    color: var(--cinza);
    opacity: 0.7;
}

/* Animação */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Delay progressivo */
h1 {
    animation-delay: 0.2s;
}
p {
    animation-delay: 0.4s;
}
.buttons {
    animation: fadeUp 1.6s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}