body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: #f6ede7;
    min-height: 100vh;
}

.container {
    max-width: 480px;
    margin: 0 auto;
    padding: 32px 16px 0 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    width: 260px;
    height: 260px;
    object-fit: contain;
    margin-bottom: 24px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.slogan {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4a5a44;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 8px;
}
.slogan .dot {
    color: #e6bfc7;
    font-size: 1.2em;
}

.descricao {
    color: #4a5a44;
    font-size: 1.05rem;
    margin-bottom: 56px;
    text-align: center;
}

.botoes {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.botao {
    display: block;
    width: 100%;
    max-width: calc(100% - 100px);
    background: #e6bfc7;
    color: #4a5a44;
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: 4px;
    text-align: center;
    padding: 18px 0;
    border-radius: 32px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.07);
    margin-bottom: 2px;
    transition: background 0.2s, color 0.2s, transform 0.1s;
}
.botao:hover {
    background: #f3dbe3;
    color: #2e3a28;
    transform: translateY(-2px) scale(1.02);
}

.info {
    color: #4a5a44;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 8px;
    margin-top: -8px;
}

@media (max-width: 600px) {
    .container {
        padding: 18px 4vw 0 4vw;
    }
    .logo {
        width: 180px;
        height: 180px;
        margin-bottom: 18px;
    }
    .botao {
        font-size: 1.05rem;
        padding: 14px 0;
        max-width: calc(100% - 100px);
    }
    .slogan {
        font-size: 0.98rem;
    }
    .descricao {
        font-size: 0.95rem;
        margin-bottom: 44px;
    }
} 